Skip to content

Commit 0731044

Browse files
committed
chore(core/httpAuthSchemes): fix type declaration of resolved credentials
1 parent 6034850 commit 0731044

File tree

6 files changed

+40
-8
lines changed

6 files changed

+40
-8
lines changed

packages/core/src/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { setCredentialFeature } from "@aws-sdk/core/client";
2-
import { AttributedAwsCredentialIdentity } from "@aws-sdk/types";
2+
import type { AttributedAwsCredentialIdentity, MergeFunctions } from "@aws-sdk/types";
33
import {
44
doesIdentityRequireRefresh,
55
isIdentityExpired,
@@ -81,9 +81,8 @@ export interface AwsSdkSigV4AuthResolvedConfig {
8181
/**
8282
* Resolved value for input config {@link AwsSdkSigV4AuthInputConfig.credentials}
8383
* This provider MAY memoize the loaded credentials for certain period.
84-
* See {@link MemoizedProvider} for more information.
8584
*/
86-
credentials: AwsCredentialIdentityProvider;
85+
credentials: MergeFunctions<AwsCredentialIdentityProvider, MemoizedProvider<AwsCredentialIdentity>>;
8786
/**
8887
* Resolved value for input config {@link AwsSdkSigV4AuthInputConfig.signer}
8988
*/

packages/nested-clients/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,18 @@
9898
},
9999
"exports": {
100100
"./sso-oidc": {
101+
"types": "./dist-types/submodules/sso-oidc/index.d.ts",
101102
"module": "./dist-es/submodules/sso-oidc/index.js",
102103
"node": "./dist-cjs/submodules/sso-oidc/index.js",
103104
"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"
106106
},
107107
"./sts": {
108+
"types": "./dist-types/submodules/sts/index.d.ts",
108109
"module": "./dist-es/submodules/sts/index.js",
109110
"node": "./dist-cjs/submodules/sts/index.js",
110111
"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"
113113
}
114114
}
115115
}

packages/polly-request-presigner/src/getSignedUrls.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { PollyClient, SynthesizeSpeechCommand } from "@aws-sdk/client-polly";
2+
import type { AwsCredentialIdentity, Provider } from "@aws-sdk/types";
23
import { formatUrl } from "@aws-sdk/util-format-url";
34
import { HttpRequest } from "@smithy/protocol-http";
45
import { SignatureV4 } from "@smithy/signature-v4";
@@ -8,10 +9,14 @@ export const getSignedUrl = async (
89
command: SynthesizeSpeechCommand,
910
options: any = {}
1011
): Promise<string> => {
12+
const { region, credentials, sha256 } = client.config;
13+
1114
const signer = new SignatureV4({
1215
service: options.service || "polly",
1316
uriEscapePath: options.uriEscapePath || false,
14-
...client.config,
17+
region,
18+
credentials: credentials as Provider<AwsCredentialIdentity>,
19+
sha256,
1520
});
1621

1722
const presignInterceptMiddleware = (next: any, context: any) => async (args: any) => {

packages/types/src/function.spec.ts

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

packages/types/src/function.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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;

packages/types/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export * from "./endpoint";
1313
export * from "./eventStream";
1414
export * from "./extensions";
1515
export * from "./feature-ids";
16+
export * from "./function";
1617
export * from "./http";
1718
export * from "./identity";
1819
export * from "./logger";

0 commit comments

Comments
 (0)