@aws-sdk/client-connecthealth 3.1003.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/LICENSE +201 -0
- package/README.md +313 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +483 -0
- package/dist-cjs/models/ConnectHealthServiceException.js +12 -0
- package/dist-cjs/models/errors.js +99 -0
- package/dist-cjs/runtimeConfig.browser.js +43 -0
- package/dist-cjs/runtimeConfig.js +60 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +691 -0
- package/dist-es/ConnectHealth.js +45 -0
- package/dist-es/ConnectHealthClient.js +54 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/ActivateSubscriptionCommand.js +16 -0
- package/dist-es/commands/CreateDomainCommand.js +16 -0
- package/dist-es/commands/CreateSubscriptionCommand.js +16 -0
- package/dist-es/commands/DeactivateSubscriptionCommand.js +16 -0
- package/dist-es/commands/DeleteDomainCommand.js +16 -0
- package/dist-es/commands/GetDomainCommand.js +16 -0
- package/dist-es/commands/GetMedicalScribeListeningSessionCommand.js +16 -0
- package/dist-es/commands/GetPatientInsightsJobCommand.js +16 -0
- package/dist-es/commands/GetSubscriptionCommand.js +16 -0
- package/dist-es/commands/ListDomainsCommand.js +16 -0
- package/dist-es/commands/ListSubscriptionsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/StartMedicalScribeListeningSessionCommand.js +25 -0
- package/dist-es/commands/StartPatientInsightsJobCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/ConnectHealthServiceException.js +8 -0
- package/dist-es/models/enums.js +76 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDomainsPaginator.js +4 -0
- package/dist-es/pagination/ListSubscriptionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/runtimeConfig.browser.js +38 -0
- package/dist-es/runtimeConfig.js +55 -0
- package/dist-es/runtimeConfig.native.js +15 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +687 -0
- package/dist-types/ConnectHealth.d.ts +137 -0
- package/dist-types/ConnectHealthClient.d.ts +215 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/ActivateSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +101 -0
- package/dist-types/commands/CreateSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/DeactivateSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +79 -0
- package/dist-types/commands/GetDomainCommand.d.ts +95 -0
- package/dist-types/commands/GetMedicalScribeListeningSessionCommand.d.ts +140 -0
- package/dist-types/commands/GetPatientInsightsJobCommand.d.ts +128 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +96 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +85 -0
- package/dist-types/commands/ListSubscriptionsCommand.d.ts +100 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +76 -0
- package/dist-types/commands/StartMedicalScribeListeningSessionCommand.d.ts +159 -0
- package/dist-types/commands/StartPatientInsightsJobCommand.d.ts +125 -0
- package/dist-types/commands/TagResourceCommand.d.ts +75 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +75 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/ConnectHealthServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +204 -0
- package/dist-types/models/errors.d.ts +90 -0
- package/dist-types/models/models_0.d.ts +1519 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSubscriptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +57 -0
- package/dist-types/runtimeConfig.d.ts +57 -0
- package/dist-types/runtimeConfig.native.d.ts +56 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +100 -0
- package/dist-types/ts3.4/ConnectHealth.d.ts +304 -0
- package/dist-types/ts3.4/ConnectHealthClient.d.ts +232 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/ActivateSubscriptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeactivateSubscriptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetMedicalScribeListeningSessionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPatientInsightsJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMedicalScribeListeningSessionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartPatientInsightsJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/ConnectHealthServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +102 -0
- package/dist-types/ts3.4/models/errors.d.ts +53 -0
- package/dist-types/ts3.4/models/models_0.d.ts +470 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSubscriptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +100 -0
- package/package.json +105 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
GetPatientInsightsJobRequest,
|
|
10
|
+
GetPatientInsightsJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetPatientInsightsJobCommandInput
|
|
15
|
+
extends GetPatientInsightsJobRequest {}
|
|
16
|
+
export interface GetPatientInsightsJobCommandOutput
|
|
17
|
+
extends GetPatientInsightsJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetPatientInsightsJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetPatientInsightsJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetPatientInsightsJobCommandInput,
|
|
24
|
+
GetPatientInsightsJobCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetPatientInsightsJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetPatientInsightsJobCommandInput,
|
|
33
|
+
GetPatientInsightsJobCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetPatientInsightsJobCommand extends GetPatientInsightsJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetPatientInsightsJobRequest;
|
|
44
|
+
output: GetPatientInsightsJobResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetPatientInsightsJobCommandInput;
|
|
48
|
+
output: GetPatientInsightsJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
GetSubscriptionInput,
|
|
10
|
+
GetSubscriptionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetSubscriptionCommandInput extends GetSubscriptionInput {}
|
|
15
|
+
export interface GetSubscriptionCommandOutput
|
|
16
|
+
extends GetSubscriptionOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetSubscriptionCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetSubscriptionCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetSubscriptionCommandInput,
|
|
23
|
+
GetSubscriptionCommandOutput,
|
|
24
|
+
ConnectHealthClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetSubscriptionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetSubscriptionCommandInput,
|
|
32
|
+
GetSubscriptionCommandOutput,
|
|
33
|
+
ConnectHealthClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetSubscriptionCommand extends GetSubscriptionCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetSubscriptionInput;
|
|
43
|
+
output: GetSubscriptionOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetSubscriptionCommandInput;
|
|
47
|
+
output: GetSubscriptionCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import { ListDomainsInput, ListDomainsOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListDomainsCommandInput extends ListDomainsInput {}
|
|
12
|
+
export interface ListDomainsCommandOutput
|
|
13
|
+
extends ListDomainsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListDomainsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListDomainsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListDomainsCommandInput,
|
|
20
|
+
ListDomainsCommandOutput,
|
|
21
|
+
ConnectHealthClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListDomainsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListDomainsCommandInput,
|
|
29
|
+
ListDomainsCommandOutput,
|
|
30
|
+
ConnectHealthClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListDomainsCommand extends ListDomainsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListDomainsInput;
|
|
40
|
+
output: ListDomainsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListDomainsCommandInput;
|
|
44
|
+
output: ListDomainsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
ListSubscriptionsInput,
|
|
10
|
+
ListSubscriptionsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSubscriptionsCommandInput extends ListSubscriptionsInput {}
|
|
15
|
+
export interface ListSubscriptionsCommandOutput
|
|
16
|
+
extends ListSubscriptionsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListSubscriptionsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListSubscriptionsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListSubscriptionsCommandInput,
|
|
23
|
+
ListSubscriptionsCommandOutput,
|
|
24
|
+
ConnectHealthClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: ListSubscriptionsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListSubscriptionsCommandInput,
|
|
32
|
+
ListSubscriptionsCommandOutput,
|
|
33
|
+
ConnectHealthClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListSubscriptionsCommand extends ListSubscriptionsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListSubscriptionsInput;
|
|
43
|
+
output: ListSubscriptionsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListSubscriptionsCommandInput;
|
|
47
|
+
output: ListSubscriptionsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
ListTagsForResourceInput,
|
|
10
|
+
ListTagsForResourceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceInput {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceInput;
|
|
44
|
+
output: ListTagsForResourceOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
StartMedicalScribeListeningSessionInput,
|
|
10
|
+
StartMedicalScribeListeningSessionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartMedicalScribeListeningSessionCommandInput
|
|
15
|
+
extends StartMedicalScribeListeningSessionInput {}
|
|
16
|
+
export interface StartMedicalScribeListeningSessionCommandOutput
|
|
17
|
+
extends StartMedicalScribeListeningSessionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartMedicalScribeListeningSessionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartMedicalScribeListeningSessionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartMedicalScribeListeningSessionCommandInput,
|
|
24
|
+
StartMedicalScribeListeningSessionCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartMedicalScribeListeningSessionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartMedicalScribeListeningSessionCommandInput,
|
|
33
|
+
StartMedicalScribeListeningSessionCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartMedicalScribeListeningSessionCommand extends StartMedicalScribeListeningSessionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartMedicalScribeListeningSessionInput;
|
|
44
|
+
output: StartMedicalScribeListeningSessionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartMedicalScribeListeningSessionCommandInput;
|
|
48
|
+
output: StartMedicalScribeListeningSessionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import {
|
|
9
|
+
StartPatientInsightsJobRequest,
|
|
10
|
+
StartPatientInsightsJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartPatientInsightsJobCommandInput
|
|
15
|
+
extends StartPatientInsightsJobRequest {}
|
|
16
|
+
export interface StartPatientInsightsJobCommandOutput
|
|
17
|
+
extends StartPatientInsightsJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartPatientInsightsJobCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartPatientInsightsJobCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartPatientInsightsJobCommandInput,
|
|
24
|
+
StartPatientInsightsJobCommandOutput,
|
|
25
|
+
ConnectHealthClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartPatientInsightsJobCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartPatientInsightsJobCommandInput,
|
|
33
|
+
StartPatientInsightsJobCommandOutput,
|
|
34
|
+
ConnectHealthClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartPatientInsightsJobCommand extends StartPatientInsightsJobCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartPatientInsightsJobRequest;
|
|
44
|
+
output: StartPatientInsightsJobResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartPatientInsightsJobCommandInput;
|
|
48
|
+
output: StartPatientInsightsJobCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import { TagResourceInput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
12
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const TagResourceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: TagResourceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
TagResourceCommandInput,
|
|
18
|
+
TagResourceCommandOutput,
|
|
19
|
+
ConnectHealthClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
input: TagResourceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
TagResourceCommandInput,
|
|
27
|
+
TagResourceCommandOutput,
|
|
28
|
+
ConnectHealthClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: TagResourceInput;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: TagResourceCommandInput;
|
|
42
|
+
output: TagResourceCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectHealthClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectHealthClient";
|
|
8
|
+
import { UntagResourceInput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
12
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const UntagResourceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: UntagResourceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
UntagResourceCommandInput,
|
|
18
|
+
UntagResourceCommandOutput,
|
|
19
|
+
ConnectHealthClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
input: UntagResourceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
UntagResourceCommandInput,
|
|
27
|
+
UntagResourceCommandOutput,
|
|
28
|
+
ConnectHealthClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: UntagResourceInput;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: UntagResourceCommandInput;
|
|
42
|
+
output: UntagResourceCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * from "./ActivateSubscriptionCommand";
|
|
2
|
+
export * from "./CreateDomainCommand";
|
|
3
|
+
export * from "./CreateSubscriptionCommand";
|
|
4
|
+
export * from "./DeactivateSubscriptionCommand";
|
|
5
|
+
export * from "./DeleteDomainCommand";
|
|
6
|
+
export * from "./GetDomainCommand";
|
|
7
|
+
export * from "./GetMedicalScribeListeningSessionCommand";
|
|
8
|
+
export * from "./GetPatientInsightsJobCommand";
|
|
9
|
+
export * from "./GetSubscriptionCommand";
|
|
10
|
+
export * from "./ListDomainsCommand";
|
|
11
|
+
export * from "./ListSubscriptionsCommand";
|
|
12
|
+
export * from "./ListTagsForResourceCommand";
|
|
13
|
+
export * from "./StartMedicalScribeListeningSessionCommand";
|
|
14
|
+
export * from "./StartPatientInsightsJobCommand";
|
|
15
|
+
export * from "./TagResourceCommand";
|
|
16
|
+
export * from "./UntagResourceCommand";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
|
+
endpoint?:
|
|
10
|
+
| string
|
|
11
|
+
| Provider<string>
|
|
12
|
+
| Endpoint
|
|
13
|
+
| Provider<Endpoint>
|
|
14
|
+
| EndpointV2
|
|
15
|
+
| Provider<EndpointV2>;
|
|
16
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
17
|
+
}
|
|
18
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
19
|
+
ClientInputEndpointParameters,
|
|
20
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
21
|
+
> & {
|
|
22
|
+
defaultSigningName: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
+
options: T & ClientInputEndpointParameters
|
|
26
|
+
) => T & ClientResolvedEndpointParameters;
|
|
27
|
+
export declare const commonParams: {
|
|
28
|
+
readonly UseFIPS: {
|
|
29
|
+
readonly type: "builtInParams";
|
|
30
|
+
readonly name: "useFipsEndpoint";
|
|
31
|
+
};
|
|
32
|
+
readonly Endpoint: {
|
|
33
|
+
readonly type: "builtInParams";
|
|
34
|
+
readonly name: "endpoint";
|
|
35
|
+
};
|
|
36
|
+
readonly Region: {
|
|
37
|
+
readonly type: "builtInParams";
|
|
38
|
+
readonly name: "region";
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
42
|
+
UseFIPS?: boolean | undefined;
|
|
43
|
+
Endpoint?: string | undefined;
|
|
44
|
+
Region?: string | undefined;
|
|
45
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface ConnectHealthExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./ConnectHealthClient";
|
|
2
|
+
export * from "./ConnectHealth";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { ConnectHealthExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
8
|
+
export * from "./pagination";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
12
|
+
export { ConnectHealthServiceException } from "./models/ConnectHealthServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
3
|
+
ServiceException as __ServiceException,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class ConnectHealthServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
export declare const SubscriptionStatus: {
|
|
2
|
+
readonly ACTIVE: "ACTIVE";
|
|
3
|
+
readonly DELETED: "DELETED";
|
|
4
|
+
readonly INACTIVE: "INACTIVE";
|
|
5
|
+
};
|
|
6
|
+
export type SubscriptionStatus =
|
|
7
|
+
(typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
8
|
+
export declare const PostStreamArtifactGenerationStatus: {
|
|
9
|
+
readonly COMPLETED: "COMPLETED";
|
|
10
|
+
readonly FAILED: "FAILED";
|
|
11
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
12
|
+
};
|
|
13
|
+
export type PostStreamArtifactGenerationStatus =
|
|
14
|
+
(typeof PostStreamArtifactGenerationStatus)[keyof typeof PostStreamArtifactGenerationStatus];
|
|
15
|
+
export declare const CustomTemplateBase: {
|
|
16
|
+
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
17
|
+
readonly BIRP: "BIRP";
|
|
18
|
+
readonly DAP: "DAP";
|
|
19
|
+
readonly GIRPP: "GIRPP";
|
|
20
|
+
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
21
|
+
readonly SIRP: "SIRP";
|
|
22
|
+
};
|
|
23
|
+
export type CustomTemplateBase =
|
|
24
|
+
(typeof CustomTemplateBase)[keyof typeof CustomTemplateBase];
|
|
25
|
+
export declare const ManagedNoteTemplate: {
|
|
26
|
+
readonly BEHAVIORAL_SOAP: "BEHAVIORAL_SOAP";
|
|
27
|
+
readonly BIRP: "BIRP";
|
|
28
|
+
readonly DAP: "DAP";
|
|
29
|
+
readonly GIRPP: "GIRPP";
|
|
30
|
+
readonly HISTORY_AND_PHYSICAL: "HISTORY_AND_PHYSICAL";
|
|
31
|
+
readonly PHYSICAL_SOAP: "PHYSICAL_SOAP";
|
|
32
|
+
readonly SIRP: "SIRP";
|
|
33
|
+
};
|
|
34
|
+
export type ManagedNoteTemplate =
|
|
35
|
+
(typeof ManagedNoteTemplate)[keyof typeof ManagedNoteTemplate];
|
|
36
|
+
export declare const EncryptionType: {
|
|
37
|
+
readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
|
|
38
|
+
readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
|
|
39
|
+
};
|
|
40
|
+
export type EncryptionType =
|
|
41
|
+
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
42
|
+
export declare const DomainStatus: {
|
|
43
|
+
readonly ACTIVE: "ACTIVE";
|
|
44
|
+
readonly DELETED: "DELETED";
|
|
45
|
+
readonly DELETING: "DELETING";
|
|
46
|
+
};
|
|
47
|
+
export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
|
|
48
|
+
export declare const MedicalScribeParticipantRole: {
|
|
49
|
+
readonly CLINICIAN: "CLINICIAN";
|
|
50
|
+
readonly PATIENT: "PATIENT";
|
|
51
|
+
};
|
|
52
|
+
export type MedicalScribeParticipantRole =
|
|
53
|
+
(typeof MedicalScribeParticipantRole)[keyof typeof MedicalScribeParticipantRole];
|
|
54
|
+
export declare const MedicalScribeLanguageCode: {
|
|
55
|
+
readonly EN_US: "en-US";
|
|
56
|
+
};
|
|
57
|
+
export type MedicalScribeLanguageCode =
|
|
58
|
+
(typeof MedicalScribeLanguageCode)[keyof typeof MedicalScribeLanguageCode];
|
|
59
|
+
export declare const MedicalScribeMediaEncoding: {
|
|
60
|
+
readonly FLAC: "flac";
|
|
61
|
+
readonly PCM: "pcm";
|
|
62
|
+
};
|
|
63
|
+
export type MedicalScribeMediaEncoding =
|
|
64
|
+
(typeof MedicalScribeMediaEncoding)[keyof typeof MedicalScribeMediaEncoding];
|
|
65
|
+
export declare const MedicalScribeStreamStatus: {
|
|
66
|
+
readonly COMPLETED: "COMPLETED";
|
|
67
|
+
readonly FAILED: "FAILED";
|
|
68
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
69
|
+
readonly PAUSED: "PAUSED";
|
|
70
|
+
};
|
|
71
|
+
export type MedicalScribeStreamStatus =
|
|
72
|
+
(typeof MedicalScribeStreamStatus)[keyof typeof MedicalScribeStreamStatus];
|
|
73
|
+
export declare const InsightsType: {
|
|
74
|
+
readonly PRE_VISIT: "PRE_VISIT";
|
|
75
|
+
};
|
|
76
|
+
export type InsightsType = (typeof InsightsType)[keyof typeof InsightsType];
|
|
77
|
+
export declare const JobStatus: {
|
|
78
|
+
readonly FAILED: "FAILED";
|
|
79
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
80
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
81
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
82
|
+
};
|
|
83
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
84
|
+
export declare const Pronouns: {
|
|
85
|
+
readonly HE_HIM: "HE_HIM";
|
|
86
|
+
readonly SHE_HER: "SHE_HER";
|
|
87
|
+
readonly THEY_THEM: "THEY_THEM";
|
|
88
|
+
};
|
|
89
|
+
export type Pronouns = (typeof Pronouns)[keyof typeof Pronouns];
|
|
90
|
+
export declare const ProviderRole: {
|
|
91
|
+
readonly CLINICIAN: "CLINICIAN";
|
|
92
|
+
};
|
|
93
|
+
export type ProviderRole = (typeof ProviderRole)[keyof typeof ProviderRole];
|
|
94
|
+
export declare const Specialty: {
|
|
95
|
+
readonly PRIMARY_CARE: "PRIMARY_CARE";
|
|
96
|
+
};
|
|
97
|
+
export type Specialty = (typeof Specialty)[keyof typeof Specialty];
|
|
98
|
+
export declare const MedicalScribeSessionControlEventType: {
|
|
99
|
+
readonly END_OF_SESSION: "END_OF_SESSION";
|
|
100
|
+
};
|
|
101
|
+
export type MedicalScribeSessionControlEventType =
|
|
102
|
+
(typeof MedicalScribeSessionControlEventType)[keyof typeof MedicalScribeSessionControlEventType];
|