@aws-sdk/client-finspace-data 3.294.0 → 3.296.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/commands/AssociateUserToPermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/CreateChangesetCommand.js +4 -4
- package/dist-cjs/commands/CreateDataViewCommand.js +4 -4
- package/dist-cjs/commands/CreateDatasetCommand.js +4 -4
- package/dist-cjs/commands/CreatePermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/CreateUserCommand.js +4 -4
- package/dist-cjs/commands/DeleteDatasetCommand.js +4 -4
- package/dist-cjs/commands/DeletePermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/DisableUserCommand.js +4 -4
- package/dist-cjs/commands/DisassociateUserFromPermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/EnableUserCommand.js +4 -4
- package/dist-cjs/commands/GetChangesetCommand.js +4 -4
- package/dist-cjs/commands/GetDataViewCommand.js +4 -4
- package/dist-cjs/commands/GetDatasetCommand.js +4 -4
- package/dist-cjs/commands/GetExternalDataViewAccessDetailsCommand.js +4 -4
- package/dist-cjs/commands/GetPermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/GetProgrammaticAccessCredentialsCommand.js +4 -4
- package/dist-cjs/commands/GetUserCommand.js +4 -4
- package/dist-cjs/commands/GetWorkingLocationCommand.js +4 -4
- package/dist-cjs/commands/ListChangesetsCommand.js +4 -4
- package/dist-cjs/commands/ListDataViewsCommand.js +4 -4
- package/dist-cjs/commands/ListDatasetsCommand.js +4 -4
- package/dist-cjs/commands/ListPermissionGroupsByUserCommand.js +4 -4
- package/dist-cjs/commands/ListPermissionGroupsCommand.js +4 -4
- package/dist-cjs/commands/ListUsersByPermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/ListUsersCommand.js +4 -4
- package/dist-cjs/commands/ResetUserPasswordCommand.js +4 -4
- package/dist-cjs/commands/UpdateChangesetCommand.js +4 -4
- package/dist-cjs/commands/UpdateDatasetCommand.js +4 -4
- package/dist-cjs/commands/UpdatePermissionGroupCommand.js +4 -4
- package/dist-cjs/commands/UpdateUserCommand.js +4 -4
- package/dist-es/commands/AssociateUserToPermissionGroupCommand.js +4 -4
- package/dist-es/commands/CreateChangesetCommand.js +4 -4
- package/dist-es/commands/CreateDataViewCommand.js +4 -4
- package/dist-es/commands/CreateDatasetCommand.js +4 -4
- package/dist-es/commands/CreatePermissionGroupCommand.js +4 -4
- package/dist-es/commands/CreateUserCommand.js +4 -4
- package/dist-es/commands/DeleteDatasetCommand.js +4 -4
- package/dist-es/commands/DeletePermissionGroupCommand.js +4 -4
- package/dist-es/commands/DisableUserCommand.js +4 -4
- package/dist-es/commands/DisassociateUserFromPermissionGroupCommand.js +4 -4
- package/dist-es/commands/EnableUserCommand.js +4 -4
- package/dist-es/commands/GetChangesetCommand.js +4 -4
- package/dist-es/commands/GetDataViewCommand.js +4 -4
- package/dist-es/commands/GetDatasetCommand.js +4 -4
- package/dist-es/commands/GetExternalDataViewAccessDetailsCommand.js +4 -4
- package/dist-es/commands/GetPermissionGroupCommand.js +4 -4
- package/dist-es/commands/GetProgrammaticAccessCredentialsCommand.js +4 -4
- package/dist-es/commands/GetUserCommand.js +4 -4
- package/dist-es/commands/GetWorkingLocationCommand.js +4 -4
- package/dist-es/commands/ListChangesetsCommand.js +4 -4
- package/dist-es/commands/ListDataViewsCommand.js +4 -4
- package/dist-es/commands/ListDatasetsCommand.js +4 -4
- package/dist-es/commands/ListPermissionGroupsByUserCommand.js +4 -4
- package/dist-es/commands/ListPermissionGroupsCommand.js +4 -4
- package/dist-es/commands/ListUsersByPermissionGroupCommand.js +4 -4
- package/dist-es/commands/ListUsersCommand.js +4 -4
- package/dist-es/commands/ResetUserPasswordCommand.js +4 -4
- package/dist-es/commands/UpdateChangesetCommand.js +4 -4
- package/dist-es/commands/UpdateDatasetCommand.js +4 -4
- package/dist-es/commands/UpdatePermissionGroupCommand.js +4 -4
- package/dist-es/commands/UpdateUserCommand.js +4 -4
- package/dist-types/FinspaceDataClient.d.ts +4 -4
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +4 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +3 -4
- package/package.json +36 -36
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ListUsersRequestFilterSensitiveLog, ListUsersResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListUsersCommand, serializeAws_restJson1ListUsersCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class ListUsersCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ListUsersCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ListUsersCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { ResetUserPasswordRequestFilterSensitiveLog, ResetUserPasswordResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ResetUserPasswordCommand, serializeAws_restJson1ResetUserPasswordCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class ResetUserPasswordCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class ResetUserPasswordCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, ResetUserPasswordCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { UpdateChangesetRequestFilterSensitiveLog, UpdateChangesetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateChangesetCommand, serializeAws_restJson1UpdateChangesetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class UpdateChangesetCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class UpdateChangesetCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, UpdateChangesetCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { UpdateDatasetRequestFilterSensitiveLog, UpdateDatasetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateDatasetCommand, serializeAws_restJson1UpdateDatasetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class UpdateDatasetCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class UpdateDatasetCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, UpdateDatasetCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { UpdatePermissionGroupRequestFilterSensitiveLog, UpdatePermissionGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdatePermissionGroupCommand, serializeAws_restJson1UpdatePermissionGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class UpdatePermissionGroupCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class UpdatePermissionGroupCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, UpdatePermissionGroupCommand.getEndpointParameterInstructions()));
|
|
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
4
4
|
import { UpdateUserRequestFilterSensitiveLog, UpdateUserResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateUserCommand, serializeAws_restJson1UpdateUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class UpdateUserCommand extends $Command {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
super();
|
|
9
|
-
this.input = input;
|
|
10
|
-
}
|
|
11
7
|
static getEndpointParameterInstructions() {
|
|
12
8
|
return {
|
|
13
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -16,6 +12,10 @@ export class UpdateUserCommand extends $Command {
|
|
|
16
12
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
13
|
};
|
|
18
14
|
}
|
|
15
|
+
constructor(input) {
|
|
16
|
+
super();
|
|
17
|
+
this.input = input;
|
|
18
|
+
}
|
|
19
19
|
resolveMiddleware(clientStack, configuration, options) {
|
|
20
20
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
21
21
|
this.middlewareStack.use(getEndpointPlugin(configuration, UpdateUserCommand.getEndpointParameterInstructions()));
|
|
@@ -39,8 +39,8 @@ import { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "./command
|
|
|
39
39
|
import { UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput } from "./commands/UpdatePermissionGroupCommand";
|
|
40
40
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
41
41
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
42
|
-
export
|
|
43
|
-
export
|
|
42
|
+
export type ServiceInputTypes = AssociateUserToPermissionGroupCommandInput | CreateChangesetCommandInput | CreateDataViewCommandInput | CreateDatasetCommandInput | CreatePermissionGroupCommandInput | CreateUserCommandInput | DeleteDatasetCommandInput | DeletePermissionGroupCommandInput | DisableUserCommandInput | DisassociateUserFromPermissionGroupCommandInput | EnableUserCommandInput | GetChangesetCommandInput | GetDataViewCommandInput | GetDatasetCommandInput | GetExternalDataViewAccessDetailsCommandInput | GetPermissionGroupCommandInput | GetProgrammaticAccessCredentialsCommandInput | GetUserCommandInput | GetWorkingLocationCommandInput | ListChangesetsCommandInput | ListDataViewsCommandInput | ListDatasetsCommandInput | ListPermissionGroupsByUserCommandInput | ListPermissionGroupsCommandInput | ListUsersByPermissionGroupCommandInput | ListUsersCommandInput | ResetUserPasswordCommandInput | UpdateChangesetCommandInput | UpdateDatasetCommandInput | UpdatePermissionGroupCommandInput | UpdateUserCommandInput;
|
|
43
|
+
export type ServiceOutputTypes = AssociateUserToPermissionGroupCommandOutput | CreateChangesetCommandOutput | CreateDataViewCommandOutput | CreateDatasetCommandOutput | CreatePermissionGroupCommandOutput | CreateUserCommandOutput | DeleteDatasetCommandOutput | DeletePermissionGroupCommandOutput | DisableUserCommandOutput | DisassociateUserFromPermissionGroupCommandOutput | EnableUserCommandOutput | GetChangesetCommandOutput | GetDataViewCommandOutput | GetDatasetCommandOutput | GetExternalDataViewAccessDetailsCommandOutput | GetPermissionGroupCommandOutput | GetProgrammaticAccessCredentialsCommandOutput | GetUserCommandOutput | GetWorkingLocationCommandOutput | ListChangesetsCommandOutput | ListDataViewsCommandOutput | ListDatasetsCommandOutput | ListPermissionGroupsByUserCommandOutput | ListPermissionGroupsCommandOutput | ListUsersByPermissionGroupCommandOutput | ListUsersCommandOutput | ResetUserPasswordCommandOutput | UpdateChangesetCommandOutput | UpdateDatasetCommandOutput | UpdatePermissionGroupCommandOutput | UpdateUserCommandOutput;
|
|
44
44
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
45
45
|
/**
|
|
46
46
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -141,13 +141,13 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
141
141
|
*/
|
|
142
142
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
143
143
|
}
|
|
144
|
-
|
|
144
|
+
type FinspaceDataClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
145
145
|
/**
|
|
146
146
|
* The configuration interface of FinspaceDataClient class constructor that set the region, credentials and other options.
|
|
147
147
|
*/
|
|
148
148
|
export interface FinspaceDataClientConfig extends FinspaceDataClientConfigType {
|
|
149
149
|
}
|
|
150
|
-
|
|
150
|
+
type FinspaceDataClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
151
151
|
/**
|
|
152
152
|
* The resolved configuration interface of FinspaceDataClient class. This is resolved and normalized from the {@link FinspaceDataClientConfig | constructor configuration interface}.
|
|
153
153
|
*/
|
|
@@ -5,7 +5,7 @@ export interface ClientInputEndpointParameters {
|
|
|
5
5
|
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
6
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
7
7
|
}
|
|
8
|
-
export
|
|
8
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
9
|
defaultSigningName: string;
|
|
10
10
|
};
|
|
11
11
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
@@ -173,7 +173,7 @@ import {
|
|
|
173
173
|
ClientResolvedEndpointParameters,
|
|
174
174
|
EndpointParameters,
|
|
175
175
|
} from "./endpoint/EndpointParameters";
|
|
176
|
-
export
|
|
176
|
+
export type ServiceInputTypes =
|
|
177
177
|
| AssociateUserToPermissionGroupCommandInput
|
|
178
178
|
| CreateChangesetCommandInput
|
|
179
179
|
| CreateDataViewCommandInput
|
|
@@ -205,7 +205,7 @@ export declare type ServiceInputTypes =
|
|
|
205
205
|
| UpdateDatasetCommandInput
|
|
206
206
|
| UpdatePermissionGroupCommandInput
|
|
207
207
|
| UpdateUserCommandInput;
|
|
208
|
-
export
|
|
208
|
+
export type ServiceOutputTypes =
|
|
209
209
|
| AssociateUserToPermissionGroupCommandOutput
|
|
210
210
|
| CreateChangesetCommandOutput
|
|
211
211
|
| CreateDataViewCommandOutput
|
|
@@ -261,7 +261,7 @@ export interface ClientDefaults
|
|
|
261
261
|
logger?: __Logger;
|
|
262
262
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
263
263
|
}
|
|
264
|
-
|
|
264
|
+
type FinspaceDataClientConfigType = Partial<
|
|
265
265
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
266
266
|
> &
|
|
267
267
|
ClientDefaults &
|
|
@@ -274,7 +274,7 @@ declare type FinspaceDataClientConfigType = Partial<
|
|
|
274
274
|
ClientInputEndpointParameters;
|
|
275
275
|
export interface FinspaceDataClientConfig
|
|
276
276
|
extends FinspaceDataClientConfigType {}
|
|
277
|
-
|
|
277
|
+
type FinspaceDataClientResolvedConfigType =
|
|
278
278
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
279
279
|
Required<ClientDefaults> &
|
|
280
280
|
RegionResolvedConfig &
|
|
@@ -16,10 +16,9 @@ export interface ClientInputEndpointParameters {
|
|
|
16
16
|
| EndpointV2
|
|
17
17
|
| Provider<EndpointV2>;
|
|
18
18
|
}
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
};
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
23
22
|
export declare const resolveClientEndpointParameters: <T>(
|
|
24
23
|
options: T & ClientInputEndpointParameters
|
|
25
24
|
) => T &
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-finspace-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.296.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,43 +20,43 @@
|
|
|
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/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
55
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.296.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.296.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.295.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
|
+
"tslib": "^2.5.0",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.295.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
66
|
"typedoc": "0.23.23",
|
|
67
|
-
"typescript": "~4.
|
|
67
|
+
"typescript": "~4.9.5"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
70
|
"node": ">=14.0.0"
|