@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,691 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MedicalScribeAudioEvent$ = exports.ManagedTemplateResponse$ = exports.ManagedTemplate$ = exports.ListTagsForResourceOutput$ = exports.ListTagsForResourceInput$ = exports.ListSubscriptionsOutput$ = exports.ListSubscriptionsInput$ = exports.ListDomainsOutput$ = exports.ListDomainsInput$ = exports.InsightsOutput$ = exports.InsightsContext$ = exports.InputDataConfig$ = exports.GetSubscriptionOutput$ = exports.GetSubscriptionInput$ = exports.GetPatientInsightsJobResponse$ = exports.GetPatientInsightsJobRequest$ = exports.GetMedicalScribeListeningSessionOutput$ = exports.GetMedicalScribeListeningSessionInput$ = exports.GetDomainOutput$ = exports.GetDomainInput$ = exports.FHIRServer$ = exports.EncryptionContext$ = exports.EncounterContext$ = exports.DomainSummary$ = exports.DeleteDomainOutput$ = exports.DeleteDomainInput$ = exports.DeactivateSubscriptionOutput$ = exports.DeactivateSubscriptionInput$ = exports.CustomTemplateResponse$ = exports.CustomTemplate$ = exports.CreateWebAppConfiguration$ = exports.CreateSubscriptionOutput$ = exports.CreateSubscriptionInput$ = exports.CreateDomainOutput$ = exports.CreateDomainInput$ = exports.ClinicalNoteGenerationSettingsResponse$ = exports.ClinicalNoteGenerationSettings$ = exports.ClinicalNoteGenerationResult$ = exports.ArtifactDetails$ = exports.ActivateSubscriptionOutput$ = exports.ActivateSubscriptionInput$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.ConnectHealthServiceException$ = void 0;
|
|
4
|
+
exports.UntagResource$ = exports.TagResource$ = exports.StartPatientInsightsJob$ = exports.StartMedicalScribeListeningSession$ = exports.ListTagsForResource$ = exports.ListSubscriptions$ = exports.ListDomains$ = exports.GetSubscription$ = exports.GetPatientInsightsJob$ = exports.GetMedicalScribeListeningSession$ = exports.GetDomain$ = exports.DeleteDomain$ = exports.DeactivateSubscription$ = exports.CreateSubscription$ = exports.CreateDomain$ = exports.ActivateSubscription$ = exports.NoteTemplateSettingsResponse$ = exports.NoteTemplateSettings$ = exports.MedicalScribeOutputStream$ = exports.MedicalScribeInputStream$ = exports.WebAppConfiguration$ = exports.UserContext$ = exports.UntagResourceInput$ = exports.TemplateSectionInstruction$ = exports.TagResourceInput$ = exports.SubscriptionDescription$ = exports.StartPatientInsightsJobResponse$ = exports.StartPatientInsightsJobRequest$ = exports.StartMedicalScribeListeningSessionOutput$ = exports.StartMedicalScribeListeningSessionInput$ = exports.S3Source$ = exports.PatientInsightsPatientContext$ = exports.PatientInsightsEncounterContext$ = exports.OutputDataConfig$ = exports.MedicalScribeTranscriptSegment$ = exports.MedicalScribeTranscriptEvent$ = exports.MedicalScribeSessionControlEvent$ = exports.MedicalScribePostStreamActionsResult$ = exports.MedicalScribePostStreamActionSettingsResponse$ = exports.MedicalScribePostStreamActionSettings$ = exports.MedicalScribeListeningSessionDetails$ = exports.MedicalScribeConfigurationEvent$ = exports.MedicalScribeChannelDefinition$ = void 0;
|
|
5
|
+
const _AD = "ArtifactDetails";
|
|
6
|
+
const _ADE = "AccessDeniedException";
|
|
7
|
+
const _AS = "ActivateSubscription";
|
|
8
|
+
const _ASI = "ActivateSubscriptionInput";
|
|
9
|
+
const _ASO = "ActivateSubscriptionOutput";
|
|
10
|
+
const _CD = "CreateDomain";
|
|
11
|
+
const _CDI = "CreateDomainInput";
|
|
12
|
+
const _CDO = "CreateDomainOutput";
|
|
13
|
+
const _CE = "ConflictException";
|
|
14
|
+
const _CNGR = "ClinicalNoteGenerationResult";
|
|
15
|
+
const _CNGS = "ClinicalNoteGenerationSettings";
|
|
16
|
+
const _CNGSR = "ClinicalNoteGenerationSettingsResponse";
|
|
17
|
+
const _CS = "CreateSubscription";
|
|
18
|
+
const _CSI = "CreateSubscriptionInput";
|
|
19
|
+
const _CSO = "CreateSubscriptionOutput";
|
|
20
|
+
const _CT = "CustomTemplate";
|
|
21
|
+
const _CTR = "CustomTemplateResponse";
|
|
22
|
+
const _CWAC = "CreateWebAppConfiguration";
|
|
23
|
+
const _DD = "DeleteDomain";
|
|
24
|
+
const _DDI = "DeleteDomainInput";
|
|
25
|
+
const _DDO = "DeleteDomainOutput";
|
|
26
|
+
const _DS = "DomainSummary";
|
|
27
|
+
const _DSI = "DeactivateSubscriptionInput";
|
|
28
|
+
const _DSL = "DomainSummaryList";
|
|
29
|
+
const _DSO = "DeactivateSubscriptionOutput";
|
|
30
|
+
const _DSe = "DeactivateSubscription";
|
|
31
|
+
const _EC = "EncounterContext";
|
|
32
|
+
const _ECn = "EncryptionContext";
|
|
33
|
+
const _FHIRS = "FHIRServer";
|
|
34
|
+
const _GD = "GetDomain";
|
|
35
|
+
const _GDI = "GetDomainInput";
|
|
36
|
+
const _GDO = "GetDomainOutput";
|
|
37
|
+
const _GMSLS = "GetMedicalScribeListeningSession";
|
|
38
|
+
const _GMSLSI = "GetMedicalScribeListeningSessionInput";
|
|
39
|
+
const _GMSLSO = "GetMedicalScribeListeningSessionOutput";
|
|
40
|
+
const _GPIJ = "GetPatientInsightsJob";
|
|
41
|
+
const _GPIJR = "GetPatientInsightsJobRequest";
|
|
42
|
+
const _GPIJRe = "GetPatientInsightsJobResponse";
|
|
43
|
+
const _GS = "GetSubscription";
|
|
44
|
+
const _GSI = "GetSubscriptionInput";
|
|
45
|
+
const _GSO = "GetSubscriptionOutput";
|
|
46
|
+
const _IC = "InsightsContext";
|
|
47
|
+
const _IDC = "InputDataConfig";
|
|
48
|
+
const _IO = "InsightsOutput";
|
|
49
|
+
const _ISE = "InternalServerException";
|
|
50
|
+
const _LD = "ListDomains";
|
|
51
|
+
const _LDI = "ListDomainsInput";
|
|
52
|
+
const _LDO = "ListDomainsOutput";
|
|
53
|
+
const _LS = "ListSubscriptions";
|
|
54
|
+
const _LSI = "ListSubscriptionsInput";
|
|
55
|
+
const _LSO = "ListSubscriptionsOutput";
|
|
56
|
+
const _LTFR = "ListTagsForResource";
|
|
57
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
58
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
59
|
+
const _MSAE = "MedicalScribeAudioEvent";
|
|
60
|
+
const _MSCD = "MedicalScribeChannelDefinition";
|
|
61
|
+
const _MSCDe = "MedicalScribeChannelDefinitions";
|
|
62
|
+
const _MSCE = "MedicalScribeConfigurationEvent";
|
|
63
|
+
const _MSIS = "MedicalScribeInputStream";
|
|
64
|
+
const _MSLSD = "MedicalScribeListeningSessionDetails";
|
|
65
|
+
const _MSOS = "MedicalScribeOutputStream";
|
|
66
|
+
const _MSPSAR = "MedicalScribePostStreamActionsResult";
|
|
67
|
+
const _MSPSAS = "MedicalScribePostStreamActionSettings";
|
|
68
|
+
const _MSPSASR = "MedicalScribePostStreamActionSettingsResponse";
|
|
69
|
+
const _MSSCE = "MedicalScribeSessionControlEvent";
|
|
70
|
+
const _MSTE = "MedicalScribeTranscriptEvent";
|
|
71
|
+
const _MSTS = "MedicalScribeTranscriptSegment";
|
|
72
|
+
const _MT = "ManagedTemplate";
|
|
73
|
+
const _MTR = "ManagedTemplateResponse";
|
|
74
|
+
const _NTS = "NoteTemplateSettings";
|
|
75
|
+
const _NTSR = "NoteTemplateSettingsResponse";
|
|
76
|
+
const _ODC = "OutputDataConfig";
|
|
77
|
+
const _P = "Pronouns";
|
|
78
|
+
const _PIEC = "PatientInsightsEncounterContext";
|
|
79
|
+
const _PIPC = "PatientInsightsPatientContext";
|
|
80
|
+
const _RNFE = "ResourceNotFoundException";
|
|
81
|
+
const _SAS = "SensitiveAlphanumericString";
|
|
82
|
+
const _SD = "SubscriptionDescription";
|
|
83
|
+
const _SIDS = "SensitiveIsoDateString";
|
|
84
|
+
const _SL = "SubscriptionList";
|
|
85
|
+
const _SMS = "SensitiveMarkdownString";
|
|
86
|
+
const _SMSLS = "StartMedicalScribeListeningSession";
|
|
87
|
+
const _SMSLSI = "StartMedicalScribeListeningSessionInput";
|
|
88
|
+
const _SMSLSO = "StartMedicalScribeListeningSessionOutput";
|
|
89
|
+
const _SNES = "SensitiveNonEmptyString";
|
|
90
|
+
const _SPIJ = "StartPatientInsightsJob";
|
|
91
|
+
const _SPIJR = "StartPatientInsightsJobRequest";
|
|
92
|
+
const _SPIJRt = "StartPatientInsightsJobResponse";
|
|
93
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
94
|
+
const _SS = "S3Source";
|
|
95
|
+
const _SSo = "S3Sources";
|
|
96
|
+
const _TE = "ThrottlingException";
|
|
97
|
+
const _TI = "TemplateInstructions";
|
|
98
|
+
const _TR = "TagResource";
|
|
99
|
+
const _TRI = "TagResourceInput";
|
|
100
|
+
const _TSI = "TemplateSectionInstruction";
|
|
101
|
+
const _UC = "UserContext";
|
|
102
|
+
const _UR = "UntagResource";
|
|
103
|
+
const _URI = "UntagResourceInput";
|
|
104
|
+
const _VE = "ValidationException";
|
|
105
|
+
const _WAC = "WebAppConfiguration";
|
|
106
|
+
const _a = "arn";
|
|
107
|
+
const _aA = "activatedAt";
|
|
108
|
+
const _aBO = "audioBeginOffset";
|
|
109
|
+
const _aC = "audioChunk";
|
|
110
|
+
const _aE = "audioEvent";
|
|
111
|
+
const _aEO = "audioEndOffset";
|
|
112
|
+
const _aVSR = "afterVisitSummaryResult";
|
|
113
|
+
const _c = "client";
|
|
114
|
+
const _cA = "createdAt";
|
|
115
|
+
const _cD = "channelDefinitions";
|
|
116
|
+
const _cE = "configurationEvent";
|
|
117
|
+
const _cI = "channelId";
|
|
118
|
+
const _cNGR = "clinicalNoteGenerationResult";
|
|
119
|
+
const _cNGS = "clinicalNoteGenerationSettings";
|
|
120
|
+
const _cT = "creationTime";
|
|
121
|
+
const _cTl = "clientToken";
|
|
122
|
+
const _cTu = "customTemplate";
|
|
123
|
+
const _co = "content";
|
|
124
|
+
const _d = "domains";
|
|
125
|
+
const _dA = "deactivatedAt";
|
|
126
|
+
const _dI = "domainId";
|
|
127
|
+
const _dOB = "dateOfBirth";
|
|
128
|
+
const _e = "error";
|
|
129
|
+
const _eC = "encryptionContext";
|
|
130
|
+
const _eCP = "encounterContextProvided";
|
|
131
|
+
const _eCn = "encounterContext";
|
|
132
|
+
const _eR = "ehrRole";
|
|
133
|
+
const _eRn = "encounterReason";
|
|
134
|
+
const _eT = "encryptionType";
|
|
135
|
+
const _en = "endpoint";
|
|
136
|
+
const _fE = "fhirEndpoint";
|
|
137
|
+
const _fR = "failureReason";
|
|
138
|
+
const _fS = "fhirServer";
|
|
139
|
+
const _h = "http";
|
|
140
|
+
const _hE = "httpError";
|
|
141
|
+
const _hH = "httpHeader";
|
|
142
|
+
const _hQ = "httpQuery";
|
|
143
|
+
const _iAI = "idcApplicationId";
|
|
144
|
+
const _iC = "insightsContext";
|
|
145
|
+
const _iDC = "inputDataConfig";
|
|
146
|
+
const _iFE = "internalFailureException";
|
|
147
|
+
const _iII = "idcInstanceId";
|
|
148
|
+
const _iO = "insightsOutput";
|
|
149
|
+
const _iP = "isPartial";
|
|
150
|
+
const _iR = "idcRegion";
|
|
151
|
+
const _iS = "inputStream";
|
|
152
|
+
const _iT = "insightsType";
|
|
153
|
+
const _jA = "jobArn";
|
|
154
|
+
const _jI = "jobId";
|
|
155
|
+
const _jS = "jobStatus";
|
|
156
|
+
const _kKA = "kmsKeyArn";
|
|
157
|
+
const _lC = "languageCode";
|
|
158
|
+
const _lUA = "lastUpdatedAt";
|
|
159
|
+
const _m = "message";
|
|
160
|
+
const _mE = "mediaEncoding";
|
|
161
|
+
const _mR = "maxResults";
|
|
162
|
+
const _mSLSD = "medicalScribeListeningSessionDetails";
|
|
163
|
+
const _mSRH = "mediaSampleRateHertz";
|
|
164
|
+
const _mT = "managedTemplate";
|
|
165
|
+
const _n = "name";
|
|
166
|
+
const _nR = "noteResult";
|
|
167
|
+
const _nT = "nextToken";
|
|
168
|
+
const _nTS = "noteTemplateSettings";
|
|
169
|
+
const _oDC = "outputDataConfig";
|
|
170
|
+
const _oL = "outputLocation";
|
|
171
|
+
const _oSU = "outputS3Uri";
|
|
172
|
+
const _oT = "oauthToken";
|
|
173
|
+
const _p = "pronouns";
|
|
174
|
+
const _pC = "patientContext";
|
|
175
|
+
const _pI = "patientId";
|
|
176
|
+
const _pR = "participantRole";
|
|
177
|
+
const _pSAR = "postStreamActionResult";
|
|
178
|
+
const _pSAS = "postStreamActionSettings";
|
|
179
|
+
const _r = "role";
|
|
180
|
+
const _rA = "resourceArn";
|
|
181
|
+
const _rI = "requestId";
|
|
182
|
+
const _rS = "responseStream";
|
|
183
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.connecthealth";
|
|
184
|
+
const _sCE = "sessionControlEvent";
|
|
185
|
+
const _sCT = "streamCreationTime";
|
|
186
|
+
const _sD = "statusDetails";
|
|
187
|
+
const _sET = "streamEndTime";
|
|
188
|
+
const _sH = "sectionHeader";
|
|
189
|
+
const _sI = "subscriptionId";
|
|
190
|
+
const _sIe = "sessionId";
|
|
191
|
+
const _sIec = "sectionInstruction";
|
|
192
|
+
const _sIeg = "segmentId";
|
|
193
|
+
const _sOP = "s3OutputPath";
|
|
194
|
+
const _sS = "s3Sources";
|
|
195
|
+
const _sSt = "streamStatus";
|
|
196
|
+
const _se = "server";
|
|
197
|
+
const _sp = "specialty";
|
|
198
|
+
const _st = "status";
|
|
199
|
+
const _str = "streaming";
|
|
200
|
+
const _su = "subscription";
|
|
201
|
+
const _sub = "subscriptions";
|
|
202
|
+
const _t = "tags";
|
|
203
|
+
const _tE = "transcriptEvent";
|
|
204
|
+
const _tI = "templateInstructions";
|
|
205
|
+
const _tK = "tagKeys";
|
|
206
|
+
const _tR = "transcriptResult";
|
|
207
|
+
const _tS = "transcriptSegment";
|
|
208
|
+
const _tT = "templateType";
|
|
209
|
+
const _ty = "type";
|
|
210
|
+
const _u = "uri";
|
|
211
|
+
const _uC = "unstructuredContext";
|
|
212
|
+
const _uCs = "userContext";
|
|
213
|
+
const _uI = "userId";
|
|
214
|
+
const _uT = "updatedTime";
|
|
215
|
+
const _vE = "validationException";
|
|
216
|
+
const _wAC = "webAppConfiguration";
|
|
217
|
+
const _wASC = "webAppSetupConfiguration";
|
|
218
|
+
const _wAU = "webAppUrl";
|
|
219
|
+
const _xamdi = "x-amzn-medscribe-domain-id";
|
|
220
|
+
const _xamlc = "x-amzn-medscribe-language-code";
|
|
221
|
+
const _xamme = "x-amzn-medscribe-media-encoding";
|
|
222
|
+
const _xamsi = "x-amzn-medscribe-session-id";
|
|
223
|
+
const _xamsi_ = "x-amzn-medscribe-subscription-id";
|
|
224
|
+
const _xamsr = "x-amzn-medscribe-sample-rate";
|
|
225
|
+
const _xari = "x-amzn-request-id";
|
|
226
|
+
const n0 = "com.amazonaws.connecthealth";
|
|
227
|
+
const schema_1 = require("@smithy/core/schema");
|
|
228
|
+
const ConnectHealthServiceException_1 = require("../models/ConnectHealthServiceException");
|
|
229
|
+
const errors_1 = require("../models/errors");
|
|
230
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
231
|
+
exports.ConnectHealthServiceException$ = [-3, _s, "ConnectHealthServiceException", 0, [], []];
|
|
232
|
+
_s_registry.registerError(exports.ConnectHealthServiceException$, ConnectHealthServiceException_1.ConnectHealthServiceException);
|
|
233
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
234
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
235
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
236
|
+
[_m],
|
|
237
|
+
[0]
|
|
238
|
+
];
|
|
239
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
240
|
+
exports.ConflictException$ = [-3, n0, _CE,
|
|
241
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
242
|
+
[_m],
|
|
243
|
+
[0]
|
|
244
|
+
];
|
|
245
|
+
n0_registry.registerError(exports.ConflictException$, errors_1.ConflictException);
|
|
246
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
247
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
248
|
+
[_m],
|
|
249
|
+
[0]
|
|
250
|
+
];
|
|
251
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
252
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
253
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
254
|
+
[_m],
|
|
255
|
+
[0]
|
|
256
|
+
];
|
|
257
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
258
|
+
exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
259
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
260
|
+
[_m],
|
|
261
|
+
[0]
|
|
262
|
+
];
|
|
263
|
+
n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
|
|
264
|
+
exports.ThrottlingException$ = [-3, n0, _TE,
|
|
265
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
266
|
+
[_m],
|
|
267
|
+
[0]
|
|
268
|
+
];
|
|
269
|
+
n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
|
|
270
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
271
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
272
|
+
[_m],
|
|
273
|
+
[0]
|
|
274
|
+
];
|
|
275
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
276
|
+
exports.errorTypeRegistries = [
|
|
277
|
+
_s_registry,
|
|
278
|
+
n0_registry,
|
|
279
|
+
];
|
|
280
|
+
var Pronouns = [0, n0, _P, 8, 0];
|
|
281
|
+
var SensitiveAlphanumericString = [0, n0, _SAS, 8, 0];
|
|
282
|
+
var SensitiveIsoDateString = [0, n0, _SIDS, 8, 0];
|
|
283
|
+
var SensitiveMarkdownString = [0, n0, _SMS, 8, 0];
|
|
284
|
+
var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
|
|
285
|
+
exports.ActivateSubscriptionInput$ = [3, n0, _ASI,
|
|
286
|
+
0,
|
|
287
|
+
[_dI, _sI],
|
|
288
|
+
[[0, 1], [0, 1]], 2
|
|
289
|
+
];
|
|
290
|
+
exports.ActivateSubscriptionOutput$ = [3, n0, _ASO,
|
|
291
|
+
0,
|
|
292
|
+
[_su],
|
|
293
|
+
[() => exports.SubscriptionDescription$]
|
|
294
|
+
];
|
|
295
|
+
exports.ArtifactDetails$ = [3, n0, _AD,
|
|
296
|
+
0,
|
|
297
|
+
[_oL, _st, _fR],
|
|
298
|
+
[0, 0, 0]
|
|
299
|
+
];
|
|
300
|
+
exports.ClinicalNoteGenerationResult$ = [3, n0, _CNGR,
|
|
301
|
+
0,
|
|
302
|
+
[_nR, _tR, _aVSR],
|
|
303
|
+
[() => exports.ArtifactDetails$, () => exports.ArtifactDetails$, () => exports.ArtifactDetails$]
|
|
304
|
+
];
|
|
305
|
+
exports.ClinicalNoteGenerationSettings$ = [3, n0, _CNGS,
|
|
306
|
+
0,
|
|
307
|
+
[_nTS],
|
|
308
|
+
[[() => exports.NoteTemplateSettings$, 0]], 1
|
|
309
|
+
];
|
|
310
|
+
exports.ClinicalNoteGenerationSettingsResponse$ = [3, n0, _CNGSR,
|
|
311
|
+
0,
|
|
312
|
+
[_nTS],
|
|
313
|
+
[() => exports.NoteTemplateSettingsResponse$]
|
|
314
|
+
];
|
|
315
|
+
exports.CreateDomainInput$ = [3, n0, _CDI,
|
|
316
|
+
0,
|
|
317
|
+
[_n, _kKA, _wASC, _t],
|
|
318
|
+
[0, 0, () => exports.CreateWebAppConfiguration$, 128 | 0], 1
|
|
319
|
+
];
|
|
320
|
+
exports.CreateDomainOutput$ = [3, n0, _CDO,
|
|
321
|
+
0,
|
|
322
|
+
[_dI, _a, _n, _st, _cA, _kKA, _eC, _wAU, _wAC],
|
|
323
|
+
[0, 0, 0, 0, 4, 0, () => exports.EncryptionContext$, 0, () => exports.WebAppConfiguration$], 5
|
|
324
|
+
];
|
|
325
|
+
exports.CreateSubscriptionInput$ = [3, n0, _CSI,
|
|
326
|
+
0,
|
|
327
|
+
[_dI],
|
|
328
|
+
[[0, 1]], 1
|
|
329
|
+
];
|
|
330
|
+
exports.CreateSubscriptionOutput$ = [3, n0, _CSO,
|
|
331
|
+
0,
|
|
332
|
+
[_dI, _sI, _a, _st, _cA, _lUA, _aA, _dA],
|
|
333
|
+
[0, 0, 0, 0, 4, 4, 4, 4], 6
|
|
334
|
+
];
|
|
335
|
+
exports.CreateWebAppConfiguration$ = [3, n0, _CWAC,
|
|
336
|
+
0,
|
|
337
|
+
[_eR, _iII, _iR],
|
|
338
|
+
[0, 0, 0], 3
|
|
339
|
+
];
|
|
340
|
+
exports.CustomTemplate$ = [3, n0, _CT,
|
|
341
|
+
0,
|
|
342
|
+
[_tT, _tI],
|
|
343
|
+
[0, [() => TemplateInstructions, 0]], 2
|
|
344
|
+
];
|
|
345
|
+
exports.CustomTemplateResponse$ = [3, n0, _CTR,
|
|
346
|
+
0,
|
|
347
|
+
[_tT],
|
|
348
|
+
[0]
|
|
349
|
+
];
|
|
350
|
+
exports.DeactivateSubscriptionInput$ = [3, n0, _DSI,
|
|
351
|
+
0,
|
|
352
|
+
[_dI, _sI],
|
|
353
|
+
[[0, 1], [0, 1]], 2
|
|
354
|
+
];
|
|
355
|
+
exports.DeactivateSubscriptionOutput$ = [3, n0, _DSO,
|
|
356
|
+
0,
|
|
357
|
+
[_su],
|
|
358
|
+
[() => exports.SubscriptionDescription$]
|
|
359
|
+
];
|
|
360
|
+
exports.DeleteDomainInput$ = [3, n0, _DDI,
|
|
361
|
+
0,
|
|
362
|
+
[_dI],
|
|
363
|
+
[[0, 1]], 1
|
|
364
|
+
];
|
|
365
|
+
exports.DeleteDomainOutput$ = [3, n0, _DDO,
|
|
366
|
+
0,
|
|
367
|
+
[_dI, _a, _st],
|
|
368
|
+
[0, 0, 0], 3
|
|
369
|
+
];
|
|
370
|
+
exports.DomainSummary$ = [3, n0, _DS,
|
|
371
|
+
0,
|
|
372
|
+
[_dI, _a, _n, _st, _cA],
|
|
373
|
+
[0, 0, 0, 0, 4], 5
|
|
374
|
+
];
|
|
375
|
+
exports.EncounterContext$ = [3, n0, _EC,
|
|
376
|
+
0,
|
|
377
|
+
[_uC],
|
|
378
|
+
[[() => SensitiveMarkdownString, 0]]
|
|
379
|
+
];
|
|
380
|
+
exports.EncryptionContext$ = [3, n0, _ECn,
|
|
381
|
+
0,
|
|
382
|
+
[_eT, _kKA],
|
|
383
|
+
[0, 0], 1
|
|
384
|
+
];
|
|
385
|
+
exports.FHIRServer$ = [3, n0, _FHIRS,
|
|
386
|
+
0,
|
|
387
|
+
[_fE, _oT],
|
|
388
|
+
[0, [() => SensitiveNonEmptyString, 0]], 1
|
|
389
|
+
];
|
|
390
|
+
exports.GetDomainInput$ = [3, n0, _GDI,
|
|
391
|
+
0,
|
|
392
|
+
[_dI],
|
|
393
|
+
[[0, 1]], 1
|
|
394
|
+
];
|
|
395
|
+
exports.GetDomainOutput$ = [3, n0, _GDO,
|
|
396
|
+
0,
|
|
397
|
+
[_dI, _a, _n, _st, _cA, _kKA, _eC, _wAU, _wAC, _t],
|
|
398
|
+
[0, 0, 0, 0, 4, 0, () => exports.EncryptionContext$, 0, () => exports.WebAppConfiguration$, 128 | 0], 5
|
|
399
|
+
];
|
|
400
|
+
exports.GetMedicalScribeListeningSessionInput$ = [3, n0, _GMSLSI,
|
|
401
|
+
0,
|
|
402
|
+
[_sIe, _dI, _sI],
|
|
403
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
404
|
+
];
|
|
405
|
+
exports.GetMedicalScribeListeningSessionOutput$ = [3, n0, _GMSLSO,
|
|
406
|
+
0,
|
|
407
|
+
[_mSLSD],
|
|
408
|
+
[() => exports.MedicalScribeListeningSessionDetails$]
|
|
409
|
+
];
|
|
410
|
+
exports.GetPatientInsightsJobRequest$ = [3, n0, _GPIJR,
|
|
411
|
+
0,
|
|
412
|
+
[_dI, _jI],
|
|
413
|
+
[[0, 1], [0, 1]], 2
|
|
414
|
+
];
|
|
415
|
+
exports.GetPatientInsightsJobResponse$ = [3, n0, _GPIJRe,
|
|
416
|
+
0,
|
|
417
|
+
[_jI, _jA, _jS, _pC, _iC, _eCn, _uCs, _iDC, _oDC, _cT, _uT, _iO, _sD],
|
|
418
|
+
[0, 0, 0, [() => exports.PatientInsightsPatientContext$, 0], () => exports.InsightsContext$, [() => exports.PatientInsightsEncounterContext$, 0], [() => exports.UserContext$, 0], [() => exports.InputDataConfig$, 0], () => exports.OutputDataConfig$, 5, 5, () => exports.InsightsOutput$, 0], 9
|
|
419
|
+
];
|
|
420
|
+
exports.GetSubscriptionInput$ = [3, n0, _GSI,
|
|
421
|
+
0,
|
|
422
|
+
[_dI, _sI],
|
|
423
|
+
[[0, 1], [0, 1]], 2
|
|
424
|
+
];
|
|
425
|
+
exports.GetSubscriptionOutput$ = [3, n0, _GSO,
|
|
426
|
+
0,
|
|
427
|
+
[_su],
|
|
428
|
+
[() => exports.SubscriptionDescription$]
|
|
429
|
+
];
|
|
430
|
+
exports.InputDataConfig$ = [3, n0, _IDC,
|
|
431
|
+
0,
|
|
432
|
+
[_fS, _sS],
|
|
433
|
+
[[() => exports.FHIRServer$, 0], () => S3Sources]
|
|
434
|
+
];
|
|
435
|
+
exports.InsightsContext$ = [3, n0, _IC,
|
|
436
|
+
0,
|
|
437
|
+
[_iT],
|
|
438
|
+
[0], 1
|
|
439
|
+
];
|
|
440
|
+
exports.InsightsOutput$ = [3, n0, _IO,
|
|
441
|
+
0,
|
|
442
|
+
[_u],
|
|
443
|
+
[0], 1
|
|
444
|
+
];
|
|
445
|
+
exports.ListDomainsInput$ = [3, n0, _LDI,
|
|
446
|
+
0,
|
|
447
|
+
[_st, _mR, _nT],
|
|
448
|
+
[[0, { [_hQ]: _st }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
449
|
+
];
|
|
450
|
+
exports.ListDomainsOutput$ = [3, n0, _LDO,
|
|
451
|
+
0,
|
|
452
|
+
[_d, _nT],
|
|
453
|
+
[() => DomainSummaryList, 0], 1
|
|
454
|
+
];
|
|
455
|
+
exports.ListSubscriptionsInput$ = [3, n0, _LSI,
|
|
456
|
+
0,
|
|
457
|
+
[_dI, _mR, _nT],
|
|
458
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
459
|
+
];
|
|
460
|
+
exports.ListSubscriptionsOutput$ = [3, n0, _LSO,
|
|
461
|
+
0,
|
|
462
|
+
[_sub, _nT],
|
|
463
|
+
[() => SubscriptionList, 0], 1
|
|
464
|
+
];
|
|
465
|
+
exports.ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
466
|
+
0,
|
|
467
|
+
[_rA],
|
|
468
|
+
[[0, 1]], 1
|
|
469
|
+
];
|
|
470
|
+
exports.ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
471
|
+
0,
|
|
472
|
+
[_t],
|
|
473
|
+
[128 | 0]
|
|
474
|
+
];
|
|
475
|
+
exports.ManagedTemplate$ = [3, n0, _MT,
|
|
476
|
+
0,
|
|
477
|
+
[_tT],
|
|
478
|
+
[0], 1
|
|
479
|
+
];
|
|
480
|
+
exports.ManagedTemplateResponse$ = [3, n0, _MTR,
|
|
481
|
+
0,
|
|
482
|
+
[_tT],
|
|
483
|
+
[0]
|
|
484
|
+
];
|
|
485
|
+
exports.MedicalScribeAudioEvent$ = [3, n0, _MSAE,
|
|
486
|
+
0,
|
|
487
|
+
[_aC],
|
|
488
|
+
[21], 1
|
|
489
|
+
];
|
|
490
|
+
exports.MedicalScribeChannelDefinition$ = [3, n0, _MSCD,
|
|
491
|
+
0,
|
|
492
|
+
[_cI, _pR],
|
|
493
|
+
[1, 0], 2
|
|
494
|
+
];
|
|
495
|
+
exports.MedicalScribeConfigurationEvent$ = [3, n0, _MSCE,
|
|
496
|
+
0,
|
|
497
|
+
[_pSAS, _cD, _eCn],
|
|
498
|
+
[[() => exports.MedicalScribePostStreamActionSettings$, 0], () => MedicalScribeChannelDefinitions, [() => exports.EncounterContext$, 0]], 1
|
|
499
|
+
];
|
|
500
|
+
exports.MedicalScribeListeningSessionDetails$ = [3, n0, _MSLSD,
|
|
501
|
+
0,
|
|
502
|
+
[_sIe, _dI, _sI, _lC, _mSRH, _mE, _cD, _pSAS, _pSAR, _eCP, _sSt, _sCT, _sET],
|
|
503
|
+
[0, 0, 0, 0, 1, 0, () => MedicalScribeChannelDefinitions, () => exports.MedicalScribePostStreamActionSettingsResponse$, () => exports.MedicalScribePostStreamActionsResult$, 2, 0, 4, 4]
|
|
504
|
+
];
|
|
505
|
+
exports.MedicalScribePostStreamActionSettings$ = [3, n0, _MSPSAS,
|
|
506
|
+
0,
|
|
507
|
+
[_oSU, _cNGS],
|
|
508
|
+
[0, [() => exports.ClinicalNoteGenerationSettings$, 0]], 2
|
|
509
|
+
];
|
|
510
|
+
exports.MedicalScribePostStreamActionSettingsResponse$ = [3, n0, _MSPSASR,
|
|
511
|
+
0,
|
|
512
|
+
[_oSU, _cNGS],
|
|
513
|
+
[0, () => exports.ClinicalNoteGenerationSettingsResponse$], 2
|
|
514
|
+
];
|
|
515
|
+
exports.MedicalScribePostStreamActionsResult$ = [3, n0, _MSPSAR,
|
|
516
|
+
0,
|
|
517
|
+
[_cNGR],
|
|
518
|
+
[() => exports.ClinicalNoteGenerationResult$]
|
|
519
|
+
];
|
|
520
|
+
exports.MedicalScribeSessionControlEvent$ = [3, n0, _MSSCE,
|
|
521
|
+
0,
|
|
522
|
+
[_ty],
|
|
523
|
+
[0]
|
|
524
|
+
];
|
|
525
|
+
exports.MedicalScribeTranscriptEvent$ = [3, n0, _MSTE,
|
|
526
|
+
0,
|
|
527
|
+
[_tS],
|
|
528
|
+
[() => exports.MedicalScribeTranscriptSegment$]
|
|
529
|
+
];
|
|
530
|
+
exports.MedicalScribeTranscriptSegment$ = [3, n0, _MSTS,
|
|
531
|
+
0,
|
|
532
|
+
[_sIeg, _aBO, _aEO, _iP, _cI, _co],
|
|
533
|
+
[0, 1, 1, 2, 0, 0]
|
|
534
|
+
];
|
|
535
|
+
exports.OutputDataConfig$ = [3, n0, _ODC,
|
|
536
|
+
0,
|
|
537
|
+
[_sOP],
|
|
538
|
+
[0], 1
|
|
539
|
+
];
|
|
540
|
+
exports.PatientInsightsEncounterContext$ = [3, n0, _PIEC,
|
|
541
|
+
0,
|
|
542
|
+
[_eRn],
|
|
543
|
+
[[() => SensitiveNonEmptyString, 0]], 1
|
|
544
|
+
];
|
|
545
|
+
exports.PatientInsightsPatientContext$ = [3, n0, _PIPC,
|
|
546
|
+
0,
|
|
547
|
+
[_pI, _dOB, _p],
|
|
548
|
+
[[() => SensitiveNonEmptyString, 0], [() => SensitiveIsoDateString, 0], [() => Pronouns, 0]], 1
|
|
549
|
+
];
|
|
550
|
+
exports.S3Source$ = [3, n0, _SS,
|
|
551
|
+
0,
|
|
552
|
+
[_u],
|
|
553
|
+
[0], 1
|
|
554
|
+
];
|
|
555
|
+
exports.StartMedicalScribeListeningSessionInput$ = [3, n0, _SMSLSI,
|
|
556
|
+
0,
|
|
557
|
+
[_sIe, _dI, _sI, _lC, _mSRH, _mE, _iS],
|
|
558
|
+
[[0, { [_hH]: _xamsi }], [0, { [_hH]: _xamdi }], [0, { [_hH]: _xamsi_ }], [0, { [_hH]: _xamlc }], [1, { [_hH]: _xamsr }], [0, { [_hH]: _xamme }], [() => exports.MedicalScribeInputStream$, 16]], 6
|
|
559
|
+
];
|
|
560
|
+
exports.StartMedicalScribeListeningSessionOutput$ = [3, n0, _SMSLSO,
|
|
561
|
+
0,
|
|
562
|
+
[_sIe, _dI, _sI, _rI, _lC, _mSRH, _mE, _rS],
|
|
563
|
+
[[0, { [_hH]: _xamsi }], [0, { [_hH]: _xamdi }], [0, { [_hH]: _xamsi_ }], [0, { [_hH]: _xari }], [0, { [_hH]: _xamlc }], [1, { [_hH]: _xamsr }], [0, { [_hH]: _xamme }], [() => exports.MedicalScribeOutputStream$, 16]]
|
|
564
|
+
];
|
|
565
|
+
exports.StartPatientInsightsJobRequest$ = [3, n0, _SPIJR,
|
|
566
|
+
0,
|
|
567
|
+
[_dI, _pC, _iC, _eCn, _uCs, _iDC, _oDC, _cTl],
|
|
568
|
+
[[0, 1], [() => exports.PatientInsightsPatientContext$, 0], () => exports.InsightsContext$, [() => exports.PatientInsightsEncounterContext$, 0], [() => exports.UserContext$, 0], [() => exports.InputDataConfig$, 0], () => exports.OutputDataConfig$, [0, 4]], 7
|
|
569
|
+
];
|
|
570
|
+
exports.StartPatientInsightsJobResponse$ = [3, n0, _SPIJRt,
|
|
571
|
+
0,
|
|
572
|
+
[_jA, _jI, _cT],
|
|
573
|
+
[0, 0, 5], 2
|
|
574
|
+
];
|
|
575
|
+
exports.SubscriptionDescription$ = [3, n0, _SD,
|
|
576
|
+
0,
|
|
577
|
+
[_dI, _sI, _a, _st, _cA, _lUA, _aA, _dA],
|
|
578
|
+
[0, 0, 0, 0, 4, 4, 4, 4], 6
|
|
579
|
+
];
|
|
580
|
+
exports.TagResourceInput$ = [3, n0, _TRI,
|
|
581
|
+
0,
|
|
582
|
+
[_rA, _t],
|
|
583
|
+
[[0, 1], 128 | 0], 2
|
|
584
|
+
];
|
|
585
|
+
exports.TemplateSectionInstruction$ = [3, n0, _TSI,
|
|
586
|
+
0,
|
|
587
|
+
[_sH, _sIec],
|
|
588
|
+
[[() => SensitiveAlphanumericString, 0], [() => SensitiveMarkdownString, 0]], 2
|
|
589
|
+
];
|
|
590
|
+
exports.UntagResourceInput$ = [3, n0, _URI,
|
|
591
|
+
0,
|
|
592
|
+
[_rA, _tK],
|
|
593
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
594
|
+
];
|
|
595
|
+
exports.UserContext$ = [3, n0, _UC,
|
|
596
|
+
0,
|
|
597
|
+
[_r, _uI, _sp],
|
|
598
|
+
[0, [() => SensitiveNonEmptyString, 0], 0], 2
|
|
599
|
+
];
|
|
600
|
+
exports.WebAppConfiguration$ = [3, n0, _WAC,
|
|
601
|
+
0,
|
|
602
|
+
[_eR, _iAI, _iR],
|
|
603
|
+
[0, 0, 0], 3
|
|
604
|
+
];
|
|
605
|
+
var __Unit = "unit";
|
|
606
|
+
var DomainSummaryList = [1, n0, _DSL,
|
|
607
|
+
0, () => exports.DomainSummary$
|
|
608
|
+
];
|
|
609
|
+
var MedicalScribeChannelDefinitions = [1, n0, _MSCDe,
|
|
610
|
+
0, () => exports.MedicalScribeChannelDefinition$
|
|
611
|
+
];
|
|
612
|
+
var S3Sources = [1, n0, _SSo,
|
|
613
|
+
0, () => exports.S3Source$
|
|
614
|
+
];
|
|
615
|
+
var SubscriptionList = [1, n0, _SL,
|
|
616
|
+
0, () => exports.SubscriptionDescription$
|
|
617
|
+
];
|
|
618
|
+
var TagKeyList = 64 | 0;
|
|
619
|
+
var TemplateInstructions = [1, n0, _TI,
|
|
620
|
+
0, [() => exports.TemplateSectionInstruction$,
|
|
621
|
+
0]
|
|
622
|
+
];
|
|
623
|
+
var TagMap = 128 | 0;
|
|
624
|
+
exports.MedicalScribeInputStream$ = [4, n0, _MSIS,
|
|
625
|
+
{ [_str]: 1 },
|
|
626
|
+
[_aE, _sCE, _cE],
|
|
627
|
+
[() => exports.MedicalScribeAudioEvent$, () => exports.MedicalScribeSessionControlEvent$, [() => exports.MedicalScribeConfigurationEvent$, 0]]
|
|
628
|
+
];
|
|
629
|
+
exports.MedicalScribeOutputStream$ = [4, n0, _MSOS,
|
|
630
|
+
{ [_str]: 1 },
|
|
631
|
+
[_tE, _iFE, _vE],
|
|
632
|
+
[() => exports.MedicalScribeTranscriptEvent$, [() => exports.InternalServerException$, 0], [() => exports.ValidationException$, 0]]
|
|
633
|
+
];
|
|
634
|
+
exports.NoteTemplateSettings$ = [4, n0, _NTS,
|
|
635
|
+
0,
|
|
636
|
+
[_mT, _cTu],
|
|
637
|
+
[() => exports.ManagedTemplate$, [() => exports.CustomTemplate$, 0]]
|
|
638
|
+
];
|
|
639
|
+
exports.NoteTemplateSettingsResponse$ = [4, n0, _NTSR,
|
|
640
|
+
0,
|
|
641
|
+
[_mT, _cTu],
|
|
642
|
+
[() => exports.ManagedTemplateResponse$, () => exports.CustomTemplateResponse$]
|
|
643
|
+
];
|
|
644
|
+
exports.ActivateSubscription$ = [9, n0, _AS,
|
|
645
|
+
{ [_h]: ["POST", "/domains/{domainId}/subscriptions/{subscriptionId}/activate", 200] }, () => exports.ActivateSubscriptionInput$, () => exports.ActivateSubscriptionOutput$
|
|
646
|
+
];
|
|
647
|
+
exports.CreateDomain$ = [9, n0, _CD,
|
|
648
|
+
{ [_h]: ["POST", "/domain", 201] }, () => exports.CreateDomainInput$, () => exports.CreateDomainOutput$
|
|
649
|
+
];
|
|
650
|
+
exports.CreateSubscription$ = [9, n0, _CS,
|
|
651
|
+
{ [_h]: ["POST", "/domains/{domainId}/subscriptions", 201] }, () => exports.CreateSubscriptionInput$, () => exports.CreateSubscriptionOutput$
|
|
652
|
+
];
|
|
653
|
+
exports.DeactivateSubscription$ = [9, n0, _DSe,
|
|
654
|
+
{ [_h]: ["POST", "/domains/{domainId}/subscriptions/{subscriptionId}/deactivate", 200] }, () => exports.DeactivateSubscriptionInput$, () => exports.DeactivateSubscriptionOutput$
|
|
655
|
+
];
|
|
656
|
+
exports.DeleteDomain$ = [9, n0, _DD,
|
|
657
|
+
{ [_h]: ["DELETE", "/domain/{domainId}", 200] }, () => exports.DeleteDomainInput$, () => exports.DeleteDomainOutput$
|
|
658
|
+
];
|
|
659
|
+
exports.GetDomain$ = [9, n0, _GD,
|
|
660
|
+
{ [_h]: ["GET", "/domain/{domainId}", 200] }, () => exports.GetDomainInput$, () => exports.GetDomainOutput$
|
|
661
|
+
];
|
|
662
|
+
exports.GetMedicalScribeListeningSession$ = [9, n0, _GMSLS,
|
|
663
|
+
{ [_en]: ["streaming."], [_h]: ["GET", "/medical-scribe-stream/domain/{domainId}/subscription/{subscriptionId}/session/{sessionId}", 200] }, () => exports.GetMedicalScribeListeningSessionInput$, () => exports.GetMedicalScribeListeningSessionOutput$
|
|
664
|
+
];
|
|
665
|
+
exports.GetPatientInsightsJob$ = [9, n0, _GPIJ,
|
|
666
|
+
{ [_en]: ["runtime."], [_h]: ["GET", "/domain/{domainId}/patient-insights-job/{jobId}", 200] }, () => exports.GetPatientInsightsJobRequest$, () => exports.GetPatientInsightsJobResponse$
|
|
667
|
+
];
|
|
668
|
+
exports.GetSubscription$ = [9, n0, _GS,
|
|
669
|
+
{ [_h]: ["GET", "/domains/{domainId}/subscriptions/{subscriptionId}", 200] }, () => exports.GetSubscriptionInput$, () => exports.GetSubscriptionOutput$
|
|
670
|
+
];
|
|
671
|
+
exports.ListDomains$ = [9, n0, _LD,
|
|
672
|
+
{ [_h]: ["GET", "/domain", 200] }, () => exports.ListDomainsInput$, () => exports.ListDomainsOutput$
|
|
673
|
+
];
|
|
674
|
+
exports.ListSubscriptions$ = [9, n0, _LS,
|
|
675
|
+
{ [_h]: ["GET", "/domains/{domainId}/subscriptions", 200] }, () => exports.ListSubscriptionsInput$, () => exports.ListSubscriptionsOutput$
|
|
676
|
+
];
|
|
677
|
+
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
678
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => exports.ListTagsForResourceInput$, () => exports.ListTagsForResourceOutput$
|
|
679
|
+
];
|
|
680
|
+
exports.StartMedicalScribeListeningSession$ = [9, n0, _SMSLS,
|
|
681
|
+
{ [_en]: ["streaming."], [_h]: ["POST", "/medical-scribe-stream/", 200] }, () => exports.StartMedicalScribeListeningSessionInput$, () => exports.StartMedicalScribeListeningSessionOutput$
|
|
682
|
+
];
|
|
683
|
+
exports.StartPatientInsightsJob$ = [9, n0, _SPIJ,
|
|
684
|
+
{ [_en]: ["runtime."], [_h]: ["POST", "/domain/{domainId}/patient-insights-job", 200] }, () => exports.StartPatientInsightsJobRequest$, () => exports.StartPatientInsightsJobResponse$
|
|
685
|
+
];
|
|
686
|
+
exports.TagResource$ = [9, n0, _TR,
|
|
687
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => exports.TagResourceInput$, () => __Unit
|
|
688
|
+
];
|
|
689
|
+
exports.UntagResource$ = [9, n0, _UR,
|
|
690
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => exports.UntagResourceInput$, () => __Unit
|
|
691
|
+
];
|