@aws-sdk/client-supplychain 3.934.0 → 3.936.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.
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SupplyChainExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { SupplyChainServiceException } from "./models/SupplyChainServiceException";
@@ -0,0 +1,119 @@
1
+ export declare const ConfigurationJobStatus: {
2
+ readonly FAILED: "FAILED";
3
+ readonly IN_PROGRESS: "IN_PROGRESS";
4
+ readonly NEW: "NEW";
5
+ readonly QUEUED: "QUEUED";
6
+ readonly SUCCESS: "SUCCESS";
7
+ };
8
+ export type ConfigurationJobStatus =
9
+ (typeof ConfigurationJobStatus)[keyof typeof ConfigurationJobStatus];
10
+ export declare const DataIntegrationFlowFieldPriorityDedupeSortOrder: {
11
+ readonly ASC: "ASC";
12
+ readonly DESC: "DESC";
13
+ };
14
+ export type DataIntegrationFlowFieldPriorityDedupeSortOrder =
15
+ (typeof DataIntegrationFlowFieldPriorityDedupeSortOrder)[keyof typeof DataIntegrationFlowFieldPriorityDedupeSortOrder];
16
+ export declare const DataIntegrationFlowDedupeStrategyType: {
17
+ readonly FIELD_PRIORITY: "FIELD_PRIORITY";
18
+ };
19
+ export type DataIntegrationFlowDedupeStrategyType =
20
+ (typeof DataIntegrationFlowDedupeStrategyType)[keyof typeof DataIntegrationFlowDedupeStrategyType];
21
+ export declare const DataIntegrationFlowLoadType: {
22
+ readonly INCREMENTAL: "INCREMENTAL";
23
+ readonly REPLACE: "REPLACE";
24
+ };
25
+ export type DataIntegrationFlowLoadType =
26
+ (typeof DataIntegrationFlowLoadType)[keyof typeof DataIntegrationFlowLoadType];
27
+ export declare const DataIntegrationFlowFileType: {
28
+ readonly CSV: "CSV";
29
+ readonly JSON: "JSON";
30
+ readonly PARQUET: "PARQUET";
31
+ };
32
+ export type DataIntegrationFlowFileType =
33
+ (typeof DataIntegrationFlowFileType)[keyof typeof DataIntegrationFlowFileType];
34
+ export declare const DataIntegrationFlowSourceType: {
35
+ readonly DATASET: "DATASET";
36
+ readonly S3: "S3";
37
+ };
38
+ export type DataIntegrationFlowSourceType =
39
+ (typeof DataIntegrationFlowSourceType)[keyof typeof DataIntegrationFlowSourceType];
40
+ export declare const DataIntegrationFlowTargetType: {
41
+ readonly DATASET: "DATASET";
42
+ readonly S3: "S3";
43
+ };
44
+ export type DataIntegrationFlowTargetType =
45
+ (typeof DataIntegrationFlowTargetType)[keyof typeof DataIntegrationFlowTargetType];
46
+ export declare const DataIntegrationFlowTransformationType: {
47
+ readonly NONE: "NONE";
48
+ readonly SQL: "SQL";
49
+ };
50
+ export type DataIntegrationFlowTransformationType =
51
+ (typeof DataIntegrationFlowTransformationType)[keyof typeof DataIntegrationFlowTransformationType];
52
+ export declare const DataLakeDatasetPartitionTransformType: {
53
+ readonly DAY: "DAY";
54
+ readonly HOUR: "HOUR";
55
+ readonly IDENTITY: "IDENTITY";
56
+ readonly MONTH: "MONTH";
57
+ readonly YEAR: "YEAR";
58
+ };
59
+ export type DataLakeDatasetPartitionTransformType =
60
+ (typeof DataLakeDatasetPartitionTransformType)[keyof typeof DataLakeDatasetPartitionTransformType];
61
+ export declare const DataLakeDatasetSchemaFieldType: {
62
+ readonly DOUBLE: "DOUBLE";
63
+ readonly INT: "INT";
64
+ readonly LONG: "LONG";
65
+ readonly STRING: "STRING";
66
+ readonly TIMESTAMP: "TIMESTAMP";
67
+ };
68
+ export type DataLakeDatasetSchemaFieldType =
69
+ (typeof DataLakeDatasetSchemaFieldType)[keyof typeof DataLakeDatasetSchemaFieldType];
70
+ export declare const InstanceState: {
71
+ readonly ACTIVE: "Active";
72
+ readonly CREATE_FAILED: "CreateFailed";
73
+ readonly DELETED: "Deleted";
74
+ readonly DELETE_FAILED: "DeleteFailed";
75
+ readonly DELETING: "Deleting";
76
+ readonly INITIALIZING: "Initializing";
77
+ };
78
+ export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
79
+ export declare const DataIntegrationEventDatasetLoadStatus: {
80
+ readonly FAILED: "FAILED";
81
+ readonly IN_PROGRESS: "IN_PROGRESS";
82
+ readonly SUCCEEDED: "SUCCEEDED";
83
+ };
84
+ export type DataIntegrationEventDatasetLoadStatus =
85
+ (typeof DataIntegrationEventDatasetLoadStatus)[keyof typeof DataIntegrationEventDatasetLoadStatus];
86
+ export declare const DataIntegrationEventDatasetOperationType: {
87
+ readonly APPEND: "APPEND";
88
+ readonly DELETE: "DELETE";
89
+ readonly UPSERT: "UPSERT";
90
+ };
91
+ export type DataIntegrationEventDatasetOperationType =
92
+ (typeof DataIntegrationEventDatasetOperationType)[keyof typeof DataIntegrationEventDatasetOperationType];
93
+ export declare const DataIntegrationEventType: {
94
+ readonly DATASET: "scn.data.dataset";
95
+ readonly FORECAST: "scn.data.forecast";
96
+ readonly INBOUND_ORDER: "scn.data.inboundorder";
97
+ readonly INBOUND_ORDER_LINE: "scn.data.inboundorderline";
98
+ readonly INBOUND_ORDER_LINE_SCHEDULE: "scn.data.inboundorderlineschedule";
99
+ readonly INVENTORY_LEVEL: "scn.data.inventorylevel";
100
+ readonly OUTBOUND_ORDER_LINE: "scn.data.outboundorderline";
101
+ readonly OUTBOUND_SHIPMENT: "scn.data.outboundshipment";
102
+ readonly PROCESS_HEADER: "scn.data.processheader";
103
+ readonly PROCESS_OPERATION: "scn.data.processoperation";
104
+ readonly PROCESS_PRODUCT: "scn.data.processproduct";
105
+ readonly RESERVATION: "scn.data.reservation";
106
+ readonly SHIPMENT: "scn.data.shipment";
107
+ readonly SHIPMENT_STOP: "scn.data.shipmentstop";
108
+ readonly SHIPMENT_STOP_ORDER: "scn.data.shipmentstoporder";
109
+ readonly SUPPLY_PLAN: "scn.data.supplyplan";
110
+ };
111
+ export type DataIntegrationEventType =
112
+ (typeof DataIntegrationEventType)[keyof typeof DataIntegrationEventType];
113
+ export declare const DataIntegrationFlowExecutionStatus: {
114
+ readonly FAILED: "FAILED";
115
+ readonly IN_PROGRESS: "IN_PROGRESS";
116
+ readonly SUCCEEDED: "SUCCEEDED";
117
+ };
118
+ export type DataIntegrationFlowExecutionStatus =
119
+ (typeof DataIntegrationFlowExecutionStatus)[keyof typeof DataIntegrationFlowExecutionStatus];
@@ -0,0 +1,53 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SupplyChainServiceException as __BaseException } from "./SupplyChainServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ConflictException extends __BaseException {
11
+ readonly name: "ConflictException";
12
+ readonly $fault: "client";
13
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
14
+ }
15
+ export declare class InternalServerException extends __BaseException {
16
+ readonly name: "InternalServerException";
17
+ readonly $fault: "server";
18
+ $retryable: {};
19
+ constructor(
20
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
21
+ );
22
+ }
23
+ export declare class ResourceNotFoundException extends __BaseException {
24
+ readonly name: "ResourceNotFoundException";
25
+ readonly $fault: "client";
26
+ constructor(
27
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
28
+ );
29
+ }
30
+ export declare class ServiceQuotaExceededException extends __BaseException {
31
+ readonly name: "ServiceQuotaExceededException";
32
+ readonly $fault: "client";
33
+ constructor(
34
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
35
+ );
36
+ }
37
+ export declare class ThrottlingException extends __BaseException {
38
+ readonly name: "ThrottlingException";
39
+ readonly $fault: "client";
40
+ $retryable: {
41
+ throttling: boolean;
42
+ };
43
+ constructor(
44
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
45
+ );
46
+ }
47
+ export declare class ValidationException extends __BaseException {
48
+ readonly name: "ValidationException";
49
+ readonly $fault: "client";
50
+ constructor(
51
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
52
+ );
53
+ }
@@ -1,21 +1,20 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SupplyChainServiceException as __BaseException } from "./SupplyChainServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- constructor(
7
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
- );
9
- }
10
- export declare const ConfigurationJobStatus: {
11
- readonly FAILED: "FAILED";
12
- readonly IN_PROGRESS: "IN_PROGRESS";
13
- readonly NEW: "NEW";
14
- readonly QUEUED: "QUEUED";
15
- readonly SUCCESS: "SUCCESS";
16
- };
17
- export type ConfigurationJobStatus =
18
- (typeof ConfigurationJobStatus)[keyof typeof ConfigurationJobStatus];
1
+ import {
2
+ ConfigurationJobStatus,
3
+ DataIntegrationEventDatasetLoadStatus,
4
+ DataIntegrationEventDatasetOperationType,
5
+ DataIntegrationEventType,
6
+ DataIntegrationFlowDedupeStrategyType,
7
+ DataIntegrationFlowExecutionStatus,
8
+ DataIntegrationFlowFieldPriorityDedupeSortOrder,
9
+ DataIntegrationFlowFileType,
10
+ DataIntegrationFlowLoadType,
11
+ DataIntegrationFlowSourceType,
12
+ DataIntegrationFlowTargetType,
13
+ DataIntegrationFlowTransformationType,
14
+ DataLakeDatasetPartitionTransformType,
15
+ DataLakeDatasetSchemaFieldType,
16
+ InstanceState,
17
+ } from "./enums";
19
18
  export interface BillOfMaterialsImportJob {
20
19
  instanceId: string | undefined;
21
20
  jobId: string | undefined;
@@ -23,11 +22,6 @@ export interface BillOfMaterialsImportJob {
23
22
  s3uri: string | undefined;
24
23
  message?: string | undefined;
25
24
  }
26
- export declare class ConflictException extends __BaseException {
27
- readonly name: "ConflictException";
28
- readonly $fault: "client";
29
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
30
- }
31
25
  export interface CreateBillOfMaterialsImportJobRequest {
32
26
  instanceId: string | undefined;
33
27
  s3uri: string | undefined;
@@ -36,45 +30,6 @@ export interface CreateBillOfMaterialsImportJobRequest {
36
30
  export interface CreateBillOfMaterialsImportJobResponse {
37
31
  jobId: string | undefined;
38
32
  }
39
- export declare class InternalServerException extends __BaseException {
40
- readonly name: "InternalServerException";
41
- readonly $fault: "server";
42
- $retryable: {};
43
- constructor(
44
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
45
- );
46
- }
47
- export declare class ResourceNotFoundException extends __BaseException {
48
- readonly name: "ResourceNotFoundException";
49
- readonly $fault: "client";
50
- constructor(
51
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
52
- );
53
- }
54
- export declare class ServiceQuotaExceededException extends __BaseException {
55
- readonly name: "ServiceQuotaExceededException";
56
- readonly $fault: "client";
57
- constructor(
58
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
59
- );
60
- }
61
- export declare class ThrottlingException extends __BaseException {
62
- readonly name: "ThrottlingException";
63
- readonly $fault: "client";
64
- $retryable: {
65
- throttling: boolean;
66
- };
67
- constructor(
68
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
69
- );
70
- }
71
- export declare class ValidationException extends __BaseException {
72
- readonly name: "ValidationException";
73
- readonly $fault: "client";
74
- constructor(
75
- opts: __ExceptionOptionType<ValidationException, __BaseException>
76
- );
77
- }
78
33
  export interface GetBillOfMaterialsImportJobRequest {
79
34
  instanceId: string | undefined;
80
35
  jobId: string | undefined;
@@ -82,12 +37,6 @@ export interface GetBillOfMaterialsImportJobRequest {
82
37
  export interface GetBillOfMaterialsImportJobResponse {
83
38
  job: BillOfMaterialsImportJob | undefined;
84
39
  }
85
- export declare const DataIntegrationFlowFieldPriorityDedupeSortOrder: {
86
- readonly ASC: "ASC";
87
- readonly DESC: "DESC";
88
- };
89
- export type DataIntegrationFlowFieldPriorityDedupeSortOrder =
90
- (typeof DataIntegrationFlowFieldPriorityDedupeSortOrder)[keyof typeof DataIntegrationFlowFieldPriorityDedupeSortOrder];
91
40
  export interface DataIntegrationFlowFieldPriorityDedupeField {
92
41
  name: string | undefined;
93
42
  sortOrder: DataIntegrationFlowFieldPriorityDedupeSortOrder | undefined;
@@ -95,23 +44,12 @@ export interface DataIntegrationFlowFieldPriorityDedupeField {
95
44
  export interface DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration {
96
45
  fields: DataIntegrationFlowFieldPriorityDedupeField[] | undefined;
97
46
  }
98
- export declare const DataIntegrationFlowDedupeStrategyType: {
99
- readonly FIELD_PRIORITY: "FIELD_PRIORITY";
100
- };
101
- export type DataIntegrationFlowDedupeStrategyType =
102
- (typeof DataIntegrationFlowDedupeStrategyType)[keyof typeof DataIntegrationFlowDedupeStrategyType];
103
47
  export interface DataIntegrationFlowDedupeStrategy {
104
48
  type: DataIntegrationFlowDedupeStrategyType | undefined;
105
49
  fieldPriority?:
106
50
  | DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration
107
51
  | undefined;
108
52
  }
109
- export declare const DataIntegrationFlowLoadType: {
110
- readonly INCREMENTAL: "INCREMENTAL";
111
- readonly REPLACE: "REPLACE";
112
- };
113
- export type DataIntegrationFlowLoadType =
114
- (typeof DataIntegrationFlowLoadType)[keyof typeof DataIntegrationFlowLoadType];
115
53
  export interface DataIntegrationFlowDatasetOptions {
116
54
  loadType?: DataIntegrationFlowLoadType | undefined;
117
55
  dedupeRecords?: boolean | undefined;
@@ -121,13 +59,6 @@ export interface DataIntegrationFlowDatasetSourceConfiguration {
121
59
  datasetIdentifier: string | undefined;
122
60
  options?: DataIntegrationFlowDatasetOptions | undefined;
123
61
  }
124
- export declare const DataIntegrationFlowFileType: {
125
- readonly CSV: "CSV";
126
- readonly JSON: "JSON";
127
- readonly PARQUET: "PARQUET";
128
- };
129
- export type DataIntegrationFlowFileType =
130
- (typeof DataIntegrationFlowFileType)[keyof typeof DataIntegrationFlowFileType];
131
62
  export interface DataIntegrationFlowS3Options {
132
63
  fileType?: DataIntegrationFlowFileType | undefined;
133
64
  }
@@ -136,12 +67,6 @@ export interface DataIntegrationFlowS3SourceConfiguration {
136
67
  prefix: string | undefined;
137
68
  options?: DataIntegrationFlowS3Options | undefined;
138
69
  }
139
- export declare const DataIntegrationFlowSourceType: {
140
- readonly DATASET: "DATASET";
141
- readonly S3: "S3";
142
- };
143
- export type DataIntegrationFlowSourceType =
144
- (typeof DataIntegrationFlowSourceType)[keyof typeof DataIntegrationFlowSourceType];
145
70
  export interface DataIntegrationFlowSource {
146
71
  sourceType: DataIntegrationFlowSourceType | undefined;
147
72
  sourceName: string | undefined;
@@ -157,12 +82,6 @@ export interface DataIntegrationFlowS3TargetConfiguration {
157
82
  prefix: string | undefined;
158
83
  options?: DataIntegrationFlowS3Options | undefined;
159
84
  }
160
- export declare const DataIntegrationFlowTargetType: {
161
- readonly DATASET: "DATASET";
162
- readonly S3: "S3";
163
- };
164
- export type DataIntegrationFlowTargetType =
165
- (typeof DataIntegrationFlowTargetType)[keyof typeof DataIntegrationFlowTargetType];
166
85
  export interface DataIntegrationFlowTarget {
167
86
  targetType: DataIntegrationFlowTargetType | undefined;
168
87
  s3Target?: DataIntegrationFlowS3TargetConfiguration | undefined;
@@ -171,12 +90,6 @@ export interface DataIntegrationFlowTarget {
171
90
  export interface DataIntegrationFlowSQLTransformationConfiguration {
172
91
  query: string | undefined;
173
92
  }
174
- export declare const DataIntegrationFlowTransformationType: {
175
- readonly NONE: "NONE";
176
- readonly SQL: "SQL";
177
- };
178
- export type DataIntegrationFlowTransformationType =
179
- (typeof DataIntegrationFlowTransformationType)[keyof typeof DataIntegrationFlowTransformationType];
180
93
  export interface DataIntegrationFlowTransformation {
181
94
  transformationType: DataIntegrationFlowTransformationType | undefined;
182
95
  sqlTransformation?:
@@ -195,15 +108,6 @@ export interface CreateDataIntegrationFlowResponse {
195
108
  instanceId: string | undefined;
196
109
  name: string | undefined;
197
110
  }
198
- export declare const DataLakeDatasetPartitionTransformType: {
199
- readonly DAY: "DAY";
200
- readonly HOUR: "HOUR";
201
- readonly IDENTITY: "IDENTITY";
202
- readonly MONTH: "MONTH";
203
- readonly YEAR: "YEAR";
204
- };
205
- export type DataLakeDatasetPartitionTransformType =
206
- (typeof DataLakeDatasetPartitionTransformType)[keyof typeof DataLakeDatasetPartitionTransformType];
207
111
  export interface DataLakeDatasetPartitionFieldTransform {
208
112
  type: DataLakeDatasetPartitionTransformType | undefined;
209
113
  }
@@ -214,15 +118,6 @@ export interface DataLakeDatasetPartitionField {
214
118
  export interface DataLakeDatasetPartitionSpec {
215
119
  fields: DataLakeDatasetPartitionField[] | undefined;
216
120
  }
217
- export declare const DataLakeDatasetSchemaFieldType: {
218
- readonly DOUBLE: "DOUBLE";
219
- readonly INT: "INT";
220
- readonly LONG: "LONG";
221
- readonly STRING: "STRING";
222
- readonly TIMESTAMP: "TIMESTAMP";
223
- };
224
- export type DataLakeDatasetSchemaFieldType =
225
- (typeof DataLakeDatasetSchemaFieldType)[keyof typeof DataLakeDatasetSchemaFieldType];
226
121
  export interface DataLakeDatasetSchemaField {
227
122
  name: string | undefined;
228
123
  type: DataLakeDatasetSchemaFieldType | undefined;
@@ -284,15 +179,6 @@ export interface CreateInstanceRequest {
284
179
  tags?: Record<string, string> | undefined;
285
180
  clientToken?: string | undefined;
286
181
  }
287
- export declare const InstanceState: {
288
- readonly ACTIVE: "Active";
289
- readonly CREATE_FAILED: "CreateFailed";
290
- readonly DELETED: "Deleted";
291
- readonly DELETE_FAILED: "DeleteFailed";
292
- readonly DELETING: "Deleting";
293
- readonly INITIALIZING: "Initializing";
294
- };
295
- export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
296
182
  export interface Instance {
297
183
  instanceId: string | undefined;
298
184
  awsAccountId: string | undefined;
@@ -309,24 +195,10 @@ export interface Instance {
309
195
  export interface CreateInstanceResponse {
310
196
  instance: Instance | undefined;
311
197
  }
312
- export declare const DataIntegrationEventDatasetLoadStatus: {
313
- readonly FAILED: "FAILED";
314
- readonly IN_PROGRESS: "IN_PROGRESS";
315
- readonly SUCCEEDED: "SUCCEEDED";
316
- };
317
- export type DataIntegrationEventDatasetLoadStatus =
318
- (typeof DataIntegrationEventDatasetLoadStatus)[keyof typeof DataIntegrationEventDatasetLoadStatus];
319
198
  export interface DataIntegrationEventDatasetLoadExecutionDetails {
320
199
  status: DataIntegrationEventDatasetLoadStatus | undefined;
321
200
  message?: string | undefined;
322
201
  }
323
- export declare const DataIntegrationEventDatasetOperationType: {
324
- readonly APPEND: "APPEND";
325
- readonly DELETE: "DELETE";
326
- readonly UPSERT: "UPSERT";
327
- };
328
- export type DataIntegrationEventDatasetOperationType =
329
- (typeof DataIntegrationEventDatasetOperationType)[keyof typeof DataIntegrationEventDatasetOperationType];
330
202
  export interface DataIntegrationEventDatasetTargetDetails {
331
203
  datasetIdentifier: string | undefined;
332
204
  operationType: DataIntegrationEventDatasetOperationType | undefined;
@@ -334,26 +206,6 @@ export interface DataIntegrationEventDatasetTargetDetails {
334
206
  | DataIntegrationEventDatasetLoadExecutionDetails
335
207
  | undefined;
336
208
  }
337
- export declare const DataIntegrationEventType: {
338
- readonly DATASET: "scn.data.dataset";
339
- readonly FORECAST: "scn.data.forecast";
340
- readonly INBOUND_ORDER: "scn.data.inboundorder";
341
- readonly INBOUND_ORDER_LINE: "scn.data.inboundorderline";
342
- readonly INBOUND_ORDER_LINE_SCHEDULE: "scn.data.inboundorderlineschedule";
343
- readonly INVENTORY_LEVEL: "scn.data.inventorylevel";
344
- readonly OUTBOUND_ORDER_LINE: "scn.data.outboundorderline";
345
- readonly OUTBOUND_SHIPMENT: "scn.data.outboundshipment";
346
- readonly PROCESS_HEADER: "scn.data.processheader";
347
- readonly PROCESS_OPERATION: "scn.data.processoperation";
348
- readonly PROCESS_PRODUCT: "scn.data.processproduct";
349
- readonly RESERVATION: "scn.data.reservation";
350
- readonly SHIPMENT: "scn.data.shipment";
351
- readonly SHIPMENT_STOP: "scn.data.shipmentstop";
352
- readonly SHIPMENT_STOP_ORDER: "scn.data.shipmentstoporder";
353
- readonly SUPPLY_PLAN: "scn.data.supplyplan";
354
- };
355
- export type DataIntegrationEventType =
356
- (typeof DataIntegrationEventType)[keyof typeof DataIntegrationEventType];
357
209
  export interface DataIntegrationEvent {
358
210
  instanceId: string | undefined;
359
211
  eventId: string | undefined;
@@ -390,13 +242,6 @@ export interface DataIntegrationFlowExecutionSourceInfo {
390
242
  s3Source?: DataIntegrationFlowS3Source | undefined;
391
243
  datasetSource?: DataIntegrationFlowDatasetSource | undefined;
392
244
  }
393
- export declare const DataIntegrationFlowExecutionStatus: {
394
- readonly FAILED: "FAILED";
395
- readonly IN_PROGRESS: "IN_PROGRESS";
396
- readonly SUCCEEDED: "SUCCEEDED";
397
- };
398
- export type DataIntegrationFlowExecutionStatus =
399
- (typeof DataIntegrationFlowExecutionStatus)[keyof typeof DataIntegrationFlowExecutionStatus];
400
245
  export interface DataIntegrationFlowExecution {
401
246
  instanceId: string | undefined;
402
247
  flowName: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-supplychain",
3
3
  "description": "AWS SDK for JavaScript Supplychain Client for Node.js, Browser and React Native",
4
- "version": "3.934.0",
4
+ "version": "3.936.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-supplychain",
@@ -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.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
25
- "@aws-sdk/middleware-host-header": "3.930.0",
26
- "@aws-sdk/middleware-logger": "3.930.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
29
- "@aws-sdk/region-config-resolver": "3.930.0",
30
- "@aws-sdk/types": "3.930.0",
31
- "@aws-sdk/util-endpoints": "3.930.0",
32
- "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
23
+ "@aws-sdk/core": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.936.0",
25
+ "@aws-sdk/middleware-host-header": "3.936.0",
26
+ "@aws-sdk/middleware-logger": "3.936.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.936.0",
29
+ "@aws-sdk/region-config-resolver": "3.936.0",
30
+ "@aws-sdk/types": "3.936.0",
31
+ "@aws-sdk/util-endpoints": "3.936.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.936.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
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.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
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.5",
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.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
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",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";