@aws-sdk/client-workspaces-thin-client 3.468.0 → 3.470.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/{WorkSpacesThin.js → WorkSpacesThinClient.js} +4 -4
- package/dist-cjs/index.js +4 -2
- package/dist-cjs/pagination/ListDevicesPaginator.js +1 -1
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +1 -1
- package/dist-cjs/pagination/ListSoftwareSetsPaginator.js +1 -1
- package/dist-es/{WorkSpacesThin.js → WorkSpacesThinClient.js} +2 -2
- package/dist-es/index.js +3 -1
- package/dist-es/pagination/ListDevicesPaginator.js +1 -1
- package/dist-es/pagination/ListEnvironmentsPaginator.js +1 -1
- package/dist-es/pagination/ListSoftwareSetsPaginator.js +1 -1
- package/dist-types/{WorkSpacesThin.d.ts → WorkSpacesThinClient.d.ts} +2 -2
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/index.d.ts +13 -2
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListDevicesPaginator.d.ts +2 -2
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +2 -2
- package/dist-types/pagination/ListSoftwareSetsPaginator.d.ts +2 -2
- package/dist-types/runtimeExtensions.d.ts +2 -2
- package/dist-types/ts3.4/{WorkSpacesThin.d.ts → WorkSpacesThinClient.d.ts} +3 -3
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/index.d.ts +5 -2
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -1
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +2 -2
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +2 -2
- package/dist-types/ts3.4/pagination/ListSoftwareSetsPaginator.d.ts +2 -2
- package/dist-types/ts3.4/runtimeExtensions.d.ts +4 -2
- package/package.json +13 -13
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.WorkSpacesThinClient = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const CreateEnvironmentCommand_1 = require("./commands/CreateEnvironmentCommand");
|
|
6
6
|
const DeleteDeviceCommand_1 = require("./commands/DeleteDeviceCommand");
|
|
@@ -37,7 +37,7 @@ const commands = {
|
|
|
37
37
|
UpdateEnvironmentCommand: UpdateEnvironmentCommand_1.UpdateEnvironmentCommand,
|
|
38
38
|
UpdateSoftwareSetCommand: UpdateSoftwareSetCommand_1.UpdateSoftwareSetCommand,
|
|
39
39
|
};
|
|
40
|
-
class
|
|
40
|
+
class WorkSpacesThinClient extends WorkSpacesThinClientClient_1.WorkSpacesThinClientClient {
|
|
41
41
|
}
|
|
42
|
-
exports.
|
|
43
|
-
(0, smithy_client_1.createAggregatedClient)(commands,
|
|
42
|
+
exports.WorkSpacesThinClient = WorkSpacesThinClient;
|
|
43
|
+
(0, smithy_client_1.createAggregatedClient)(commands, WorkSpacesThinClient);
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WorkSpacesThinClientServiceException = void 0;
|
|
3
|
+
exports.WorkSpacesThin = exports.WorkSpacesThinClientServiceException = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
tslib_1.__exportStar(require("./WorkSpacesThinClientClient"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./
|
|
6
|
+
tslib_1.__exportStar(require("./WorkSpacesThinClient"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
9
|
tslib_1.__exportStar(require("./models"), exports);
|
|
10
10
|
require("@aws-sdk/util-endpoints");
|
|
11
11
|
var WorkSpacesThinClientServiceException_1 = require("./models/WorkSpacesThinClientServiceException");
|
|
12
12
|
Object.defineProperty(exports, "WorkSpacesThinClientServiceException", { enumerable: true, get: function () { return WorkSpacesThinClientServiceException_1.WorkSpacesThinClientServiceException; } });
|
|
13
|
+
const WorkSpacesThinClient_1 = require("./WorkSpacesThinClient");
|
|
14
|
+
exports.WorkSpacesThin = WorkSpacesThinClient_1.WorkSpacesThinClient;
|
|
@@ -17,7 +17,7 @@ async function* paginateListDevices(config, input, ...additionalArguments) {
|
|
|
17
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
18
|
}
|
|
19
19
|
else {
|
|
20
|
-
throw new Error("Invalid client, expected
|
|
20
|
+
throw new Error("Invalid client, expected WorkSpacesThinClient | WorkSpacesThinClientClient");
|
|
21
21
|
}
|
|
22
22
|
yield page;
|
|
23
23
|
const prevToken = token;
|
|
@@ -17,7 +17,7 @@ async function* paginateListEnvironments(config, input, ...additionalArguments)
|
|
|
17
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
18
|
}
|
|
19
19
|
else {
|
|
20
|
-
throw new Error("Invalid client, expected
|
|
20
|
+
throw new Error("Invalid client, expected WorkSpacesThinClient | WorkSpacesThinClientClient");
|
|
21
21
|
}
|
|
22
22
|
yield page;
|
|
23
23
|
const prevToken = token;
|
|
@@ -17,7 +17,7 @@ async function* paginateListSoftwareSets(config, input, ...additionalArguments)
|
|
|
17
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
18
|
}
|
|
19
19
|
else {
|
|
20
|
-
throw new Error("Invalid client, expected
|
|
20
|
+
throw new Error("Invalid client, expected WorkSpacesThinClient | WorkSpacesThinClientClient");
|
|
21
21
|
}
|
|
22
22
|
yield page;
|
|
23
23
|
const prevToken = token;
|
|
@@ -34,6 +34,6 @@ const commands = {
|
|
|
34
34
|
UpdateEnvironmentCommand,
|
|
35
35
|
UpdateSoftwareSetCommand,
|
|
36
36
|
};
|
|
37
|
-
export class
|
|
37
|
+
export class WorkSpacesThinClient extends WorkSpacesThinClientClient {
|
|
38
38
|
}
|
|
39
|
-
createAggregatedClient(commands,
|
|
39
|
+
createAggregatedClient(commands, WorkSpacesThinClient);
|
package/dist-es/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from "./WorkSpacesThinClientClient";
|
|
2
|
-
export * from "./
|
|
2
|
+
export * from "./WorkSpacesThinClient";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
5
|
export * from "./models";
|
|
6
6
|
import "@aws-sdk/util-endpoints";
|
|
7
7
|
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException";
|
|
8
|
+
import { WorkSpacesThinClient } from "./WorkSpacesThinClient";
|
|
9
|
+
export const WorkSpacesThin = WorkSpacesThinClient;
|
|
@@ -14,7 +14,7 @@ export async function* paginateListDevices(config, input, ...additionalArguments
|
|
|
14
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
15
|
}
|
|
16
16
|
else {
|
|
17
|
-
throw new Error("Invalid client, expected
|
|
17
|
+
throw new Error("Invalid client, expected WorkSpacesThinClient | WorkSpacesThinClientClient");
|
|
18
18
|
}
|
|
19
19
|
yield page;
|
|
20
20
|
const prevToken = token;
|
|
@@ -14,7 +14,7 @@ export async function* paginateListEnvironments(config, input, ...additionalArgu
|
|
|
14
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
15
|
}
|
|
16
16
|
else {
|
|
17
|
-
throw new Error("Invalid client, expected
|
|
17
|
+
throw new Error("Invalid client, expected WorkSpacesThinClient | WorkSpacesThinClientClient");
|
|
18
18
|
}
|
|
19
19
|
yield page;
|
|
20
20
|
const prevToken = token;
|
|
@@ -14,7 +14,7 @@ export async function* paginateListSoftwareSets(config, input, ...additionalArgu
|
|
|
14
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
15
|
}
|
|
16
16
|
else {
|
|
17
|
-
throw new Error("Invalid client, expected
|
|
17
|
+
throw new Error("Invalid client, expected WorkSpacesThinClient | WorkSpacesThinClientClient");
|
|
18
18
|
}
|
|
19
19
|
yield page;
|
|
20
20
|
const prevToken = token;
|
|
@@ -16,7 +16,7 @@ import { UpdateDeviceCommandInput, UpdateDeviceCommandOutput } from "./commands/
|
|
|
16
16
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
17
17
|
import { UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput } from "./commands/UpdateSoftwareSetCommand";
|
|
18
18
|
import { WorkSpacesThinClientClient } from "./WorkSpacesThinClientClient";
|
|
19
|
-
export interface
|
|
19
|
+
export interface WorkSpacesThinClient {
|
|
20
20
|
/**
|
|
21
21
|
* @see {@link CreateEnvironmentCommand}
|
|
22
22
|
*/
|
|
@@ -129,5 +129,5 @@ export interface WorkSpacesThin {
|
|
|
129
129
|
* your WorkSpaces Thin Client resources, see the <a href="https://docs.aws.amazon.com/cli/latest/reference/workspaces-thin-client/index.html">WorkSpaces Thin Client section of the
|
|
130
130
|
* CLI Reference</a>.</p>
|
|
131
131
|
*/
|
|
132
|
-
export declare class
|
|
132
|
+
export declare class WorkSpacesThinClient extends WorkSpacesThinClientClient implements WorkSpacesThinClient {
|
|
133
133
|
}
|
|
@@ -4,5 +4,5 @@ import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
|
4
4
|
/**
|
|
5
5
|
* @internal
|
|
6
6
|
*/
|
|
7
|
-
export interface
|
|
7
|
+
export interface WorkSpacesThinClientExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
|
|
8
8
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -15,12 +15,23 @@
|
|
|
15
15
|
* @packageDocumentation
|
|
16
16
|
*/
|
|
17
17
|
export * from "./WorkSpacesThinClientClient";
|
|
18
|
-
export * from "./
|
|
18
|
+
export * from "./WorkSpacesThinClient";
|
|
19
19
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
20
20
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
21
|
-
export {
|
|
21
|
+
export { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration";
|
|
22
22
|
export * from "./commands";
|
|
23
23
|
export * from "./pagination";
|
|
24
24
|
export * from "./models";
|
|
25
25
|
import "@aws-sdk/util-endpoints";
|
|
26
26
|
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException";
|
|
27
|
+
import { WorkSpacesThinClient } from "./WorkSpacesThinClient";
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated use {WorkSpacesThinClient} (renamed) instead.
|
|
30
|
+
* The aggregated client is called WorkSpacesThinClient,
|
|
31
|
+
* and the barebones client is called WorkSpacesThinClientClient.
|
|
32
|
+
*
|
|
33
|
+
* Due to some code generation issues with the word "Client" in the service name,
|
|
34
|
+
* we are maintaining a few backwards compatible aliases here.
|
|
35
|
+
*/
|
|
36
|
+
export declare const WorkSpacesThin: typeof WorkSpacesThinClient;
|
|
37
|
+
export type { WorkSpacesThinClientPaginationConfiguration as WorkSpacesThinPaginationConfiguration } from "./pagination/Interfaces";
|
|
@@ -3,6 +3,6 @@ import { WorkSpacesThinClientClient } from "../WorkSpacesThinClientClient";
|
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
|
-
export interface
|
|
6
|
+
export interface WorkSpacesThinClientPaginationConfiguration extends PaginationConfiguration {
|
|
7
7
|
client: WorkSpacesThinClientClient;
|
|
8
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand";
|
|
3
|
-
import {
|
|
3
|
+
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare function paginateListDevices(config:
|
|
7
|
+
export declare function paginateListDevices(config: WorkSpacesThinClientPaginationConfiguration, input: ListDevicesCommandInput, ...additionalArguments: any): Paginator<ListDevicesCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
3
|
-
import {
|
|
3
|
+
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare function paginateListEnvironments(config:
|
|
7
|
+
export declare function paginateListEnvironments(config: WorkSpacesThinClientPaginationConfiguration, input: ListEnvironmentsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput } from "../commands/ListSoftwareSetsCommand";
|
|
3
|
-
import {
|
|
3
|
+
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare function paginateListSoftwareSets(config:
|
|
7
|
+
export declare function paginateListSoftwareSets(config: WorkSpacesThinClientPaginationConfiguration, input: ListSoftwareSetsCommandInput, ...additionalArguments: any): Paginator<ListSoftwareSetsCommandOutput>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface RuntimeExtension {
|
|
6
|
-
configure(extensionConfiguration:
|
|
6
|
+
configure(extensionConfiguration: WorkSpacesThinClientExtensionConfiguration): void;
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
9
|
* @public
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
UpdateSoftwareSetCommandOutput,
|
|
65
65
|
} from "./commands/UpdateSoftwareSetCommand";
|
|
66
66
|
import { WorkSpacesThinClientClient } from "./WorkSpacesThinClientClient";
|
|
67
|
-
export interface
|
|
67
|
+
export interface WorkSpacesThinClient {
|
|
68
68
|
createEnvironment(
|
|
69
69
|
args: CreateEnvironmentCommandInput,
|
|
70
70
|
options?: __HttpHandlerOptions
|
|
@@ -274,6 +274,6 @@ export interface WorkSpacesThin {
|
|
|
274
274
|
cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void
|
|
275
275
|
): void;
|
|
276
276
|
}
|
|
277
|
-
export declare class
|
|
277
|
+
export declare class WorkSpacesThinClient
|
|
278
278
|
extends WorkSpacesThinClientClient
|
|
279
|
-
implements
|
|
279
|
+
implements WorkSpacesThinClient {}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
-
export interface
|
|
4
|
+
export interface WorkSpacesThinClientExtensionConfiguration
|
|
5
5
|
extends HttpHandlerExtensionConfiguration,
|
|
6
6
|
DefaultExtensionConfiguration,
|
|
7
7
|
AwsRegionExtensionConfiguration {}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export * from "./WorkSpacesThinClientClient";
|
|
2
|
-
export * from "./
|
|
2
|
+
export * from "./WorkSpacesThinClient";
|
|
3
3
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
-
export {
|
|
5
|
+
export { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./models";
|
|
9
9
|
import "@aws-sdk/util-endpoints";
|
|
10
10
|
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException";
|
|
11
|
+
import { WorkSpacesThinClient } from "./WorkSpacesThinClient";
|
|
12
|
+
export declare const WorkSpacesThin: typeof WorkSpacesThinClient;
|
|
13
|
+
export { WorkSpacesThinClientPaginationConfiguration as WorkSpacesThinPaginationConfiguration } from "./pagination/Interfaces";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { WorkSpacesThinClientClient } from "../WorkSpacesThinClientClient";
|
|
3
|
-
export interface
|
|
3
|
+
export interface WorkSpacesThinClientPaginationConfiguration
|
|
4
4
|
extends PaginationConfiguration {
|
|
5
5
|
client: WorkSpacesThinClientClient;
|
|
6
6
|
}
|
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
ListDevicesCommandInput,
|
|
4
4
|
ListDevicesCommandOutput,
|
|
5
5
|
} from "../commands/ListDevicesCommand";
|
|
6
|
-
import {
|
|
6
|
+
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
7
7
|
export declare function paginateListDevices(
|
|
8
|
-
config:
|
|
8
|
+
config: WorkSpacesThinClientPaginationConfiguration,
|
|
9
9
|
input: ListDevicesCommandInput,
|
|
10
10
|
...additionalArguments: any
|
|
11
11
|
): Paginator<ListDevicesCommandOutput>;
|
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
ListEnvironmentsCommandInput,
|
|
4
4
|
ListEnvironmentsCommandOutput,
|
|
5
5
|
} from "../commands/ListEnvironmentsCommand";
|
|
6
|
-
import {
|
|
6
|
+
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
7
7
|
export declare function paginateListEnvironments(
|
|
8
|
-
config:
|
|
8
|
+
config: WorkSpacesThinClientPaginationConfiguration,
|
|
9
9
|
input: ListEnvironmentsCommandInput,
|
|
10
10
|
...additionalArguments: any
|
|
11
11
|
): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
ListSoftwareSetsCommandInput,
|
|
4
4
|
ListSoftwareSetsCommandOutput,
|
|
5
5
|
} from "../commands/ListSoftwareSetsCommand";
|
|
6
|
-
import {
|
|
6
|
+
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
7
7
|
export declare function paginateListSoftwareSets(
|
|
8
|
-
config:
|
|
8
|
+
config: WorkSpacesThinClientPaginationConfiguration,
|
|
9
9
|
input: ListSoftwareSetsCommandInput,
|
|
10
10
|
...additionalArguments: any
|
|
11
11
|
): Paginator<ListSoftwareSetsCommandOutput>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: WorkSpacesThinClientExtensionConfiguration
|
|
5
|
+
): void;
|
|
4
6
|
}
|
|
5
7
|
export interface RuntimeExtensionsConfig {
|
|
6
8
|
extensions: RuntimeExtension[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces-thin-client",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Thin Client Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.470.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,29 +20,29 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.470.0",
|
|
24
24
|
"@aws-sdk/core": "3.468.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.470.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.470.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.470.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.21",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
38
|
"@smithy/hash-node": "^2.0.17",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.15",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.17",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.2.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.24",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.15",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.9",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.8",
|
|
46
46
|
"@smithy/node-http-handler": "^2.2.1",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.11",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.18",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.22",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-endpoints": "^1.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.29",
|
|
56
|
+
"@smithy/util-endpoints": "^1.0.7",
|
|
57
57
|
"@smithy/util-retry": "^2.0.8",
|
|
58
58
|
"@smithy/util-utf8": "^2.0.2",
|
|
59
59
|
"tslib": "^2.5.0",
|