@aws-sdk/client-omics 3.929.0 → 3.931.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 CHANGED
@@ -264,24 +264,6 @@ const JobStatus = {
264
264
  IN_PROGRESS: "IN_PROGRESS",
265
265
  SUBMITTED: "SUBMITTED",
266
266
  };
267
- exports.FormatOptions = void 0;
268
- (function (FormatOptions) {
269
- FormatOptions.visit = (value, visitor) => {
270
- if (value.tsvOptions !== undefined)
271
- return visitor.tsvOptions(value.tsvOptions);
272
- if (value.vcfOptions !== undefined)
273
- return visitor.vcfOptions(value.vcfOptions);
274
- return visitor._(value.$unknown[0], value.$unknown[1]);
275
- };
276
- })(exports.FormatOptions || (exports.FormatOptions = {}));
277
- exports.ReferenceItem = void 0;
278
- (function (ReferenceItem) {
279
- ReferenceItem.visit = (value, visitor) => {
280
- if (value.referenceArn !== undefined)
281
- return visitor.referenceArn(value.referenceArn);
282
- return visitor._(value.$unknown[0], value.$unknown[1]);
283
- };
284
- })(exports.ReferenceItem || (exports.ReferenceItem = {}));
285
267
  const EncryptionType = {
286
268
  KMS: "KMS",
287
269
  };
@@ -315,14 +297,6 @@ const SchemaValueType = {
315
297
  LONG: "LONG",
316
298
  STRING: "STRING",
317
299
  };
318
- exports.StoreOptions = void 0;
319
- (function (StoreOptions) {
320
- StoreOptions.visit = (value, visitor) => {
321
- if (value.tsvStoreOptions !== undefined)
322
- return visitor.tsvStoreOptions(value.tsvStoreOptions);
323
- return visitor._(value.$unknown[0], value.$unknown[1]);
324
- };
325
- })(exports.StoreOptions || (exports.StoreOptions = {}));
326
300
  const StoreStatus = {
327
301
  ACTIVE: "ACTIVE",
328
302
  CREATING: "CREATING",
@@ -330,14 +304,6 @@ const StoreStatus = {
330
304
  FAILED: "FAILED",
331
305
  UPDATING: "UPDATING",
332
306
  };
333
- exports.VersionOptions = void 0;
334
- (function (VersionOptions) {
335
- VersionOptions.visit = (value, visitor) => {
336
- if (value.tsvVersionOptions !== undefined)
337
- return visitor.tsvVersionOptions(value.tsvVersionOptions);
338
- return visitor._(value.$unknown[0], value.$unknown[1]);
339
- };
340
- })(exports.VersionOptions || (exports.VersionOptions = {}));
341
307
  const VersionStatus = {
342
308
  ACTIVE: "ACTIVE",
343
309
  CREATING: "CREATING",
@@ -145,24 +145,6 @@ export const JobStatus = {
145
145
  IN_PROGRESS: "IN_PROGRESS",
146
146
  SUBMITTED: "SUBMITTED",
147
147
  };
148
- export var FormatOptions;
149
- (function (FormatOptions) {
150
- FormatOptions.visit = (value, visitor) => {
151
- if (value.tsvOptions !== undefined)
152
- return visitor.tsvOptions(value.tsvOptions);
153
- if (value.vcfOptions !== undefined)
154
- return visitor.vcfOptions(value.vcfOptions);
155
- return visitor._(value.$unknown[0], value.$unknown[1]);
156
- };
157
- })(FormatOptions || (FormatOptions = {}));
158
- export var ReferenceItem;
159
- (function (ReferenceItem) {
160
- ReferenceItem.visit = (value, visitor) => {
161
- if (value.referenceArn !== undefined)
162
- return visitor.referenceArn(value.referenceArn);
163
- return visitor._(value.$unknown[0], value.$unknown[1]);
164
- };
165
- })(ReferenceItem || (ReferenceItem = {}));
166
148
  export const EncryptionType = {
167
149
  KMS: "KMS",
168
150
  };
@@ -196,14 +178,6 @@ export const SchemaValueType = {
196
178
  LONG: "LONG",
197
179
  STRING: "STRING",
198
180
  };
199
- export var StoreOptions;
200
- (function (StoreOptions) {
201
- StoreOptions.visit = (value, visitor) => {
202
- if (value.tsvStoreOptions !== undefined)
203
- return visitor.tsvStoreOptions(value.tsvStoreOptions);
204
- return visitor._(value.$unknown[0], value.$unknown[1]);
205
- };
206
- })(StoreOptions || (StoreOptions = {}));
207
181
  export const StoreStatus = {
208
182
  ACTIVE: "ACTIVE",
209
183
  CREATING: "CREATING",
@@ -211,14 +185,6 @@ export const StoreStatus = {
211
185
  FAILED: "FAILED",
212
186
  UPDATING: "UPDATING",
213
187
  };
214
- export var VersionOptions;
215
- (function (VersionOptions) {
216
- VersionOptions.visit = (value, visitor) => {
217
- if (value.tsvVersionOptions !== undefined)
218
- return visitor.tsvVersionOptions(value.tsvVersionOptions);
219
- return visitor._(value.$unknown[0], value.$unknown[1]);
220
- };
221
- })(VersionOptions || (VersionOptions = {}));
222
188
  export const VersionStatus = {
223
189
  ACTIVE: "ACTIVE",
224
190
  CREATING: "CREATING",
@@ -501,12 +501,15 @@ export declare namespace FormatOptions {
501
501
  vcfOptions?: never;
502
502
  $unknown: [string, any];
503
503
  }
504
+ /**
505
+ * @deprecated unused in schema-serde mode.
506
+ *
507
+ */
504
508
  interface Visitor<T> {
505
509
  tsvOptions: (value: TsvOptions) => T;
506
510
  vcfOptions: (value: VcfOptions) => T;
507
511
  _: (name: string, value: any) => T;
508
512
  }
509
- const visit: <T>(value: FormatOptions, visitor: Visitor<T>) => T;
510
513
  }
511
514
  /**
512
515
  * @public
@@ -764,11 +767,14 @@ export declare namespace ReferenceItem {
764
767
  referenceArn?: never;
765
768
  $unknown: [string, any];
766
769
  }
770
+ /**
771
+ * @deprecated unused in schema-serde mode.
772
+ *
773
+ */
767
774
  interface Visitor<T> {
768
775
  referenceArn: (value: string) => T;
769
776
  _: (name: string, value: any) => T;
770
777
  }
771
- const visit: <T>(value: ReferenceItem, visitor: Visitor<T>) => T;
772
778
  }
773
779
  /**
774
780
  * @public
@@ -955,11 +961,14 @@ export declare namespace StoreOptions {
955
961
  tsvStoreOptions?: never;
956
962
  $unknown: [string, any];
957
963
  }
964
+ /**
965
+ * @deprecated unused in schema-serde mode.
966
+ *
967
+ */
958
968
  interface Visitor<T> {
959
969
  tsvStoreOptions: (value: TsvStoreOptions) => T;
960
970
  _: (name: string, value: any) => T;
961
971
  }
962
- const visit: <T>(value: StoreOptions, visitor: Visitor<T>) => T;
963
972
  }
964
973
  /**
965
974
  * @public
@@ -1423,11 +1432,14 @@ export declare namespace VersionOptions {
1423
1432
  tsvVersionOptions?: never;
1424
1433
  $unknown: [string, any];
1425
1434
  }
1435
+ /**
1436
+ * @deprecated unused in schema-serde mode.
1437
+ *
1438
+ */
1426
1439
  interface Visitor<T> {
1427
1440
  tsvVersionOptions: (value: TsvVersionOptions) => T;
1428
1441
  _: (name: string, value: any) => T;
1429
1442
  }
1430
- const visit: <T>(value: VersionOptions, visitor: Visitor<T>) => T;
1431
1443
  }
1432
1444
  /**
1433
1445
  * @public
@@ -198,7 +198,6 @@ export declare namespace FormatOptions {
198
198
  vcfOptions: (value: VcfOptions) => T;
199
199
  _: (name: string, value: any) => T;
200
200
  }
201
- const visit: <T>(value: FormatOptions, visitor: Visitor<T>) => T;
202
201
  }
203
202
  export interface GetAnnotationImportResponse {
204
203
  id: string | undefined;
@@ -269,7 +268,6 @@ export declare namespace ReferenceItem {
269
268
  referenceArn: (value: string) => T;
270
269
  _: (name: string, value: any) => T;
271
270
  }
272
- const visit: <T>(value: ReferenceItem, visitor: Visitor<T>) => T;
273
271
  }
274
272
  export declare const EncryptionType: {
275
273
  readonly KMS: "KMS";
@@ -338,7 +336,6 @@ export declare namespace StoreOptions {
338
336
  tsvStoreOptions: (value: TsvStoreOptions) => T;
339
337
  _: (name: string, value: any) => T;
340
338
  }
341
- const visit: <T>(value: StoreOptions, visitor: Visitor<T>) => T;
342
339
  }
343
340
  export interface CreateAnnotationStoreRequest {
344
341
  reference?: ReferenceItem | undefined;
@@ -458,7 +455,6 @@ export declare namespace VersionOptions {
458
455
  tsvVersionOptions: (value: TsvVersionOptions) => T;
459
456
  _: (name: string, value: any) => T;
460
457
  }
461
- const visit: <T>(value: VersionOptions, visitor: Visitor<T>) => T;
462
458
  }
463
459
  export interface CreateAnnotationStoreVersionRequest {
464
460
  name: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-omics",
3
3
  "description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
4
- "version": "3.929.0",
4
+ "version": "3.931.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-omics",
@@ -20,44 +20,44 @@
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.928.0",
24
- "@aws-sdk/credential-provider-node": "3.929.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.931.0",
24
+ "@aws-sdk/credential-provider-node": "3.931.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.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.931.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.931.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
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",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
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.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
58
- "@smithy/util-stream": "^4.5.5",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
+ "@smithy/util-stream": "^4.5.6",
59
59
  "@smithy/util-utf8": "^4.2.0",
60
- "@smithy/util-waiter": "^4.2.4",
60
+ "@smithy/util-waiter": "^4.2.5",
61
61
  "tslib": "^2.6.2"
62
62
  },
63
63
  "devDependencies": {