@aws-sdk/client-sso-oidc 3.588.0 → 3.592.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 +0 -4
- package/dist-types/SSOOIDCClient.d.ts +4 -4
- package/dist-types/commands/CreateTokenCommand.d.ts +2 -1
- package/dist-types/commands/CreateTokenWithIAMCommand.d.ts +2 -1
- package/dist-types/commands/RegisterClientCommand.d.ts +2 -1
- package/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/SSOOIDCServiceException.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SSOOIDCClient.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +2 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -202,7 +202,6 @@ var SSOOIDCClient = _SSOOIDCClient;
|
|
|
202
202
|
|
|
203
203
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
204
204
|
|
|
205
|
-
var import_types = require("@smithy/types");
|
|
206
205
|
|
|
207
206
|
// src/models/models_0.ts
|
|
208
207
|
|
|
@@ -975,7 +974,6 @@ var CreateTokenCommand = _CreateTokenCommand;
|
|
|
975
974
|
|
|
976
975
|
|
|
977
976
|
|
|
978
|
-
|
|
979
977
|
var _CreateTokenWithIAMCommand = class _CreateTokenWithIAMCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
980
978
|
...commonParams
|
|
981
979
|
}).m(function(Command, cs, config, o) {
|
|
@@ -992,7 +990,6 @@ var CreateTokenWithIAMCommand = _CreateTokenWithIAMCommand;
|
|
|
992
990
|
|
|
993
991
|
|
|
994
992
|
|
|
995
|
-
|
|
996
993
|
var _RegisterClientCommand = class _RegisterClientCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
997
994
|
...commonParams
|
|
998
995
|
}).m(function(Command, cs, config, o) {
|
|
@@ -1009,7 +1006,6 @@ var RegisterClientCommand = _RegisterClientCommand;
|
|
|
1009
1006
|
|
|
1010
1007
|
|
|
1011
1008
|
|
|
1012
|
-
|
|
1013
1009
|
var _StartDeviceAuthorizationCommand = class _StartDeviceAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1014
1010
|
...commonParams
|
|
1015
1011
|
}).m(function(Command, cs, config, o) {
|
|
@@ -94,15 +94,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
94
94
|
* Enables FIPS compatible endpoints.
|
|
95
95
|
*/
|
|
96
96
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
97
|
+
/**
|
|
98
|
+
* The AWS region to which this client will send requests
|
|
99
|
+
*/
|
|
100
|
+
region?: string | __Provider<string>;
|
|
97
101
|
/**
|
|
98
102
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
99
103
|
* @internal
|
|
100
104
|
*/
|
|
101
105
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
102
|
-
/**
|
|
103
|
-
* The AWS region to which this client will send requests
|
|
104
|
-
*/
|
|
105
|
-
region?: string | __Provider<string>;
|
|
106
106
|
/**
|
|
107
107
|
* Default credentials provider; Not available in browser runtime.
|
|
108
108
|
* @deprecated
|
package/dist-types/index.d.ts
CHANGED
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
export * from "./SSOOIDCClient";
|
|
44
44
|
export * from "./SSOOIDC";
|
|
45
45
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
46
|
-
export { RuntimeExtension } from "./runtimeExtensions";
|
|
47
|
-
export { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
|
|
46
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
47
|
+
export type { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
|
|
48
48
|
export * from "./commands";
|
|
49
49
|
export * from "./models";
|
|
50
50
|
export { SSOOIDCServiceException } from "./models/SSOOIDCServiceException";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
-
export {
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
6
|
*
|
|
@@ -18,8 +18,8 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
-
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
22
21
|
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
24
24
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -94,8 +94,8 @@ export interface ClientDefaults
|
|
|
94
94
|
serviceId?: string;
|
|
95
95
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
96
96
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
97
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
98
97
|
region?: string | __Provider<string>;
|
|
98
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
99
99
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
100
100
|
maxAttempts?: number | __Provider<number>;
|
|
101
101
|
retryMode?: string | __Provider<string>;
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
SSOOIDCClientResolvedConfig,
|
|
8
8
|
} from "../SSOOIDCClient";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface CreateTokenCommandInput extends CreateTokenRequest {}
|
|
11
12
|
export interface CreateTokenCommandOutput
|
|
12
13
|
extends CreateTokenResponse,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ServiceOutputTypes,
|
|
10
10
|
SSOOIDCClientResolvedConfig,
|
|
11
11
|
} from "../SSOOIDCClient";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface CreateTokenWithIAMCommandInput
|
|
14
15
|
extends CreateTokenWithIAMRequest {}
|
|
15
16
|
export interface CreateTokenWithIAMCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ServiceOutputTypes,
|
|
10
10
|
SSOOIDCClientResolvedConfig,
|
|
11
11
|
} from "../SSOOIDCClient";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface RegisterClientCommandInput extends RegisterClientRequest {}
|
|
14
15
|
export interface RegisterClientCommandOutput
|
|
15
16
|
extends RegisterClientResponse,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ServiceOutputTypes,
|
|
10
10
|
SSOOIDCClientResolvedConfig,
|
|
11
11
|
} from "../SSOOIDCClient";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface StartDeviceAuthorizationCommandInput
|
|
14
15
|
extends StartDeviceAuthorizationRequest {}
|
|
15
16
|
export interface StartDeviceAuthorizationCommandOutput
|
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@smithy/smithy-client";
|
|
5
|
-
export {
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
6
7
|
export declare class SSOOIDCServiceException extends __ServiceException {
|
|
7
8
|
constructor(options: __ServiceExceptionOptions);
|
|
8
9
|
}
|
|
@@ -20,10 +20,10 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
24
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
24
25
|
import("@smithy/types").UserAgent
|
|
25
26
|
>;
|
|
26
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
27
27
|
credentialDefaultProvider: (
|
|
28
28
|
input: any
|
|
29
29
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso-oidc",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.592.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-oidc",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.592.0",
|
|
24
|
+
"@aws-sdk/core": "3.592.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.592.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
35
35
|
"@smithy/config-resolver": "^3.0.1",
|
|
36
|
-
"@smithy/core": "^2.
|
|
36
|
+
"@smithy/core": "^2.2.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
38
38
|
"@smithy/hash-node": "^3.0.0",
|
|
39
39
|
"@smithy/invalid-dependency": "^3.0.0",
|