@aws-sdk/client-lookoutequipment 3.933.0 → 3.935.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 +107 -106
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +106 -0
- package/dist-es/models/errors.js +99 -0
- package/dist-es/models/models_0.js +1 -205
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +250 -0
- package/dist-types/models/errors.d.ts +98 -0
- package/dist-types/models/models_0.d.ts +2 -348
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +137 -0
- package/dist-types/ts3.4/models/errors.d.ts +56 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -195
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,31 +1,24 @@
|
|
|
1
|
+
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
1
2
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
};
|
|
21
|
-
export type AutoPromotionResult =
|
|
22
|
-
(typeof AutoPromotionResult)[keyof typeof AutoPromotionResult];
|
|
23
|
-
export declare class ConflictException extends __BaseException {
|
|
24
|
-
readonly name: "ConflictException";
|
|
25
|
-
readonly $fault: "client";
|
|
26
|
-
Message: string | undefined;
|
|
27
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
|
-
}
|
|
3
|
+
AutoPromotionResult,
|
|
4
|
+
DatasetStatus,
|
|
5
|
+
DataUploadFrequency,
|
|
6
|
+
InferenceDataImportStrategy,
|
|
7
|
+
InferenceExecutionStatus,
|
|
8
|
+
InferenceSchedulerStatus,
|
|
9
|
+
IngestionJobStatus,
|
|
10
|
+
LabelRating,
|
|
11
|
+
LatestInferenceResult,
|
|
12
|
+
ModelPromoteMode,
|
|
13
|
+
ModelQuality,
|
|
14
|
+
ModelStatus,
|
|
15
|
+
ModelVersionSourceType,
|
|
16
|
+
ModelVersionStatus,
|
|
17
|
+
Monotonicity,
|
|
18
|
+
RetrainingSchedulerStatus,
|
|
19
|
+
StatisticalIssueStatus,
|
|
20
|
+
TargetSamplingRate,
|
|
21
|
+
} from "./enums";
|
|
29
22
|
export interface DatasetSchema {
|
|
30
23
|
InlineDataSchema?: __AutomaticJsonStringConversion | string | undefined;
|
|
31
24
|
}
|
|
@@ -40,50 +33,11 @@ export interface CreateDatasetRequest {
|
|
|
40
33
|
ClientToken?: string | undefined;
|
|
41
34
|
Tags?: Tag[] | undefined;
|
|
42
35
|
}
|
|
43
|
-
export declare const DatasetStatus: {
|
|
44
|
-
readonly ACTIVE: "ACTIVE";
|
|
45
|
-
readonly CREATED: "CREATED";
|
|
46
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
47
|
-
readonly INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS";
|
|
48
|
-
};
|
|
49
|
-
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
50
36
|
export interface CreateDatasetResponse {
|
|
51
37
|
DatasetName?: string | undefined;
|
|
52
38
|
DatasetArn?: string | undefined;
|
|
53
39
|
Status?: DatasetStatus | undefined;
|
|
54
40
|
}
|
|
55
|
-
export declare class InternalServerException extends __BaseException {
|
|
56
|
-
readonly name: "InternalServerException";
|
|
57
|
-
readonly $fault: "server";
|
|
58
|
-
Message: string | undefined;
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
64
|
-
readonly name: "ServiceQuotaExceededException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
Message: string | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
|
-
export declare class ThrottlingException extends __BaseException {
|
|
72
|
-
readonly name: "ThrottlingException";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
Message: string | undefined;
|
|
75
|
-
constructor(
|
|
76
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
export declare class ValidationException extends __BaseException {
|
|
80
|
-
readonly name: "ValidationException";
|
|
81
|
-
readonly $fault: "client";
|
|
82
|
-
Message: string | undefined;
|
|
83
|
-
constructor(
|
|
84
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
41
|
export interface InferenceInputNameConfiguration {
|
|
88
42
|
TimestampFormat?: string | undefined;
|
|
89
43
|
ComponentTimestampDelimiter?: string | undefined;
|
|
@@ -105,15 +59,6 @@ export interface InferenceOutputConfiguration {
|
|
|
105
59
|
S3OutputConfiguration: InferenceS3OutputConfiguration | undefined;
|
|
106
60
|
KmsKeyId?: string | undefined;
|
|
107
61
|
}
|
|
108
|
-
export declare const DataUploadFrequency: {
|
|
109
|
-
readonly PT10M: "PT10M";
|
|
110
|
-
readonly PT15M: "PT15M";
|
|
111
|
-
readonly PT1H: "PT1H";
|
|
112
|
-
readonly PT30M: "PT30M";
|
|
113
|
-
readonly PT5M: "PT5M";
|
|
114
|
-
};
|
|
115
|
-
export type DataUploadFrequency =
|
|
116
|
-
(typeof DataUploadFrequency)[keyof typeof DataUploadFrequency];
|
|
117
62
|
export interface CreateInferenceSchedulerRequest {
|
|
118
63
|
ModelName: string | undefined;
|
|
119
64
|
InferenceSchedulerName: string | undefined;
|
|
@@ -126,40 +71,12 @@ export interface CreateInferenceSchedulerRequest {
|
|
|
126
71
|
ClientToken?: string | undefined;
|
|
127
72
|
Tags?: Tag[] | undefined;
|
|
128
73
|
}
|
|
129
|
-
export declare const ModelQuality: {
|
|
130
|
-
readonly CANNOT_DETERMINE_QUALITY: "CANNOT_DETERMINE_QUALITY";
|
|
131
|
-
readonly POOR_QUALITY_DETECTED: "POOR_QUALITY_DETECTED";
|
|
132
|
-
readonly QUALITY_THRESHOLD_MET: "QUALITY_THRESHOLD_MET";
|
|
133
|
-
};
|
|
134
|
-
export type ModelQuality = (typeof ModelQuality)[keyof typeof ModelQuality];
|
|
135
|
-
export declare const InferenceSchedulerStatus: {
|
|
136
|
-
readonly PENDING: "PENDING";
|
|
137
|
-
readonly RUNNING: "RUNNING";
|
|
138
|
-
readonly STOPPED: "STOPPED";
|
|
139
|
-
readonly STOPPING: "STOPPING";
|
|
140
|
-
};
|
|
141
|
-
export type InferenceSchedulerStatus =
|
|
142
|
-
(typeof InferenceSchedulerStatus)[keyof typeof InferenceSchedulerStatus];
|
|
143
74
|
export interface CreateInferenceSchedulerResponse {
|
|
144
75
|
InferenceSchedulerArn?: string | undefined;
|
|
145
76
|
InferenceSchedulerName?: string | undefined;
|
|
146
77
|
Status?: InferenceSchedulerStatus | undefined;
|
|
147
78
|
ModelQuality?: ModelQuality | undefined;
|
|
148
79
|
}
|
|
149
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
150
|
-
readonly name: "ResourceNotFoundException";
|
|
151
|
-
readonly $fault: "client";
|
|
152
|
-
Message: string | undefined;
|
|
153
|
-
constructor(
|
|
154
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
155
|
-
);
|
|
156
|
-
}
|
|
157
|
-
export declare const LabelRating: {
|
|
158
|
-
readonly ANOMALY: "ANOMALY";
|
|
159
|
-
readonly NEUTRAL: "NEUTRAL";
|
|
160
|
-
readonly NO_ANOMALY: "NO_ANOMALY";
|
|
161
|
-
};
|
|
162
|
-
export type LabelRating = (typeof LabelRating)[keyof typeof LabelRating];
|
|
163
80
|
export interface CreateLabelRequest {
|
|
164
81
|
LabelGroupName: string | undefined;
|
|
165
82
|
StartTime: Date | undefined;
|
|
@@ -183,21 +100,6 @@ export interface CreateLabelGroupResponse {
|
|
|
183
100
|
LabelGroupName?: string | undefined;
|
|
184
101
|
LabelGroupArn?: string | undefined;
|
|
185
102
|
}
|
|
186
|
-
export declare const TargetSamplingRate: {
|
|
187
|
-
readonly PT10M: "PT10M";
|
|
188
|
-
readonly PT10S: "PT10S";
|
|
189
|
-
readonly PT15M: "PT15M";
|
|
190
|
-
readonly PT15S: "PT15S";
|
|
191
|
-
readonly PT1H: "PT1H";
|
|
192
|
-
readonly PT1M: "PT1M";
|
|
193
|
-
readonly PT1S: "PT1S";
|
|
194
|
-
readonly PT30M: "PT30M";
|
|
195
|
-
readonly PT30S: "PT30S";
|
|
196
|
-
readonly PT5M: "PT5M";
|
|
197
|
-
readonly PT5S: "PT5S";
|
|
198
|
-
};
|
|
199
|
-
export type TargetSamplingRate =
|
|
200
|
-
(typeof TargetSamplingRate)[keyof typeof TargetSamplingRate];
|
|
201
103
|
export interface DataPreProcessingConfiguration {
|
|
202
104
|
TargetSamplingRate?: TargetSamplingRate | undefined;
|
|
203
105
|
}
|
|
@@ -236,23 +138,10 @@ export interface CreateModelRequest {
|
|
|
236
138
|
| ModelDiagnosticsOutputConfiguration
|
|
237
139
|
| undefined;
|
|
238
140
|
}
|
|
239
|
-
export declare const ModelStatus: {
|
|
240
|
-
readonly FAILED: "FAILED";
|
|
241
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
242
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
243
|
-
readonly SUCCESS: "SUCCESS";
|
|
244
|
-
};
|
|
245
|
-
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
246
141
|
export interface CreateModelResponse {
|
|
247
142
|
ModelArn?: string | undefined;
|
|
248
143
|
Status?: ModelStatus | undefined;
|
|
249
144
|
}
|
|
250
|
-
export declare const ModelPromoteMode: {
|
|
251
|
-
readonly MANAGED: "MANAGED";
|
|
252
|
-
readonly MANUAL: "MANUAL";
|
|
253
|
-
};
|
|
254
|
-
export type ModelPromoteMode =
|
|
255
|
-
(typeof ModelPromoteMode)[keyof typeof ModelPromoteMode];
|
|
256
145
|
export interface CreateRetrainingSchedulerRequest {
|
|
257
146
|
ModelName: string | undefined;
|
|
258
147
|
RetrainingStartDate?: Date | undefined;
|
|
@@ -261,14 +150,6 @@ export interface CreateRetrainingSchedulerRequest {
|
|
|
261
150
|
PromoteMode?: ModelPromoteMode | undefined;
|
|
262
151
|
ClientToken?: string | undefined;
|
|
263
152
|
}
|
|
264
|
-
export declare const RetrainingSchedulerStatus: {
|
|
265
|
-
readonly PENDING: "PENDING";
|
|
266
|
-
readonly RUNNING: "RUNNING";
|
|
267
|
-
readonly STOPPED: "STOPPED";
|
|
268
|
-
readonly STOPPING: "STOPPING";
|
|
269
|
-
};
|
|
270
|
-
export type RetrainingSchedulerStatus =
|
|
271
|
-
(typeof RetrainingSchedulerStatus)[keyof typeof RetrainingSchedulerStatus];
|
|
272
153
|
export interface CreateRetrainingSchedulerResponse {
|
|
273
154
|
ModelName?: string | undefined;
|
|
274
155
|
ModelArn?: string | undefined;
|
|
@@ -347,14 +228,6 @@ export interface IngestionS3InputConfiguration {
|
|
|
347
228
|
export interface IngestionInputConfiguration {
|
|
348
229
|
S3InputConfiguration: IngestionS3InputConfiguration | undefined;
|
|
349
230
|
}
|
|
350
|
-
export declare const IngestionJobStatus: {
|
|
351
|
-
readonly FAILED: "FAILED";
|
|
352
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
353
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
354
|
-
readonly SUCCESS: "SUCCESS";
|
|
355
|
-
};
|
|
356
|
-
export type IngestionJobStatus =
|
|
357
|
-
(typeof IngestionJobStatus)[keyof typeof IngestionJobStatus];
|
|
358
231
|
export interface DescribeDataIngestionJobResponse {
|
|
359
232
|
JobId?: string | undefined;
|
|
360
233
|
DatasetArn?: string | undefined;
|
|
@@ -393,12 +266,6 @@ export interface DescribeDatasetResponse {
|
|
|
393
266
|
export interface DescribeInferenceSchedulerRequest {
|
|
394
267
|
InferenceSchedulerName: string | undefined;
|
|
395
268
|
}
|
|
396
|
-
export declare const LatestInferenceResult: {
|
|
397
|
-
readonly ANOMALOUS: "ANOMALOUS";
|
|
398
|
-
readonly NORMAL: "NORMAL";
|
|
399
|
-
};
|
|
400
|
-
export type LatestInferenceResult =
|
|
401
|
-
(typeof LatestInferenceResult)[keyof typeof LatestInferenceResult];
|
|
402
269
|
export interface DescribeInferenceSchedulerResponse {
|
|
403
270
|
ModelArn?: string | undefined;
|
|
404
271
|
ModelName?: string | undefined;
|
|
@@ -444,15 +311,6 @@ export interface DescribeLabelGroupResponse {
|
|
|
444
311
|
export interface DescribeModelRequest {
|
|
445
312
|
ModelName: string | undefined;
|
|
446
313
|
}
|
|
447
|
-
export declare const ModelVersionStatus: {
|
|
448
|
-
readonly CANCELED: "CANCELED";
|
|
449
|
-
readonly FAILED: "FAILED";
|
|
450
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
451
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
452
|
-
readonly SUCCESS: "SUCCESS";
|
|
453
|
-
};
|
|
454
|
-
export type ModelVersionStatus =
|
|
455
|
-
(typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
|
|
456
314
|
export interface DescribeModelResponse {
|
|
457
315
|
ModelName?: string | undefined;
|
|
458
316
|
ModelArn?: string | undefined;
|
|
@@ -503,13 +361,6 @@ export interface DescribeModelVersionRequest {
|
|
|
503
361
|
ModelName: string | undefined;
|
|
504
362
|
ModelVersion: number | undefined;
|
|
505
363
|
}
|
|
506
|
-
export declare const ModelVersionSourceType: {
|
|
507
|
-
readonly IMPORT: "IMPORT";
|
|
508
|
-
readonly RETRAINING: "RETRAINING";
|
|
509
|
-
readonly TRAINING: "TRAINING";
|
|
510
|
-
};
|
|
511
|
-
export type ModelVersionSourceType =
|
|
512
|
-
(typeof ModelVersionSourceType)[keyof typeof ModelVersionSourceType];
|
|
513
364
|
export interface DescribeModelVersionResponse {
|
|
514
365
|
ModelName?: string | undefined;
|
|
515
366
|
ModelArn?: string | undefined;
|
|
@@ -585,13 +436,6 @@ export interface ImportDatasetResponse {
|
|
|
585
436
|
Status?: DatasetStatus | undefined;
|
|
586
437
|
JobId?: string | undefined;
|
|
587
438
|
}
|
|
588
|
-
export declare const InferenceDataImportStrategy: {
|
|
589
|
-
readonly ADD_WHEN_EMPTY: "ADD_WHEN_EMPTY";
|
|
590
|
-
readonly NO_IMPORT: "NO_IMPORT";
|
|
591
|
-
readonly OVERWRITE: "OVERWRITE";
|
|
592
|
-
};
|
|
593
|
-
export type InferenceDataImportStrategy =
|
|
594
|
-
(typeof InferenceDataImportStrategy)[keyof typeof InferenceDataImportStrategy];
|
|
595
439
|
export interface ImportModelVersionRequest {
|
|
596
440
|
SourceModelVersionArn: string | undefined;
|
|
597
441
|
ModelName?: string | undefined;
|
|
@@ -661,13 +505,6 @@ export interface ListInferenceEventsResponse {
|
|
|
661
505
|
NextToken?: string | undefined;
|
|
662
506
|
InferenceEventSummaries?: InferenceEventSummary[] | undefined;
|
|
663
507
|
}
|
|
664
|
-
export declare const InferenceExecutionStatus: {
|
|
665
|
-
readonly FAILED: "FAILED";
|
|
666
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
667
|
-
readonly SUCCESS: "SUCCESS";
|
|
668
|
-
};
|
|
669
|
-
export type InferenceExecutionStatus =
|
|
670
|
-
(typeof InferenceExecutionStatus)[keyof typeof InferenceExecutionStatus];
|
|
671
508
|
export interface ListInferenceExecutionsRequest {
|
|
672
509
|
NextToken?: string | undefined;
|
|
673
510
|
MaxResults?: number | undefined;
|
|
@@ -835,12 +672,6 @@ export interface ListSensorStatisticsRequest {
|
|
|
835
672
|
MaxResults?: number | undefined;
|
|
836
673
|
NextToken?: string | undefined;
|
|
837
674
|
}
|
|
838
|
-
export declare const StatisticalIssueStatus: {
|
|
839
|
-
readonly NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED";
|
|
840
|
-
readonly POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED";
|
|
841
|
-
};
|
|
842
|
-
export type StatisticalIssueStatus =
|
|
843
|
-
(typeof StatisticalIssueStatus)[keyof typeof StatisticalIssueStatus];
|
|
844
675
|
export interface CategoricalValues {
|
|
845
676
|
Status: StatisticalIssueStatus | undefined;
|
|
846
677
|
NumberOfCategory?: number | undefined;
|
|
@@ -854,12 +685,6 @@ export interface LargeTimestampGaps {
|
|
|
854
685
|
NumberOfLargeTimestampGaps?: number | undefined;
|
|
855
686
|
MaxTimestampGapInDays?: number | undefined;
|
|
856
687
|
}
|
|
857
|
-
export declare const Monotonicity: {
|
|
858
|
-
readonly DECREASING: "DECREASING";
|
|
859
|
-
readonly INCREASING: "INCREASING";
|
|
860
|
-
readonly STATIC: "STATIC";
|
|
861
|
-
};
|
|
862
|
-
export type Monotonicity = (typeof Monotonicity)[keyof typeof Monotonicity];
|
|
863
688
|
export interface MonotonicValues {
|
|
864
689
|
Status: StatisticalIssueStatus | undefined;
|
|
865
690
|
Monotonicity?: Monotonicity | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lookoutequipment",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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-lookoutequipment",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|