@aws-sdk/client-sso 3.803.0 → 3.804.0
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-types/commands/GetRoleCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountRolesCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountsCommand.d.ts +1 -1
- package/dist-types/commands/LogoutCommand.d.ts +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -3
- package/dist-types/runtimeConfig.browser.d.ts +17 -17
- package/dist-types/runtimeConfig.d.ts +15 -15
- package/dist-types/runtimeConfig.native.d.ts +18 -18
- package/dist-types/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/LogoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +22 -32
- package/dist-types/ts3.4/runtimeConfig.d.ts +19 -26
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +23 -33
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +18 -18
|
@@ -23,7 +23,7 @@ export interface GetRoleCredentialsCommandOutput extends GetRoleCredentialsRespo
|
|
|
23
23
|
}
|
|
24
24
|
declare const GetRoleCredentialsCommand_base: {
|
|
25
25
|
new (input: GetRoleCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: GetRoleCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ListAccountRolesCommandOutput extends ListAccountRolesResponse,
|
|
|
23
23
|
}
|
|
24
24
|
declare const ListAccountRolesCommand_base: {
|
|
25
25
|
new (input: ListAccountRolesCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ListAccountRolesCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccountRolesCommandInput, ListAccountRolesCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface ListAccountsCommandOutput extends ListAccountsResponse, __Metad
|
|
|
23
23
|
}
|
|
24
24
|
declare const ListAccountsCommand_base: {
|
|
25
25
|
new (input: ListAccountsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: ListAccountsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccountsCommandInput, ListAccountsCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -23,7 +23,7 @@ export interface LogoutCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
declare const LogoutCommand_base: {
|
|
25
25
|
new (input: LogoutCommandInput): import("@smithy/smithy-client").CommandImpl<LogoutCommandInput, LogoutCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (input: LogoutCommandInput): import("@smithy/smithy-client").CommandImpl<LogoutCommandInput, LogoutCommandOutput, SSOClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -11,9 +11,7 @@ export interface ClientInputEndpointParameters {
|
|
|
11
11
|
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
|
-
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T &
|
|
15
|
-
defaultSigningName: string;
|
|
16
|
-
};
|
|
14
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
|
|
17
15
|
export declare const commonParams: {
|
|
18
16
|
readonly UseFIPS: {
|
|
19
17
|
readonly type: "builtInParams";
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
10
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
12
|
region: string | import("@smithy/types").Provider<any>;
|
|
13
13
|
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
@@ -20,24 +20,24 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder: (_input:
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder: (input:
|
|
25
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
|
-
profile?: string
|
|
28
|
+
profile?: string;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
30
30
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
32
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
33
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
34
34
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
-
logger?: import("@smithy/types").Logger
|
|
36
|
+
logger?: import("@smithy/types").Logger;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
38
|
-
tls?: boolean
|
|
39
|
-
serviceConfiguredEndpoint?:
|
|
40
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]
|
|
38
|
+
tls?: boolean;
|
|
39
|
+
serviceConfiguredEndpoint?: never;
|
|
40
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
41
41
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
42
42
|
schemeId: string;
|
|
43
43
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -48,10 +48,10 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
48
48
|
signer: import("@smithy/core").NoAuthSigner;
|
|
49
49
|
})[];
|
|
50
50
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
51
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider
|
|
52
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme
|
|
53
|
-
signingEscapePath?: boolean
|
|
54
|
-
systemClockOffset?: number
|
|
55
|
-
signingRegion?: string
|
|
56
|
-
signerConstructor?:
|
|
51
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
52
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
53
|
+
signingEscapePath?: boolean;
|
|
54
|
+
systemClockOffset?: number;
|
|
55
|
+
signingRegion?: string;
|
|
56
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
57
57
|
};
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
@@ -22,22 +22,22 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
24
|
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
base64Encoder: (_input:
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
utf8Encoder: (input:
|
|
27
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
28
28
|
disableHostPrefix: boolean;
|
|
29
29
|
serviceId: string;
|
|
30
|
-
profile?: string
|
|
30
|
+
profile?: string;
|
|
31
31
|
logger: import("@smithy/types").Logger;
|
|
32
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
35
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
-
logger?: import("@smithy/types").Logger
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
39
|
-
tls?: boolean
|
|
40
|
-
serviceConfiguredEndpoint?:
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
serviceConfiguredEndpoint?: never;
|
|
41
41
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
42
42
|
schemeId: string;
|
|
43
43
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -48,10 +48,10 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
48
48
|
signer: import("@smithy/core").NoAuthSigner;
|
|
49
49
|
})[];
|
|
50
50
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
51
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider
|
|
52
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme
|
|
53
|
-
signingEscapePath?: boolean
|
|
54
|
-
systemClockOffset?: number
|
|
55
|
-
signingRegion?: string
|
|
56
|
-
signerConstructor?:
|
|
51
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
52
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
53
|
+
signingEscapePath?: boolean;
|
|
54
|
+
systemClockOffset?: number;
|
|
55
|
+
signingRegion?: string;
|
|
56
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
57
57
|
};
|
|
@@ -7,36 +7,36 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
|
-
cacheMiddleware?: boolean
|
|
10
|
+
cacheMiddleware?: boolean;
|
|
11
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
14
14
|
base64Decoder: import("@smithy/types").Decoder;
|
|
15
|
-
base64Encoder: (_input:
|
|
15
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
16
16
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
-
utf8Encoder: (input:
|
|
17
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
18
18
|
disableHostPrefix: boolean;
|
|
19
19
|
serviceId: string;
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
-
profile?: string
|
|
24
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
23
|
+
profile?: string;
|
|
24
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
25
25
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
27
|
logger: import("@smithy/types").Logger;
|
|
28
28
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
29
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
30
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
31
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
32
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
31
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
32
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
33
33
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
34
34
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
|
-
logger?: import("@smithy/types").Logger
|
|
35
|
+
logger?: import("@smithy/types").Logger;
|
|
36
36
|
}) => import("@smithy/types").EndpointV2;
|
|
37
|
-
tls?: boolean
|
|
38
|
-
serviceConfiguredEndpoint?:
|
|
39
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]
|
|
37
|
+
tls?: boolean;
|
|
38
|
+
serviceConfiguredEndpoint?: never;
|
|
39
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
40
40
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
41
41
|
schemeId: string;
|
|
42
42
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -47,10 +47,10 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
47
47
|
signer: import("@smithy/core").NoAuthSigner;
|
|
48
48
|
})[];
|
|
49
49
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
50
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider
|
|
51
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme
|
|
52
|
-
signingEscapePath?: boolean
|
|
53
|
-
systemClockOffset?: number
|
|
54
|
-
signingRegion?: string
|
|
55
|
-
signerConstructor?:
|
|
50
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
|
+
signingEscapePath?: boolean;
|
|
53
|
+
systemClockOffset?: number;
|
|
54
|
+
signingRegion?: string;
|
|
55
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
56
|
};
|
|
@@ -8,10 +8,10 @@ import { SSOClientConfig } from "./SSOClient";
|
|
|
8
8
|
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
base64Decoder: import("@smithy/types").Decoder;
|
|
11
|
-
base64Encoder: (_input:
|
|
11
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
12
12
|
disableHostPrefix: boolean;
|
|
13
13
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
14
|
-
logger?: import("@smithy/types").Logger
|
|
14
|
+
logger?: import("@smithy/types").Logger;
|
|
15
15
|
}) => import("@smithy/types").EndpointV2;
|
|
16
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
17
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
@@ -28,5 +28,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
28
28
|
serviceId: string;
|
|
29
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
30
30
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
utf8Encoder: (input:
|
|
31
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
32
|
};
|
|
@@ -27,7 +27,7 @@ declare const GetRoleCredentialsCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
|
|
30
|
+
input: GetRoleCredentialsCommandInput
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
GetRoleCredentialsCommandInput,
|
|
33
33
|
GetRoleCredentialsCommandOutput,
|
|
@@ -26,7 +26,7 @@ declare const ListAccountRolesCommand_base: {
|
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
28
|
new (
|
|
29
|
-
|
|
29
|
+
input: ListAccountRolesCommandInput
|
|
30
30
|
): import("@smithy/smithy-client").CommandImpl<
|
|
31
31
|
ListAccountRolesCommandInput,
|
|
32
32
|
ListAccountRolesCommandOutput,
|
|
@@ -18,7 +18,7 @@ declare const LogoutCommand_base: {
|
|
|
18
18
|
ServiceInputTypes,
|
|
19
19
|
ServiceOutputTypes
|
|
20
20
|
>;
|
|
21
|
-
new (
|
|
21
|
+
new (input: LogoutCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
22
22
|
LogoutCommandInput,
|
|
23
23
|
LogoutCommandOutput,
|
|
24
24
|
SSOClientResolvedConfig,
|
|
@@ -21,10 +21,7 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
21
21
|
};
|
|
22
22
|
export declare const resolveClientEndpointParameters: <T>(
|
|
23
23
|
options: T & ClientInputEndpointParameters
|
|
24
|
-
) => T &
|
|
25
|
-
ClientInputEndpointParameters & {
|
|
26
|
-
defaultSigningName: string;
|
|
27
|
-
};
|
|
24
|
+
) => T & ClientResolvedEndpointParameters;
|
|
28
25
|
export declare const commonParams: {
|
|
29
26
|
readonly UseFIPS: {
|
|
30
27
|
readonly type: "builtInParams";
|
|
@@ -7,9 +7,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
defaultUserAgentProvider: (
|
|
10
|
-
config?:
|
|
11
|
-
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
12
|
-
| undefined
|
|
10
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
13
11
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
14
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
15
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -25,23 +23,22 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
25
23
|
cacheMiddleware?: boolean | undefined;
|
|
26
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
25
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder: (_input:
|
|
26
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
29
27
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder: (input:
|
|
28
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
31
29
|
disableHostPrefix: boolean;
|
|
32
30
|
serviceId: string;
|
|
33
|
-
profile?: string
|
|
31
|
+
profile?: string;
|
|
34
32
|
logger: import("@smithy/types").Logger;
|
|
35
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
34
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
35
|
userAgentAppId?:
|
|
38
36
|
| string
|
|
39
|
-
|
|
|
40
|
-
| undefined
|
|
37
|
+
| undefined
|
|
38
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
41
39
|
retryStrategy?:
|
|
42
40
|
| import("@smithy/types").RetryStrategy
|
|
43
|
-
| import("@smithy/types").RetryStrategyV2
|
|
44
|
-
| undefined;
|
|
41
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
45
42
|
endpoint?:
|
|
46
43
|
| ((
|
|
47
44
|
| string
|
|
@@ -62,15 +59,12 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
62
59
|
endpointProvider: (
|
|
63
60
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
64
61
|
context?: {
|
|
65
|
-
logger?: import("@smithy/types").Logger
|
|
62
|
+
logger?: import("@smithy/types").Logger;
|
|
66
63
|
}
|
|
67
64
|
) => import("@smithy/types").EndpointV2;
|
|
68
|
-
tls?: boolean
|
|
69
|
-
serviceConfiguredEndpoint?:
|
|
70
|
-
authSchemePreference?:
|
|
71
|
-
| string[]
|
|
72
|
-
| import("@smithy/types").Provider<string[]>
|
|
73
|
-
| undefined;
|
|
65
|
+
tls?: boolean;
|
|
66
|
+
serviceConfiguredEndpoint?: never;
|
|
67
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
74
68
|
httpAuthSchemes:
|
|
75
69
|
| import("@smithy/types").HttpAuthScheme[]
|
|
76
70
|
| (
|
|
@@ -100,21 +94,17 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
100
94
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
101
95
|
credentials?:
|
|
102
96
|
| import("@smithy/types").AwsCredentialIdentity
|
|
103
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
104
|
-
| undefined;
|
|
97
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
105
98
|
signer?:
|
|
106
99
|
| import("@smithy/types").RequestSigner
|
|
107
100
|
| ((
|
|
108
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
109
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
118
|
-
) => import("@smithy/types").RequestSigner)
|
|
119
|
-
| undefined;
|
|
101
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
102
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
|
+
signingEscapePath?: boolean;
|
|
104
|
+
systemClockOffset?: number;
|
|
105
|
+
signingRegion?: string;
|
|
106
|
+
signerConstructor?: new (
|
|
107
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
109
|
+
) => import("@smithy/types").RequestSigner;
|
|
120
110
|
};
|
|
@@ -8,9 +8,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
8
8
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
defaultUserAgentProvider: (
|
|
11
|
-
config?:
|
|
12
|
-
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
13
|
-
| undefined
|
|
11
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
14
12
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -27,19 +25,18 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
27
25
|
cacheMiddleware?: boolean | undefined;
|
|
28
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder: (_input:
|
|
28
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
31
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder: (input:
|
|
30
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
33
31
|
disableHostPrefix: boolean;
|
|
34
32
|
serviceId: string;
|
|
35
|
-
profile?: string
|
|
33
|
+
profile?: string;
|
|
36
34
|
logger: import("@smithy/types").Logger;
|
|
37
35
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
38
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
39
37
|
retryStrategy?:
|
|
40
38
|
| import("@smithy/types").RetryStrategy
|
|
41
|
-
| import("@smithy/types").RetryStrategyV2
|
|
42
|
-
| undefined;
|
|
39
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
43
40
|
endpoint?:
|
|
44
41
|
| ((
|
|
45
42
|
| string
|
|
@@ -60,11 +57,11 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
60
57
|
endpointProvider: (
|
|
61
58
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
59
|
context?: {
|
|
63
|
-
logger?: import("@smithy/types").Logger
|
|
60
|
+
logger?: import("@smithy/types").Logger;
|
|
64
61
|
}
|
|
65
62
|
) => import("@smithy/types").EndpointV2;
|
|
66
|
-
tls?: boolean
|
|
67
|
-
serviceConfiguredEndpoint?:
|
|
63
|
+
tls?: boolean;
|
|
64
|
+
serviceConfiguredEndpoint?: never;
|
|
68
65
|
httpAuthSchemes:
|
|
69
66
|
| import("@smithy/types").HttpAuthScheme[]
|
|
70
67
|
| (
|
|
@@ -94,21 +91,17 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
94
91
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
95
92
|
credentials?:
|
|
96
93
|
| import("@smithy/types").AwsCredentialIdentity
|
|
97
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
98
|
-
| undefined;
|
|
94
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
99
95
|
signer?:
|
|
100
96
|
| import("@smithy/types").RequestSigner
|
|
101
97
|
| ((
|
|
102
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
103
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
112
|
-
) => import("@smithy/types").RequestSigner)
|
|
113
|
-
| undefined;
|
|
98
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
99
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
100
|
+
signingEscapePath?: boolean;
|
|
101
|
+
systemClockOffset?: number;
|
|
102
|
+
signingRegion?: string;
|
|
103
|
+
signerConstructor?: new (
|
|
104
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
105
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
106
|
+
) => import("@smithy/types").RequestSigner;
|
|
114
107
|
};
|
|
@@ -9,24 +9,22 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
-
cacheMiddleware?: boolean
|
|
12
|
+
cacheMiddleware?: boolean;
|
|
13
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
16
|
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
-
base64Encoder: (_input:
|
|
17
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
18
18
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
-
utf8Encoder: (input:
|
|
19
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
20
|
disableHostPrefix: boolean;
|
|
21
21
|
serviceId: string;
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
profile?: string
|
|
25
|
+
profile?: string;
|
|
26
26
|
defaultUserAgentProvider: (
|
|
27
|
-
config?:
|
|
28
|
-
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
|
-
| undefined
|
|
27
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
30
28
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
29
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
30
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -37,15 +35,14 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
37
35
|
| import("@smithy/types").Provider<
|
|
38
36
|
import("@smithy/smithy-client").DefaultsMode
|
|
39
37
|
>;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
38
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
41
39
|
userAgentAppId?:
|
|
42
40
|
| string
|
|
43
|
-
|
|
|
44
|
-
| undefined
|
|
41
|
+
| undefined
|
|
42
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
45
43
|
retryStrategy?:
|
|
46
44
|
| import("@smithy/types").RetryStrategy
|
|
47
|
-
| import("@smithy/types").RetryStrategyV2
|
|
48
|
-
| undefined;
|
|
45
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
49
46
|
endpoint?:
|
|
50
47
|
| ((
|
|
51
48
|
| string
|
|
@@ -66,15 +63,12 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
66
63
|
endpointProvider: (
|
|
67
64
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
65
|
context?: {
|
|
69
|
-
logger?: import("@smithy/types").Logger
|
|
66
|
+
logger?: import("@smithy/types").Logger;
|
|
70
67
|
}
|
|
71
68
|
) => import("@smithy/types").EndpointV2;
|
|
72
|
-
tls?: boolean
|
|
73
|
-
serviceConfiguredEndpoint?:
|
|
74
|
-
authSchemePreference?:
|
|
75
|
-
| string[]
|
|
76
|
-
| import("@smithy/types").Provider<string[]>
|
|
77
|
-
| undefined;
|
|
69
|
+
tls?: boolean;
|
|
70
|
+
serviceConfiguredEndpoint?: never;
|
|
71
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
78
72
|
httpAuthSchemes:
|
|
79
73
|
| import("@smithy/types").HttpAuthScheme[]
|
|
80
74
|
| (
|
|
@@ -104,21 +98,17 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
104
98
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
105
99
|
credentials?:
|
|
106
100
|
| import("@smithy/types").AwsCredentialIdentity
|
|
107
|
-
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
108
|
-
| undefined;
|
|
101
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
109
102
|
signer?:
|
|
110
103
|
| import("@smithy/types").RequestSigner
|
|
111
104
|
| ((
|
|
112
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
113
|
-
) => Promise<import("@smithy/types").RequestSigner>)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
122
|
-
) => import("@smithy/types").RequestSigner)
|
|
123
|
-
| undefined;
|
|
105
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
106
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
107
|
+
signingEscapePath?: boolean;
|
|
108
|
+
systemClockOffset?: number;
|
|
109
|
+
signingRegion?: string;
|
|
110
|
+
signerConstructor?: new (
|
|
111
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
112
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
113
|
+
) => import("@smithy/types").RequestSigner;
|
|
124
114
|
};
|
|
@@ -5,12 +5,12 @@ import { SSOClientConfig } from "./SSOClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder: (_input:
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (
|
|
11
11
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
12
|
context?: {
|
|
13
|
-
logger?: import("@smithy/types").Logger
|
|
13
|
+
logger?: import("@smithy/types").Logger;
|
|
14
14
|
}
|
|
15
15
|
) => import("@smithy/types").EndpointV2;
|
|
16
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -45,5 +45,5 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
|
45
45
|
serviceId: string;
|
|
46
46
|
urlParser: import("@smithy/types").UrlParser;
|
|
47
47
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
48
|
-
utf8Encoder: (input:
|
|
48
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
49
49
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.804.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
25
|
-
"@aws-sdk/middleware-logger": "3.
|
|
26
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
29
|
-
"@aws-sdk/types": "3.
|
|
30
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.804.0",
|
|
24
|
+
"@aws-sdk/middleware-host-header": "3.804.0",
|
|
25
|
+
"@aws-sdk/middleware-logger": "3.804.0",
|
|
26
|
+
"@aws-sdk/middleware-recursion-detection": "3.804.0",
|
|
27
|
+
"@aws-sdk/middleware-user-agent": "3.804.0",
|
|
28
|
+
"@aws-sdk/region-config-resolver": "3.804.0",
|
|
29
|
+
"@aws-sdk/types": "3.804.0",
|
|
30
|
+
"@aws-sdk/util-endpoints": "3.804.0",
|
|
31
|
+
"@aws-sdk/util-user-agent-browser": "3.804.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-node": "3.804.0",
|
|
33
33
|
"@smithy/config-resolver": "^4.1.0",
|
|
34
|
-
"@smithy/core": "^3.3.
|
|
34
|
+
"@smithy/core": "^3.3.1",
|
|
35
35
|
"@smithy/fetch-http-handler": "^5.0.2",
|
|
36
36
|
"@smithy/hash-node": "^4.0.2",
|
|
37
37
|
"@smithy/invalid-dependency": "^4.0.2",
|
|
38
38
|
"@smithy/middleware-content-length": "^4.0.2",
|
|
39
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
40
|
-
"@smithy/middleware-retry": "^4.1.
|
|
39
|
+
"@smithy/middleware-endpoint": "^4.1.2",
|
|
40
|
+
"@smithy/middleware-retry": "^4.1.3",
|
|
41
41
|
"@smithy/middleware-serde": "^4.0.3",
|
|
42
42
|
"@smithy/middleware-stack": "^4.0.2",
|
|
43
43
|
"@smithy/node-config-provider": "^4.0.2",
|
|
44
44
|
"@smithy/node-http-handler": "^4.0.4",
|
|
45
45
|
"@smithy/protocol-http": "^5.1.0",
|
|
46
|
-
"@smithy/smithy-client": "^4.2.
|
|
46
|
+
"@smithy/smithy-client": "^4.2.2",
|
|
47
47
|
"@smithy/types": "^4.2.0",
|
|
48
48
|
"@smithy/url-parser": "^4.0.2",
|
|
49
49
|
"@smithy/util-base64": "^4.0.0",
|
|
50
50
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
52
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
53
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
52
|
+
"@smithy/util-defaults-mode-browser": "^4.0.10",
|
|
53
|
+
"@smithy/util-defaults-mode-node": "^4.0.10",
|
|
54
54
|
"@smithy/util-endpoints": "^3.0.2",
|
|
55
55
|
"@smithy/util-middleware": "^4.0.2",
|
|
56
56
|
"@smithy/util-retry": "^4.0.3",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
|
-
"typescript": "~5.
|
|
66
|
+
"typescript": "~5.8.3"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|
|
69
69
|
"node": ">=18.0.0"
|