@aws-sdk/client-sso-oidc 3.1109.0 → 3.1111.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-cjs/index.js +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +43 -43
- package/dist-types/runtimeConfig.d.ts +43 -43
- package/dist-types/runtimeConfig.native.d.ts +42 -42
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -71
- package/dist-types/ts3.4/runtimeConfig.d.ts +70 -70
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -75
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -4,47 +4,31 @@ import type { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
[setting: string]: unknown;
|
|
24
|
-
};
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
9
|
+
tls?: boolean;
|
|
10
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
11
|
+
serviceConfiguredEndpoint?: never;
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
15
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
16
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
17
|
+
signingEscapePath?: boolean;
|
|
18
|
+
systemClockOffset?: number;
|
|
19
|
+
signingRegion?: string;
|
|
20
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
21
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
25
23
|
apiVersion: string;
|
|
26
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
28
24
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
25
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
30
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
26
|
disableHostPrefix: boolean;
|
|
33
|
-
|
|
34
|
-
profile?: string;
|
|
35
|
-
logger: import("@smithy/types").Logger;
|
|
36
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
39
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
40
|
-
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;
|
|
41
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
42
28
|
logger?: import("@smithy/types").Logger;
|
|
43
29
|
}) => import("@smithy/types").EndpointV2;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
serviceConfiguredEndpoint?: never;
|
|
47
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
48
32
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
49
33
|
schemeId: string;
|
|
50
34
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -54,12 +38,28 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
54
38
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>);
|
|
55
39
|
signer: import("@smithy/core").NoAuthSigner;
|
|
56
40
|
})[];
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
41
|
+
logger: import("@smithy/types").Logger;
|
|
42
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
43
|
+
protocolSettings: {
|
|
44
|
+
[setting: string]: unknown;
|
|
45
|
+
defaultNamespace?: string;
|
|
46
|
+
};
|
|
47
|
+
serviceId: string;
|
|
48
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
49
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
50
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
51
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
52
|
+
profile?: string;
|
|
53
|
+
runtime: string;
|
|
54
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
55
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
56
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
57
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
58
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
59
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
60
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
61
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
62
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
63
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
64
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
65
65
|
};
|
|
@@ -4,47 +4,29 @@ import type { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
23
|
-
protocolSettings: {
|
|
24
|
-
defaultNamespace?: string;
|
|
25
|
-
[setting: string]: unknown;
|
|
26
|
-
};
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
9
|
+
tls?: boolean;
|
|
10
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
11
|
+
serviceConfiguredEndpoint?: never;
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
21
|
apiVersion: string;
|
|
28
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
29
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
30
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
23
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
24
|
disableHostPrefix: boolean;
|
|
35
|
-
|
|
36
|
-
profile?: string;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
41
|
-
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;
|
|
42
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
26
|
logger?: import("@smithy/types").Logger;
|
|
44
27
|
}) => import("@smithy/types").EndpointV2;
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
serviceConfiguredEndpoint?: never;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
48
30
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
49
31
|
schemeId: string;
|
|
50
32
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -54,12 +36,30 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
54
36
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>);
|
|
55
37
|
signer: import("@smithy/core").NoAuthSigner;
|
|
56
38
|
})[];
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
39
|
+
logger: import("@smithy/types").Logger;
|
|
40
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
41
|
+
protocolSettings: {
|
|
42
|
+
[setting: string]: unknown;
|
|
43
|
+
defaultNamespace?: string;
|
|
44
|
+
};
|
|
45
|
+
serviceId: string;
|
|
46
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
47
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
48
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
49
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
50
|
+
runtime: string;
|
|
51
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
52
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
53
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
54
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
55
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
56
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
57
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
58
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
59
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
60
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
61
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
62
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
63
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
64
|
+
profile?: string;
|
|
65
65
|
};
|
|
@@ -3,47 +3,31 @@ import type { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
8
|
+
tls?: boolean;
|
|
9
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
10
|
+
serviceConfiguredEndpoint?: never;
|
|
11
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
12
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
14
22
|
apiVersion: string;
|
|
15
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
16
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
20
24
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
25
|
disableHostPrefix: boolean;
|
|
24
|
-
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
-
profile?: string;
|
|
29
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
31
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
-
logger: import("@smithy/types").Logger;
|
|
34
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
-
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
36
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
39
|
-
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;
|
|
40
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
27
|
logger?: import("@smithy/types").Logger;
|
|
42
28
|
}) => import("@smithy/types").EndpointV2;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
serviceConfiguredEndpoint?: never;
|
|
46
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
47
31
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[] | ({
|
|
48
32
|
schemeId: string;
|
|
49
33
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
@@ -53,12 +37,28 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
53
37
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | (() => Promise<{}>);
|
|
54
38
|
signer: import("@smithy/core").NoAuthSigner;
|
|
55
39
|
})[];
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
40
|
+
logger: import("@smithy/types").Logger;
|
|
41
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
42
|
+
protocolSettings: {
|
|
43
|
+
[setting: string]: unknown;
|
|
44
|
+
defaultNamespace?: string;
|
|
45
|
+
};
|
|
46
|
+
serviceId: string;
|
|
47
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
48
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
49
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
50
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
51
|
+
profile?: string;
|
|
52
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
53
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
54
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
55
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
56
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
57
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
58
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
59
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
60
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
61
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
62
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
63
|
+
runtime: string;
|
|
64
64
|
};
|
|
@@ -11,7 +11,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
11
11
|
base64Decoder: import("@smithy/types").Decoder;
|
|
12
12
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
13
13
|
disableHostPrefix: boolean;
|
|
14
|
-
endpointProvider: (
|
|
14
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
15
15
|
logger?: import("@smithy/types").Logger;
|
|
16
16
|
}) => import("@smithy/types").EndpointV2;
|
|
17
17
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -26,7 +26,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
26
26
|
signer: NoAuthSigner;
|
|
27
27
|
})[];
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
|
-
protocol: import("@smithy/types")
|
|
29
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
30
30
|
protocolSettings: {
|
|
31
31
|
[setting: string]: unknown;
|
|
32
32
|
defaultNamespace?: string;
|
|
@@ -1,79 +1,59 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
-
defaultUserAgentProvider: (
|
|
13
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
14
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
17
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
18
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
-
streamCollector: (
|
|
20
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
21
|
-
) => Promise<Uint8Array>;
|
|
22
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
cacheMiddleware?: boolean | undefined;
|
|
27
|
-
protocol:
|
|
28
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
29
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
30
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
31
|
-
protocolSettings: {
|
|
32
|
-
defaultNamespace?: string;
|
|
33
|
-
[setting: string]: unknown;
|
|
34
|
-
};
|
|
35
|
-
apiVersion: string;
|
|
36
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
37
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
38
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
39
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
40
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
42
|
-
disableHostPrefix: boolean;
|
|
43
|
-
serviceId: string;
|
|
44
|
-
profile?: string;
|
|
45
|
-
logger: import("@smithy/types").Logger;
|
|
46
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
47
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
50
5
|
endpoint?:
|
|
51
6
|
| ((
|
|
52
7
|
| string
|
|
53
8
|
| import("@smithy/types").Endpoint
|
|
54
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
9
|
| import("@smithy/types").EndpointV2
|
|
10
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
11
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
57
12
|
) &
|
|
58
13
|
(
|
|
59
14
|
| string
|
|
60
|
-
| import("@smithy/types").Provider<string>
|
|
61
15
|
| import("@smithy/types").Endpoint
|
|
62
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
63
16
|
| import("@smithy/types").EndpointV2
|
|
17
|
+
| import("@smithy/types").Provider<string>
|
|
18
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
19
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
65
20
|
))
|
|
66
21
|
| undefined;
|
|
22
|
+
tls?: boolean;
|
|
23
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
24
|
+
serviceConfiguredEndpoint?: never;
|
|
25
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
26
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
27
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
28
|
+
credentials?:
|
|
29
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
30
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
31
|
+
signer?:
|
|
32
|
+
| import("@smithy/types").RequestSigner
|
|
33
|
+
| ((
|
|
34
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
35
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
36
|
+
signingEscapePath?: boolean;
|
|
37
|
+
systemClockOffset?: number;
|
|
38
|
+
signingRegion?: string;
|
|
39
|
+
signerConstructor?: new (
|
|
40
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
41
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
42
|
+
) => import("@smithy/types").RequestSigner;
|
|
43
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
44
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
45
|
+
apiVersion: string;
|
|
46
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
47
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
48
|
+
disableHostPrefix: boolean;
|
|
67
49
|
endpointProvider: (
|
|
68
|
-
|
|
50
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
69
51
|
context?: {
|
|
70
52
|
logger?: import("@smithy/types").Logger;
|
|
71
53
|
},
|
|
72
54
|
) => import("@smithy/types").EndpointV2;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
serviceConfiguredEndpoint?: never;
|
|
76
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
55
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
77
57
|
httpAuthSchemes:
|
|
78
58
|
| import("@smithy/types").HttpAuthScheme[]
|
|
79
59
|
| (
|
|
@@ -96,21 +76,39 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
96
76
|
signer: import("@smithy/core").NoAuthSigner;
|
|
97
77
|
}
|
|
98
78
|
)[];
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
| import("@smithy/types")
|
|
102
|
-
| import("@smithy/types")
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
79
|
+
logger: import("@smithy/types").Logger;
|
|
80
|
+
protocol:
|
|
81
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
82
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
83
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
84
|
+
protocolSettings: {
|
|
85
|
+
[setting: string]: unknown;
|
|
86
|
+
defaultNamespace?: string;
|
|
87
|
+
};
|
|
88
|
+
serviceId: string;
|
|
89
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
90
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
91
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
92
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
93
|
+
profile?: string;
|
|
94
|
+
runtime: string;
|
|
95
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
96
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
97
|
+
>;
|
|
98
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
99
|
+
credentialDefaultProvider:
|
|
100
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
101
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
102
|
+
defaultUserAgentProvider: (
|
|
103
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
104
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
105
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
106
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
107
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
108
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
109
|
+
streamCollector: (
|
|
110
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
111
|
+
) => Promise<Uint8Array>;
|
|
112
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
113
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
116
114
|
};
|
|
@@ -1,79 +1,57 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider:
|
|
11
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
-
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
|
-
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
-
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
|
-
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
21
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
streamCollector: (
|
|
23
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
24
|
-
) => Promise<Uint8Array>;
|
|
25
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
-
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
28
|
-
cacheMiddleware?: boolean | undefined;
|
|
29
|
-
protocol:
|
|
30
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
31
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
32
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
-
protocolSettings: {
|
|
34
|
-
defaultNamespace?: string;
|
|
35
|
-
[setting: string]: unknown;
|
|
36
|
-
};
|
|
37
|
-
apiVersion: string;
|
|
38
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
42
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
-
disableHostPrefix: boolean;
|
|
45
|
-
serviceId: string;
|
|
46
|
-
profile?: string;
|
|
47
|
-
logger: import("@smithy/types").Logger;
|
|
48
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
51
5
|
endpoint?:
|
|
52
6
|
| ((
|
|
53
7
|
| string
|
|
54
8
|
| import("@smithy/types").Endpoint
|
|
55
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
9
|
| import("@smithy/types").EndpointV2
|
|
10
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
57
11
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
58
12
|
) &
|
|
59
13
|
(
|
|
60
14
|
| string
|
|
61
|
-
| import("@smithy/types").Provider<string>
|
|
62
15
|
| import("@smithy/types").Endpoint
|
|
63
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
16
|
| import("@smithy/types").EndpointV2
|
|
17
|
+
| import("@smithy/types").Provider<string>
|
|
18
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
65
19
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
20
|
))
|
|
67
21
|
| undefined;
|
|
22
|
+
tls?: boolean;
|
|
23
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
24
|
+
serviceConfiguredEndpoint?: never;
|
|
25
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
26
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
27
|
+
credentials?:
|
|
28
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
29
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
30
|
+
signer?:
|
|
31
|
+
| import("@smithy/types").RequestSigner
|
|
32
|
+
| ((
|
|
33
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
34
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
35
|
+
signingEscapePath?: boolean;
|
|
36
|
+
systemClockOffset?: number;
|
|
37
|
+
signingRegion?: string;
|
|
38
|
+
signerConstructor?: new (
|
|
39
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
40
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
41
|
+
) => import("@smithy/types").RequestSigner;
|
|
42
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
43
|
+
apiVersion: string;
|
|
44
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
68
47
|
endpointProvider: (
|
|
69
|
-
|
|
48
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
70
49
|
context?: {
|
|
71
50
|
logger?: import("@smithy/types").Logger;
|
|
72
51
|
},
|
|
73
52
|
) => import("@smithy/types").EndpointV2;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
serviceConfiguredEndpoint?: never;
|
|
53
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
77
55
|
httpAuthSchemes:
|
|
78
56
|
| import("@smithy/types").HttpAuthScheme[]
|
|
79
57
|
| (
|
|
@@ -96,21 +74,43 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
96
74
|
signer: import("@smithy/core").NoAuthSigner;
|
|
97
75
|
}
|
|
98
76
|
)[];
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
| import("@smithy/types")
|
|
102
|
-
| import("@smithy/types")
|
|
103
|
-
|
|
104
|
-
|
|
77
|
+
logger: import("@smithy/types").Logger;
|
|
78
|
+
protocol:
|
|
79
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
80
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
81
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
82
|
+
protocolSettings: {
|
|
83
|
+
[setting: string]: unknown;
|
|
84
|
+
defaultNamespace?: string;
|
|
85
|
+
};
|
|
86
|
+
serviceId: string;
|
|
87
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
88
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
89
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
90
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
91
|
+
runtime: string;
|
|
92
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
93
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
94
|
+
>;
|
|
95
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
96
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
97
|
+
credentialDefaultProvider:
|
|
105
98
|
| ((
|
|
106
|
-
|
|
107
|
-
) =>
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
99
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
100
|
+
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
|
|
101
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
102
|
+
defaultUserAgentProvider: (
|
|
103
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
104
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
105
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
106
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
107
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
108
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
109
|
+
streamCollector: (
|
|
110
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
111
|
+
) => Promise<Uint8Array>;
|
|
112
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
113
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
114
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
115
|
+
profile?: string;
|
|
116
116
|
};
|
|
@@ -1,83 +1,58 @@
|
|
|
1
1
|
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
3
|
-
runtime: string;
|
|
4
|
-
requestHandler:
|
|
5
|
-
| import("@smithy/types").NodeHttpHandlerOptions
|
|
6
|
-
| import("@smithy/types").FetchHttpHandlerOptions
|
|
7
|
-
| Record<string, unknown>
|
|
8
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
9
|
-
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
10
3
|
cacheMiddleware?: boolean;
|
|
11
|
-
protocol:
|
|
12
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
13
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
14
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
15
|
-
protocolSettings: {
|
|
16
|
-
defaultNamespace?: string;
|
|
17
|
-
[setting: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
apiVersion: string;
|
|
20
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
-
streamCollector: (
|
|
24
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
25
|
-
) => Promise<Uint8Array>;
|
|
26
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
-
disableHostPrefix: boolean;
|
|
31
|
-
serviceId: string;
|
|
32
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
-
profile?: string;
|
|
38
|
-
defaultUserAgentProvider: (
|
|
39
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
40
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
-
credentialDefaultProvider:
|
|
42
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
43
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
44
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
45
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
46
|
-
logger: import("@smithy/types").Logger;
|
|
47
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
|
-
defaultsMode:
|
|
49
|
-
| import("@smithy/core/client").DefaultsMode
|
|
50
|
-
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
51
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
54
4
|
endpoint?:
|
|
55
5
|
| ((
|
|
56
6
|
| string
|
|
57
7
|
| import("@smithy/types").Endpoint
|
|
58
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
8
|
| import("@smithy/types").EndpointV2
|
|
9
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
10
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
11
|
) &
|
|
62
12
|
(
|
|
63
13
|
| string
|
|
64
|
-
| import("@smithy/types").Provider<string>
|
|
65
14
|
| import("@smithy/types").Endpoint
|
|
66
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
15
|
| import("@smithy/types").EndpointV2
|
|
16
|
+
| import("@smithy/types").Provider<string>
|
|
17
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
18
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
19
|
))
|
|
70
20
|
| undefined;
|
|
21
|
+
tls?: boolean;
|
|
22
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
23
|
+
serviceConfiguredEndpoint?: never;
|
|
24
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
25
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
26
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
27
|
+
credentials?:
|
|
28
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
29
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
30
|
+
signer?:
|
|
31
|
+
| import("@smithy/types").RequestSigner
|
|
32
|
+
| ((
|
|
33
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
34
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
35
|
+
signingEscapePath?: boolean;
|
|
36
|
+
systemClockOffset?: number;
|
|
37
|
+
signingRegion?: string;
|
|
38
|
+
signerConstructor?: new (
|
|
39
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
40
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
41
|
+
) => import("@smithy/types").RequestSigner;
|
|
42
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
|
+
apiVersion: string;
|
|
45
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
46
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
47
|
+
disableHostPrefix: boolean;
|
|
71
48
|
endpointProvider: (
|
|
72
|
-
|
|
49
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
73
50
|
context?: {
|
|
74
51
|
logger?: import("@smithy/types").Logger;
|
|
75
52
|
},
|
|
76
53
|
) => import("@smithy/types").EndpointV2;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
serviceConfiguredEndpoint?: never;
|
|
80
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
54
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
81
56
|
httpAuthSchemes:
|
|
82
57
|
| import("@smithy/types").HttpAuthScheme[]
|
|
83
58
|
| (
|
|
@@ -100,21 +75,44 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
100
75
|
signer: import("@smithy/core").NoAuthSigner;
|
|
101
76
|
}
|
|
102
77
|
)[];
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
| import("@smithy/types")
|
|
106
|
-
| import("@smithy/types")
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
78
|
+
logger: import("@smithy/types").Logger;
|
|
79
|
+
protocol:
|
|
80
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
81
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
82
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
83
|
+
protocolSettings: {
|
|
84
|
+
[setting: string]: unknown;
|
|
85
|
+
defaultNamespace?: string;
|
|
86
|
+
};
|
|
87
|
+
serviceId: string;
|
|
88
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
89
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
90
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
91
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
92
|
+
profile?: string;
|
|
93
|
+
defaultsMode:
|
|
94
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
|
|
95
|
+
| import("@smithy/core/client").DefaultsMode;
|
|
96
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
97
|
+
credentialDefaultProvider:
|
|
98
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
99
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
100
|
+
defaultUserAgentProvider: (
|
|
101
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
102
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
103
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
104
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
105
|
+
requestHandler:
|
|
106
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler
|
|
107
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
108
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
109
|
+
| Record<string, unknown>
|
|
110
|
+
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
111
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
112
|
+
streamCollector: (
|
|
113
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
114
|
+
) => Promise<Uint8Array>;
|
|
115
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
116
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
117
|
+
runtime: string;
|
|
120
118
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
11
|
endpointProvider: (
|
|
12
|
-
|
|
12
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
13
13
|
context?: {
|
|
14
14
|
logger?: import("@smithy/types").Logger;
|
|
15
15
|
},
|
|
@@ -40,8 +40,8 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
40
40
|
)[];
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
protocol:
|
|
43
|
-
| import("@smithy/types")
|
|
44
|
-
| import("@smithy/types")
|
|
43
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
44
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
45
45
|
| typeof AwsRestJsonProtocol;
|
|
46
46
|
protocolSettings: {
|
|
47
47
|
[setting: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso-oidc",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1111.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sso-oidc",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@aws-sdk/core": "^3.977.
|
|
54
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
55
|
-
"@aws-sdk/types": "^3.974.
|
|
53
|
+
"@aws-sdk/core": "^3.977.8",
|
|
54
|
+
"@aws-sdk/credential-provider-node": "^3.972.80",
|
|
55
|
+
"@aws-sdk/types": "^3.974.4",
|
|
56
56
|
"@smithy/core": "^3.31.1",
|
|
57
57
|
"@smithy/fetch-http-handler": "^5.6.13",
|
|
58
58
|
"@smithy/node-http-handler": "^4.9.13",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"premove": "4.0.0",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~7.0.2",
|
|
70
70
|
"vitest": "^4.0.17"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|