@aws-sdk/client-medical-imaging 3.377.0 → 3.379.1
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-types/commands/GetImageFrameCommand.d.ts +3 -2
- package/dist-types/commands/GetImageSetMetadataCommand.d.ts +3 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +3 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +3 -4
- package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +8 -3
- package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +6 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -3
- package/package.json +36 -36
|
@@ -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 { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
5
5
|
import { GetImageFrameRequest, GetImageFrameResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
@@ -19,7 +19,8 @@ export interface GetImageFrameCommandInput extends GetImageFrameRequest {
|
|
|
19
19
|
*
|
|
20
20
|
* The output of {@link GetImageFrameCommand}.
|
|
21
21
|
*/
|
|
22
|
-
export interface GetImageFrameCommandOutput extends
|
|
22
|
+
export interface GetImageFrameCommandOutput extends Omit<GetImageFrameResponse, "imageFrameBlob">, __MetadataBearer {
|
|
23
|
+
imageFrameBlob: 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 { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
5
5
|
import { GetImageSetMetadataRequest, GetImageSetMetadataResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
@@ -19,7 +19,8 @@ export interface GetImageSetMetadataCommandInput extends GetImageSetMetadataRequ
|
|
|
19
19
|
*
|
|
20
20
|
* The output of {@link GetImageSetMetadataCommand}.
|
|
21
21
|
*/
|
|
22
|
-
export interface GetImageSetMetadataCommandOutput extends
|
|
22
|
+
export interface GetImageSetMetadataCommandOutput extends Omit<GetImageSetMetadataResponse, "imageSetMetadataBlob">, __MetadataBearer {
|
|
23
|
+
imageSetMetadataBlob: StreamingBlobPayloadOutputTypes;
|
|
23
24
|
}
|
|
24
25
|
/**
|
|
25
26
|
* @public
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -154,6 +154,7 @@
|
|
|
154
154
|
*/
|
|
155
155
|
export * from "./MedicalImagingClient";
|
|
156
156
|
export * from "./MedicalImaging";
|
|
157
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
157
158
|
export * from "./commands";
|
|
158
159
|
export * from "./pagination";
|
|
159
160
|
export * from "./models";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { StreamingBlobTypes } from "@smithy/types";
|
|
4
3
|
import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
|
|
5
4
|
/**
|
|
6
5
|
* @public
|
|
@@ -592,7 +591,7 @@ export interface GetImageFrameResponse {
|
|
|
592
591
|
/**
|
|
593
592
|
* <p>The blob containing the aggregated image frame information.</p>
|
|
594
593
|
*/
|
|
595
|
-
imageFrameBlob:
|
|
594
|
+
imageFrameBlob: StreamingBlobTypes | undefined;
|
|
596
595
|
/**
|
|
597
596
|
* <p>The format in which the image frame information is returned to the customer. Default is
|
|
598
597
|
* <code>application/octet-stream</code>.</p>
|
|
@@ -685,7 +684,7 @@ export interface GetImageSetMetadataResponse {
|
|
|
685
684
|
/**
|
|
686
685
|
* <p>The blob containing the aggregated metadata information for the image set.</p>
|
|
687
686
|
*/
|
|
688
|
-
imageSetMetadataBlob:
|
|
687
|
+
imageSetMetadataBlob: StreamingBlobTypes | undefined;
|
|
689
688
|
/**
|
|
690
689
|
* <p>The format in which the study metadata is returned to the customer. Default is <code>text/plain</code>.</p>
|
|
691
690
|
*/
|
|
@@ -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 {
|
|
11
11
|
MedicalImagingClientResolvedConfig,
|
|
@@ -19,8 +19,13 @@ import {
|
|
|
19
19
|
export { __MetadataBearer, $Command };
|
|
20
20
|
export interface GetImageFrameCommandInput extends GetImageFrameRequest {}
|
|
21
21
|
export interface GetImageFrameCommandOutput
|
|
22
|
-
extends
|
|
23
|
-
|
|
22
|
+
extends Pick<
|
|
23
|
+
GetImageFrameResponse,
|
|
24
|
+
Exclude<keyof GetImageFrameResponse, "imageFrameBlob">
|
|
25
|
+
>,
|
|
26
|
+
__MetadataBearer {
|
|
27
|
+
imageFrameBlob: StreamingBlobPayloadOutputTypes;
|
|
28
|
+
}
|
|
24
29
|
export declare class GetImageFrameCommand extends $Command<
|
|
25
30
|
GetImageFrameCommandInput,
|
|
26
31
|
GetImageFrameCommandOutput,
|
|
@@ -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 {
|
|
11
11
|
MedicalImagingClientResolvedConfig,
|
|
@@ -20,11 +20,13 @@ export { __MetadataBearer, $Command };
|
|
|
20
20
|
export interface GetImageSetMetadataCommandInput
|
|
21
21
|
extends GetImageSetMetadataRequest {}
|
|
22
22
|
export interface GetImageSetMetadataCommandOutput
|
|
23
|
-
extends
|
|
23
|
+
extends Pick<
|
|
24
24
|
GetImageSetMetadataResponse,
|
|
25
|
-
"imageSetMetadataBlob"
|
|
25
|
+
Exclude<keyof GetImageSetMetadataResponse, "imageSetMetadataBlob">
|
|
26
26
|
>,
|
|
27
|
-
__MetadataBearer {
|
|
27
|
+
__MetadataBearer {
|
|
28
|
+
imageSetMetadataBlob: StreamingBlobPayloadOutputTypes;
|
|
29
|
+
}
|
|
28
30
|
export declare class GetImageSetMetadataCommand extends $Command<
|
|
29
31
|
GetImageSetMetadataCommandInput,
|
|
30
32
|
GetImageSetMetadataCommandOutput,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
2
|
+
import { StreamingBlobTypes } from "@smithy/types";
|
|
3
3
|
import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
|
|
4
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
@@ -210,7 +210,7 @@ export interface GetImageFrameRequest {
|
|
|
210
210
|
imageFrameInformation: ImageFrameInformation | undefined;
|
|
211
211
|
}
|
|
212
212
|
export interface GetImageFrameResponse {
|
|
213
|
-
imageFrameBlob:
|
|
213
|
+
imageFrameBlob: StreamingBlobTypes | undefined;
|
|
214
214
|
contentType?: string;
|
|
215
215
|
}
|
|
216
216
|
export interface GetImageSetRequest {
|
|
@@ -236,7 +236,7 @@ export interface GetImageSetMetadataRequest {
|
|
|
236
236
|
versionId?: string;
|
|
237
237
|
}
|
|
238
238
|
export interface GetImageSetMetadataResponse {
|
|
239
|
-
imageSetMetadataBlob:
|
|
239
|
+
imageSetMetadataBlob: StreamingBlobTypes | undefined;
|
|
240
240
|
contentType?: string;
|
|
241
241
|
contentEncoding?: string;
|
|
242
242
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medical-imaging",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medical Imaging Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.379.1",
|
|
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,45 +21,45 @@
|
|
|
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": "^
|
|
24
|
+
"@aws-sdk/client-sts": "3.379.1",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.379.1",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.379.1",
|
|
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
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@smithy/service-client-documentation-generator": "^
|
|
62
|
+
"@smithy/service-client-documentation-generator": "^2.0.0",
|
|
63
63
|
"@tsconfig/node14": "1.0.3",
|
|
64
64
|
"@types/node": "^14.14.31",
|
|
65
65
|
"@types/uuid": "^8.3.0",
|