File tree 6 files changed +40
-8
lines changed
core/src/submodules/httpAuthSchemes/aws_sdk
polly-request-presigner/src
6 files changed +40
-8
lines changed Original file line number Diff line number Diff line change 1
1
import { setCredentialFeature } from "@aws-sdk/core/client" ;
2
- import { AttributedAwsCredentialIdentity } from "@aws-sdk/types" ;
2
+ import type { AttributedAwsCredentialIdentity , MergeFunctions } from "@aws-sdk/types" ;
3
3
import {
4
4
doesIdentityRequireRefresh ,
5
5
isIdentityExpired ,
@@ -81,9 +81,8 @@ export interface AwsSdkSigV4AuthResolvedConfig {
81
81
/**
82
82
* Resolved value for input config {@link AwsSdkSigV4AuthInputConfig.credentials}
83
83
* This provider MAY memoize the loaded credentials for certain period.
84
- * See {@link MemoizedProvider} for more information.
85
84
*/
86
- credentials : AwsCredentialIdentityProvider ;
85
+ credentials : MergeFunctions < AwsCredentialIdentityProvider , MemoizedProvider < AwsCredentialIdentity > > ;
87
86
/**
88
87
* Resolved value for input config {@link AwsSdkSigV4AuthInputConfig.signer}
89
88
*/
Original file line number Diff line number Diff line change 98
98
},
99
99
"exports" : {
100
100
"./sso-oidc" : {
101
+ "types" : " ./dist-types/submodules/sso-oidc/index.d.ts" ,
101
102
"module" : " ./dist-es/submodules/sso-oidc/index.js" ,
102
103
"node" : " ./dist-cjs/submodules/sso-oidc/index.js" ,
103
104
"import" : " ./dist-es/submodules/sso-oidc/index.js" ,
104
- "require" : " ./dist-cjs/submodules/sso-oidc/index.js" ,
105
- "types" : " ./dist-types/submodules/sso-oidc/index.d.ts"
105
+ "require" : " ./dist-cjs/submodules/sso-oidc/index.js"
106
106
},
107
107
"./sts" : {
108
+ "types" : " ./dist-types/submodules/sts/index.d.ts" ,
108
109
"module" : " ./dist-es/submodules/sts/index.js" ,
109
110
"node" : " ./dist-cjs/submodules/sts/index.js" ,
110
111
"import" : " ./dist-es/submodules/sts/index.js" ,
111
- "require" : " ./dist-cjs/submodules/sts/index.js" ,
112
- "types" : " ./dist-types/submodules/sts/index.d.ts"
112
+ "require" : " ./dist-cjs/submodules/sts/index.js"
113
113
}
114
114
}
115
115
}
Original file line number Diff line number Diff line change 1
1
import { PollyClient , SynthesizeSpeechCommand } from "@aws-sdk/client-polly" ;
2
+ import type { AwsCredentialIdentity , Provider } from "@aws-sdk/types" ;
2
3
import { formatUrl } from "@aws-sdk/util-format-url" ;
3
4
import { HttpRequest } from "@smithy/protocol-http" ;
4
5
import { SignatureV4 } from "@smithy/signature-v4" ;
@@ -8,10 +9,14 @@ export const getSignedUrl = async (
8
9
command : SynthesizeSpeechCommand ,
9
10
options : any = { }
10
11
) : Promise < string > => {
12
+ const { region, credentials, sha256 } = client . config ;
13
+
11
14
const signer = new SignatureV4 ( {
12
15
service : options . service || "polly" ,
13
16
uriEscapePath : options . uriEscapePath || false ,
14
- ...client . config ,
17
+ region,
18
+ credentials : credentials as Provider < AwsCredentialIdentity > ,
19
+ sha256,
15
20
} ) ;
16
21
17
22
const presignInterceptMiddleware = ( next : any , context : any ) => async ( args : any ) => {
Original file line number Diff line number Diff line change
1
+ import { Exact } from "@smithy/types" ;
2
+
3
+ import type { MergeFunctions } from "./function" ;
4
+
5
+ {
6
+ const function1 = ( { a } : { a : boolean } ) => ( { a : a } ) ;
7
+ const function2 = ( { b } : { b : boolean } ) => ( { b : b } ) ;
8
+
9
+ const function3 : MergeFunctions < typeof function1 , typeof function2 > = null as any ;
10
+
11
+ // it should merge the first arg and return value objects of function1 and function2
12
+ // into function3.
13
+
14
+ type assert0 = Exact < typeof function3 , ( { a, b } : { a : boolean ; b : boolean } ) => { a : boolean ; b : boolean } > ;
15
+ const assert0 : assert0 = true as const ;
16
+ }
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Resolves a function that accepts both the object argument fields of F1 and F2.
3
+ * The function returns an intersection of what F1 and F2 return.
4
+ *
5
+ * @public
6
+ */
7
+ export type MergeFunctions < F1 , F2 > = F1 extends ( arg : infer A1 ) => infer R1
8
+ ? F2 extends ( arg : infer A2 ) => infer R2
9
+ ? ( arg ?: A1 & A2 ) => R1 & R2
10
+ : never
11
+ : never ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export * from "./endpoint";
13
13
export * from "./eventStream" ;
14
14
export * from "./extensions" ;
15
15
export * from "./feature-ids" ;
16
+ export * from "./function" ;
16
17
export * from "./http" ;
17
18
export * from "./identity" ;
18
19
export * from "./logger" ;
You can’t perform that action at this time.
0 commit comments