@aws-sdk/client-omics 3.370.0 → 3.378.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 +2 -2
- package/dist-types/Omics.d.ts +2 -2
- package/dist-types/OmicsClient.d.ts +2 -2
- package/dist-types/commands/GetReadSetCommand.d.ts +3 -2
- package/dist-types/commands/GetReferenceCommand.d.ts +3 -2
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +3 -9
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetReadSetCommand.d.ts +8 -3
- package/dist-types/ts3.4/commands/GetReferenceCommand.d.ts +8 -3
- package/dist-types/ts3.4/commands/UploadReadSetPartCommand.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +7 -5
- package/package.json +37 -37
package/README.md
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>This is the <i>
|
|
10
|
-
<i>
|
|
9
|
+
<p>This is the <i>AWS HealthOmics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is AWS HealthOmics?</a> in the
|
|
10
|
+
<i>AWS HealthOmics User Guide</i>.</p>
|
|
11
11
|
|
|
12
12
|
## Installing
|
|
13
13
|
|
package/dist-types/Omics.d.ts
CHANGED
|
@@ -508,8 +508,8 @@ export interface Omics {
|
|
|
508
508
|
}
|
|
509
509
|
/**
|
|
510
510
|
* @public
|
|
511
|
-
* <p>This is the <i>
|
|
512
|
-
* <i>
|
|
511
|
+
* <p>This is the <i>AWS HealthOmics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is AWS HealthOmics?</a> in the
|
|
512
|
+
* <i>AWS HealthOmics User Guide</i>.</p>
|
|
513
513
|
*/
|
|
514
514
|
export declare class Omics extends OmicsClient implements Omics {
|
|
515
515
|
}
|
|
@@ -222,8 +222,8 @@ export interface OmicsClientResolvedConfig extends OmicsClientResolvedConfigType
|
|
|
222
222
|
}
|
|
223
223
|
/**
|
|
224
224
|
* @public
|
|
225
|
-
* <p>This is the <i>
|
|
226
|
-
* <i>
|
|
225
|
+
* <p>This is the <i>AWS HealthOmics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is AWS HealthOmics?</a> in the
|
|
226
|
+
* <i>AWS HealthOmics User Guide</i>.</p>
|
|
227
227
|
*/
|
|
228
228
|
export declare class OmicsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, OmicsClientResolvedConfig> {
|
|
229
229
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack,
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
4
4
|
import { GetReadSetRequest, GetReadSetResponse } from "../models/models_0";
|
|
5
5
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
6
|
/**
|
|
@@ -19,7 +19,8 @@ export interface GetReadSetCommandInput extends GetReadSetRequest {
|
|
|
19
19
|
*
|
|
20
20
|
* The output of {@link GetReadSetCommand}.
|
|
21
21
|
*/
|
|
22
|
-
export interface GetReadSetCommandOutput extends
|
|
22
|
+
export interface GetReadSetCommandOutput extends Omit<GetReadSetResponse, "payload">, __MetadataBearer {
|
|
23
|
+
payload?: StreamingBlobPayloadOutputTypes;
|
|
23
24
|
}
|
|
24
25
|
/**
|
|
25
26
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack,
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
4
4
|
import { GetReferenceRequest, GetReferenceResponse } from "../models/models_0";
|
|
5
5
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
6
|
/**
|
|
@@ -19,7 +19,8 @@ export interface GetReferenceCommandInput extends GetReferenceRequest {
|
|
|
19
19
|
*
|
|
20
20
|
* The output of {@link GetReferenceCommand}.
|
|
21
21
|
*/
|
|
22
|
-
export interface GetReferenceCommandOutput extends
|
|
22
|
+
export interface GetReferenceCommandOutput extends Omit<GetReferenceResponse, "payload">, __MetadataBearer {
|
|
23
|
+
payload?: StreamingBlobPayloadOutputTypes;
|
|
23
24
|
}
|
|
24
25
|
/**
|
|
25
26
|
* @public
|
|
@@ -1,25 +1,19 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, StreamingBlobPayloadInputTypes } from "@smithy/types";
|
|
5
4
|
import { UploadReadSetPartRequest, UploadReadSetPartResponse } from "../models/models_0";
|
|
6
5
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
7
6
|
/**
|
|
8
7
|
* @public
|
|
9
8
|
*/
|
|
10
9
|
export { __MetadataBearer, $Command };
|
|
11
|
-
export type UploadReadSetPartCommandInputType = Omit<UploadReadSetPartRequest, "payload"> & {
|
|
12
|
-
/**
|
|
13
|
-
* For *`UploadReadSetPartRequest["payload"]`*, see {@link UploadReadSetPartRequest.payload}.
|
|
14
|
-
*/
|
|
15
|
-
payload: UploadReadSetPartRequest["payload"] | string | Uint8Array | Buffer;
|
|
16
|
-
};
|
|
17
10
|
/**
|
|
18
11
|
* @public
|
|
19
12
|
*
|
|
20
13
|
* The input for {@link UploadReadSetPartCommand}.
|
|
21
14
|
*/
|
|
22
|
-
export interface UploadReadSetPartCommandInput extends
|
|
15
|
+
export interface UploadReadSetPartCommandInput extends Omit<UploadReadSetPartRequest, "payload"> {
|
|
16
|
+
payload: StreamingBlobPayloadInputTypes;
|
|
23
17
|
}
|
|
24
18
|
/**
|
|
25
19
|
* @public
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>This is the <i>
|
|
3
|
-
* <i>
|
|
2
|
+
* <p>This is the <i>AWS HealthOmics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is AWS HealthOmics?</a> in the
|
|
3
|
+
* <i>AWS HealthOmics User Guide</i>.</p>
|
|
4
4
|
*
|
|
5
5
|
* @packageDocumentation
|
|
6
6
|
*/
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
3
|
-
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
4
|
-
import { Readable } from "stream";
|
|
2
|
+
import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types";
|
|
5
3
|
import { OmicsServiceException as __BaseException } from "./OmicsServiceException";
|
|
6
4
|
/**
|
|
7
5
|
* @public
|
|
@@ -2044,7 +2042,7 @@ export interface GetReadSetResponse {
|
|
|
2044
2042
|
/**
|
|
2045
2043
|
* <p>The read set file payload.</p>
|
|
2046
2044
|
*/
|
|
2047
|
-
payload?:
|
|
2045
|
+
payload?: StreamingBlobTypes;
|
|
2048
2046
|
}
|
|
2049
2047
|
/**
|
|
2050
2048
|
* @public
|
|
@@ -2477,7 +2475,7 @@ export interface GetReferenceResponse {
|
|
|
2477
2475
|
/**
|
|
2478
2476
|
* <p>The reference file payload.</p>
|
|
2479
2477
|
*/
|
|
2480
|
-
payload?:
|
|
2478
|
+
payload?: StreamingBlobTypes;
|
|
2481
2479
|
}
|
|
2482
2480
|
/**
|
|
2483
2481
|
* @public
|
|
@@ -5079,7 +5077,7 @@ export interface UploadReadSetPartRequest {
|
|
|
5079
5077
|
* The read set data to upload for a part.
|
|
5080
5078
|
* </p>
|
|
5081
5079
|
*/
|
|
5082
|
-
payload:
|
|
5080
|
+
payload: StreamingBlobTypes | undefined;
|
|
5083
5081
|
}
|
|
5084
5082
|
/**
|
|
5085
5083
|
* @public
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
|
-
|
|
8
|
+
StreamingBlobPayloadOutputTypes,
|
|
9
9
|
} from "@smithy/types";
|
|
10
10
|
import { GetReadSetRequest, GetReadSetResponse } from "../models/models_0";
|
|
11
11
|
import {
|
|
@@ -16,8 +16,13 @@ import {
|
|
|
16
16
|
export { __MetadataBearer, $Command };
|
|
17
17
|
export interface GetReadSetCommandInput extends GetReadSetRequest {}
|
|
18
18
|
export interface GetReadSetCommandOutput
|
|
19
|
-
extends
|
|
20
|
-
|
|
19
|
+
extends Pick<
|
|
20
|
+
GetReadSetResponse,
|
|
21
|
+
Exclude<keyof GetReadSetResponse, "payload">
|
|
22
|
+
>,
|
|
23
|
+
__MetadataBearer {
|
|
24
|
+
payload?: StreamingBlobPayloadOutputTypes;
|
|
25
|
+
}
|
|
21
26
|
export declare class GetReadSetCommand extends $Command<
|
|
22
27
|
GetReadSetCommandInput,
|
|
23
28
|
GetReadSetCommandOutput,
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
|
-
|
|
8
|
+
StreamingBlobPayloadOutputTypes,
|
|
9
9
|
} from "@smithy/types";
|
|
10
10
|
import { GetReferenceRequest, GetReferenceResponse } from "../models/models_0";
|
|
11
11
|
import {
|
|
@@ -16,8 +16,13 @@ import {
|
|
|
16
16
|
export { __MetadataBearer, $Command };
|
|
17
17
|
export interface GetReferenceCommandInput extends GetReferenceRequest {}
|
|
18
18
|
export interface GetReferenceCommandOutput
|
|
19
|
-
extends
|
|
20
|
-
|
|
19
|
+
extends Pick<
|
|
20
|
+
GetReferenceResponse,
|
|
21
|
+
Exclude<keyof GetReferenceResponse, "payload">
|
|
22
|
+
>,
|
|
23
|
+
__MetadataBearer {
|
|
24
|
+
payload?: StreamingBlobPayloadOutputTypes;
|
|
25
|
+
}
|
|
21
26
|
export declare class GetReferenceCommand extends $Command<
|
|
22
27
|
GetReferenceCommandInput,
|
|
23
28
|
GetReferenceCommandOutput,
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
|
+
StreamingBlobPayloadInputTypes,
|
|
8
9
|
} from "@smithy/types";
|
|
9
10
|
import {
|
|
10
11
|
UploadReadSetPartRequest,
|
|
@@ -16,14 +17,13 @@ import {
|
|
|
16
17
|
ServiceOutputTypes,
|
|
17
18
|
} from "../OmicsClient";
|
|
18
19
|
export { __MetadataBearer, $Command };
|
|
19
|
-
export type UploadReadSetPartCommandInputType = Pick<
|
|
20
|
-
UploadReadSetPartRequest,
|
|
21
|
-
Exclude<keyof UploadReadSetPartRequest, "payload">
|
|
22
|
-
> & {
|
|
23
|
-
payload: UploadReadSetPartRequest["payload"] | string | Uint8Array | Buffer;
|
|
24
|
-
};
|
|
25
20
|
export interface UploadReadSetPartCommandInput
|
|
26
|
-
extends
|
|
21
|
+
extends Pick<
|
|
22
|
+
UploadReadSetPartRequest,
|
|
23
|
+
Exclude<keyof UploadReadSetPartRequest, "payload">
|
|
24
|
+
> {
|
|
25
|
+
payload: StreamingBlobPayloadInputTypes;
|
|
26
|
+
}
|
|
27
27
|
export interface UploadReadSetPartCommandOutput
|
|
28
28
|
extends UploadReadSetPartResponse,
|
|
29
29
|
__MetadataBearer {}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {
|
|
3
|
+
DocumentType as __DocumentType,
|
|
4
|
+
StreamingBlobTypes,
|
|
5
|
+
} from "@smithy/types";
|
|
4
6
|
import { OmicsServiceException as __BaseException } from "./OmicsServiceException";
|
|
5
7
|
export interface AbortMultipartReadSetUploadRequest {
|
|
6
8
|
sequenceStoreId: string | undefined;
|
|
@@ -667,7 +669,7 @@ export interface GetReadSetRequest {
|
|
|
667
669
|
partNumber: number | undefined;
|
|
668
670
|
}
|
|
669
671
|
export interface GetReadSetResponse {
|
|
670
|
-
payload?:
|
|
672
|
+
payload?: StreamingBlobTypes;
|
|
671
673
|
}
|
|
672
674
|
export declare class RangeNotSatisfiableException extends __BaseException {
|
|
673
675
|
readonly name: "RangeNotSatisfiableException";
|
|
@@ -808,7 +810,7 @@ export interface GetReferenceRequest {
|
|
|
808
810
|
file?: ReferenceFile | string;
|
|
809
811
|
}
|
|
810
812
|
export interface GetReferenceResponse {
|
|
811
|
-
payload?:
|
|
813
|
+
payload?: StreamingBlobTypes;
|
|
812
814
|
}
|
|
813
815
|
export interface GetReferenceImportJobRequest {
|
|
814
816
|
id: string | undefined;
|
|
@@ -1530,7 +1532,7 @@ export interface UploadReadSetPartRequest {
|
|
|
1530
1532
|
uploadId: string | undefined;
|
|
1531
1533
|
partSource: ReadSetPartSource | string | undefined;
|
|
1532
1534
|
partNumber: number | undefined;
|
|
1533
|
-
payload:
|
|
1535
|
+
payload: StreamingBlobTypes | undefined;
|
|
1534
1536
|
}
|
|
1535
1537
|
export interface UploadReadSetPartResponse {
|
|
1536
1538
|
checksum: 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.
|
|
4
|
+
"version": "3.378.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,46 +21,46 @@
|
|
|
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.
|
|
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-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "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.
|
|
35
|
-
"@smithy/config-resolver": "^
|
|
36
|
-
"@smithy/fetch-http-handler": "^
|
|
37
|
-
"@smithy/hash-node": "^
|
|
38
|
-
"@smithy/invalid-dependency": "^
|
|
39
|
-
"@smithy/middleware-content-length": "^
|
|
40
|
-
"@smithy/middleware-endpoint": "^
|
|
41
|
-
"@smithy/middleware-retry": "^
|
|
42
|
-
"@smithy/middleware-serde": "^
|
|
43
|
-
"@smithy/middleware-stack": "^
|
|
44
|
-
"@smithy/node-config-provider": "^
|
|
45
|
-
"@smithy/node-http-handler": "^
|
|
46
|
-
"@smithy/protocol-http": "^
|
|
47
|
-
"@smithy/smithy-client": "^
|
|
48
|
-
"@smithy/types": "^
|
|
49
|
-
"@smithy/url-parser": "^
|
|
50
|
-
"@smithy/util-base64": "^
|
|
51
|
-
"@smithy/util-body-length-browser": "^
|
|
52
|
-
"@smithy/util-body-length-node": "^
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^
|
|
55
|
-
"@smithy/util-retry": "^
|
|
56
|
-
"@smithy/util-stream": "^
|
|
57
|
-
"@smithy/util-utf8": "^
|
|
58
|
-
"@smithy/util-waiter": "^
|
|
24
|
+
"@aws-sdk/client-sts": "3.378.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.378.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.378.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.378.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.378.0",
|
|
31
|
+
"@aws-sdk/types": "3.378.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.378.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.0.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^2.0.1",
|
|
37
|
+
"@smithy/hash-node": "^2.0.1",
|
|
38
|
+
"@smithy/invalid-dependency": "^2.0.1",
|
|
39
|
+
"@smithy/middleware-content-length": "^2.0.1",
|
|
40
|
+
"@smithy/middleware-endpoint": "^2.0.1",
|
|
41
|
+
"@smithy/middleware-retry": "^2.0.1",
|
|
42
|
+
"@smithy/middleware-serde": "^2.0.1",
|
|
43
|
+
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
+
"@smithy/node-config-provider": "^2.0.1",
|
|
45
|
+
"@smithy/node-http-handler": "^2.0.1",
|
|
46
|
+
"@smithy/protocol-http": "^2.0.1",
|
|
47
|
+
"@smithy/smithy-client": "^2.0.1",
|
|
48
|
+
"@smithy/types": "^2.0.2",
|
|
49
|
+
"@smithy/url-parser": "^2.0.1",
|
|
50
|
+
"@smithy/util-base64": "^2.0.0",
|
|
51
|
+
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
|
+
"@smithy/util-body-length-node": "^2.0.0",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^2.0.1",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^2.0.1",
|
|
55
|
+
"@smithy/util-retry": "^2.0.0",
|
|
56
|
+
"@smithy/util-stream": "^2.0.1",
|
|
57
|
+
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
+
"@smithy/util-waiter": "^2.0.1",
|
|
59
59
|
"tslib": "^2.5.0",
|
|
60
60
|
"uuid": "^8.3.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.0.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"@types/uuid": "^8.3.0",
|