@aws-sdk/client-medical-imaging 3.952.0 → 3.953.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 +280 -189
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CopyImageSetCommand.js +2 -2
- package/dist-es/commands/CreateDatastoreCommand.js +2 -2
- package/dist-es/commands/DeleteDatastoreCommand.js +2 -2
- package/dist-es/commands/DeleteImageSetCommand.js +2 -2
- package/dist-es/commands/GetDICOMImportJobCommand.js +2 -2
- package/dist-es/commands/GetDatastoreCommand.js +2 -2
- package/dist-es/commands/GetImageFrameCommand.js +2 -2
- package/dist-es/commands/GetImageSetCommand.js +2 -2
- package/dist-es/commands/GetImageSetMetadataCommand.js +2 -2
- package/dist-es/commands/ListDICOMImportJobsCommand.js +2 -2
- package/dist-es/commands/ListDatastoresCommand.js +2 -2
- package/dist-es/commands/ListImageSetVersionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/SearchImageSetsCommand.js +2 -2
- package/dist-es/commands/StartDICOMImportJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateImageSetMetadataCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +176 -169
- package/dist-types/MedicalImagingClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +85 -111
- package/dist-types/ts3.4/MedicalImagingClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +84 -112
- package/package.json +35 -35
|
@@ -27,7 +27,12 @@ const getRuntimeConfig = (config) => {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
30
|
-
protocol: config?.protocol ??
|
|
30
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
31
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
32
|
+
defaultNamespace: "com.amazonaws.medicalimaging",
|
|
33
|
+
version: "2023-07-19",
|
|
34
|
+
serviceTarget: "AHIGatewayService",
|
|
35
|
+
},
|
|
31
36
|
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
|
|
32
37
|
serviceId: config?.serviceId ?? "Medical Imaging",
|
|
33
38
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CopyImageSet } from "../schemas/schemas_0";
|
|
4
|
+
import { CopyImageSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CopyImageSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CopyImageSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "CopyImageSet", {})
|
|
13
13
|
.n("MedicalImagingClient", "CopyImageSetCommand")
|
|
14
|
-
.sc(CopyImageSet)
|
|
14
|
+
.sc(CopyImageSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDatastore } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDatastore$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDatastoreCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDatastoreCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "CreateDatastore", {})
|
|
13
13
|
.n("MedicalImagingClient", "CreateDatastoreCommand")
|
|
14
|
-
.sc(CreateDatastore)
|
|
14
|
+
.sc(CreateDatastore$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDatastore } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDatastore$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDatastoreCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDatastoreCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "DeleteDatastore", {})
|
|
13
13
|
.n("MedicalImagingClient", "DeleteDatastoreCommand")
|
|
14
|
-
.sc(DeleteDatastore)
|
|
14
|
+
.sc(DeleteDatastore$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteImageSet } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteImageSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteImageSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteImageSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "DeleteImageSet", {})
|
|
13
13
|
.n("MedicalImagingClient", "DeleteImageSetCommand")
|
|
14
|
-
.sc(DeleteImageSet)
|
|
14
|
+
.sc(DeleteImageSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDICOMImportJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDICOMImportJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDICOMImportJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDICOMImportJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "GetDICOMImportJob", {})
|
|
13
13
|
.n("MedicalImagingClient", "GetDICOMImportJobCommand")
|
|
14
|
-
.sc(GetDICOMImportJob)
|
|
14
|
+
.sc(GetDICOMImportJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDatastore } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDatastore$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDatastoreCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDatastoreCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "GetDatastore", {})
|
|
13
13
|
.n("MedicalImagingClient", "GetDatastoreCommand")
|
|
14
|
-
.sc(GetDatastore)
|
|
14
|
+
.sc(GetDatastore$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetImageFrame } from "../schemas/schemas_0";
|
|
4
|
+
import { GetImageFrame$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetImageFrameCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetImageFrameCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "GetImageFrame", {})
|
|
13
13
|
.n("MedicalImagingClient", "GetImageFrameCommand")
|
|
14
|
-
.sc(GetImageFrame)
|
|
14
|
+
.sc(GetImageFrame$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetImageSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetImageSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetImageSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetImageSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "GetImageSet", {})
|
|
13
13
|
.n("MedicalImagingClient", "GetImageSetCommand")
|
|
14
|
-
.sc(GetImageSet)
|
|
14
|
+
.sc(GetImageSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetImageSetMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { GetImageSetMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetImageSetMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetImageSetMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "GetImageSetMetadata", {})
|
|
13
13
|
.n("MedicalImagingClient", "GetImageSetMetadataCommand")
|
|
14
|
-
.sc(GetImageSetMetadata)
|
|
14
|
+
.sc(GetImageSetMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDICOMImportJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDICOMImportJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDICOMImportJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDICOMImportJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "ListDICOMImportJobs", {})
|
|
13
13
|
.n("MedicalImagingClient", "ListDICOMImportJobsCommand")
|
|
14
|
-
.sc(ListDICOMImportJobs)
|
|
14
|
+
.sc(ListDICOMImportJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDatastores } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDatastores$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDatastoresCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDatastoresCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "ListDatastores", {})
|
|
13
13
|
.n("MedicalImagingClient", "ListDatastoresCommand")
|
|
14
|
-
.sc(ListDatastores)
|
|
14
|
+
.sc(ListDatastores$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListImageSetVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListImageSetVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListImageSetVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListImageSetVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "ListImageSetVersions", {})
|
|
13
13
|
.n("MedicalImagingClient", "ListImageSetVersionsCommand")
|
|
14
|
-
.sc(ListImageSetVersions)
|
|
14
|
+
.sc(ListImageSetVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "ListTagsForResource", {})
|
|
13
13
|
.n("MedicalImagingClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchImageSets } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchImageSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchImageSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchImageSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "SearchImageSets", {})
|
|
13
13
|
.n("MedicalImagingClient", "SearchImageSetsCommand")
|
|
14
|
-
.sc(SearchImageSets)
|
|
14
|
+
.sc(SearchImageSets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartDICOMImportJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDICOMImportJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDICOMImportJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDICOMImportJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "StartDICOMImportJob", {})
|
|
13
13
|
.n("MedicalImagingClient", "StartDICOMImportJobCommand")
|
|
14
|
-
.sc(StartDICOMImportJob)
|
|
14
|
+
.sc(StartDICOMImportJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "TagResource", {})
|
|
13
13
|
.n("MedicalImagingClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "UntagResource", {})
|
|
13
13
|
.n("MedicalImagingClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateImageSetMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateImageSetMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateImageSetMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateImageSetMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AHIGatewayService", "UpdateImageSetMetadata", {})
|
|
13
13
|
.n("MedicalImagingClient", "UpdateImageSetMetadataCommand")
|
|
14
|
-
.sc(UpdateImageSetMetadata)
|
|
14
|
+
.sc(UpdateImageSetMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -24,7 +24,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
},
|
|
25
25
|
],
|
|
26
26
|
logger: config?.logger ?? new NoOpLogger(),
|
|
27
|
-
protocol: config?.protocol ??
|
|
27
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
28
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
29
|
+
defaultNamespace: "com.amazonaws.medicalimaging",
|
|
30
|
+
version: "2023-07-19",
|
|
31
|
+
serviceTarget: "AHIGatewayService",
|
|
32
|
+
},
|
|
28
33
|
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
29
34
|
serviceId: config?.serviceId ?? "Medical Imaging",
|
|
30
35
|
urlParser: config?.urlParser ?? parseUrl,
|