@aws-sdk/nested-clients 3.997.34 → 3.997.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/submodules/cognito-identity/index.js +1 -1
- package/dist-cjs/submodules/signin/index.js +1 -1
- package/dist-cjs/submodules/sso/index.js +1 -1
- package/dist-cjs/submodules/sso-oidc/index.js +1 -1
- package/dist-cjs/submodules/sts/index.js +1 -1
- package/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +2 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -0
- package/dist-types/submodules/signin/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/submodules/signin/runtimeConfig.d.ts +2 -0
- package/dist-types/submodules/signin/runtimeConfig.native.d.ts +2 -0
- package/dist-types/submodules/sso/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/submodules/sso/runtimeConfig.d.ts +2 -0
- package/dist-types/submodules/sso/runtimeConfig.native.d.ts +2 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +2 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -0
- package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/submodules/sts/runtimeConfig.d.ts +2 -0
- package/dist-types/submodules/sts/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +2 -0
- package/package.json +6 -6
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
47
48
|
schemeId: string;
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -40,6 +40,7 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
40
40
|
logger?: import("@smithy/types").Logger;
|
|
41
41
|
}) => import("@smithy/types").EndpointV2;
|
|
42
42
|
tls?: boolean;
|
|
43
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
43
44
|
serviceConfiguredEndpoint?: never;
|
|
44
45
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
45
46
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -58,4 +59,5 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
58
59
|
systemClockOffset?: number;
|
|
59
60
|
signingRegion?: string;
|
|
60
61
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
62
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
61
63
|
};
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -60,4 +61,5 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
60
61
|
systemClockOffset?: number;
|
|
61
62
|
signingRegion?: string;
|
|
62
63
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
64
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
63
65
|
};
|
|
@@ -43,6 +43,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
43
43
|
logger?: import("@smithy/types").Logger;
|
|
44
44
|
}) => import("@smithy/types").EndpointV2;
|
|
45
45
|
tls?: boolean;
|
|
46
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
47
|
serviceConfiguredEndpoint?: never;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
48
49
|
schemeId: string;
|
|
@@ -60,4 +61,5 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
60
61
|
systemClockOffset?: number;
|
|
61
62
|
signingRegion?: string;
|
|
62
63
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
64
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
63
65
|
};
|
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
47
48
|
schemeId: string;
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -40,6 +40,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
40
40
|
logger?: import("@smithy/types").Logger;
|
|
41
41
|
}) => import("@smithy/types").EndpointV2;
|
|
42
42
|
tls?: boolean;
|
|
43
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
43
44
|
serviceConfiguredEndpoint?: never;
|
|
44
45
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
45
46
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -58,4 +59,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
58
59
|
systemClockOffset?: number;
|
|
59
60
|
signingRegion?: string;
|
|
60
61
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
62
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
61
63
|
};
|
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
47
48
|
schemeId: string;
|
|
@@ -59,4 +60,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
};
|
|
@@ -40,6 +40,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
40
40
|
logger?: import("@smithy/types").Logger;
|
|
41
41
|
}) => import("@smithy/types").EndpointV2;
|
|
42
42
|
tls?: boolean;
|
|
43
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
43
44
|
serviceConfiguredEndpoint?: never;
|
|
44
45
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
45
46
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -58,4 +59,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
58
59
|
systemClockOffset?: number;
|
|
59
60
|
signingRegion?: string;
|
|
60
61
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
62
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
61
63
|
};
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -60,6 +61,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
60
61
|
systemClockOffset?: number;
|
|
61
62
|
signingRegion?: string;
|
|
62
63
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
64
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
63
65
|
sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
|
|
64
66
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
65
67
|
};
|
|
@@ -56,6 +56,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
56
56
|
logger?: import("@smithy/types").Logger;
|
|
57
57
|
}) => import("@smithy/types").EndpointV2;
|
|
58
58
|
tls?: boolean;
|
|
59
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
59
60
|
serviceConfiguredEndpoint?: never;
|
|
60
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
61
62
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -64,5 +65,6 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
64
65
|
systemClockOffset?: number;
|
|
65
66
|
signingRegion?: string;
|
|
66
67
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
68
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
67
69
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
68
70
|
};
|
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
@@ -59,6 +60,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
59
60
|
systemClockOffset?: number;
|
|
60
61
|
signingRegion?: string;
|
|
61
62
|
signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
63
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
64
|
sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
|
|
63
65
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
64
66
|
};
|
|
@@ -68,6 +68,7 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
68
68
|
},
|
|
69
69
|
) => import("@smithy/types").EndpointV2;
|
|
70
70
|
tls?: boolean;
|
|
71
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
71
72
|
serviceConfiguredEndpoint?: never;
|
|
72
73
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
73
74
|
httpAuthSchemes:
|
|
@@ -108,4 +109,5 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
108
109
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
109
110
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
110
111
|
) => import("@smithy/types").RequestSigner;
|
|
112
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
111
113
|
};
|
|
@@ -67,6 +67,7 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
67
67
|
},
|
|
68
68
|
) => import("@smithy/types").EndpointV2;
|
|
69
69
|
tls?: boolean;
|
|
70
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
70
71
|
serviceConfiguredEndpoint?: never;
|
|
71
72
|
httpAuthSchemes:
|
|
72
73
|
| import("@smithy/types").HttpAuthScheme[]
|
|
@@ -106,4 +107,5 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
106
107
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
107
108
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
108
109
|
) => import("@smithy/types").RequestSigner;
|
|
110
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
109
111
|
};
|
|
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
72
72
|
},
|
|
73
73
|
) => import("@smithy/types").EndpointV2;
|
|
74
74
|
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
76
|
serviceConfiguredEndpoint?: never;
|
|
76
77
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
77
78
|
httpAuthSchemes:
|
|
@@ -112,4 +113,5 @@ export declare const getRuntimeConfig: (config: CognitoIdentityClientConfig) =>
|
|
|
112
113
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
113
114
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
114
115
|
) => import("@smithy/types").RequestSigner;
|
|
116
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
115
117
|
};
|
|
@@ -71,6 +71,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
71
71
|
},
|
|
72
72
|
) => import("@smithy/types").EndpointV2;
|
|
73
73
|
tls?: boolean;
|
|
74
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
74
75
|
serviceConfiguredEndpoint?: never;
|
|
75
76
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
76
77
|
httpAuthSchemes:
|
|
@@ -111,4 +112,5 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
111
112
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
112
113
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
113
114
|
) => import("@smithy/types").RequestSigner;
|
|
115
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
114
116
|
};
|
|
@@ -68,6 +68,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
68
68
|
},
|
|
69
69
|
) => import("@smithy/types").EndpointV2;
|
|
70
70
|
tls?: boolean;
|
|
71
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
71
72
|
serviceConfiguredEndpoint?: never;
|
|
72
73
|
httpAuthSchemes:
|
|
73
74
|
| import("@smithy/types").HttpAuthScheme[]
|
|
@@ -107,4 +108,5 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
107
108
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
109
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
110
|
) => import("@smithy/types").RequestSigner;
|
|
111
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
110
112
|
};
|
|
@@ -75,6 +75,7 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
75
75
|
},
|
|
76
76
|
) => import("@smithy/types").EndpointV2;
|
|
77
77
|
tls?: boolean;
|
|
78
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
78
79
|
serviceConfiguredEndpoint?: never;
|
|
79
80
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
80
81
|
httpAuthSchemes:
|
|
@@ -115,4 +116,5 @@ export declare const getRuntimeConfig: (config: SigninClientConfig) => {
|
|
|
115
116
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
116
117
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
117
118
|
) => import("@smithy/types").RequestSigner;
|
|
119
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
118
120
|
};
|
|
@@ -68,6 +68,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
68
68
|
},
|
|
69
69
|
) => import("@smithy/types").EndpointV2;
|
|
70
70
|
tls?: boolean;
|
|
71
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
71
72
|
serviceConfiguredEndpoint?: never;
|
|
72
73
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
73
74
|
httpAuthSchemes:
|
|
@@ -108,4 +109,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
108
109
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
109
110
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
110
111
|
) => import("@smithy/types").RequestSigner;
|
|
112
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
111
113
|
};
|
|
@@ -67,6 +67,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
67
67
|
},
|
|
68
68
|
) => import("@smithy/types").EndpointV2;
|
|
69
69
|
tls?: boolean;
|
|
70
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
70
71
|
serviceConfiguredEndpoint?: never;
|
|
71
72
|
httpAuthSchemes:
|
|
72
73
|
| import("@smithy/types").HttpAuthScheme[]
|
|
@@ -106,4 +107,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
106
107
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
107
108
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
108
109
|
) => import("@smithy/types").RequestSigner;
|
|
110
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
109
111
|
};
|
|
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
72
72
|
},
|
|
73
73
|
) => import("@smithy/types").EndpointV2;
|
|
74
74
|
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
76
|
serviceConfiguredEndpoint?: never;
|
|
76
77
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
77
78
|
httpAuthSchemes:
|
|
@@ -112,4 +113,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
112
113
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
113
114
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
114
115
|
) => import("@smithy/types").RequestSigner;
|
|
116
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
115
117
|
};
|
|
@@ -68,6 +68,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
68
68
|
},
|
|
69
69
|
) => import("@smithy/types").EndpointV2;
|
|
70
70
|
tls?: boolean;
|
|
71
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
71
72
|
serviceConfiguredEndpoint?: never;
|
|
72
73
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
73
74
|
httpAuthSchemes:
|
|
@@ -108,4 +109,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
108
109
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
109
110
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
110
111
|
) => import("@smithy/types").RequestSigner;
|
|
112
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
111
113
|
};
|
|
@@ -67,6 +67,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
67
67
|
},
|
|
68
68
|
) => import("@smithy/types").EndpointV2;
|
|
69
69
|
tls?: boolean;
|
|
70
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
70
71
|
serviceConfiguredEndpoint?: never;
|
|
71
72
|
httpAuthSchemes:
|
|
72
73
|
| import("@smithy/types").HttpAuthScheme[]
|
|
@@ -106,4 +107,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
106
107
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
107
108
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
108
109
|
) => import("@smithy/types").RequestSigner;
|
|
110
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
109
111
|
};
|
|
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
72
72
|
},
|
|
73
73
|
) => import("@smithy/types").EndpointV2;
|
|
74
74
|
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
76
|
serviceConfiguredEndpoint?: never;
|
|
76
77
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
77
78
|
httpAuthSchemes:
|
|
@@ -112,4 +113,5 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
112
113
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
113
114
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
114
115
|
) => import("@smithy/types").RequestSigner;
|
|
116
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
115
117
|
};
|
|
@@ -71,6 +71,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
71
71
|
},
|
|
72
72
|
) => import("@smithy/types").EndpointV2;
|
|
73
73
|
tls?: boolean;
|
|
74
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
74
75
|
serviceConfiguredEndpoint?: never;
|
|
75
76
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
76
77
|
httpAuthSchemes:
|
|
@@ -113,6 +114,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
113
114
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
114
115
|
) => import("@smithy/types").RequestSigner)
|
|
115
116
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
117
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
116
118
|
sigv4aSigningRegionSet?:
|
|
117
119
|
| string[]
|
|
118
120
|
| undefined
|
|
@@ -94,6 +94,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
94
94
|
},
|
|
95
95
|
) => import("@smithy/types").EndpointV2;
|
|
96
96
|
tls?: boolean;
|
|
97
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
97
98
|
serviceConfiguredEndpoint?: never;
|
|
98
99
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").STSHttpAuthSchemeProvider;
|
|
99
100
|
credentials?:
|
|
@@ -113,5 +114,6 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
113
114
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
114
115
|
) => import("@smithy/types").RequestSigner)
|
|
115
116
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
117
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
116
118
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
117
119
|
};
|
|
@@ -75,6 +75,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
75
75
|
},
|
|
76
76
|
) => import("@smithy/types").EndpointV2;
|
|
77
77
|
tls?: boolean;
|
|
78
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
78
79
|
serviceConfiguredEndpoint?: never;
|
|
79
80
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
80
81
|
httpAuthSchemes:
|
|
@@ -117,6 +118,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
|
117
118
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
118
119
|
) => import("@smithy/types").RequestSigner)
|
|
119
120
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion;
|
|
121
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
120
122
|
sigv4aSigningRegionSet?:
|
|
121
123
|
| string[]
|
|
122
124
|
| undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
|
3
|
-
"version": "3.997.
|
|
3
|
+
"version": "3.997.36",
|
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/nested-clients",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -100,12 +100,12 @@
|
|
|
100
100
|
"test:watch": "yarn g:vitest watch"
|
|
101
101
|
},
|
|
102
102
|
"dependencies": {
|
|
103
|
-
"@aws-sdk/core": "^3.
|
|
104
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
103
|
+
"@aws-sdk/core": "^3.977.1",
|
|
104
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.42",
|
|
105
105
|
"@aws-sdk/types": "^3.974.2",
|
|
106
|
-
"@smithy/core": "^3.29.
|
|
107
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
108
|
-
"@smithy/node-http-handler": "^4.9.
|
|
106
|
+
"@smithy/core": "^3.29.8",
|
|
107
|
+
"@smithy/fetch-http-handler": "^5.6.10",
|
|
108
|
+
"@smithy/node-http-handler": "^4.9.10",
|
|
109
109
|
"@smithy/types": "^4.16.1",
|
|
110
110
|
"tslib": "^2.6.2"
|
|
111
111
|
},
|