@aws-sdk/client-connecthealth 3.1075.0 → 3.1077.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 +1059 -16
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +11 -13
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ConnectHealthServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -89
- package/dist-cjs/runtimeConfig.browser.js +0 -37
- package/dist-cjs/runtimeConfig.js +0 -52
- package/dist-cjs/runtimeConfig.native.js +0 -16
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -772
package/dist-cjs/index.js
CHANGED
|
@@ -1,23 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { resolveEventStreamConfig, getEventStreamPlugin } = require("@aws-sdk/middleware-eventstream");
|
|
4
3
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
5
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
6
5
|
exports.$Command = Command;
|
|
7
6
|
exports.__Client = Client;
|
|
8
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
9
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
10
|
-
const { resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
|
|
11
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
12
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
13
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
14
|
-
const {
|
|
15
|
-
const {
|
|
16
|
-
const {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const {
|
|
20
|
-
|
|
7
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { eventStreamSerdeProvider, resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
|
|
10
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
11
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
12
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
13
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
14
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
15
|
+
const { eventStreamPayloadHandlerProvider } = require("@aws-sdk/eventstream-handler-node");
|
|
16
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
17
|
+
const { streamCollector, NodeHttp2Handler } = require("@smithy/node-http-handler");
|
|
18
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
19
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
20
|
+
|
|
21
|
+
const defaultConnectHealthHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
22
|
+
return {
|
|
23
|
+
operation: getSmithyContext(context).operation,
|
|
24
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
25
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
26
|
+
})(),
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
30
|
+
return {
|
|
31
|
+
schemeId: "aws.auth#sigv4",
|
|
32
|
+
signingProperties: {
|
|
33
|
+
name: "health-agent",
|
|
34
|
+
region: authParameters.region,
|
|
35
|
+
},
|
|
36
|
+
propertiesExtractor: (config, context) => ({
|
|
37
|
+
signingProperties: {
|
|
38
|
+
config,
|
|
39
|
+
context,
|
|
40
|
+
},
|
|
41
|
+
}),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
const defaultConnectHealthHttpAuthSchemeProvider = (authParameters) => {
|
|
45
|
+
const options = [];
|
|
46
|
+
switch (authParameters.operation) {
|
|
47
|
+
default: {
|
|
48
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
return options;
|
|
52
|
+
};
|
|
53
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
54
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
55
|
+
return Object.assign(config_0, {
|
|
56
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
57
|
+
});
|
|
58
|
+
};
|
|
21
59
|
|
|
22
60
|
const resolveClientEndpointParameters = (options) => {
|
|
23
61
|
return Object.assign(options, {
|
|
@@ -31,6 +69,909 @@ const commonParams = {
|
|
|
31
69
|
Region: { type: "builtInParams", name: "region" },
|
|
32
70
|
};
|
|
33
71
|
|
|
72
|
+
var version = "3.1076.0";
|
|
73
|
+
var packageInfo = {
|
|
74
|
+
version: version};
|
|
75
|
+
|
|
76
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[a, [b]],
|
|
80
|
+
[a, c],
|
|
81
|
+
["aws.partition", c, "PartitionResult"],
|
|
82
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
83
|
+
],
|
|
84
|
+
results: [
|
|
85
|
+
[-1],
|
|
86
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
87
|
+
[b, {}],
|
|
88
|
+
["https://health-agent-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
89
|
+
["https://health-agent.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
90
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
91
|
+
]
|
|
92
|
+
};
|
|
93
|
+
const root = 2;
|
|
94
|
+
const r = 100_000_000;
|
|
95
|
+
const nodes = new Int32Array([
|
|
96
|
+
-1, 1, -1,
|
|
97
|
+
0, 6, 3,
|
|
98
|
+
1, 4, r + 5,
|
|
99
|
+
2, 5, r + 5,
|
|
100
|
+
3, r + 3, r + 4,
|
|
101
|
+
3, r + 1, r + 2,
|
|
102
|
+
]);
|
|
103
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
104
|
+
|
|
105
|
+
const cache = new EndpointCache({
|
|
106
|
+
size: 50,
|
|
107
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
108
|
+
});
|
|
109
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
110
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
111
|
+
endpointParams: endpointParams,
|
|
112
|
+
logger: context.logger,
|
|
113
|
+
}));
|
|
114
|
+
};
|
|
115
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
116
|
+
|
|
117
|
+
class ConnectHealthServiceException extends ServiceException {
|
|
118
|
+
constructor(options) {
|
|
119
|
+
super(options);
|
|
120
|
+
Object.setPrototypeOf(this, ConnectHealthServiceException.prototype);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
class AccessDeniedException extends ConnectHealthServiceException {
|
|
125
|
+
name = "AccessDeniedException";
|
|
126
|
+
$fault = "client";
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "AccessDeniedException",
|
|
130
|
+
$fault: "client",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
class InternalServerException extends ConnectHealthServiceException {
|
|
137
|
+
name = "InternalServerException";
|
|
138
|
+
$fault = "server";
|
|
139
|
+
$retryable = {};
|
|
140
|
+
constructor(opts) {
|
|
141
|
+
super({
|
|
142
|
+
name: "InternalServerException",
|
|
143
|
+
$fault: "server",
|
|
144
|
+
...opts,
|
|
145
|
+
});
|
|
146
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
class ResourceNotFoundException extends ConnectHealthServiceException {
|
|
150
|
+
name = "ResourceNotFoundException";
|
|
151
|
+
$fault = "client";
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "ResourceNotFoundException",
|
|
155
|
+
$fault: "client",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
class ValidationException extends ConnectHealthServiceException {
|
|
162
|
+
name = "ValidationException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
constructor(opts) {
|
|
165
|
+
super({
|
|
166
|
+
name: "ValidationException",
|
|
167
|
+
$fault: "client",
|
|
168
|
+
...opts,
|
|
169
|
+
});
|
|
170
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
class ConflictException extends ConnectHealthServiceException {
|
|
174
|
+
name = "ConflictException";
|
|
175
|
+
$fault = "client";
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "ConflictException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class ServiceQuotaExceededException extends ConnectHealthServiceException {
|
|
186
|
+
name = "ServiceQuotaExceededException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
constructor(opts) {
|
|
189
|
+
super({
|
|
190
|
+
name: "ServiceQuotaExceededException",
|
|
191
|
+
$fault: "client",
|
|
192
|
+
...opts,
|
|
193
|
+
});
|
|
194
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
class ThrottlingException extends ConnectHealthServiceException {
|
|
198
|
+
name = "ThrottlingException";
|
|
199
|
+
$fault = "client";
|
|
200
|
+
$retryable = {
|
|
201
|
+
throttling: true,
|
|
202
|
+
};
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "ThrottlingException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
const _AD = "ArtifactDetails";
|
|
214
|
+
const _ADE = "AccessDeniedException";
|
|
215
|
+
const _AS = "ActivateSubscription";
|
|
216
|
+
const _ASI = "ActivateSubscriptionInput";
|
|
217
|
+
const _ASO = "ActivateSubscriptionOutput";
|
|
218
|
+
const _CD = "CreateDomain";
|
|
219
|
+
const _CDI = "CreateDomainInput";
|
|
220
|
+
const _CDO = "CreateDomainOutput";
|
|
221
|
+
const _CE = "ConflictException";
|
|
222
|
+
const _CNGR = "ClinicalNoteGenerationResult";
|
|
223
|
+
const _CNGS = "ClinicalNoteGenerationSettings";
|
|
224
|
+
const _CNGSR = "ClinicalNoteGenerationSettingsResponse";
|
|
225
|
+
const _CS = "CreateSubscription";
|
|
226
|
+
const _CSI = "CreateSubscriptionInput";
|
|
227
|
+
const _CSO = "CreateSubscriptionOutput";
|
|
228
|
+
const _CT = "CustomTemplate";
|
|
229
|
+
const _CTR = "CustomTemplateResponse";
|
|
230
|
+
const _CWAC = "CreateWebAppConfiguration";
|
|
231
|
+
const _DD = "DeleteDomain";
|
|
232
|
+
const _DDI = "DeleteDomainInput";
|
|
233
|
+
const _DDO = "DeleteDomainOutput";
|
|
234
|
+
const _DS = "DomainSummary";
|
|
235
|
+
const _DSI = "DeactivateSubscriptionInput";
|
|
236
|
+
const _DSL = "DomainSummaryList";
|
|
237
|
+
const _DSO = "DeactivateSubscriptionOutput";
|
|
238
|
+
const _DSe = "DeactivateSubscription";
|
|
239
|
+
const _EC = "EncounterContext";
|
|
240
|
+
const _ECn = "EncryptionContext";
|
|
241
|
+
const _FHIRS = "FHIRServer";
|
|
242
|
+
const _GD = "GetDomain";
|
|
243
|
+
const _GDI = "GetDomainInput";
|
|
244
|
+
const _GDO = "GetDomainOutput";
|
|
245
|
+
const _GMSLS = "GetMedicalScribeListeningSession";
|
|
246
|
+
const _GMSLSI = "GetMedicalScribeListeningSessionInput";
|
|
247
|
+
const _GMSLSO = "GetMedicalScribeListeningSessionOutput";
|
|
248
|
+
const _GPIJ = "GetPatientInsightsJob";
|
|
249
|
+
const _GPIJR = "GetPatientInsightsJobRequest";
|
|
250
|
+
const _GPIJRe = "GetPatientInsightsJobResponse";
|
|
251
|
+
const _GS = "GetSubscription";
|
|
252
|
+
const _GSI = "GetSubscriptionInput";
|
|
253
|
+
const _GSO = "GetSubscriptionOutput";
|
|
254
|
+
const _IC = "InsightsContext";
|
|
255
|
+
const _IDC = "InputDataConfig";
|
|
256
|
+
const _IO = "InsightsOutput";
|
|
257
|
+
const _ISE = "InternalServerException";
|
|
258
|
+
const _LD = "ListDomains";
|
|
259
|
+
const _LDI = "ListDomainsInput";
|
|
260
|
+
const _LDO = "ListDomainsOutput";
|
|
261
|
+
const _LS = "ListSubscriptions";
|
|
262
|
+
const _LSI = "ListSubscriptionsInput";
|
|
263
|
+
const _LSO = "ListSubscriptionsOutput";
|
|
264
|
+
const _LTFR = "ListTagsForResource";
|
|
265
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
266
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
267
|
+
const _MSAE = "MedicalScribeAudioEvent";
|
|
268
|
+
const _MSBAE = "MedicalScribeBinaryAudioEvent";
|
|
269
|
+
const _MSCD = "MedicalScribeChannelDefinition";
|
|
270
|
+
const _MSCDe = "MedicalScribeChannelDefinitions";
|
|
271
|
+
const _MSCE = "MedicalScribeConfigurationEvent";
|
|
272
|
+
const _MSIS = "MedicalScribeInputStream";
|
|
273
|
+
const _MSLSD = "MedicalScribeListeningSessionDetails";
|
|
274
|
+
const _MSOS = "MedicalScribeOutputStream";
|
|
275
|
+
const _MSPSAR = "MedicalScribePostStreamActionsResult";
|
|
276
|
+
const _MSPSAS = "MedicalScribePostStreamActionSettings";
|
|
277
|
+
const _MSPSASR = "MedicalScribePostStreamActionSettingsResponse";
|
|
278
|
+
const _MSSCE = "MedicalScribeSessionControlEvent";
|
|
279
|
+
const _MSTE = "MedicalScribeTranscriptEvent";
|
|
280
|
+
const _MSTS = "MedicalScribeTranscriptSegment";
|
|
281
|
+
const _MT = "ManagedTemplate";
|
|
282
|
+
const _MTR = "ManagedTemplateResponse";
|
|
283
|
+
const _NTS = "NoteTemplateSettings";
|
|
284
|
+
const _NTSR = "NoteTemplateSettingsResponse";
|
|
285
|
+
const _ODC = "OutputDataConfig";
|
|
286
|
+
const _P = "Pronouns";
|
|
287
|
+
const _PIEC = "PatientInsightsEncounterContext";
|
|
288
|
+
const _PIPC = "PatientInsightsPatientContext";
|
|
289
|
+
const _RNFE = "ResourceNotFoundException";
|
|
290
|
+
const _SAS = "SensitiveAlphanumericString";
|
|
291
|
+
const _SD = "SubscriptionDescription";
|
|
292
|
+
const _SIDS = "SensitiveIsoDateString";
|
|
293
|
+
const _SL = "SubscriptionList";
|
|
294
|
+
const _SMS = "SensitiveMarkdownString";
|
|
295
|
+
const _SMSLS = "StartMedicalScribeListeningSession";
|
|
296
|
+
const _SMSLSI = "StartMedicalScribeListeningSessionInput";
|
|
297
|
+
const _SMSLSO = "StartMedicalScribeListeningSessionOutput";
|
|
298
|
+
const _SNES = "SensitiveNonEmptyString";
|
|
299
|
+
const _SPIJ = "StartPatientInsightsJob";
|
|
300
|
+
const _SPIJR = "StartPatientInsightsJobRequest";
|
|
301
|
+
const _SPIJRt = "StartPatientInsightsJobResponse";
|
|
302
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
303
|
+
const _SS = "S3Source";
|
|
304
|
+
const _SSo = "S3Sources";
|
|
305
|
+
const _TE = "ThrottlingException";
|
|
306
|
+
const _TI = "TemplateInstructions";
|
|
307
|
+
const _TR = "TagResource";
|
|
308
|
+
const _TRI = "TagResourceInput";
|
|
309
|
+
const _TSI = "TemplateSectionInstruction";
|
|
310
|
+
const _UC = "UserContext";
|
|
311
|
+
const _UR = "UntagResource";
|
|
312
|
+
const _URI = "UntagResourceInput";
|
|
313
|
+
const _VE = "ValidationException";
|
|
314
|
+
const _WAC = "WebAppConfiguration";
|
|
315
|
+
const _a = "arn";
|
|
316
|
+
const _aA = "activatedAt";
|
|
317
|
+
const _aBO = "audioBeginOffset";
|
|
318
|
+
const _aC = "audioChunk";
|
|
319
|
+
const _aE = "audioEvent";
|
|
320
|
+
const _aEO = "audioEndOffset";
|
|
321
|
+
const _aVSR = "afterVisitSummaryResult";
|
|
322
|
+
const _bAE = "binaryAudioEvent";
|
|
323
|
+
const _c = "client";
|
|
324
|
+
const _cA = "createdAt";
|
|
325
|
+
const _cD = "channelDefinitions";
|
|
326
|
+
const _cE = "configurationEvent";
|
|
327
|
+
const _cI = "channelId";
|
|
328
|
+
const _cNGR = "clinicalNoteGenerationResult";
|
|
329
|
+
const _cNGS = "clinicalNoteGenerationSettings";
|
|
330
|
+
const _cT = "creationTime";
|
|
331
|
+
const _cTl = "clientToken";
|
|
332
|
+
const _cTu = "customTemplate";
|
|
333
|
+
const _co = "content";
|
|
334
|
+
const _d = "domains";
|
|
335
|
+
const _dA = "deactivatedAt";
|
|
336
|
+
const _dI = "domainId";
|
|
337
|
+
const _dOB = "dateOfBirth";
|
|
338
|
+
const _e = "error";
|
|
339
|
+
const _eC = "encryptionContext";
|
|
340
|
+
const _eCP = "encounterContextProvided";
|
|
341
|
+
const _eCn = "encounterContext";
|
|
342
|
+
const _eP = "eventPayload";
|
|
343
|
+
const _eR = "ehrRole";
|
|
344
|
+
const _eRn = "encounterReason";
|
|
345
|
+
const _eT = "encryptionType";
|
|
346
|
+
const _en = "endpoint";
|
|
347
|
+
const _fE = "fhirEndpoint";
|
|
348
|
+
const _fR = "failureReason";
|
|
349
|
+
const _fS = "fhirServer";
|
|
350
|
+
const _h = "http";
|
|
351
|
+
const _hE = "httpError";
|
|
352
|
+
const _hH = "httpHeader";
|
|
353
|
+
const _hQ = "httpQuery";
|
|
354
|
+
const _iAI = "idcApplicationId";
|
|
355
|
+
const _iC = "insightsContext";
|
|
356
|
+
const _iDC = "inputDataConfig";
|
|
357
|
+
const _iFE = "internalFailureException";
|
|
358
|
+
const _iII = "idcInstanceId";
|
|
359
|
+
const _iO = "insightsOutput";
|
|
360
|
+
const _iP = "isPartial";
|
|
361
|
+
const _iR = "idcRegion";
|
|
362
|
+
const _iS = "inputStream";
|
|
363
|
+
const _iT = "insightsType";
|
|
364
|
+
const _jA = "jobArn";
|
|
365
|
+
const _jI = "jobId";
|
|
366
|
+
const _jS = "jobStatus";
|
|
367
|
+
const _kKA = "kmsKeyArn";
|
|
368
|
+
const _lC = "languageCode";
|
|
369
|
+
const _lUA = "lastUpdatedAt";
|
|
370
|
+
const _m = "message";
|
|
371
|
+
const _mE = "mediaEncoding";
|
|
372
|
+
const _mR = "maxResults";
|
|
373
|
+
const _mSLSD = "medicalScribeListeningSessionDetails";
|
|
374
|
+
const _mSRH = "mediaSampleRateHertz";
|
|
375
|
+
const _mT = "managedTemplate";
|
|
376
|
+
const _n = "name";
|
|
377
|
+
const _nR = "noteResult";
|
|
378
|
+
const _nT = "nextToken";
|
|
379
|
+
const _nTS = "noteTemplateSettings";
|
|
380
|
+
const _oDC = "outputDataConfig";
|
|
381
|
+
const _oL = "outputLocation";
|
|
382
|
+
const _oSU = "outputS3Uri";
|
|
383
|
+
const _oT = "oauthToken";
|
|
384
|
+
const _p = "pronouns";
|
|
385
|
+
const _pC = "patientContext";
|
|
386
|
+
const _pI = "patientId";
|
|
387
|
+
const _pR = "participantRole";
|
|
388
|
+
const _pSAR = "postStreamActionResult";
|
|
389
|
+
const _pSAS = "postStreamActionSettings";
|
|
390
|
+
const _r = "role";
|
|
391
|
+
const _rA = "resourceArn";
|
|
392
|
+
const _rI = "requestId";
|
|
393
|
+
const _rS = "responseStream";
|
|
394
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.connecthealth";
|
|
395
|
+
const _sCE = "sessionControlEvent";
|
|
396
|
+
const _sCT = "streamCreationTime";
|
|
397
|
+
const _sD = "statusDetails";
|
|
398
|
+
const _sET = "streamEndTime";
|
|
399
|
+
const _sH = "sectionHeader";
|
|
400
|
+
const _sI = "subscriptionId";
|
|
401
|
+
const _sIe = "sessionId";
|
|
402
|
+
const _sIec = "sectionInstruction";
|
|
403
|
+
const _sIeg = "segmentId";
|
|
404
|
+
const _sOP = "s3OutputPath";
|
|
405
|
+
const _sS = "s3Sources";
|
|
406
|
+
const _sSt = "streamStatus";
|
|
407
|
+
const _se = "server";
|
|
408
|
+
const _sp = "specialty";
|
|
409
|
+
const _st = "status";
|
|
410
|
+
const _str = "streaming";
|
|
411
|
+
const _su = "subscription";
|
|
412
|
+
const _sub = "subscriptions";
|
|
413
|
+
const _t = "tags";
|
|
414
|
+
const _tE = "transcriptEvent";
|
|
415
|
+
const _tI = "templateInstructions";
|
|
416
|
+
const _tK = "tagKeys";
|
|
417
|
+
const _tR = "transcriptResult";
|
|
418
|
+
const _tS = "transcriptSegment";
|
|
419
|
+
const _tT = "templateType";
|
|
420
|
+
const _ty = "type";
|
|
421
|
+
const _u = "uri";
|
|
422
|
+
const _uC = "unstructuredContext";
|
|
423
|
+
const _uCs = "userContext";
|
|
424
|
+
const _uI = "userId";
|
|
425
|
+
const _uT = "updatedTime";
|
|
426
|
+
const _vE = "validationException";
|
|
427
|
+
const _wAC = "webAppConfiguration";
|
|
428
|
+
const _wASC = "webAppSetupConfiguration";
|
|
429
|
+
const _wAU = "webAppUrl";
|
|
430
|
+
const _xamdi = "x-amzn-medscribe-domain-id";
|
|
431
|
+
const _xamlc = "x-amzn-medscribe-language-code";
|
|
432
|
+
const _xamme = "x-amzn-medscribe-media-encoding";
|
|
433
|
+
const _xamsi = "x-amzn-medscribe-session-id";
|
|
434
|
+
const _xamsi_ = "x-amzn-medscribe-subscription-id";
|
|
435
|
+
const _xamsr = "x-amzn-medscribe-sample-rate";
|
|
436
|
+
const _xari = "x-amzn-request-id";
|
|
437
|
+
const n0 = "com.amazonaws.connecthealth";
|
|
438
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
439
|
+
var ConnectHealthServiceException$ = [-3, _s, "ConnectHealthServiceException", 0, [], []];
|
|
440
|
+
_s_registry.registerError(ConnectHealthServiceException$, ConnectHealthServiceException);
|
|
441
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
442
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
443
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
444
|
+
[_m],
|
|
445
|
+
[0]
|
|
446
|
+
];
|
|
447
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
448
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
449
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
450
|
+
[_m],
|
|
451
|
+
[0]
|
|
452
|
+
];
|
|
453
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
454
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
455
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
456
|
+
[_m],
|
|
457
|
+
[0]
|
|
458
|
+
];
|
|
459
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
460
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
461
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
462
|
+
[_m],
|
|
463
|
+
[0]
|
|
464
|
+
];
|
|
465
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
466
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
467
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
468
|
+
[_m],
|
|
469
|
+
[0]
|
|
470
|
+
];
|
|
471
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
472
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
473
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
474
|
+
[_m],
|
|
475
|
+
[0]
|
|
476
|
+
];
|
|
477
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
478
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
479
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
480
|
+
[_m],
|
|
481
|
+
[0]
|
|
482
|
+
];
|
|
483
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
484
|
+
const errorTypeRegistries = [
|
|
485
|
+
_s_registry,
|
|
486
|
+
n0_registry,
|
|
487
|
+
];
|
|
488
|
+
var Pronouns$1 = [0, n0, _P, 8, 0];
|
|
489
|
+
var SensitiveAlphanumericString = [0, n0, _SAS, 8, 0];
|
|
490
|
+
var SensitiveIsoDateString = [0, n0, _SIDS, 8, 0];
|
|
491
|
+
var SensitiveMarkdownString = [0, n0, _SMS, 8, 0];
|
|
492
|
+
var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
|
|
493
|
+
var ActivateSubscriptionInput$ = [3, n0, _ASI,
|
|
494
|
+
0,
|
|
495
|
+
[_dI, _sI],
|
|
496
|
+
[[0, 1], [0, 1]], 2
|
|
497
|
+
];
|
|
498
|
+
var ActivateSubscriptionOutput$ = [3, n0, _ASO,
|
|
499
|
+
0,
|
|
500
|
+
[_su],
|
|
501
|
+
[() => SubscriptionDescription$]
|
|
502
|
+
];
|
|
503
|
+
var ArtifactDetails$ = [3, n0, _AD,
|
|
504
|
+
0,
|
|
505
|
+
[_oL, _st, _fR],
|
|
506
|
+
[0, 0, 0]
|
|
507
|
+
];
|
|
508
|
+
var ClinicalNoteGenerationResult$ = [3, n0, _CNGR,
|
|
509
|
+
0,
|
|
510
|
+
[_nR, _tR, _aVSR],
|
|
511
|
+
[() => ArtifactDetails$, () => ArtifactDetails$, () => ArtifactDetails$]
|
|
512
|
+
];
|
|
513
|
+
var ClinicalNoteGenerationSettings$ = [3, n0, _CNGS,
|
|
514
|
+
0,
|
|
515
|
+
[_nTS],
|
|
516
|
+
[[() => NoteTemplateSettings$, 0]], 1
|
|
517
|
+
];
|
|
518
|
+
var ClinicalNoteGenerationSettingsResponse$ = [3, n0, _CNGSR,
|
|
519
|
+
0,
|
|
520
|
+
[_nTS],
|
|
521
|
+
[() => NoteTemplateSettingsResponse$]
|
|
522
|
+
];
|
|
523
|
+
var CreateDomainInput$ = [3, n0, _CDI,
|
|
524
|
+
0,
|
|
525
|
+
[_n, _kKA, _wASC, _t],
|
|
526
|
+
[0, 0, () => CreateWebAppConfiguration$, 128 | 0], 1
|
|
527
|
+
];
|
|
528
|
+
var CreateDomainOutput$ = [3, n0, _CDO,
|
|
529
|
+
0,
|
|
530
|
+
[_dI, _a, _n, _st, _cA, _kKA, _eC, _wAU, _wAC],
|
|
531
|
+
[0, 0, 0, 0, 4, 0, () => EncryptionContext$, 0, () => WebAppConfiguration$], 5
|
|
532
|
+
];
|
|
533
|
+
var CreateSubscriptionInput$ = [3, n0, _CSI,
|
|
534
|
+
0,
|
|
535
|
+
[_dI],
|
|
536
|
+
[[0, 1]], 1
|
|
537
|
+
];
|
|
538
|
+
var CreateSubscriptionOutput$ = [3, n0, _CSO,
|
|
539
|
+
0,
|
|
540
|
+
[_dI, _sI, _a, _st, _cA, _lUA, _aA, _dA],
|
|
541
|
+
[0, 0, 0, 0, 4, 4, 4, 4], 6
|
|
542
|
+
];
|
|
543
|
+
var CreateWebAppConfiguration$ = [3, n0, _CWAC,
|
|
544
|
+
0,
|
|
545
|
+
[_eR, _iII, _iR],
|
|
546
|
+
[0, 0, 0], 3
|
|
547
|
+
];
|
|
548
|
+
var CustomTemplate$ = [3, n0, _CT,
|
|
549
|
+
0,
|
|
550
|
+
[_tT, _tI],
|
|
551
|
+
[0, [() => TemplateInstructions, 0]], 2
|
|
552
|
+
];
|
|
553
|
+
var CustomTemplateResponse$ = [3, n0, _CTR,
|
|
554
|
+
0,
|
|
555
|
+
[_tT],
|
|
556
|
+
[0]
|
|
557
|
+
];
|
|
558
|
+
var DeactivateSubscriptionInput$ = [3, n0, _DSI,
|
|
559
|
+
0,
|
|
560
|
+
[_dI, _sI],
|
|
561
|
+
[[0, 1], [0, 1]], 2
|
|
562
|
+
];
|
|
563
|
+
var DeactivateSubscriptionOutput$ = [3, n0, _DSO,
|
|
564
|
+
0,
|
|
565
|
+
[_su],
|
|
566
|
+
[() => SubscriptionDescription$]
|
|
567
|
+
];
|
|
568
|
+
var DeleteDomainInput$ = [3, n0, _DDI,
|
|
569
|
+
0,
|
|
570
|
+
[_dI],
|
|
571
|
+
[[0, 1]], 1
|
|
572
|
+
];
|
|
573
|
+
var DeleteDomainOutput$ = [3, n0, _DDO,
|
|
574
|
+
0,
|
|
575
|
+
[_dI, _a, _st],
|
|
576
|
+
[0, 0, 0], 3
|
|
577
|
+
];
|
|
578
|
+
var DomainSummary$ = [3, n0, _DS,
|
|
579
|
+
0,
|
|
580
|
+
[_dI, _a, _n, _st, _cA],
|
|
581
|
+
[0, 0, 0, 0, 4], 5
|
|
582
|
+
];
|
|
583
|
+
var EncounterContext$ = [3, n0, _EC,
|
|
584
|
+
0,
|
|
585
|
+
[_uC],
|
|
586
|
+
[[() => SensitiveMarkdownString, 0]]
|
|
587
|
+
];
|
|
588
|
+
var EncryptionContext$ = [3, n0, _ECn,
|
|
589
|
+
0,
|
|
590
|
+
[_eT, _kKA],
|
|
591
|
+
[0, 0], 1
|
|
592
|
+
];
|
|
593
|
+
var FHIRServer$ = [3, n0, _FHIRS,
|
|
594
|
+
0,
|
|
595
|
+
[_fE, _oT],
|
|
596
|
+
[0, [() => SensitiveNonEmptyString, 0]], 1
|
|
597
|
+
];
|
|
598
|
+
var GetDomainInput$ = [3, n0, _GDI,
|
|
599
|
+
0,
|
|
600
|
+
[_dI],
|
|
601
|
+
[[0, 1]], 1
|
|
602
|
+
];
|
|
603
|
+
var GetDomainOutput$ = [3, n0, _GDO,
|
|
604
|
+
0,
|
|
605
|
+
[_dI, _a, _n, _st, _cA, _kKA, _eC, _wAU, _wAC, _t],
|
|
606
|
+
[0, 0, 0, 0, 4, 0, () => EncryptionContext$, 0, () => WebAppConfiguration$, 128 | 0], 5
|
|
607
|
+
];
|
|
608
|
+
var GetMedicalScribeListeningSessionInput$ = [3, n0, _GMSLSI,
|
|
609
|
+
0,
|
|
610
|
+
[_sIe, _dI, _sI],
|
|
611
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
612
|
+
];
|
|
613
|
+
var GetMedicalScribeListeningSessionOutput$ = [3, n0, _GMSLSO,
|
|
614
|
+
0,
|
|
615
|
+
[_mSLSD],
|
|
616
|
+
[() => MedicalScribeListeningSessionDetails$]
|
|
617
|
+
];
|
|
618
|
+
var GetPatientInsightsJobRequest$ = [3, n0, _GPIJR,
|
|
619
|
+
0,
|
|
620
|
+
[_dI, _jI],
|
|
621
|
+
[[0, 1], [0, 1]], 2
|
|
622
|
+
];
|
|
623
|
+
var GetPatientInsightsJobResponse$ = [3, n0, _GPIJRe,
|
|
624
|
+
0,
|
|
625
|
+
[_jI, _jA, _jS, _pC, _iC, _eCn, _uCs, _iDC, _oDC, _cT, _uT, _iO, _sD],
|
|
626
|
+
[0, 0, 0, [() => PatientInsightsPatientContext$, 0], () => InsightsContext$, [() => PatientInsightsEncounterContext$, 0], [() => UserContext$, 0], [() => InputDataConfig$, 0], () => OutputDataConfig$, 5, 5, () => InsightsOutput$, 0], 9
|
|
627
|
+
];
|
|
628
|
+
var GetSubscriptionInput$ = [3, n0, _GSI,
|
|
629
|
+
0,
|
|
630
|
+
[_dI, _sI],
|
|
631
|
+
[[0, 1], [0, 1]], 2
|
|
632
|
+
];
|
|
633
|
+
var GetSubscriptionOutput$ = [3, n0, _GSO,
|
|
634
|
+
0,
|
|
635
|
+
[_su],
|
|
636
|
+
[() => SubscriptionDescription$]
|
|
637
|
+
];
|
|
638
|
+
var InputDataConfig$ = [3, n0, _IDC,
|
|
639
|
+
0,
|
|
640
|
+
[_fS, _sS],
|
|
641
|
+
[[() => FHIRServer$, 0], () => S3Sources]
|
|
642
|
+
];
|
|
643
|
+
var InsightsContext$ = [3, n0, _IC,
|
|
644
|
+
0,
|
|
645
|
+
[_iT],
|
|
646
|
+
[0], 1
|
|
647
|
+
];
|
|
648
|
+
var InsightsOutput$ = [3, n0, _IO,
|
|
649
|
+
0,
|
|
650
|
+
[_u],
|
|
651
|
+
[0], 1
|
|
652
|
+
];
|
|
653
|
+
var ListDomainsInput$ = [3, n0, _LDI,
|
|
654
|
+
0,
|
|
655
|
+
[_st, _mR, _nT],
|
|
656
|
+
[[0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
657
|
+
];
|
|
658
|
+
var ListDomainsOutput$ = [3, n0, _LDO,
|
|
659
|
+
0,
|
|
660
|
+
[_d, _nT],
|
|
661
|
+
[() => DomainSummaryList, 0], 1
|
|
662
|
+
];
|
|
663
|
+
var ListSubscriptionsInput$ = [3, n0, _LSI,
|
|
664
|
+
0,
|
|
665
|
+
[_dI, _mR, _nT],
|
|
666
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
667
|
+
];
|
|
668
|
+
var ListSubscriptionsOutput$ = [3, n0, _LSO,
|
|
669
|
+
0,
|
|
670
|
+
[_sub, _nT],
|
|
671
|
+
[() => SubscriptionList, 0], 1
|
|
672
|
+
];
|
|
673
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
674
|
+
0,
|
|
675
|
+
[_rA],
|
|
676
|
+
[[0, 1]], 1
|
|
677
|
+
];
|
|
678
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
679
|
+
0,
|
|
680
|
+
[_t],
|
|
681
|
+
[128 | 0]
|
|
682
|
+
];
|
|
683
|
+
var ManagedTemplate$ = [3, n0, _MT,
|
|
684
|
+
0,
|
|
685
|
+
[_tT],
|
|
686
|
+
[0], 1
|
|
687
|
+
];
|
|
688
|
+
var ManagedTemplateResponse$ = [3, n0, _MTR,
|
|
689
|
+
0,
|
|
690
|
+
[_tT],
|
|
691
|
+
[0]
|
|
692
|
+
];
|
|
693
|
+
var MedicalScribeAudioEvent$ = [3, n0, _MSAE,
|
|
694
|
+
0,
|
|
695
|
+
[_aC],
|
|
696
|
+
[21], 1
|
|
697
|
+
];
|
|
698
|
+
var MedicalScribeBinaryAudioEvent$ = [3, n0, _MSBAE,
|
|
699
|
+
0,
|
|
700
|
+
[_aC],
|
|
701
|
+
[[21, { [_eP]: 1 }]], 1
|
|
702
|
+
];
|
|
703
|
+
var MedicalScribeChannelDefinition$ = [3, n0, _MSCD,
|
|
704
|
+
0,
|
|
705
|
+
[_cI, _pR],
|
|
706
|
+
[1, 0], 2
|
|
707
|
+
];
|
|
708
|
+
var MedicalScribeConfigurationEvent$ = [3, n0, _MSCE,
|
|
709
|
+
0,
|
|
710
|
+
[_pSAS, _cD, _eCn],
|
|
711
|
+
[[() => MedicalScribePostStreamActionSettings$, 0], () => MedicalScribeChannelDefinitions, [() => EncounterContext$, 0]], 1
|
|
712
|
+
];
|
|
713
|
+
var MedicalScribeListeningSessionDetails$ = [3, n0, _MSLSD,
|
|
714
|
+
0,
|
|
715
|
+
[_sIe, _dI, _sI, _lC, _mSRH, _mE, _cD, _pSAS, _pSAR, _eCP, _sSt, _sCT, _sET],
|
|
716
|
+
[0, 0, 0, 0, 1, 0, () => MedicalScribeChannelDefinitions, () => MedicalScribePostStreamActionSettingsResponse$, () => MedicalScribePostStreamActionsResult$, 2, 0, 4, 4]
|
|
717
|
+
];
|
|
718
|
+
var MedicalScribePostStreamActionSettings$ = [3, n0, _MSPSAS,
|
|
719
|
+
0,
|
|
720
|
+
[_oSU, _cNGS],
|
|
721
|
+
[0, [() => ClinicalNoteGenerationSettings$, 0]], 2
|
|
722
|
+
];
|
|
723
|
+
var MedicalScribePostStreamActionSettingsResponse$ = [3, n0, _MSPSASR,
|
|
724
|
+
0,
|
|
725
|
+
[_oSU, _cNGS],
|
|
726
|
+
[0, () => ClinicalNoteGenerationSettingsResponse$], 2
|
|
727
|
+
];
|
|
728
|
+
var MedicalScribePostStreamActionsResult$ = [3, n0, _MSPSAR,
|
|
729
|
+
0,
|
|
730
|
+
[_cNGR],
|
|
731
|
+
[() => ClinicalNoteGenerationResult$]
|
|
732
|
+
];
|
|
733
|
+
var MedicalScribeSessionControlEvent$ = [3, n0, _MSSCE,
|
|
734
|
+
0,
|
|
735
|
+
[_ty],
|
|
736
|
+
[0]
|
|
737
|
+
];
|
|
738
|
+
var MedicalScribeTranscriptEvent$ = [3, n0, _MSTE,
|
|
739
|
+
0,
|
|
740
|
+
[_tS],
|
|
741
|
+
[() => MedicalScribeTranscriptSegment$]
|
|
742
|
+
];
|
|
743
|
+
var MedicalScribeTranscriptSegment$ = [3, n0, _MSTS,
|
|
744
|
+
0,
|
|
745
|
+
[_sIeg, _aBO, _aEO, _iP, _cI, _co],
|
|
746
|
+
[0, 1, 1, 2, 0, 0]
|
|
747
|
+
];
|
|
748
|
+
var OutputDataConfig$ = [3, n0, _ODC,
|
|
749
|
+
0,
|
|
750
|
+
[_sOP],
|
|
751
|
+
[0], 1
|
|
752
|
+
];
|
|
753
|
+
var PatientInsightsEncounterContext$ = [3, n0, _PIEC,
|
|
754
|
+
0,
|
|
755
|
+
[_eRn],
|
|
756
|
+
[[() => SensitiveNonEmptyString, 0]], 1
|
|
757
|
+
];
|
|
758
|
+
var PatientInsightsPatientContext$ = [3, n0, _PIPC,
|
|
759
|
+
0,
|
|
760
|
+
[_pI, _dOB, _p],
|
|
761
|
+
[[() => SensitiveNonEmptyString, 0], [() => SensitiveIsoDateString, 0], [() => Pronouns$1, 0]], 1
|
|
762
|
+
];
|
|
763
|
+
var S3Source$ = [3, n0, _SS,
|
|
764
|
+
0,
|
|
765
|
+
[_u],
|
|
766
|
+
[0], 1
|
|
767
|
+
];
|
|
768
|
+
var StartMedicalScribeListeningSessionInput$ = [3, n0, _SMSLSI,
|
|
769
|
+
0,
|
|
770
|
+
[_sIe, _dI, _sI, _lC, _mSRH, _mE, _iS],
|
|
771
|
+
[[0, { [_hH]: _xamsi }], [0, { [_hH]: _xamdi }], [0, { [_hH]: _xamsi_ }], [0, { [_hH]: _xamlc }], [1, { [_hH]: _xamsr }], [0, { [_hH]: _xamme }], [() => MedicalScribeInputStream$, 16]], 6
|
|
772
|
+
];
|
|
773
|
+
var StartMedicalScribeListeningSessionOutput$ = [3, n0, _SMSLSO,
|
|
774
|
+
0,
|
|
775
|
+
[_sIe, _dI, _sI, _rI, _lC, _mSRH, _mE, _rS],
|
|
776
|
+
[[0, { [_hH]: _xamsi }], [0, { [_hH]: _xamdi }], [0, { [_hH]: _xamsi_ }], [0, { [_hH]: _xari }], [0, { [_hH]: _xamlc }], [1, { [_hH]: _xamsr }], [0, { [_hH]: _xamme }], [() => MedicalScribeOutputStream$, 16]]
|
|
777
|
+
];
|
|
778
|
+
var StartPatientInsightsJobRequest$ = [3, n0, _SPIJR,
|
|
779
|
+
0,
|
|
780
|
+
[_dI, _pC, _iC, _eCn, _uCs, _iDC, _oDC, _cTl],
|
|
781
|
+
[[0, 1], [() => PatientInsightsPatientContext$, 0], () => InsightsContext$, [() => PatientInsightsEncounterContext$, 0], [() => UserContext$, 0], [() => InputDataConfig$, 0], () => OutputDataConfig$, [0, 4]], 7
|
|
782
|
+
];
|
|
783
|
+
var StartPatientInsightsJobResponse$ = [3, n0, _SPIJRt,
|
|
784
|
+
0,
|
|
785
|
+
[_jA, _jI, _cT],
|
|
786
|
+
[0, 0, 5], 2
|
|
787
|
+
];
|
|
788
|
+
var SubscriptionDescription$ = [3, n0, _SD,
|
|
789
|
+
0,
|
|
790
|
+
[_dI, _sI, _a, _st, _cA, _lUA, _aA, _dA],
|
|
791
|
+
[0, 0, 0, 0, 4, 4, 4, 4], 6
|
|
792
|
+
];
|
|
793
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
794
|
+
0,
|
|
795
|
+
[_rA, _t],
|
|
796
|
+
[[0, 1], 128 | 0], 2
|
|
797
|
+
];
|
|
798
|
+
var TemplateSectionInstruction$ = [3, n0, _TSI,
|
|
799
|
+
0,
|
|
800
|
+
[_sH, _sIec],
|
|
801
|
+
[[() => SensitiveAlphanumericString, 0], [() => SensitiveMarkdownString, 0]], 2
|
|
802
|
+
];
|
|
803
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
804
|
+
0,
|
|
805
|
+
[_rA, _tK],
|
|
806
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
807
|
+
];
|
|
808
|
+
var UserContext$ = [3, n0, _UC,
|
|
809
|
+
0,
|
|
810
|
+
[_r, _uI, _sp],
|
|
811
|
+
[0, [() => SensitiveNonEmptyString, 0], 0], 2
|
|
812
|
+
];
|
|
813
|
+
var WebAppConfiguration$ = [3, n0, _WAC,
|
|
814
|
+
0,
|
|
815
|
+
[_eR, _iAI, _iR],
|
|
816
|
+
[0, 0, 0], 3
|
|
817
|
+
];
|
|
818
|
+
var __Unit = "unit";
|
|
819
|
+
var DomainSummaryList = [1, n0, _DSL,
|
|
820
|
+
0, () => DomainSummary$
|
|
821
|
+
];
|
|
822
|
+
var MedicalScribeChannelDefinitions = [1, n0, _MSCDe,
|
|
823
|
+
0, () => MedicalScribeChannelDefinition$
|
|
824
|
+
];
|
|
825
|
+
var S3Sources = [1, n0, _SSo,
|
|
826
|
+
0, () => S3Source$
|
|
827
|
+
];
|
|
828
|
+
var SubscriptionList = [1, n0, _SL,
|
|
829
|
+
0, () => SubscriptionDescription$
|
|
830
|
+
];
|
|
831
|
+
var TemplateInstructions = [1, n0, _TI,
|
|
832
|
+
0, [() => TemplateSectionInstruction$,
|
|
833
|
+
0]
|
|
834
|
+
];
|
|
835
|
+
var MedicalScribeInputStream$ = [4, n0, _MSIS,
|
|
836
|
+
{ [_str]: 1 },
|
|
837
|
+
[_aE, _bAE, _sCE, _cE],
|
|
838
|
+
[() => MedicalScribeAudioEvent$, [() => MedicalScribeBinaryAudioEvent$, 0], () => MedicalScribeSessionControlEvent$, [() => MedicalScribeConfigurationEvent$, 0]]
|
|
839
|
+
];
|
|
840
|
+
var MedicalScribeOutputStream$ = [4, n0, _MSOS,
|
|
841
|
+
{ [_str]: 1 },
|
|
842
|
+
[_tE, _iFE, _vE],
|
|
843
|
+
[() => MedicalScribeTranscriptEvent$, [() => InternalServerException$, 0], [() => ValidationException$, 0]]
|
|
844
|
+
];
|
|
845
|
+
var NoteTemplateSettings$ = [4, n0, _NTS,
|
|
846
|
+
0,
|
|
847
|
+
[_mT, _cTu],
|
|
848
|
+
[() => ManagedTemplate$, [() => CustomTemplate$, 0]]
|
|
849
|
+
];
|
|
850
|
+
var NoteTemplateSettingsResponse$ = [4, n0, _NTSR,
|
|
851
|
+
0,
|
|
852
|
+
[_mT, _cTu],
|
|
853
|
+
[() => ManagedTemplateResponse$, () => CustomTemplateResponse$]
|
|
854
|
+
];
|
|
855
|
+
var ActivateSubscription$ = [9, n0, _AS,
|
|
856
|
+
{ [_h]: ["POST", "/domains/{domainId}/subscriptions/{subscriptionId}/activate", 200] }, () => ActivateSubscriptionInput$, () => ActivateSubscriptionOutput$
|
|
857
|
+
];
|
|
858
|
+
var CreateDomain$ = [9, n0, _CD,
|
|
859
|
+
{ [_h]: ["POST", "/domain", 201] }, () => CreateDomainInput$, () => CreateDomainOutput$
|
|
860
|
+
];
|
|
861
|
+
var CreateSubscription$ = [9, n0, _CS,
|
|
862
|
+
{ [_h]: ["POST", "/domains/{domainId}/subscriptions", 201] }, () => CreateSubscriptionInput$, () => CreateSubscriptionOutput$
|
|
863
|
+
];
|
|
864
|
+
var DeactivateSubscription$ = [9, n0, _DSe,
|
|
865
|
+
{ [_h]: ["POST", "/domains/{domainId}/subscriptions/{subscriptionId}/deactivate", 200] }, () => DeactivateSubscriptionInput$, () => DeactivateSubscriptionOutput$
|
|
866
|
+
];
|
|
867
|
+
var DeleteDomain$ = [9, n0, _DD,
|
|
868
|
+
{ [_h]: ["DELETE", "/domain/{domainId}", 200] }, () => DeleteDomainInput$, () => DeleteDomainOutput$
|
|
869
|
+
];
|
|
870
|
+
var GetDomain$ = [9, n0, _GD,
|
|
871
|
+
{ [_h]: ["GET", "/domain/{domainId}", 200] }, () => GetDomainInput$, () => GetDomainOutput$
|
|
872
|
+
];
|
|
873
|
+
var GetMedicalScribeListeningSession$ = [9, n0, _GMSLS,
|
|
874
|
+
{ [_en]: ["streaming."], [_h]: ["GET", "/medical-scribe-stream/domain/{domainId}/subscription/{subscriptionId}/session/{sessionId}", 200] }, () => GetMedicalScribeListeningSessionInput$, () => GetMedicalScribeListeningSessionOutput$
|
|
875
|
+
];
|
|
876
|
+
var GetPatientInsightsJob$ = [9, n0, _GPIJ,
|
|
877
|
+
{ [_en]: ["runtime."], [_h]: ["GET", "/domain/{domainId}/patient-insights-job/{jobId}", 200] }, () => GetPatientInsightsJobRequest$, () => GetPatientInsightsJobResponse$
|
|
878
|
+
];
|
|
879
|
+
var GetSubscription$ = [9, n0, _GS,
|
|
880
|
+
{ [_h]: ["GET", "/domains/{domainId}/subscriptions/{subscriptionId}", 200] }, () => GetSubscriptionInput$, () => GetSubscriptionOutput$
|
|
881
|
+
];
|
|
882
|
+
var ListDomains$ = [9, n0, _LD,
|
|
883
|
+
{ [_h]: ["GET", "/domain", 200] }, () => ListDomainsInput$, () => ListDomainsOutput$
|
|
884
|
+
];
|
|
885
|
+
var ListSubscriptions$ = [9, n0, _LS,
|
|
886
|
+
{ [_h]: ["GET", "/domains/{domainId}/subscriptions", 200] }, () => ListSubscriptionsInput$, () => ListSubscriptionsOutput$
|
|
887
|
+
];
|
|
888
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
889
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
890
|
+
];
|
|
891
|
+
var StartMedicalScribeListeningSession$ = [9, n0, _SMSLS,
|
|
892
|
+
{ [_en]: ["streaming."], [_h]: ["POST", "/medical-scribe-stream/", 200] }, () => StartMedicalScribeListeningSessionInput$, () => StartMedicalScribeListeningSessionOutput$
|
|
893
|
+
];
|
|
894
|
+
var StartPatientInsightsJob$ = [9, n0, _SPIJ,
|
|
895
|
+
{ [_en]: ["runtime."], [_h]: ["POST", "/domain/{domainId}/patient-insights-job", 200] }, () => StartPatientInsightsJobRequest$, () => StartPatientInsightsJobResponse$
|
|
896
|
+
];
|
|
897
|
+
var TagResource$ = [9, n0, _TR,
|
|
898
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceInput$, () => __Unit
|
|
899
|
+
];
|
|
900
|
+
var UntagResource$ = [9, n0, _UR,
|
|
901
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceInput$, () => __Unit
|
|
902
|
+
];
|
|
903
|
+
|
|
904
|
+
const getRuntimeConfig$1 = (config) => {
|
|
905
|
+
return {
|
|
906
|
+
apiVersion: "2025-01-29",
|
|
907
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
908
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
909
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
910
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
911
|
+
extensions: config?.extensions ?? [],
|
|
912
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultConnectHealthHttpAuthSchemeProvider,
|
|
913
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
914
|
+
{
|
|
915
|
+
schemeId: "aws.auth#sigv4",
|
|
916
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
917
|
+
signer: new AwsSdkSigV4Signer(),
|
|
918
|
+
},
|
|
919
|
+
],
|
|
920
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
921
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
922
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
923
|
+
defaultNamespace: "com.amazonaws.connecthealth",
|
|
924
|
+
errorTypeRegistries,
|
|
925
|
+
version: "2025-01-29",
|
|
926
|
+
serviceTarget: "ConnectHealth",
|
|
927
|
+
},
|
|
928
|
+
serviceId: config?.serviceId ?? "ConnectHealth",
|
|
929
|
+
sha256: config?.sha256 ?? Sha256,
|
|
930
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
931
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
932
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
933
|
+
};
|
|
934
|
+
};
|
|
935
|
+
|
|
936
|
+
const getRuntimeConfig = (config) => {
|
|
937
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
938
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
939
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
940
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
941
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
942
|
+
const loaderConfig = {
|
|
943
|
+
profile: config?.profile,
|
|
944
|
+
logger: clientSharedValues.logger,
|
|
945
|
+
};
|
|
946
|
+
return {
|
|
947
|
+
...clientSharedValues,
|
|
948
|
+
...config,
|
|
949
|
+
runtime: "node",
|
|
950
|
+
defaultsMode,
|
|
951
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
952
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
953
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
954
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
955
|
+
eventStreamPayloadHandlerProvider: config?.eventStreamPayloadHandlerProvider ?? eventStreamPayloadHandlerProvider,
|
|
956
|
+
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
|
|
957
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
958
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
959
|
+
requestHandler: NodeHttp2Handler.create(config?.requestHandler ?? (async () => ({
|
|
960
|
+
...await defaultConfigProvider(),
|
|
961
|
+
disableConcurrentStreams: true
|
|
962
|
+
}))),
|
|
963
|
+
retryMode: config?.retryMode ??
|
|
964
|
+
loadConfig({
|
|
965
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
966
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
967
|
+
}, config),
|
|
968
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
969
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
970
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
971
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
972
|
+
};
|
|
973
|
+
};
|
|
974
|
+
|
|
34
975
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
976
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
977
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -420,39 +1361,141 @@ const MedicalScribeSessionControlEventType = {
|
|
|
420
1361
|
END_OF_SESSION: "END_OF_SESSION",
|
|
421
1362
|
};
|
|
422
1363
|
|
|
1364
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1365
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1366
|
+
exports.ActivateSubscription$ = ActivateSubscription$;
|
|
423
1367
|
exports.ActivateSubscriptionCommand = ActivateSubscriptionCommand;
|
|
1368
|
+
exports.ActivateSubscriptionInput$ = ActivateSubscriptionInput$;
|
|
1369
|
+
exports.ActivateSubscriptionOutput$ = ActivateSubscriptionOutput$;
|
|
1370
|
+
exports.ArtifactDetails$ = ArtifactDetails$;
|
|
1371
|
+
exports.ClinicalNoteGenerationResult$ = ClinicalNoteGenerationResult$;
|
|
1372
|
+
exports.ClinicalNoteGenerationSettings$ = ClinicalNoteGenerationSettings$;
|
|
1373
|
+
exports.ClinicalNoteGenerationSettingsResponse$ = ClinicalNoteGenerationSettingsResponse$;
|
|
1374
|
+
exports.ConflictException = ConflictException;
|
|
1375
|
+
exports.ConflictException$ = ConflictException$;
|
|
424
1376
|
exports.ConnectHealth = ConnectHealth;
|
|
425
1377
|
exports.ConnectHealthClient = ConnectHealthClient;
|
|
1378
|
+
exports.ConnectHealthServiceException = ConnectHealthServiceException;
|
|
1379
|
+
exports.ConnectHealthServiceException$ = ConnectHealthServiceException$;
|
|
1380
|
+
exports.CreateDomain$ = CreateDomain$;
|
|
426
1381
|
exports.CreateDomainCommand = CreateDomainCommand;
|
|
1382
|
+
exports.CreateDomainInput$ = CreateDomainInput$;
|
|
1383
|
+
exports.CreateDomainOutput$ = CreateDomainOutput$;
|
|
1384
|
+
exports.CreateSubscription$ = CreateSubscription$;
|
|
427
1385
|
exports.CreateSubscriptionCommand = CreateSubscriptionCommand;
|
|
1386
|
+
exports.CreateSubscriptionInput$ = CreateSubscriptionInput$;
|
|
1387
|
+
exports.CreateSubscriptionOutput$ = CreateSubscriptionOutput$;
|
|
1388
|
+
exports.CreateWebAppConfiguration$ = CreateWebAppConfiguration$;
|
|
1389
|
+
exports.CustomTemplate$ = CustomTemplate$;
|
|
428
1390
|
exports.CustomTemplateBase = CustomTemplateBase;
|
|
1391
|
+
exports.CustomTemplateResponse$ = CustomTemplateResponse$;
|
|
1392
|
+
exports.DeactivateSubscription$ = DeactivateSubscription$;
|
|
429
1393
|
exports.DeactivateSubscriptionCommand = DeactivateSubscriptionCommand;
|
|
1394
|
+
exports.DeactivateSubscriptionInput$ = DeactivateSubscriptionInput$;
|
|
1395
|
+
exports.DeactivateSubscriptionOutput$ = DeactivateSubscriptionOutput$;
|
|
1396
|
+
exports.DeleteDomain$ = DeleteDomain$;
|
|
430
1397
|
exports.DeleteDomainCommand = DeleteDomainCommand;
|
|
1398
|
+
exports.DeleteDomainInput$ = DeleteDomainInput$;
|
|
1399
|
+
exports.DeleteDomainOutput$ = DeleteDomainOutput$;
|
|
431
1400
|
exports.DomainStatus = DomainStatus;
|
|
1401
|
+
exports.DomainSummary$ = DomainSummary$;
|
|
1402
|
+
exports.EncounterContext$ = EncounterContext$;
|
|
1403
|
+
exports.EncryptionContext$ = EncryptionContext$;
|
|
432
1404
|
exports.EncryptionType = EncryptionType;
|
|
1405
|
+
exports.FHIRServer$ = FHIRServer$;
|
|
1406
|
+
exports.GetDomain$ = GetDomain$;
|
|
433
1407
|
exports.GetDomainCommand = GetDomainCommand;
|
|
1408
|
+
exports.GetDomainInput$ = GetDomainInput$;
|
|
1409
|
+
exports.GetDomainOutput$ = GetDomainOutput$;
|
|
1410
|
+
exports.GetMedicalScribeListeningSession$ = GetMedicalScribeListeningSession$;
|
|
434
1411
|
exports.GetMedicalScribeListeningSessionCommand = GetMedicalScribeListeningSessionCommand;
|
|
1412
|
+
exports.GetMedicalScribeListeningSessionInput$ = GetMedicalScribeListeningSessionInput$;
|
|
1413
|
+
exports.GetMedicalScribeListeningSessionOutput$ = GetMedicalScribeListeningSessionOutput$;
|
|
1414
|
+
exports.GetPatientInsightsJob$ = GetPatientInsightsJob$;
|
|
435
1415
|
exports.GetPatientInsightsJobCommand = GetPatientInsightsJobCommand;
|
|
1416
|
+
exports.GetPatientInsightsJobRequest$ = GetPatientInsightsJobRequest$;
|
|
1417
|
+
exports.GetPatientInsightsJobResponse$ = GetPatientInsightsJobResponse$;
|
|
1418
|
+
exports.GetSubscription$ = GetSubscription$;
|
|
436
1419
|
exports.GetSubscriptionCommand = GetSubscriptionCommand;
|
|
1420
|
+
exports.GetSubscriptionInput$ = GetSubscriptionInput$;
|
|
1421
|
+
exports.GetSubscriptionOutput$ = GetSubscriptionOutput$;
|
|
1422
|
+
exports.InputDataConfig$ = InputDataConfig$;
|
|
1423
|
+
exports.InsightsContext$ = InsightsContext$;
|
|
1424
|
+
exports.InsightsOutput$ = InsightsOutput$;
|
|
437
1425
|
exports.InsightsType = InsightsType;
|
|
1426
|
+
exports.InternalServerException = InternalServerException;
|
|
1427
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
438
1428
|
exports.JobStatus = JobStatus;
|
|
1429
|
+
exports.ListDomains$ = ListDomains$;
|
|
439
1430
|
exports.ListDomainsCommand = ListDomainsCommand;
|
|
1431
|
+
exports.ListDomainsInput$ = ListDomainsInput$;
|
|
1432
|
+
exports.ListDomainsOutput$ = ListDomainsOutput$;
|
|
1433
|
+
exports.ListSubscriptions$ = ListSubscriptions$;
|
|
440
1434
|
exports.ListSubscriptionsCommand = ListSubscriptionsCommand;
|
|
1435
|
+
exports.ListSubscriptionsInput$ = ListSubscriptionsInput$;
|
|
1436
|
+
exports.ListSubscriptionsOutput$ = ListSubscriptionsOutput$;
|
|
1437
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
441
1438
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1439
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1440
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
442
1441
|
exports.ManagedNoteTemplate = ManagedNoteTemplate;
|
|
1442
|
+
exports.ManagedTemplate$ = ManagedTemplate$;
|
|
1443
|
+
exports.ManagedTemplateResponse$ = ManagedTemplateResponse$;
|
|
1444
|
+
exports.MedicalScribeAudioEvent$ = MedicalScribeAudioEvent$;
|
|
1445
|
+
exports.MedicalScribeBinaryAudioEvent$ = MedicalScribeBinaryAudioEvent$;
|
|
1446
|
+
exports.MedicalScribeChannelDefinition$ = MedicalScribeChannelDefinition$;
|
|
1447
|
+
exports.MedicalScribeConfigurationEvent$ = MedicalScribeConfigurationEvent$;
|
|
1448
|
+
exports.MedicalScribeInputStream$ = MedicalScribeInputStream$;
|
|
443
1449
|
exports.MedicalScribeLanguageCode = MedicalScribeLanguageCode;
|
|
1450
|
+
exports.MedicalScribeListeningSessionDetails$ = MedicalScribeListeningSessionDetails$;
|
|
444
1451
|
exports.MedicalScribeMediaEncoding = MedicalScribeMediaEncoding;
|
|
1452
|
+
exports.MedicalScribeOutputStream$ = MedicalScribeOutputStream$;
|
|
445
1453
|
exports.MedicalScribeParticipantRole = MedicalScribeParticipantRole;
|
|
1454
|
+
exports.MedicalScribePostStreamActionSettings$ = MedicalScribePostStreamActionSettings$;
|
|
1455
|
+
exports.MedicalScribePostStreamActionSettingsResponse$ = MedicalScribePostStreamActionSettingsResponse$;
|
|
1456
|
+
exports.MedicalScribePostStreamActionsResult$ = MedicalScribePostStreamActionsResult$;
|
|
1457
|
+
exports.MedicalScribeSessionControlEvent$ = MedicalScribeSessionControlEvent$;
|
|
446
1458
|
exports.MedicalScribeSessionControlEventType = MedicalScribeSessionControlEventType;
|
|
447
1459
|
exports.MedicalScribeStreamStatus = MedicalScribeStreamStatus;
|
|
1460
|
+
exports.MedicalScribeTranscriptEvent$ = MedicalScribeTranscriptEvent$;
|
|
1461
|
+
exports.MedicalScribeTranscriptSegment$ = MedicalScribeTranscriptSegment$;
|
|
1462
|
+
exports.NoteTemplateSettings$ = NoteTemplateSettings$;
|
|
1463
|
+
exports.NoteTemplateSettingsResponse$ = NoteTemplateSettingsResponse$;
|
|
1464
|
+
exports.OutputDataConfig$ = OutputDataConfig$;
|
|
1465
|
+
exports.PatientInsightsEncounterContext$ = PatientInsightsEncounterContext$;
|
|
1466
|
+
exports.PatientInsightsPatientContext$ = PatientInsightsPatientContext$;
|
|
448
1467
|
exports.PostStreamArtifactGenerationStatus = PostStreamArtifactGenerationStatus;
|
|
449
1468
|
exports.Pronouns = Pronouns;
|
|
450
1469
|
exports.ProviderRole = ProviderRole;
|
|
1470
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1471
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1472
|
+
exports.S3Source$ = S3Source$;
|
|
1473
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1474
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
451
1475
|
exports.Specialty = Specialty;
|
|
1476
|
+
exports.StartMedicalScribeListeningSession$ = StartMedicalScribeListeningSession$;
|
|
452
1477
|
exports.StartMedicalScribeListeningSessionCommand = StartMedicalScribeListeningSessionCommand;
|
|
1478
|
+
exports.StartMedicalScribeListeningSessionInput$ = StartMedicalScribeListeningSessionInput$;
|
|
1479
|
+
exports.StartMedicalScribeListeningSessionOutput$ = StartMedicalScribeListeningSessionOutput$;
|
|
1480
|
+
exports.StartPatientInsightsJob$ = StartPatientInsightsJob$;
|
|
453
1481
|
exports.StartPatientInsightsJobCommand = StartPatientInsightsJobCommand;
|
|
1482
|
+
exports.StartPatientInsightsJobRequest$ = StartPatientInsightsJobRequest$;
|
|
1483
|
+
exports.StartPatientInsightsJobResponse$ = StartPatientInsightsJobResponse$;
|
|
1484
|
+
exports.SubscriptionDescription$ = SubscriptionDescription$;
|
|
454
1485
|
exports.SubscriptionStatus = SubscriptionStatus;
|
|
1486
|
+
exports.TagResource$ = TagResource$;
|
|
455
1487
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1488
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1489
|
+
exports.TemplateSectionInstruction$ = TemplateSectionInstruction$;
|
|
1490
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1491
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1492
|
+
exports.UntagResource$ = UntagResource$;
|
|
456
1493
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1494
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1495
|
+
exports.UserContext$ = UserContext$;
|
|
1496
|
+
exports.ValidationException = ValidationException;
|
|
1497
|
+
exports.ValidationException$ = ValidationException$;
|
|
1498
|
+
exports.WebAppConfiguration$ = WebAppConfiguration$;
|
|
1499
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
457
1500
|
exports.paginateListDomains = paginateListDomains;
|
|
458
1501
|
exports.paginateListSubscriptions = paginateListSubscriptions;
|