@aws-sdk/client-sso-oidc 3.1077.0 → 3.1079.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 +12 -43
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateTokenCommand.js +2 -14
- package/dist-es/commands/CreateTokenWithIAMCommand.js +2 -14
- package/dist-es/commands/RegisterClientCommand.js +2 -14
- package/dist-es/commands/StartDeviceAuthorizationCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +3 -8
- package/dist-types/commands/CreateTokenWithIAMCommand.d.ts +3 -8
- package/dist-types/commands/RegisterClientCommand.d.ts +3 -8
- package/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +9 -9
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { NoAuthSigner, getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -88,7 +89,7 @@ const commonParams = {
|
|
|
88
89
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
89
90
|
};
|
|
90
91
|
|
|
91
|
-
var version = "3.
|
|
92
|
+
var version = "3.1078.0";
|
|
92
93
|
var packageInfo = {
|
|
93
94
|
version: version};
|
|
94
95
|
|
|
@@ -782,52 +783,20 @@ class SSOOIDCClient extends Client {
|
|
|
782
783
|
}
|
|
783
784
|
}
|
|
784
785
|
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
})
|
|
791
|
-
.s("AWSSSOOIDCService", "CreateToken", {})
|
|
792
|
-
.n("SSOOIDCClient", "CreateTokenCommand")
|
|
793
|
-
.sc(CreateToken$)
|
|
794
|
-
.build() {
|
|
786
|
+
const command = makeBuilder(commonParams, "AWSSSOOIDCService", "SSOOIDCClient", getEndpointPlugin);
|
|
787
|
+
const _ep0 = {};
|
|
788
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
789
|
+
|
|
790
|
+
class CreateTokenCommand extends command(_ep0, _mw0, "CreateToken", CreateToken$) {
|
|
795
791
|
}
|
|
796
792
|
|
|
797
|
-
class CreateTokenWithIAMCommand extends
|
|
798
|
-
.classBuilder()
|
|
799
|
-
.ep(commonParams)
|
|
800
|
-
.m(function (Command, cs, config, o) {
|
|
801
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
802
|
-
})
|
|
803
|
-
.s("AWSSSOOIDCService", "CreateTokenWithIAM", {})
|
|
804
|
-
.n("SSOOIDCClient", "CreateTokenWithIAMCommand")
|
|
805
|
-
.sc(CreateTokenWithIAM$)
|
|
806
|
-
.build() {
|
|
793
|
+
class CreateTokenWithIAMCommand extends command(_ep0, _mw0, "CreateTokenWithIAM", CreateTokenWithIAM$) {
|
|
807
794
|
}
|
|
808
795
|
|
|
809
|
-
class RegisterClientCommand extends
|
|
810
|
-
.classBuilder()
|
|
811
|
-
.ep(commonParams)
|
|
812
|
-
.m(function (Command, cs, config, o) {
|
|
813
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
814
|
-
})
|
|
815
|
-
.s("AWSSSOOIDCService", "RegisterClient", {})
|
|
816
|
-
.n("SSOOIDCClient", "RegisterClientCommand")
|
|
817
|
-
.sc(RegisterClient$)
|
|
818
|
-
.build() {
|
|
796
|
+
class RegisterClientCommand extends command(_ep0, _mw0, "RegisterClient", RegisterClient$) {
|
|
819
797
|
}
|
|
820
798
|
|
|
821
|
-
class StartDeviceAuthorizationCommand extends
|
|
822
|
-
.classBuilder()
|
|
823
|
-
.ep(commonParams)
|
|
824
|
-
.m(function (Command, cs, config, o) {
|
|
825
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
826
|
-
})
|
|
827
|
-
.s("AWSSSOOIDCService", "StartDeviceAuthorization", {})
|
|
828
|
-
.n("SSOOIDCClient", "StartDeviceAuthorizationCommand")
|
|
829
|
-
.sc(StartDeviceAuthorization$)
|
|
830
|
-
.build() {
|
|
799
|
+
class StartDeviceAuthorizationCommand extends command(_ep0, _mw0, "StartDeviceAuthorization", StartDeviceAuthorization$) {
|
|
831
800
|
}
|
|
832
801
|
|
|
833
802
|
const commands = {
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "AWSSSOOIDCService", "SSOOIDCClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateToken$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateTokenCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSSSOOIDCService", "CreateToken", {})
|
|
13
|
-
.n("SSOOIDCClient", "CreateTokenCommand")
|
|
14
|
-
.sc(CreateToken$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateTokenCommand extends command(_ep0, _mw0, "CreateToken", CreateToken$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateTokenWithIAM$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateTokenWithIAMCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSSSOOIDCService", "CreateTokenWithIAM", {})
|
|
13
|
-
.n("SSOOIDCClient", "CreateTokenWithIAMCommand")
|
|
14
|
-
.sc(CreateTokenWithIAM$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateTokenWithIAMCommand extends command(_ep0, _mw0, "CreateTokenWithIAM", CreateTokenWithIAM$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { RegisterClient$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class RegisterClientCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSSSOOIDCService", "RegisterClient", {})
|
|
13
|
-
.n("SSOOIDCClient", "RegisterClientCommand")
|
|
14
|
-
.sc(RegisterClient$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class RegisterClientCommand extends command(_ep0, _mw0, "RegisterClient", RegisterClient$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StartDeviceAuthorization$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartDeviceAuthorizationCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSSSOOIDCService", "StartDeviceAuthorization", {})
|
|
13
|
-
.n("SSOOIDCClient", "StartDeviceAuthorizationCommand")
|
|
14
|
-
.sc(StartDeviceAuthorization$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartDeviceAuthorizationCommand extends command(_ep0, _mw0, "StartDeviceAuthorization", StartDeviceAuthorization$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "./SSOOIDCClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateTokenCommandInput extends CreateTokenRequest {
|
|
|
22
19
|
export interface CreateTokenCommandOutput extends CreateTokenResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateTokenCommand_base: {
|
|
25
|
-
new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates and returns access and refresh tokens for clients that are authenticated using
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateTokenWithIAMRequest, CreateTokenWithIAMResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateTokenWithIAMCommandInput extends CreateTokenWithIAMReques
|
|
|
22
19
|
export interface CreateTokenWithIAMCommandOutput extends CreateTokenWithIAMResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateTokenWithIAMCommand_base: {
|
|
25
|
-
new (input: CreateTokenWithIAMCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenWithIAMCommandInput, CreateTokenWithIAMCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateTokenWithIAMCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenWithIAMCommandInput, CreateTokenWithIAMCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateTokenWithIAMCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenWithIAMCommandInput, CreateTokenWithIAMCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateTokenWithIAMCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenWithIAMCommandInput, CreateTokenWithIAMCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates and returns access and refresh tokens for authorized client applications that are
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { RegisterClientRequest, RegisterClientResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface RegisterClientCommandInput extends RegisterClientRequest {
|
|
|
22
19
|
export interface RegisterClientCommandOutput extends RegisterClientResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const RegisterClientCommand_base: {
|
|
25
|
-
new (input: RegisterClientCommandInput): import("@smithy/core/client").CommandImpl<RegisterClientCommandInput, RegisterClientCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: RegisterClientCommandInput): import("@smithy/core/client").CommandImpl<RegisterClientCommandInput, RegisterClientCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: RegisterClientCommandInput): import("@smithy/core/client").CommandImpl<RegisterClientCommandInput, RegisterClientCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RegisterClientCommandInput): import("@smithy/core/client").CommandImpl<RegisterClientCommandInput, RegisterClientCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Registers a public client with IAM Identity Center. This allows clients to perform authorization using
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { StartDeviceAuthorizationRequest, StartDeviceAuthorizationResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartDeviceAuthorizationCommandInput extends StartDeviceAuthori
|
|
|
22
19
|
export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthorizationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartDeviceAuthorizationCommand_base: {
|
|
25
|
-
new (input: StartDeviceAuthorizationCommandInput): import("@smithy/core/client").CommandImpl<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartDeviceAuthorizationCommandInput): import("@smithy/core/client").CommandImpl<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartDeviceAuthorizationCommandInput): import("@smithy/core/client").CommandImpl<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartDeviceAuthorizationCommandInput): import("@smithy/core/client").CommandImpl<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, import("..").SSOOIDCClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Initiates device authorization by requesting a pair of verification codes from the
|
package/dist-types/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
47
47
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
48
48
|
export type { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
|
|
49
49
|
export * from "./commands";
|
|
50
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
50
51
|
export * from "./schemas/schemas_0";
|
|
51
52
|
export * from "./models/enums";
|
|
52
53
|
export * from "./models/errors";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
SSOOIDCClientResolvedConfig,
|
|
6
|
+
} from "./SSOOIDCClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
SSOOIDCClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
SSOOIDCClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SSOOIDCClientResolvedConfig,
|
|
8
|
-
} from "../SSOOIDCClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface CreateTokenCommandInput extends CreateTokenRequest {}
|
|
12
5
|
export interface CreateTokenCommandOutput
|
|
13
6
|
extends CreateTokenResponse,
|
|
@@ -18,22 +11,20 @@ declare const CreateTokenCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
CreateTokenCommandInput,
|
|
20
13
|
CreateTokenCommandOutput,
|
|
21
|
-
SSOOIDCClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: CreateTokenCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
CreateTokenCommandInput,
|
|
29
22
|
CreateTokenCommandOutput,
|
|
30
|
-
SSOOIDCClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class CreateTokenCommand extends CreateTokenCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateTokenWithIAMRequest,
|
|
5
4
|
CreateTokenWithIAMResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SSOOIDCClientResolvedConfig,
|
|
11
|
-
} from "../SSOOIDCClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateTokenWithIAMCommandInput
|
|
15
8
|
extends CreateTokenWithIAMRequest {}
|
|
16
9
|
export interface CreateTokenWithIAMCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateTokenWithIAMCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateTokenWithIAMCommandInput,
|
|
24
17
|
CreateTokenWithIAMCommandOutput,
|
|
25
|
-
SSOOIDCClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateTokenWithIAMCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateTokenWithIAMCommandInput,
|
|
33
26
|
CreateTokenWithIAMCommandOutput,
|
|
34
|
-
SSOOIDCClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class CreateTokenWithIAMCommand extends CreateTokenWithIAMCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
RegisterClientRequest,
|
|
5
4
|
RegisterClientResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SSOOIDCClientResolvedConfig,
|
|
11
|
-
} from "../SSOOIDCClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface RegisterClientCommandInput extends RegisterClientRequest {}
|
|
15
8
|
export interface RegisterClientCommandOutput
|
|
16
9
|
extends RegisterClientResponse,
|
|
@@ -21,22 +14,20 @@ declare const RegisterClientCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
RegisterClientCommandInput,
|
|
23
16
|
RegisterClientCommandOutput,
|
|
24
|
-
SSOOIDCClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: RegisterClientCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
RegisterClientCommandInput,
|
|
32
25
|
RegisterClientCommandOutput,
|
|
33
|
-
SSOOIDCClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class RegisterClientCommand extends RegisterClientCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
StartDeviceAuthorizationRequest,
|
|
5
4
|
StartDeviceAuthorizationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SSOOIDCClientResolvedConfig,
|
|
11
|
-
} from "../SSOOIDCClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StartDeviceAuthorizationCommandInput
|
|
15
8
|
extends StartDeviceAuthorizationRequest {}
|
|
16
9
|
export interface StartDeviceAuthorizationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const StartDeviceAuthorizationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
StartDeviceAuthorizationCommandInput,
|
|
24
17
|
StartDeviceAuthorizationCommandOutput,
|
|
25
|
-
SSOOIDCClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: StartDeviceAuthorizationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
StartDeviceAuthorizationCommandInput,
|
|
33
26
|
StartDeviceAuthorizationCommandOutput,
|
|
34
|
-
SSOOIDCClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class StartDeviceAuthorizationCommand extends StartDeviceAuthorizationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
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.1079.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"module": "./dist-es/index.js",
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/types": "^3.973.
|
|
29
|
-
"@smithy/core": "^3.
|
|
30
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
31
|
-
"@smithy/node-http-handler": "^4.9.
|
|
32
|
-
"@smithy/types": "^4.15.
|
|
26
|
+
"@aws-sdk/core": "^3.974.27",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
28
|
+
"@aws-sdk/types": "^3.973.15",
|
|
29
|
+
"@smithy/core": "^3.29.0",
|
|
30
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
31
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
32
|
+
"@smithy/types": "^4.15.1",
|
|
33
33
|
"tslib": "^2.6.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@smithy/snapshot-testing": "^2.2.
|
|
36
|
+
"@smithy/snapshot-testing": "^2.2.5",
|
|
37
37
|
"@tsconfig/node20": "20.1.8",
|
|
38
38
|
"@types/node": "^20.14.8",
|
|
39
39
|
"concurrently": "7.0.0",
|