@aws-sdk/client-forecastquery 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/Forecastquery.d.ts +1 -1
- package/dist-types/ForecastqueryClient.d.ts +1 -1
- package/dist-types/commands/QueryForecastCommand.d.ts +2 -1
- package/dist-types/commands/QueryWhatIfForecastCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +22 -22
- package/dist-types/ts3.4/commands/QueryForecastCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/QueryWhatIfForecastCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -522,9 +522,6 @@ var _Forecastquery = class _Forecastquery extends ForecastqueryClient {
|
|
|
522
522
|
__name(_Forecastquery, "Forecastquery");
|
|
523
523
|
var Forecastquery = _Forecastquery;
|
|
524
524
|
(0, import_smithy_client.createAggregatedClient)(commands, Forecastquery);
|
|
525
|
-
|
|
526
|
-
// src/index.ts
|
|
527
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
528
525
|
// Annotate the CommonJS export names for ESM import in node:
|
|
529
526
|
|
|
530
527
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -17,8 +17,8 @@ export interface Forecastquery {
|
|
|
17
17
|
queryWhatIfForecast(args: QueryWhatIfForecastCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryWhatIfForecastCommandOutput) => void): void;
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
|
-
* @public
|
|
21
20
|
* <p>Provides APIs for creating and managing Amazon Forecast resources.</p>
|
|
21
|
+
* @public
|
|
22
22
|
*/
|
|
23
23
|
export declare class Forecastquery extends ForecastqueryClient implements Forecastquery {
|
|
24
24
|
}
|
|
@@ -153,8 +153,8 @@ export type ForecastqueryClientResolvedConfigType = __SmithyResolvedConfiguratio
|
|
|
153
153
|
export interface ForecastqueryClientResolvedConfig extends ForecastqueryClientResolvedConfigType {
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
|
-
* @public
|
|
157
156
|
* <p>Provides APIs for creating and managing Amazon Forecast resources.</p>
|
|
157
|
+
* @public
|
|
158
158
|
*/
|
|
159
159
|
export declare class ForecastqueryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ForecastqueryClientResolvedConfig> {
|
|
160
160
|
/**
|
|
@@ -22,10 +22,10 @@ export interface QueryForecastCommandOutput extends QueryForecastResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const QueryForecastCommand_base: {
|
|
24
24
|
new (input: QueryForecastCommandInput): import("@smithy/smithy-client").CommandImpl<QueryForecastCommandInput, QueryForecastCommandOutput, ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: QueryForecastCommandInput): import("@smithy/smithy-client").CommandImpl<QueryForecastCommandInput, QueryForecastCommandOutput, ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves a forecast for a single item, filtered by the supplied criteria.</p>
|
|
30
30
|
* <p>The criteria is a key-value pair. The key is either <code>item_id</code> (or the
|
|
31
31
|
* equivalent non-timestamp, non-target field) from the <code>TARGET_TIME_SERIES</code> dataset,
|
|
@@ -95,6 +95,7 @@ declare const QueryForecastCommand_base: {
|
|
|
95
95
|
* @throws {@link ForecastqueryServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from Forecastquery service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class QueryForecastCommand extends QueryForecastCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface QueryWhatIfForecastCommandOutput extends QueryWhatIfForecastRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const QueryWhatIfForecastCommand_base: {
|
|
24
24
|
new (input: QueryWhatIfForecastCommandInput): import("@smithy/smithy-client").CommandImpl<QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput, ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: QueryWhatIfForecastCommandInput): import("@smithy/smithy-client").CommandImpl<QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput, ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves a what-if forecast.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -84,6 +84,7 @@ declare const QueryWhatIfForecastCommand_base: {
|
|
|
84
84
|
* @throws {@link ForecastqueryServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from Forecastquery service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class QueryWhatIfForecastCommand extends QueryWhatIfForecastCommand_base {
|
|
89
90
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,4 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export { ForecastqueryExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./models";
|
|
13
|
-
import "@aws-sdk/util-endpoints";
|
|
14
13
|
export { ForecastqueryServiceException } from "./models/ForecastqueryServiceException";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ForecastqueryServiceException as __BaseException } from "./ForecastqueryServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>The value is invalid or is too long.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class InvalidInputException extends __BaseException {
|
|
8
8
|
readonly name: "InvalidInputException";
|
|
@@ -14,8 +14,8 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
14
14
|
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* @public
|
|
18
17
|
* <p>The token is not valid. Tokens expire after 24 hours.</p>
|
|
18
|
+
* @public
|
|
19
19
|
*/
|
|
20
20
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
21
21
|
readonly name: "InvalidNextTokenException";
|
|
@@ -27,8 +27,8 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
27
27
|
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
|
-
* @public
|
|
31
30
|
* <p>The limit on the number of requests per second has been exceeded.</p>
|
|
31
|
+
* @public
|
|
32
32
|
*/
|
|
33
33
|
export declare class LimitExceededException extends __BaseException {
|
|
34
34
|
readonly name: "LimitExceededException";
|
|
@@ -44,24 +44,23 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
44
44
|
*/
|
|
45
45
|
export interface QueryForecastRequest {
|
|
46
46
|
/**
|
|
47
|
-
* @public
|
|
48
47
|
* <p>The Amazon Resource Name (ARN) of the forecast to query.</p>
|
|
48
|
+
* @public
|
|
49
49
|
*/
|
|
50
50
|
ForecastArn: string | undefined;
|
|
51
51
|
/**
|
|
52
|
-
* @public
|
|
53
52
|
* <p>The start date for the forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
54
53
|
* (ISO 8601 format). For example, 2015-01-01T08:00:00.</p>
|
|
54
|
+
* @public
|
|
55
55
|
*/
|
|
56
56
|
StartDate?: string;
|
|
57
57
|
/**
|
|
58
|
-
* @public
|
|
59
58
|
* <p>The end date for the forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
60
59
|
* (ISO 8601 format). For example, 2015-01-01T20:00:00. </p>
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
EndDate?: string;
|
|
63
63
|
/**
|
|
64
|
-
* @public
|
|
65
64
|
* <p>The filtering criteria to apply when retrieving the forecast. For example, to get the
|
|
66
65
|
* forecast for <code>client_21</code> in the electricity usage dataset, specify the
|
|
67
66
|
* following:</p>
|
|
@@ -71,40 +70,40 @@ export interface QueryForecastRequest {
|
|
|
71
70
|
*
|
|
72
71
|
*
|
|
73
72
|
* <p>To get the full forecast, use the <a href="https://docs.aws.amazon.com/en_us/forecast/latest/dg/API_CreateForecastExportJob.html">CreateForecastExportJob</a> operation.</p>
|
|
73
|
+
* @public
|
|
74
74
|
*/
|
|
75
75
|
Filters: Record<string, string> | undefined;
|
|
76
76
|
/**
|
|
77
|
-
* @public
|
|
78
77
|
* <p>If the result of the previous request was truncated, the response includes a
|
|
79
78
|
* <code>NextToken</code>. To retrieve the next set of results, use the token in the next
|
|
80
79
|
* request. Tokens expire after 24 hours.</p>
|
|
80
|
+
* @public
|
|
81
81
|
*/
|
|
82
82
|
NextToken?: string;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
|
-
* @public
|
|
86
85
|
* <p>The forecast value for a specific date. Part of the <a>Forecast</a>
|
|
87
86
|
* object.</p>
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
export interface DataPoint {
|
|
90
90
|
/**
|
|
91
|
-
* @public
|
|
92
91
|
* <p>The timestamp of the specific forecast.</p>
|
|
92
|
+
* @public
|
|
93
93
|
*/
|
|
94
94
|
Timestamp?: string;
|
|
95
95
|
/**
|
|
96
|
-
* @public
|
|
97
96
|
* <p>The forecast value.</p>
|
|
97
|
+
* @public
|
|
98
98
|
*/
|
|
99
99
|
Value?: number;
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
|
-
* @public
|
|
103
102
|
* <p>Provides information about a forecast. Returned as part of the <a>QueryForecast</a> response.</p>
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
export interface Forecast {
|
|
106
106
|
/**
|
|
107
|
-
* @public
|
|
108
107
|
* <p>The forecast.</p>
|
|
109
108
|
* <p>The <i>string</i> of the string-to-array map is one of the following
|
|
110
109
|
* values:</p>
|
|
@@ -121,6 +120,7 @@ export interface Forecast {
|
|
|
121
120
|
* </ul>
|
|
122
121
|
* <p>The default setting is <code>["0.1", "0.5", "0.9"]</code>. Use the optional <code>ForecastTypes</code> parameter of the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateForecast.html">CreateForecast</a> operation to change the values. The values will vary depending on how this is set, with a minimum of <code>1</code> and a maximum of <code>5.</code>
|
|
123
122
|
* </p>
|
|
123
|
+
* @public
|
|
124
124
|
*/
|
|
125
125
|
Predictions?: Record<string, DataPoint[]>;
|
|
126
126
|
}
|
|
@@ -129,14 +129,14 @@ export interface Forecast {
|
|
|
129
129
|
*/
|
|
130
130
|
export interface QueryForecastResponse {
|
|
131
131
|
/**
|
|
132
|
-
* @public
|
|
133
132
|
* <p>The forecast.</p>
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
Forecast?: Forecast;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
|
-
* @public
|
|
139
138
|
* <p>The specified resource is in use.</p>
|
|
139
|
+
* @public
|
|
140
140
|
*/
|
|
141
141
|
export declare class ResourceInUseException extends __BaseException {
|
|
142
142
|
readonly name: "ResourceInUseException";
|
|
@@ -148,9 +148,9 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
148
148
|
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
149
149
|
}
|
|
150
150
|
/**
|
|
151
|
-
* @public
|
|
152
151
|
* <p>We can't find that resource. Check the information that you've provided and try
|
|
153
152
|
* again.</p>
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
156
156
|
readonly name: "ResourceNotFoundException";
|
|
@@ -166,24 +166,23 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
166
166
|
*/
|
|
167
167
|
export interface QueryWhatIfForecastRequest {
|
|
168
168
|
/**
|
|
169
|
-
* @public
|
|
170
169
|
* <p>The Amazon Resource Name (ARN) of the what-if forecast to query.</p>
|
|
170
|
+
* @public
|
|
171
171
|
*/
|
|
172
172
|
WhatIfForecastArn: string | undefined;
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <p>The start date for the what-if forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
176
175
|
* (ISO 8601 format). For example, 2015-01-01T08:00:00.</p>
|
|
176
|
+
* @public
|
|
177
177
|
*/
|
|
178
178
|
StartDate?: string;
|
|
179
179
|
/**
|
|
180
|
-
* @public
|
|
181
180
|
* <p>The end date for the what-if forecast. Specify the date using this format: yyyy-MM-dd'T'HH:mm:ss
|
|
182
181
|
* (ISO 8601 format). For example, 2015-01-01T20:00:00. </p>
|
|
182
|
+
* @public
|
|
183
183
|
*/
|
|
184
184
|
EndDate?: string;
|
|
185
185
|
/**
|
|
186
|
-
* @public
|
|
187
186
|
* <p>The filtering criteria to apply when retrieving the forecast. For example, to get the
|
|
188
187
|
* forecast for <code>client_21</code> in the electricity usage dataset, specify the
|
|
189
188
|
* following:</p>
|
|
@@ -191,13 +190,14 @@ export interface QueryWhatIfForecastRequest {
|
|
|
191
190
|
* <code>\{"item_id" : "client_21"\}</code>
|
|
192
191
|
* </p>
|
|
193
192
|
* <p>To get the full what-if forecast, use the <a href="https://docs.aws.amazon.com/en_us/forecast/latest/dg/API_CreateWhatIfForecastExport.html">CreateForecastExportJob</a> operation.</p>
|
|
193
|
+
* @public
|
|
194
194
|
*/
|
|
195
195
|
Filters: Record<string, string> | undefined;
|
|
196
196
|
/**
|
|
197
|
-
* @public
|
|
198
197
|
* <p>If the result of the previous request was truncated, the response includes a
|
|
199
198
|
* <code>NextToken</code>. To retrieve the next set of results, use the token in the next
|
|
200
199
|
* request. Tokens expire after 24 hours.</p>
|
|
200
|
+
* @public
|
|
201
201
|
*/
|
|
202
202
|
NextToken?: string;
|
|
203
203
|
}
|
|
@@ -206,8 +206,8 @@ export interface QueryWhatIfForecastRequest {
|
|
|
206
206
|
*/
|
|
207
207
|
export interface QueryWhatIfForecastResponse {
|
|
208
208
|
/**
|
|
209
|
-
* @public
|
|
210
209
|
* <p>Provides information about a forecast. Returned as part of the <a>QueryForecast</a> response.</p>
|
|
210
|
+
* @public
|
|
211
211
|
*/
|
|
212
212
|
Forecast?: Forecast;
|
|
213
213
|
}
|
|
@@ -24,6 +24,15 @@ declare const QueryForecastCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: QueryForecastCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
QueryForecastCommandInput,
|
|
31
|
+
QueryForecastCommandOutput,
|
|
32
|
+
ForecastqueryClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class QueryForecastCommand extends QueryForecastCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const QueryWhatIfForecastCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: QueryWhatIfForecastCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
QueryWhatIfForecastCommandInput,
|
|
32
|
+
QueryWhatIfForecastCommandOutput,
|
|
33
|
+
ForecastqueryClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class QueryWhatIfForecastCommand extends QueryWhatIfForecastCommand_base {}
|
|
@@ -5,5 +5,4 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ForecastqueryExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./models";
|
|
8
|
-
import "@aws-sdk/util-endpoints";
|
|
9
8
|
export { ForecastqueryServiceException } from "./models/ForecastqueryServiceException";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-forecastquery",
|
|
3
3
|
"description": "AWS SDK for JavaScript Forecastquery Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.540.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-forecastquery",
|
|
@@ -20,47 +20,47 @@
|
|
|
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.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|