@aws-sdk/client-forecastquery 3.956.0 → 3.958.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/README.md +1 -7
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +59 -35
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +59 -35
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -9,10 +9,8 @@ AWS SDK for JavaScript Forecastquery Client for Node.js, Browser and React Nativ
|
|
|
9
9
|
<p>Provides APIs for creating and managing Amazon Forecast resources.</p>
|
|
10
10
|
|
|
11
11
|
## Installing
|
|
12
|
-
|
|
13
12
|
To install this package, simply type add or install @aws-sdk/client-forecastquery
|
|
14
13
|
using your favorite package manager:
|
|
15
|
-
|
|
16
14
|
- `npm install @aws-sdk/client-forecastquery`
|
|
17
15
|
- `yarn add @aws-sdk/client-forecastquery`
|
|
18
16
|
- `pnpm add @aws-sdk/client-forecastquery`
|
|
@@ -48,9 +46,7 @@ To send a request, you:
|
|
|
48
46
|
// a client can be shared by different commands.
|
|
49
47
|
const client = new ForecastqueryClient({ region: "REGION" });
|
|
50
48
|
|
|
51
|
-
const params = {
|
|
52
|
-
/** input parameters */
|
|
53
|
-
};
|
|
49
|
+
const params = { /** input parameters */ };
|
|
54
50
|
const command = new QueryForecastCommand(params);
|
|
55
51
|
```
|
|
56
52
|
|
|
@@ -209,7 +205,6 @@ QueryForecast
|
|
|
209
205
|
</summary>
|
|
210
206
|
|
|
211
207
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/forecastquery/command/QueryForecastCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-forecastquery/Interface/QueryForecastCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-forecastquery/Interface/QueryForecastCommandOutput/)
|
|
212
|
-
|
|
213
208
|
</details>
|
|
214
209
|
<details>
|
|
215
210
|
<summary>
|
|
@@ -217,5 +212,4 @@ QueryWhatIfForecast
|
|
|
217
212
|
</summary>
|
|
218
213
|
|
|
219
214
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/forecastquery/command/QueryWhatIfForecastCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-forecastquery/Interface/QueryWhatIfForecastCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-forecastquery/Interface/QueryWhatIfForecastCommandOutput/)
|
|
220
|
-
|
|
221
215
|
</details>
|
|
@@ -6,10 +6,9 @@ const util_middleware_1 = require("@smithy/util-middleware");
|
|
|
6
6
|
const defaultForecastqueryHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
8
8
|
operation: (0, util_middleware_1.getSmithyContext)(context).operation,
|
|
9
|
-
region:
|
|
10
|
-
(
|
|
11
|
-
|
|
12
|
-
})(),
|
|
9
|
+
region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => {
|
|
10
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
|
+
})(),
|
|
13
12
|
};
|
|
14
13
|
};
|
|
15
14
|
exports.defaultForecastqueryHttpAuthSchemeParametersProvider = defaultForecastqueryHttpAuthSchemeParametersProvider;
|
package/dist-cjs/index.js
CHANGED
|
@@ -217,55 +217,79 @@ const _e = "error";
|
|
|
217
217
|
const _hE = "httpError";
|
|
218
218
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.forecastquery";
|
|
219
219
|
const n0 = "com.amazonaws.forecastquery";
|
|
220
|
-
var DataPoint$ = [3, n0, _DP,
|
|
221
|
-
|
|
222
|
-
|
|
220
|
+
var DataPoint$ = [3, n0, _DP,
|
|
221
|
+
0,
|
|
222
|
+
[_T, _V],
|
|
223
|
+
[0, 1]
|
|
224
|
+
];
|
|
225
|
+
var Forecast$ = [3, n0, _F,
|
|
226
|
+
0,
|
|
227
|
+
[_P],
|
|
228
|
+
[() => Predictions]
|
|
229
|
+
];
|
|
230
|
+
var InvalidInputException$ = [-3, n0, _IIE,
|
|
231
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
232
|
+
[_M],
|
|
233
|
+
[0]
|
|
234
|
+
];
|
|
223
235
|
schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
|
|
224
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
236
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
237
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
238
|
+
[_M],
|
|
239
|
+
[0]
|
|
240
|
+
];
|
|
225
241
|
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
226
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
242
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
243
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
244
|
+
[_M],
|
|
245
|
+
[0]
|
|
246
|
+
];
|
|
227
247
|
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
228
|
-
var QueryForecastRequest$ = [
|
|
229
|
-
3,
|
|
230
|
-
n0,
|
|
231
|
-
_QFR,
|
|
248
|
+
var QueryForecastRequest$ = [3, n0, _QFR,
|
|
232
249
|
0,
|
|
233
250
|
[_FA, _SD, _ED, _Fi, _NT],
|
|
234
|
-
[0, 0, 0, 128 | 0, 0]
|
|
251
|
+
[0, 0, 0, 128 | 0, 0]
|
|
252
|
+
];
|
|
253
|
+
var QueryForecastResponse$ = [3, n0, _QFRu,
|
|
254
|
+
0,
|
|
255
|
+
[_F],
|
|
256
|
+
[() => Forecast$]
|
|
235
257
|
];
|
|
236
|
-
var
|
|
237
|
-
var QueryWhatIfForecastRequest$ = [
|
|
238
|
-
3,
|
|
239
|
-
n0,
|
|
240
|
-
_QWIFR,
|
|
258
|
+
var QueryWhatIfForecastRequest$ = [3, n0, _QWIFR,
|
|
241
259
|
0,
|
|
242
260
|
[_WIFA, _SD, _ED, _Fi, _NT],
|
|
243
|
-
[0, 0, 0, 128 | 0, 0]
|
|
261
|
+
[0, 0, 0, 128 | 0, 0]
|
|
262
|
+
];
|
|
263
|
+
var QueryWhatIfForecastResponse$ = [3, n0, _QWIFRu,
|
|
264
|
+
0,
|
|
265
|
+
[_F],
|
|
266
|
+
[() => Forecast$]
|
|
267
|
+
];
|
|
268
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
269
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
270
|
+
[_M],
|
|
271
|
+
[0]
|
|
244
272
|
];
|
|
245
|
-
var QueryWhatIfForecastResponse$ = [3, n0, _QWIFRu, 0, [_F], [() => Forecast$]];
|
|
246
|
-
var ResourceInUseException$ = [-3, n0, _RIUE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
247
273
|
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
248
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
274
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
275
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
276
|
+
[_M],
|
|
277
|
+
[0]
|
|
278
|
+
];
|
|
249
279
|
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
250
280
|
var ForecastqueryServiceException$ = [-3, _s, "ForecastqueryServiceException", 0, [], []];
|
|
251
281
|
schema.TypeRegistry.for(_s).registerError(ForecastqueryServiceException$, ForecastqueryServiceException);
|
|
252
|
-
var TimeSeries = [1, n0, _TS,
|
|
253
|
-
|
|
254
|
-
var QueryForecast$ = [
|
|
255
|
-
9,
|
|
256
|
-
n0,
|
|
257
|
-
_QF,
|
|
258
|
-
0,
|
|
259
|
-
() => QueryForecastRequest$,
|
|
260
|
-
() => QueryForecastResponse$,
|
|
282
|
+
var TimeSeries = [1, n0, _TS,
|
|
283
|
+
0, () => DataPoint$
|
|
261
284
|
];
|
|
262
|
-
var
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
0,
|
|
267
|
-
|
|
268
|
-
|
|
285
|
+
var Predictions = [2, n0, _P,
|
|
286
|
+
0, 0, () => TimeSeries
|
|
287
|
+
];
|
|
288
|
+
var QueryForecast$ = [9, n0, _QF,
|
|
289
|
+
0, () => QueryForecastRequest$, () => QueryForecastResponse$
|
|
290
|
+
];
|
|
291
|
+
var QueryWhatIfForecast$ = [9, n0, _QWIF,
|
|
292
|
+
0, () => QueryWhatIfForecastRequest$, () => QueryWhatIfForecastResponse$
|
|
269
293
|
];
|
|
270
294
|
|
|
271
295
|
class QueryForecastCommand extends smithyClient.Command
|
|
@@ -24,8 +24,7 @@ const getRuntimeConfig = (config) => {
|
|
|
24
24
|
defaultsMode,
|
|
25
25
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
|
|
26
26
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
27
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
28
|
-
(0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
27
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
29
28
|
maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
30
29
|
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
31
30
|
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
@@ -34,11 +34,9 @@ const getRuntimeConfig = (config) => {
|
|
|
34
34
|
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
35
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
36
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
38
|
-
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
37
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
39
38
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
40
|
-
region: config?.region ??
|
|
41
|
-
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
39
|
+
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
42
40
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
43
41
|
retryMode: config?.retryMode ??
|
|
44
42
|
(0, node_config_provider_1.loadConfig)({
|
|
@@ -3,10 +3,9 @@ import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
|
3
3
|
export const defaultForecastqueryHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
|
5
5
|
operation: getSmithyContext(context).operation,
|
|
6
|
-
region:
|
|
7
|
-
(
|
|
8
|
-
|
|
9
|
-
})(),
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
7
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
8
|
+
})(),
|
|
10
9
|
};
|
|
11
10
|
};
|
|
12
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
@@ -20,8 +20,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
20
20
|
defaultsMode,
|
|
21
21
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
22
22
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
23
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
24
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
23
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
25
24
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
26
25
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
27
26
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import {
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
|
|
3
3
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
|
-
import {
|
|
4
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
5
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
6
6
|
import { Hash } from "@smithy/hash-node";
|
|
7
7
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -30,11 +30,9 @@ export const getRuntimeConfig = (config) => {
|
|
|
30
30
|
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
31
31
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
32
32
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
33
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
35
34
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
36
|
-
region: config?.region ??
|
|
37
|
-
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
35
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
38
36
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
39
37
|
retryMode: config?.retryMode ??
|
|
40
38
|
loadNodeConfig({
|
|
@@ -30,54 +30,78 @@ const n0 = "com.amazonaws.forecastquery";
|
|
|
30
30
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
31
31
|
import { InvalidInputException, InvalidNextTokenException, LimitExceededException, ResourceInUseException, ResourceNotFoundException, } from "../models/errors";
|
|
32
32
|
import { ForecastqueryServiceException } from "../models/ForecastqueryServiceException";
|
|
33
|
-
export var DataPoint$ = [3, n0, _DP,
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
export var DataPoint$ = [3, n0, _DP,
|
|
34
|
+
0,
|
|
35
|
+
[_T, _V],
|
|
36
|
+
[0, 1]
|
|
37
|
+
];
|
|
38
|
+
export var Forecast$ = [3, n0, _F,
|
|
39
|
+
0,
|
|
40
|
+
[_P],
|
|
41
|
+
[() => Predictions]
|
|
42
|
+
];
|
|
43
|
+
export var InvalidInputException$ = [-3, n0, _IIE,
|
|
44
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
45
|
+
[_M],
|
|
46
|
+
[0]
|
|
47
|
+
];
|
|
36
48
|
TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
|
|
37
|
-
export var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
49
|
+
export var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
50
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
51
|
+
[_M],
|
|
52
|
+
[0]
|
|
53
|
+
];
|
|
38
54
|
TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
39
|
-
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
55
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
56
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
57
|
+
[_M],
|
|
58
|
+
[0]
|
|
59
|
+
];
|
|
40
60
|
TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
41
|
-
export var QueryForecastRequest$ = [
|
|
42
|
-
3,
|
|
43
|
-
n0,
|
|
44
|
-
_QFR,
|
|
61
|
+
export var QueryForecastRequest$ = [3, n0, _QFR,
|
|
45
62
|
0,
|
|
46
63
|
[_FA, _SD, _ED, _Fi, _NT],
|
|
47
|
-
[0, 0, 0, 128 | 0, 0]
|
|
64
|
+
[0, 0, 0, 128 | 0, 0]
|
|
65
|
+
];
|
|
66
|
+
export var QueryForecastResponse$ = [3, n0, _QFRu,
|
|
67
|
+
0,
|
|
68
|
+
[_F],
|
|
69
|
+
[() => Forecast$]
|
|
48
70
|
];
|
|
49
|
-
export var
|
|
50
|
-
export var QueryWhatIfForecastRequest$ = [
|
|
51
|
-
3,
|
|
52
|
-
n0,
|
|
53
|
-
_QWIFR,
|
|
71
|
+
export var QueryWhatIfForecastRequest$ = [3, n0, _QWIFR,
|
|
54
72
|
0,
|
|
55
73
|
[_WIFA, _SD, _ED, _Fi, _NT],
|
|
56
|
-
[0, 0, 0, 128 | 0, 0]
|
|
74
|
+
[0, 0, 0, 128 | 0, 0]
|
|
75
|
+
];
|
|
76
|
+
export var QueryWhatIfForecastResponse$ = [3, n0, _QWIFRu,
|
|
77
|
+
0,
|
|
78
|
+
[_F],
|
|
79
|
+
[() => Forecast$]
|
|
80
|
+
];
|
|
81
|
+
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
82
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
83
|
+
[_M],
|
|
84
|
+
[0]
|
|
57
85
|
];
|
|
58
|
-
export var QueryWhatIfForecastResponse$ = [3, n0, _QWIFRu, 0, [_F], [() => Forecast$]];
|
|
59
|
-
export var ResourceInUseException$ = [-3, n0, _RIUE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
60
86
|
TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
61
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
87
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
88
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
89
|
+
[_M],
|
|
90
|
+
[0]
|
|
91
|
+
];
|
|
62
92
|
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
63
93
|
export var ForecastqueryServiceException$ = [-3, _s, "ForecastqueryServiceException", 0, [], []];
|
|
64
94
|
TypeRegistry.for(_s).registerError(ForecastqueryServiceException$, ForecastqueryServiceException);
|
|
65
|
-
var TimeSeries = [1, n0, _TS,
|
|
95
|
+
var TimeSeries = [1, n0, _TS,
|
|
96
|
+
0, () => DataPoint$
|
|
97
|
+
];
|
|
66
98
|
var Filters = 128 | 0;
|
|
67
|
-
var Predictions = [2, n0, _P,
|
|
68
|
-
|
|
69
|
-
9,
|
|
70
|
-
n0,
|
|
71
|
-
_QF,
|
|
72
|
-
0,
|
|
73
|
-
() => QueryForecastRequest$,
|
|
74
|
-
() => QueryForecastResponse$,
|
|
99
|
+
var Predictions = [2, n0, _P,
|
|
100
|
+
0, 0, () => TimeSeries
|
|
75
101
|
];
|
|
76
|
-
export var
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
0,
|
|
81
|
-
() => QueryWhatIfForecastRequest$,
|
|
82
|
-
() => QueryWhatIfForecastResponse$,
|
|
102
|
+
export var QueryForecast$ = [9, n0, _QF,
|
|
103
|
+
0, () => QueryForecastRequest$, () => QueryForecastResponse$
|
|
104
|
+
];
|
|
105
|
+
export var QueryWhatIfForecast$ = [9, n0, _QWIF,
|
|
106
|
+
0, () => QueryWhatIfForecastRequest$, () => QueryWhatIfForecastResponse$
|
|
83
107
|
];
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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.958.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 client-forecastquery",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
-
"build:include:deps": "
|
|
9
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
12
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
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.
|
|
24
|
+
"@aws-sdk/core": "3.957.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.958.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.957.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.957.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.957.0",
|
|
31
|
+
"@aws-sdk/types": "3.957.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.957.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.957.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.957.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.5",
|
|
36
36
|
"@smithy/core": "^3.20.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.8",
|