@aws-sdk/client-omics 3.379.1 → 3.382.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.
@@ -582,6 +582,11 @@ export interface CreateWorkflowResponse {
582
582
  status?: WorkflowStatus | string;
583
583
  tags?: Record<string, string>;
584
584
  }
585
+ export declare const CreationType: {
586
+ readonly IMPORT: "IMPORT";
587
+ readonly UPLOAD: "UPLOAD";
588
+ };
589
+ export type CreationType = (typeof CreationType)[keyof typeof CreationType];
585
590
  export interface DeleteReferenceRequest {
586
591
  id: string | undefined;
587
592
  referenceStoreId: string | undefined;
@@ -796,6 +801,7 @@ export interface GetReadSetMetadataResponse {
796
801
  referenceArn?: string;
797
802
  files?: ReadSetFiles;
798
803
  statusMessage?: string;
804
+ creationType?: CreationType | string;
799
805
  }
800
806
  export declare const ReferenceFile: {
801
807
  readonly INDEX: "INDEX";
@@ -1155,6 +1161,7 @@ export interface ReadSetFilter {
1155
1161
  sampleId?: string;
1156
1162
  subjectId?: string;
1157
1163
  generatedFrom?: string;
1164
+ creationType?: CreationType | string;
1158
1165
  }
1159
1166
  export interface ListReadSetsRequest {
1160
1167
  sequenceStoreId: string | undefined;
@@ -1176,6 +1183,7 @@ export interface ReadSetListItem {
1176
1183
  sequenceInformation?: SequenceInformation;
1177
1184
  creationTime: Date | undefined;
1178
1185
  statusMessage?: string;
1186
+ creationType?: CreationType | string;
1179
1187
  }
1180
1188
  export interface ListReadSetsResponse {
1181
1189
  nextToken?: string;
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.379.1",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",