@aws-sdk/client-sso-oidc 3.928.0 → 3.929.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 +430 -538
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SSOOIDCClient.js +2 -0
- package/dist-es/commands/CreateTokenCommand.js +3 -10
- package/dist-es/commands/CreateTokenWithIAMCommand.js +3 -10
- package/dist-es/commands/RegisterClientCommand.js +3 -10
- package/dist-es/commands/StartDeviceAuthorizationCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -34
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +382 -0
- package/dist-types/SSOOIDCClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -24
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +40 -0
- package/dist-types/ts3.4/SSOOIDCClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +45 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -430
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -38
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -53
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateTokenCommandInput,
|
|
8
|
-
CreateTokenCommandOutput,
|
|
9
|
-
} from "../commands/CreateTokenCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateTokenWithIAMCommandInput,
|
|
12
|
-
CreateTokenWithIAMCommandOutput,
|
|
13
|
-
} from "../commands/CreateTokenWithIAMCommand";
|
|
14
|
-
import {
|
|
15
|
-
RegisterClientCommandInput,
|
|
16
|
-
RegisterClientCommandOutput,
|
|
17
|
-
} from "../commands/RegisterClientCommand";
|
|
18
|
-
import {
|
|
19
|
-
StartDeviceAuthorizationCommandInput,
|
|
20
|
-
StartDeviceAuthorizationCommandOutput,
|
|
21
|
-
} from "../commands/StartDeviceAuthorizationCommand";
|
|
22
|
-
export declare const se_CreateTokenCommand: (
|
|
23
|
-
input: CreateTokenCommandInput,
|
|
24
|
-
context: __SerdeContext
|
|
25
|
-
) => Promise<__HttpRequest>;
|
|
26
|
-
export declare const se_CreateTokenWithIAMCommand: (
|
|
27
|
-
input: CreateTokenWithIAMCommandInput,
|
|
28
|
-
context: __SerdeContext
|
|
29
|
-
) => Promise<__HttpRequest>;
|
|
30
|
-
export declare const se_RegisterClientCommand: (
|
|
31
|
-
input: RegisterClientCommandInput,
|
|
32
|
-
context: __SerdeContext
|
|
33
|
-
) => Promise<__HttpRequest>;
|
|
34
|
-
export declare const se_StartDeviceAuthorizationCommand: (
|
|
35
|
-
input: StartDeviceAuthorizationCommandInput,
|
|
36
|
-
context: __SerdeContext
|
|
37
|
-
) => Promise<__HttpRequest>;
|
|
38
|
-
export declare const de_CreateTokenCommand: (
|
|
39
|
-
output: __HttpResponse,
|
|
40
|
-
context: __SerdeContext
|
|
41
|
-
) => Promise<CreateTokenCommandOutput>;
|
|
42
|
-
export declare const de_CreateTokenWithIAMCommand: (
|
|
43
|
-
output: __HttpResponse,
|
|
44
|
-
context: __SerdeContext
|
|
45
|
-
) => Promise<CreateTokenWithIAMCommandOutput>;
|
|
46
|
-
export declare const de_RegisterClientCommand: (
|
|
47
|
-
output: __HttpResponse,
|
|
48
|
-
context: __SerdeContext
|
|
49
|
-
) => Promise<RegisterClientCommandOutput>;
|
|
50
|
-
export declare const de_StartDeviceAuthorizationCommand: (
|
|
51
|
-
output: __HttpResponse,
|
|
52
|
-
context: __SerdeContext
|
|
53
|
-
) => Promise<StartDeviceAuthorizationCommandOutput>;
|