@stedi/sdk 0.0.9 → 0.0.10

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.
Files changed (105) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/README.md +82 -29
  3. package/dist-cjs/Stedi.js +35 -1
  4. package/dist-cjs/StediClient.js +1 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +8 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +8 -0
  7. package/dist-cjs/commandBuilder.js +4 -1
  8. package/dist-cjs/commands/CreateEventDestinationCommand.js +8 -0
  9. package/dist-cjs/commands/CreateProfessionalClaimSubmissionCommand.js +1 -1
  10. package/dist-cjs/commands/DeleteEventDestinationCommand.js +8 -0
  11. package/dist-cjs/commands/GetClaimCommand.js +8 -0
  12. package/dist-cjs/commands/GetClaimTimelineCommand.js +8 -0
  13. package/dist-cjs/commands/GetEventDestinationCommand.js +8 -0
  14. package/dist-cjs/commands/GetEventDestinationEventCommand.js +8 -0
  15. package/dist-cjs/commands/GetEventDestinationSecretCommand.js +8 -0
  16. package/dist-cjs/commands/GetProfessionalClaimSubmissionCommand.js +1 -1
  17. package/dist-cjs/commands/ListClaimsCommand.js +8 -0
  18. package/dist-cjs/commands/ListEventDestinationEventsCommand.js +8 -0
  19. package/dist-cjs/commands/ListEventDestinationsCommand.js +8 -0
  20. package/dist-cjs/commands/RotateEventDestinationSecretCommand.js +8 -0
  21. package/dist-cjs/commands/UpdateEventDestinationCommand.js +8 -0
  22. package/dist-cjs/commands/ValidateProfessionalClaimSubmissionCommand.js +1 -1
  23. package/dist-cjs/commands/index.js +12 -0
  24. package/dist-cjs/endpoint/bdd.js +8 -5
  25. package/dist-cjs/index.js +1 -0
  26. package/dist-cjs/models/enums.js +61 -1
  27. package/dist-cjs/models/errors.js +27 -34
  28. package/dist-cjs/pagination/GetClaimTimelinePaginator.js +7 -0
  29. package/dist-cjs/pagination/Interfaces.js +2 -0
  30. package/dist-cjs/pagination/ListClaimsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListEventDestinationEventsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListEventDestinationsPaginator.js +7 -0
  33. package/dist-cjs/pagination/index.js +8 -0
  34. package/dist-cjs/runtimeConfig.shared.js +5 -0
  35. package/dist-cjs/schemas/schemas_0.js +487 -127
  36. package/dist-es/Stedi.js +35 -1
  37. package/dist-es/StediClient.js +1 -0
  38. package/dist-es/auth/httpAuthExtensionConfiguration.js +8 -0
  39. package/dist-es/auth/httpAuthSchemeProvider.js +8 -0
  40. package/dist-es/commandBuilder.js +3 -0
  41. package/dist-es/commands/CreateEventDestinationCommand.js +4 -0
  42. package/dist-es/commands/CreateProfessionalClaimSubmissionCommand.js +2 -2
  43. package/dist-es/commands/DeleteEventDestinationCommand.js +4 -0
  44. package/dist-es/commands/GetClaimCommand.js +4 -0
  45. package/dist-es/commands/GetClaimTimelineCommand.js +4 -0
  46. package/dist-es/commands/GetEventDestinationCommand.js +4 -0
  47. package/dist-es/commands/GetEventDestinationEventCommand.js +4 -0
  48. package/dist-es/commands/GetEventDestinationSecretCommand.js +4 -0
  49. package/dist-es/commands/GetProfessionalClaimSubmissionCommand.js +2 -2
  50. package/dist-es/commands/ListClaimsCommand.js +4 -0
  51. package/dist-es/commands/ListEventDestinationEventsCommand.js +4 -0
  52. package/dist-es/commands/ListEventDestinationsCommand.js +4 -0
  53. package/dist-es/commands/RotateEventDestinationSecretCommand.js +4 -0
  54. package/dist-es/commands/UpdateEventDestinationCommand.js +4 -0
  55. package/dist-es/commands/ValidateProfessionalClaimSubmissionCommand.js +2 -2
  56. package/dist-es/commands/index.js +12 -0
  57. package/dist-es/endpoint/bdd.js +8 -5
  58. package/dist-es/index.js +1 -0
  59. package/dist-es/models/enums.js +60 -0
  60. package/dist-es/models/errors.js +24 -31
  61. package/dist-es/pagination/GetClaimTimelinePaginator.js +4 -0
  62. package/dist-es/pagination/Interfaces.js +1 -0
  63. package/dist-es/pagination/ListClaimsPaginator.js +4 -0
  64. package/dist-es/pagination/ListEventDestinationEventsPaginator.js +4 -0
  65. package/dist-es/pagination/ListEventDestinationsPaginator.js +4 -0
  66. package/dist-es/pagination/index.js +5 -0
  67. package/dist-es/runtimeConfig.shared.js +6 -1
  68. package/dist-es/schemas/schemas_0.js +485 -126
  69. package/dist-types/Stedi.d.ts +116 -1
  70. package/dist-types/StediClient.d.ts +14 -2
  71. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +4 -1
  72. package/dist-types/auth/httpAuthSchemeProvider.d.ts +9 -1
  73. package/dist-types/commandBuilder.d.ts +4 -0
  74. package/dist-types/commands/CreateEventDestinationCommand.d.ts +146 -0
  75. package/dist-types/commands/CreateProfessionalClaimSubmissionCommand.d.ts +177 -152
  76. package/dist-types/commands/DeleteEventDestinationCommand.d.ts +105 -0
  77. package/dist-types/commands/GetClaimCommand.d.ts +139 -0
  78. package/dist-types/commands/GetClaimTimelineCommand.d.ts +218 -0
  79. package/dist-types/commands/GetEventDestinationCommand.d.ts +124 -0
  80. package/dist-types/commands/GetEventDestinationEventCommand.d.ts +141 -0
  81. package/dist-types/commands/GetEventDestinationSecretCommand.d.ts +105 -0
  82. package/dist-types/commands/GetProfessionalClaimSubmissionCommand.d.ts +349 -4
  83. package/dist-types/commands/ListClaimsCommand.d.ts +169 -0
  84. package/dist-types/commands/ListEventDestinationEventsCommand.d.ts +120 -0
  85. package/dist-types/commands/ListEventDestinationsCommand.d.ts +132 -0
  86. package/dist-types/commands/RotateEventDestinationSecretCommand.d.ts +113 -0
  87. package/dist-types/commands/UpdateEventDestinationCommand.d.ts +142 -0
  88. package/dist-types/commands/ValidateProfessionalClaimSubmissionCommand.d.ts +363 -9
  89. package/dist-types/commands/index.d.ts +12 -0
  90. package/dist-types/index.d.ts +1 -0
  91. package/dist-types/models/enums.d.ts +263 -1
  92. package/dist-types/models/errors.d.ts +25 -41
  93. package/dist-types/models/models_0.d.ts +1320 -43
  94. package/dist-types/pagination/GetClaimTimelinePaginator.d.ts +7 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListClaimsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListEventDestinationEventsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/ListEventDestinationsPaginator.d.ts +7 -0
  99. package/dist-types/pagination/index.d.ts +5 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +7 -2
  101. package/dist-types/runtimeConfig.d.ts +7 -2
  102. package/dist-types/runtimeConfig.native.d.ts +7 -2
  103. package/dist-types/runtimeConfig.shared.d.ts +7 -3
  104. package/dist-types/schemas/schemas_0.d.ts +54 -3
  105. package/package.json +4 -3
@@ -1,19 +1,67 @@
1
1
  const _AFE = "AuthenticationFailedException";
2
+ const _CAS = "ClaimAcknowledgmentSummary";
3
+ const _CDR = "ClaimDateRange";
2
4
  const _CE = "ConflictException";
3
- const _CEE = "ClaimEditException";
4
- const _CEEl = "ClaimEditError";
5
- const _CEEla = "ClaimEditErrors";
5
+ const _CED = "CreateEventDestination";
6
+ const _CEDI = "CreateEventDestinationInput";
7
+ const _CEDO = "CreateEventDestinationOutput";
6
8
  const _CPCS = "CreateProfessionalClaimSubmission";
7
9
  const _CPCSI = "CreateProfessionalClaimSubmissionInput";
8
10
  const _CPCSO = "CreateProfessionalClaimSubmissionOutput";
11
+ const _CPIS = "ClaimPaymentInformationSummary";
12
+ const _CPN = "ClaimPatientName";
13
+ const _CRE = "ClaimRejectionError";
14
+ const _CREl = "ClaimRejectionErrors";
15
+ const _CS = "ClaimSummary";
16
+ const _CSS = "ClaimSubmissionSummary";
17
+ const _CSl = "ClaimSummaries";
18
+ const _CTE = "ClaimTimelineEvents";
19
+ const _CTEl = "ClaimTimelineEvent";
20
+ const _CTLE = "ContentTooLargeException";
21
+ const _DED = "DeleteEventDestination";
22
+ const _DEDI = "DeleteEventDestinationInput";
23
+ const _DEDO = "DeleteEventDestinationOutput";
24
+ const _EDDS = "EventDestinationsDestinationSummary";
25
+ const _EDDSL = "EventDestinationsDestinationSummaryList";
26
+ const _EDEP = "EventDestinationsEventPayload";
27
+ const _EDEPRR = "EventDestinationsEventPayloadResourceRef";
28
+ const _EDEPRRL = "EventDestinationsEventPayloadResourceRefList";
29
+ const _EDES = "EventDestinationsEventSummary";
30
+ const _EDESL = "EventDestinationsEventSummaryList";
31
+ const _EDLEE = "EventDestinationsLimitExceededException";
32
+ const _EDSS = "EventDestinationsSigningSecret";
33
+ const _EDVEP = "EventDestinationsV1EventPayload";
9
34
  const _FE = "ForbiddenException";
35
+ const _GC = "GetClaim";
36
+ const _GCI = "GetClaimInput";
37
+ const _GCO = "GetClaimOutput";
38
+ const _GCT = "GetClaimTimeline";
39
+ const _GCTI = "GetClaimTimelineInput";
40
+ const _GCTO = "GetClaimTimelineOutput";
41
+ const _GED = "GetEventDestination";
42
+ const _GEDE = "GetEventDestinationEvent";
43
+ const _GEDEI = "GetEventDestinationEventInput";
44
+ const _GEDEO = "GetEventDestinationEventOutput";
45
+ const _GEDI = "GetEventDestinationInput";
46
+ const _GEDO = "GetEventDestinationOutput";
47
+ const _GEDS = "GetEventDestinationSecret";
48
+ const _GEDSI = "GetEventDestinationSecretInput";
49
+ const _GEDSO = "GetEventDestinationSecretOutput";
10
50
  const _GPCS = "GetProfessionalClaimSubmission";
11
51
  const _GPCSI = "GetProfessionalClaimSubmissionInput";
12
52
  const _GPCSO = "GetProfessionalClaimSubmissionOutput";
13
- const _IFE = "InternalFailureException";
14
53
  const _IK = "Idempotency-Key";
15
54
  const _IRE = "InvalidRequestException";
16
55
  const _ISE = "InternalServerException";
56
+ const _LC = "ListClaims";
57
+ const _LCI = "ListClaimsInput";
58
+ const _LCO = "ListClaimsOutput";
59
+ const _LED = "ListEventDestinations";
60
+ const _LEDE = "ListEventDestinationEvents";
61
+ const _LEDEI = "ListEventDestinationEventsInput";
62
+ const _LEDEO = "ListEventDestinationEventsOutput";
63
+ const _LEDI = "ListEventDestinationsInput";
64
+ const _LEDO = "ListEventDestinationsOutput";
17
65
  const _NFE = "NotFoundException";
18
66
  const _PCSA = "ProfessionalClaimSubmissionAddress";
19
67
  const _PCSAL = "ProfessionalClaimSubmissionAttachmentList";
@@ -52,6 +100,9 @@ const _PCSPNr = "ProfessionalClaimSubmissionPlanName";
52
100
  const _PCSPNro = "ProfessionalClaimSubmissionPersonName";
53
101
  const _PCSPOCDAN = "ProfessionalClaimSubmissionPrescriptionOrCompoundDrugAssociationNumber";
54
102
  const _PCSPOGN = "ProfessionalClaimSubmissionPolicyOrGroupNumber";
103
+ const _PCSPS = "ProfessionalClaimSubmissionPurchasedService";
104
+ const _PCSPSP = "ProfessionalClaimSubmissionPurchasedServiceProvider";
105
+ const _PCSPSPI = "ProfessionalClaimSubmissionPurchasedServiceProviderIdentifiers";
55
106
  const _PCSPr = "ProfessionalClaimSubmissionPayer";
56
107
  const _PCSQN = "ProfessionalClaimSubmissionQualifiedName";
57
108
  const _PCSQON = "ProfessionalClaimSubmissionQualifiedOrganizationName";
@@ -73,7 +124,13 @@ const _PCSSP = "ProfessionalClaimSubmissionSupervisingProvider";
73
124
  const _PCSSPI = "ProfessionalClaimSubmissionSupervisingProviderIdentifiers";
74
125
  const _PCSSr = "ProfessionalClaimSubmissionSubmitter";
75
126
  const _PCSTI = "ProfessionalClaimSubmissionTaxId";
127
+ const _REDS = "RotateEventDestinationSecret";
128
+ const _REDSI = "RotateEventDestinationSecretInput";
129
+ const _REDSO = "RotateEventDestinationSecretOutput";
76
130
  const _TMRE = "TooManyRequestsException";
131
+ const _UED = "UpdateEventDestination";
132
+ const _UEDI = "UpdateEventDestinationInput";
133
+ const _UEDO = "UpdateEventDestinationOutput";
77
134
  const _VF = "ValidationFailure";
78
135
  const _VFa = "ValidationFailures";
79
136
  const _VPCS = "ValidateProfessionalClaimSubmission";
@@ -92,36 +149,54 @@ const _aMOCC = "acuteManifestationOfChronicCondition";
92
149
  const _aN = "associationNumber";
93
150
  const _aP = "amountPaid";
94
151
  const _ac = "accident";
152
+ const _acc = "account";
95
153
  const _ad = "address";
96
154
  const _at = "attachments";
97
155
  const _b = "billing";
98
156
  const _bP = "billingProvider";
99
157
  const _c = "client";
158
+ const _cA = "chargeAmount";
159
+ const _cAl = "claimAcknowledgment";
160
+ const _cAr = "createdAt";
100
161
  const _cC = "claimCodes";
101
162
  const _cD = "clinicalDates";
102
163
  const _cFI = "claimFilingIndicator";
103
164
  const _cI = "claimId";
165
+ const _cL = "concurrencyLimit";
104
166
  const _cN = "commercialNumber";
105
167
  const _cNe = "certificationNarrative";
106
168
  const _cNl = "claimNote";
169
+ const _cOETN = "checkOrEftTraceNumber";
170
+ const _cPA = "claimPaymentAmount";
107
171
  const _cPI = "cmsPlanId";
172
+ const _cPIl = "claimPaymentInformation";
108
173
  const _ci = "city";
109
174
  const _cl = "clia";
110
- const _co = "code";
111
- const _con = "contact";
175
+ const _co = "contact";
176
+ const _cod = "code";
177
+ const _cr = "created";
112
178
  const _d = "description";
113
179
  const _dC = "diagnosisCodes";
180
+ const _dCS = "dentalClaimSubmission";
114
181
  const _dD = "diagnosisDescription";
115
182
  const _dI = "drugIdentification";
183
+ const _dIe = "destinationId";
116
184
  const _dOB = "dateOfBirth";
117
185
  const _dOS = "datesOfService";
186
+ const _dU = "destinationUrl";
118
187
  const _da = "data";
119
188
  const _e = "error";
189
+ const _eI = "eventId";
190
+ const _eP = "eventPayload";
120
191
  const _eRC = "epsdtReferralCodes";
192
+ const _eT = "entityType";
193
+ const _eTv = "eventTypes";
194
+ const _eTve = "eventType";
121
195
  const _ei = "ein";
122
196
  const _em = "email";
123
197
  const _en = "encounter";
124
198
  const _end = "end";
199
+ const _env = "environment";
125
200
  const _er = "errors";
126
201
  const _et = "etin";
127
202
  const _fN = "faxNumber";
@@ -132,10 +207,12 @@ const _gRODP = "goalsRehabilitationOrDischargePlans";
132
207
  const _h = "hospitalization";
133
208
  const _hE = "httpError";
134
209
  const _hH = "httpHeader";
210
+ const _hQ = "httpQuery";
135
211
  const _ht = "http";
136
212
  const _i = "insured";
137
213
  const _iAA = "insuredAuthorizesAssignment";
138
214
  const _iAAR = "isAutoAccidentRelated";
215
+ const _iCS = "institutionalClaimSubmission";
139
216
  const _iE = "isEmergency";
140
217
  const _iER = "isEmploymentRelated";
141
218
  const _iERs = "isEpsdtRelated";
@@ -143,9 +220,12 @@ const _iFP = "isFamilyPlanning";
143
220
  const _iK = "idempotencyKey";
144
221
  const _iOAR = "isOtherAccidentRelated";
145
222
  const _iT = "initialTreatment";
223
+ const _iTd = "idempotencyToken";
146
224
  const _iTn = "insuranceType";
147
225
  const _id = "id";
148
226
  const _ide = "identifiers";
227
+ const _it = "items";
228
+ const _lDT = "lastDeliveryTime";
149
229
  const _lICA = "lineItemChargeAmount";
150
230
  const _lICN = "lineItemControlNumber";
151
231
  const _lMP = "lastMenstrualPeriod";
@@ -164,8 +244,9 @@ const _mo = "modifiers";
164
244
  const _n = "name";
165
245
  const _nDC = "nationalDrugCode";
166
246
  const _nFUC = "narrativeForUnspecifiedCode";
247
+ const _nPT = "nextPageToken";
167
248
  const _np = "npi";
168
- const _o = "organization";
249
+ const _o = "object";
169
250
  const _oI = "otherInsured";
170
251
  const _oN = "originalNdc";
171
252
  const _oOCI = "onsetOfCurrentIllness";
@@ -173,6 +254,7 @@ const _oP = "otherPayer";
173
254
  const _oPPI = "otherPayerPrimaryId";
174
255
  const _oPr = "orderingProvider";
175
256
  const _oRN = "originalReferenceNumber";
257
+ const _or = "organization";
176
258
  const _p = "purpose";
177
259
  const _pA = "processedAt";
178
260
  const _pAA = "providerAcceptsAssignment";
@@ -182,6 +264,8 @@ const _pAri = "priorAuthorizations";
182
264
  const _pC = "postalCode";
183
265
  const _pCCN = "propertyCasualtyClaimNumber";
184
266
  const _pCN = "patientControlNumber";
267
+ const _pCNa = "patientControlNumbers";
268
+ const _pCS = "professionalClaimSubmission";
185
269
  const _pCa = "patientCondition";
186
270
  const _pCr = "procedureCode";
187
271
  const _pDC = "primaryDiagnosisCode";
@@ -189,21 +273,30 @@ const _pE = "phoneExtension";
189
273
  const _pGPS = "providerGeneratedPatientSignature";
190
274
  const _pI = "payerId";
191
275
  const _pN = "phoneNumber";
276
+ const _pNa = "patientName";
192
277
  const _pNl = "planName";
193
278
  const _pOGN = "policyOrGroupNumber";
194
279
  const _pOS = "placeOfService";
195
280
  const _pPN = "pharmacyPrescriptionNumber";
196
281
  const _pPOS = "primaryPlaceOfService";
282
+ const _pRA = "patientResponsibilityAmount";
197
283
  const _pRLC = "paymentResponsibilityLevelCode";
198
284
  const _pRMI = "patientReleasesMedicalInfo";
199
285
  const _pRP = "priorReferringProvider";
200
286
  const _pS = "providerSignature";
287
+ const _pSEA = "previousSecretExpiresAt";
288
+ const _pSEH = "previousSecretExpiryHours";
289
+ const _pSa = "pageSize";
290
+ const _pSu = "purchasedService";
291
+ const _pT = "pageToken";
201
292
  const _pa = "payer";
202
293
  const _pat = "patient";
203
294
  const _path = "path";
204
295
  const _pe = "person";
205
296
  const _pr = "prescription";
297
+ const _pro = "provider";
206
298
  const _r = "resubmission";
299
+ const _rB = "reportedBy";
207
300
  const _rC = "relinquishedCare";
208
301
  const _rI = "receiverId";
209
302
  const _rL = "responsibilityLevel";
@@ -211,403 +304,669 @@ const _rN = "referenceNumbers";
211
304
  const _rP = "referringProvider";
212
305
  const _rPe = "renderingProvider";
213
306
  const _rR = "repricerReceived";
307
+ const _rRe = "relatedResources";
214
308
  const _rTC = "reportTypeCode";
215
309
  const _rTI = "relationshipToInsured";
216
310
  const _rTW = "returnedToWork";
217
311
  const _re = "referral";
312
+ const _res = "resource";
218
313
  const _s = "smithy.ts.sdk.synthetic.com.stedi.sdk";
314
+ const _sA = "submittedAt";
315
+ const _sAu = "submittedAfter";
316
+ const _sB = "submittedBefore";
317
+ const _sC = "statusCode";
219
318
  const _sF = "serviceFacility";
220
319
  const _sI = "submissionId";
221
320
  const _sL = "serviceLines";
222
321
  const _sLN = "stateLicenseNumber";
322
+ const _sN = "sourceName";
223
323
  const _sP = "supervisingProvider";
224
324
  const _sPI = "stediPayerId";
325
+ const _sRB = "statusReportedBy";
326
+ const _sS = "signingSecret";
225
327
  const _se = "server";
226
328
  const _ss = "ssn";
227
329
  const _st = "state";
228
330
  const _sta = "start";
331
+ const _stat = "status";
229
332
  const _su = "submitter";
230
333
  const _suf = "suffix";
334
+ const _t = "type";
231
335
  const _tC = "transmissionCode";
336
+ const _tCCA = "totalClaimChargeAmount";
337
+ const _tCPA = "totalClaimPaidAmount";
232
338
  const _tCa = "taxonomyCode";
233
339
  const _tCo = "totalCharge";
234
340
  const _tI = "taxId";
235
341
  const _tPO = "thirdPartyOrganization";
236
342
  const _u = "units";
343
+ const _uA = "updatedAt";
237
344
  const _uC = "unitCount";
238
345
  const _uOM = "unitOfMeasure";
239
346
  const _uTW = "unableToWork";
240
- const _x = "x12";
241
- const n0 = "com.stedi.claimsmanager";
242
- const n1 = "com.stedi.smithy.model.common";
243
- const n2 = "com.stedi.smithy.model.errors";
244
- const n3 = "com.stedi.claimsmanager.cms1500v2";
347
+ const _vE = "v1Event";
348
+ const n0 = "com.stedi.events";
349
+ const n1 = "com.stedi.smithy.model.errors";
350
+ const n2 = "com.stedi.claimsmanager.cms1500v2";
351
+ const n3 = "com.stedi.claimsmanager";
352
+ const n4 = "com.stedi.claimsmanager.public";
353
+ const n5 = "com.stedi.claimsmanager.public.claim";
245
354
  import { TypeRegistry } from "@smithy/core/schema";
246
- import { AuthenticationFailedException, ClaimEditException, ConflictException, ForbiddenException, InternalFailureException, InternalServerException, InvalidRequestException, NotFoundException, TooManyRequestsException, } from "../models/errors";
355
+ import { AuthenticationFailedException, ConflictException, ContentTooLargeException, EventDestinationsLimitExceededException, ForbiddenException, InternalServerException, InvalidRequestException, NotFoundException, TooManyRequestsException, } from "../models/errors";
247
356
  import { StediServiceException } from "../models/StediServiceException";
248
357
  const _s_registry = TypeRegistry.for(_s);
249
358
  export var StediServiceException$ = [-3, _s, "StediServiceException", 0, [], []];
250
359
  _s_registry.registerError(StediServiceException$, StediServiceException);
251
360
  const n0_registry = TypeRegistry.for(n0);
252
361
  const n1_registry = TypeRegistry.for(n1);
253
- const n2_registry = TypeRegistry.for(n2);
254
- export var ClaimEditException$ = [-3, n0, _CEE,
255
- { [_e]: _c, [_hE]: 400 },
256
- [_m, _er, _x],
257
- [0, () => ClaimEditErrors, 0], 2
258
- ];
259
- n0_registry.registerError(ClaimEditException$, ClaimEditException);
260
- export var InternalFailureException$ = [-3, n1, _IFE,
261
- { [_e]: _se, [_hE]: 500 },
262
- [_m, _co],
263
- [0, 0], 1
362
+ export var EventDestinationsLimitExceededException$ = [-3, n0, _EDLEE,
363
+ { [_e]: _c, [_hE]: 403 },
364
+ [_m],
365
+ [0], 1
264
366
  ];
265
- n1_registry.registerError(InternalFailureException$, InternalFailureException);
266
- export var AuthenticationFailedException$ = [-3, n2, _AFE,
367
+ n0_registry.registerError(EventDestinationsLimitExceededException$, EventDestinationsLimitExceededException);
368
+ export var AuthenticationFailedException$ = [-3, n1, _AFE,
267
369
  { [_e]: _c, [_hE]: 401 },
268
370
  [_m],
269
371
  [0], 1
270
372
  ];
271
- n2_registry.registerError(AuthenticationFailedException$, AuthenticationFailedException);
272
- export var ConflictException$ = [-3, n2, _CE,
373
+ n1_registry.registerError(AuthenticationFailedException$, AuthenticationFailedException);
374
+ export var ConflictException$ = [-3, n1, _CE,
273
375
  { [_e]: _c, [_hE]: 409 },
274
376
  [_m],
275
377
  [0], 1
276
378
  ];
277
- n2_registry.registerError(ConflictException$, ConflictException);
278
- export var ForbiddenException$ = [-3, n2, _FE,
379
+ n1_registry.registerError(ConflictException$, ConflictException);
380
+ export var ContentTooLargeException$ = [-3, n1, _CTLE,
381
+ { [_e]: _c, [_hE]: 413 },
382
+ [_m],
383
+ [0], 1
384
+ ];
385
+ n1_registry.registerError(ContentTooLargeException$, ContentTooLargeException);
386
+ export var ForbiddenException$ = [-3, n1, _FE,
279
387
  { [_e]: _c, [_hE]: 403 },
280
388
  [_m],
281
389
  [0], 1
282
390
  ];
283
- n2_registry.registerError(ForbiddenException$, ForbiddenException);
284
- export var InternalServerException$ = [-3, n2, _ISE,
391
+ n1_registry.registerError(ForbiddenException$, ForbiddenException);
392
+ export var InternalServerException$ = [-3, n1, _ISE,
285
393
  { [_e]: _se, [_hE]: 500 },
286
394
  [_m],
287
395
  [0], 1
288
396
  ];
289
- n2_registry.registerError(InternalServerException$, InternalServerException);
290
- export var InvalidRequestException$ = [-3, n2, _IRE,
397
+ n1_registry.registerError(InternalServerException$, InternalServerException);
398
+ export var InvalidRequestException$ = [-3, n1, _IRE,
291
399
  { [_e]: _c, [_hE]: 400 },
292
400
  [_m, _er],
293
401
  [0, () => ValidationFailures], 1
294
402
  ];
295
- n2_registry.registerError(InvalidRequestException$, InvalidRequestException);
296
- export var NotFoundException$ = [-3, n2, _NFE,
403
+ n1_registry.registerError(InvalidRequestException$, InvalidRequestException);
404
+ export var NotFoundException$ = [-3, n1, _NFE,
297
405
  { [_e]: _c, [_hE]: 404 },
298
406
  [_m],
299
407
  [0], 1
300
408
  ];
301
- n2_registry.registerError(NotFoundException$, NotFoundException);
302
- export var TooManyRequestsException$ = [-3, n2, _TMRE,
409
+ n1_registry.registerError(NotFoundException$, NotFoundException);
410
+ export var TooManyRequestsException$ = [-3, n1, _TMRE,
303
411
  { [_e]: _c, [_hE]: 429 },
304
412
  [_m],
305
413
  [0], 1
306
414
  ];
307
- n2_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
415
+ n1_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
308
416
  export const errorTypeRegistries = [
309
417
  _s_registry,
310
418
  n0_registry,
311
419
  n1_registry,
312
- n2_registry,
313
- ];
314
- var ProfessionalClaimSubmissionClaimNoteText = [0, n3, _PCSCNT, 8, 0];
315
- var ProfessionalClaimSubmissionDateOfBirth = [0, n3, _PCSDOB, 8, 0];
316
- var ProfessionalClaimSubmissionEmail = [0, n3, _PCSE, 8, 0];
317
- var ProfessionalClaimSubmissionGenderCode = [0, n3, _PCSGC, 8, 0];
318
- var ProfessionalClaimSubmissionMemberId = [0, n3, _PCSMI, 8, 0];
319
- var ProfessionalClaimSubmissionPatientControlNumber = [0, n3, _PCSPCN, 8, 0];
320
- var ProfessionalClaimSubmissionPhoneNumber = [0, n3, _PCSPN, 8, 0];
321
- var ProfessionalClaimSubmissionPlanName = [0, n3, _PCSPNr, 8, 0];
322
- var ProfessionalClaimSubmissionPolicyOrGroupNumber = [0, n3, _PCSPOGN, 8, 0];
323
- var ProfessionalClaimSubmissionPropertyCasualtyClaimNumber = [0, n3, _PCSPCCN, 8, 0];
324
- var ProfessionalClaimSubmissionSsn = [0, n3, _PCSS, 8, 0];
325
- export var ClaimEditError$ = [3, n0, _CEEl,
326
- 0,
327
- [_co, _d],
328
- [0, 0], 2
329
420
  ];
330
- export var CreateProfessionalClaimSubmissionInput$ = [3, n3, _CPCSI,
421
+ var ProfessionalClaimSubmissionClaimNoteText = [0, n2, _PCSCNT, 8, 0];
422
+ var ProfessionalClaimSubmissionDateOfBirth = [0, n2, _PCSDOB, 8, 0];
423
+ var ProfessionalClaimSubmissionEmail = [0, n2, _PCSE, 8, 0];
424
+ var ProfessionalClaimSubmissionGenderCode = [0, n2, _PCSGC, 8, 0];
425
+ var ProfessionalClaimSubmissionMemberId = [0, n2, _PCSMI, 8, 0];
426
+ var ProfessionalClaimSubmissionPatientControlNumber = [0, n2, _PCSPCN, 8, 0];
427
+ var ProfessionalClaimSubmissionPhoneNumber = [0, n2, _PCSPN, 8, 0];
428
+ var ProfessionalClaimSubmissionPlanName = [0, n2, _PCSPNr, 8, 0];
429
+ var ProfessionalClaimSubmissionPolicyOrGroupNumber = [0, n2, _PCSPOGN, 8, 0];
430
+ var ProfessionalClaimSubmissionPropertyCasualtyClaimNumber = [0, n2, _PCSPCCN, 8, 0];
431
+ var ProfessionalClaimSubmissionSsn = [0, n2, _PCSS, 8, 0];
432
+ var EventDestinationsSigningSecret = [0, n0, _EDSS, 8, 0];
433
+ export var ClaimRejectionError$ = [3, n3, _CRE,
434
+ 0,
435
+ [_d],
436
+ [0], 1
437
+ ];
438
+ export var CreateProfessionalClaimSubmissionInput$ = [3, n2, _CPCSI,
331
439
  0,
332
440
  [_p, _pa, _su, _i, _a, _en, _b, _sL, _pat, _oI, _iK],
333
441
  [0, [() => ProfessionalClaimSubmissionPayer$, 0], [() => ProfessionalClaimSubmissionSubmitter$, 0], [() => ProfessionalClaimSubmissionInsured$, 0], () => ProfessionalClaimSubmissionAuthorization$, [() => ProfessionalClaimSubmissionEncounter$, 0], [() => ProfessionalClaimSubmissionBilling$, 0], [() => ProfessionalClaimSubmissionServiceLines, 0], [() => ProfessionalClaimSubmissionPatient$, 0], [() => ProfessionalClaimSubmissionOtherInsuredList, 0], [0, { [_hH]: _IK }]], 8
334
442
  ];
335
- export var CreateProfessionalClaimSubmissionOutput$ = [3, n3, _CPCSO,
443
+ export var CreateProfessionalClaimSubmissionOutput$ = [3, n2, _CPCSO,
336
444
  0,
337
- [_cI, _sI],
338
- [0, 0], 2
445
+ [_cI, _sI, _er],
446
+ [0, 0, () => ClaimRejectionErrors], 2
339
447
  ];
340
- export var GetProfessionalClaimSubmissionInput$ = [3, n3, _GPCSI,
448
+ export var GetProfessionalClaimSubmissionInput$ = [3, n2, _GPCSI,
341
449
  0,
342
450
  [_id],
343
451
  [[0, 1]], 1
344
452
  ];
345
- export var GetProfessionalClaimSubmissionOutput$ = [3, n3, _GPCSO,
453
+ export var GetProfessionalClaimSubmissionOutput$ = [3, n2, _GPCSO,
346
454
  0,
347
455
  [_cI, _sI, _da, _pA, _sPI],
348
456
  [0, 0, [() => ProfessionalClaimSubmissionData$, 0], 5, 0], 4
349
457
  ];
350
- export var ProfessionalClaimSubmissionAddress$ = [3, n3, _PCSA,
458
+ export var ProfessionalClaimSubmissionAddress$ = [3, n2, _PCSA,
351
459
  8,
352
460
  [_aL, _ci, _aLd, _st, _pC],
353
461
  [0, 0, 0, 0, 0], 2
354
462
  ];
355
- export var ProfessionalClaimSubmissionAttachment$ = [3, n3, _PCSAr,
463
+ export var ProfessionalClaimSubmissionAttachment$ = [3, n2, _PCSAr,
356
464
  0,
357
465
  [_rTC, _tC, _aCN, _aI],
358
466
  [0, 0, 0, 0], 2
359
467
  ];
360
- export var ProfessionalClaimSubmissionAuthorization$ = [3, n3, _PCSAro,
468
+ export var ProfessionalClaimSubmissionAuthorization$ = [3, n2, _PCSAro,
361
469
  0,
362
470
  [_pRMI, _iAA, _pAA, _pS],
363
471
  [0, 0, 0, 0], 4
364
472
  ];
365
- export var ProfessionalClaimSubmissionBilling$ = [3, n3, _PCSB,
473
+ export var ProfessionalClaimSubmissionBilling$ = [3, n2, _PCSB,
366
474
  0,
367
475
  [_tI, _pCN, _tCo, _bP, _aP, _sF],
368
476
  [[() => ProfessionalClaimSubmissionTaxId$, 0], [() => ProfessionalClaimSubmissionPatientControlNumber, 0], 0, [() => ProfessionalClaimSubmissionBillingProvider$, 0], 0, [() => ProfessionalClaimSubmissionServiceFacility$, 0]], 4
369
477
  ];
370
- export var ProfessionalClaimSubmissionBillingProvider$ = [3, n3, _PCSBP,
478
+ export var ProfessionalClaimSubmissionBillingProvider$ = [3, n2, _PCSBP,
371
479
  0,
372
- [_n, _ad, _con, _ide],
480
+ [_n, _ad, _co, _ide],
373
481
  [[() => ProfessionalClaimSubmissionQualifiedName$, 0], [() => ProfessionalClaimSubmissionAddress$, 0], [() => ProfessionalClaimSubmissionContact$, 0], () => ProfessionalClaimSubmissionBillingProviderIdentifiers$], 2
374
482
  ];
375
- export var ProfessionalClaimSubmissionBillingProviderIdentifiers$ = [3, n3, _PCSBPI,
483
+ export var ProfessionalClaimSubmissionBillingProviderIdentifiers$ = [3, n2, _PCSBPI,
376
484
  0,
377
485
  [_np, _sLN, _tCa, _lN, _cN],
378
486
  [0, 0, 0, 0, 0]
379
487
  ];
380
- export var ProfessionalClaimSubmissionClinicalDates$ = [3, n3, _PCSCD,
488
+ export var ProfessionalClaimSubmissionClinicalDates$ = [3, n2, _PCSCD,
381
489
  0,
382
490
  [_oOCI, _lMP, _iT, _lS, _aMOCC, _ac, _lX, _pr, _aC, _rC, _fVOC, _rR, _lW, _rTW, _uTW, _h],
383
491
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ProfessionalClaimSubmissionDateRange$, () => ProfessionalClaimSubmissionDateRange$]
384
492
  ];
385
- export var ProfessionalClaimSubmissionContact$ = [3, n3, _PCSC,
493
+ export var ProfessionalClaimSubmissionContact$ = [3, n2, _PCSC,
386
494
  0,
387
495
  [_n, _pN, _pE, _em, _fN],
388
496
  [0, [() => ProfessionalClaimSubmissionPhoneNumber, 0], 0, [() => ProfessionalClaimSubmissionEmail, 0], [() => ProfessionalClaimSubmissionPhoneNumber, 0]]
389
497
  ];
390
- export var ProfessionalClaimSubmissionData$ = [3, n3, _PCSD,
498
+ export var ProfessionalClaimSubmissionData$ = [3, n2, _PCSD,
391
499
  0,
392
500
  [_p, _pa, _su, _i, _a, _en, _b, _sL, _pat, _oI],
393
501
  [0, [() => ProfessionalClaimSubmissionPayer$, 0], [() => ProfessionalClaimSubmissionSubmitter$, 0], [() => ProfessionalClaimSubmissionInsured$, 0], () => ProfessionalClaimSubmissionAuthorization$, [() => ProfessionalClaimSubmissionEncounter$, 0], [() => ProfessionalClaimSubmissionBilling$, 0], [() => ProfessionalClaimSubmissionServiceLines, 0], [() => ProfessionalClaimSubmissionPatient$, 0], [() => ProfessionalClaimSubmissionOtherInsuredList, 0]], 8
394
502
  ];
395
- export var ProfessionalClaimSubmissionDateRange$ = [3, n3, _PCSDR,
503
+ export var ProfessionalClaimSubmissionDateRange$ = [3, n2, _PCSDR,
396
504
  0,
397
505
  [_sta, _end],
398
506
  [0, 0]
399
507
  ];
400
- export var ProfessionalClaimSubmissionDrugIdentification$ = [3, n3, _PCSDI,
508
+ export var ProfessionalClaimSubmissionDrugIdentification$ = [3, n2, _PCSDI,
401
509
  0,
402
510
  [_nDC, _uC, _uOM, _aN, _oN],
403
511
  [0, 0, 0, () => ProfessionalClaimSubmissionPrescriptionOrCompoundDrugAssociationNumber$, 0], 3
404
512
  ];
405
- export var ProfessionalClaimSubmissionEncounter$ = [3, n3, _PCSEr,
513
+ export var ProfessionalClaimSubmissionEncounter$ = [3, n2, _PCSEr,
406
514
  0,
407
515
  [_pDC, _pPOS, _aDC, _pCa, _cC, _eRC, _cD, _rP, _pRP, _sP, _cNl, _at, _r, _rN],
408
516
  [0, 0, 64 | 0, () => ProfessionalClaimSubmissionPatientCondition$, 64 | 0, 64 | 0, () => ProfessionalClaimSubmissionClinicalDates$, [() => ProfessionalClaimSubmissionReferringProvider$, 0], [() => ProfessionalClaimSubmissionReferringProvider$, 0], [() => ProfessionalClaimSubmissionSupervisingProvider$, 0], [() => ProfessionalClaimSubmissionClaimNote$, 0], () => ProfessionalClaimSubmissionAttachmentList, () => ProfessionalClaimSubmissionResubmission$, () => ProfessionalClaimSubmissionReferenceNumbers$], 1
409
517
  ];
410
- export var ProfessionalClaimSubmissionInsured$ = [3, n3, _PCSI,
518
+ export var ProfessionalClaimSubmissionInsured$ = [3, n2, _PCSI,
411
519
  0,
412
520
  [_iTn, _n, _pRLC, _mI, _ad, _pOGN, _dOB, _g, _ss, _pCCN, _pNl],
413
521
  [0, [() => ProfessionalClaimSubmissionQualifiedName$, 0], 0, [() => ProfessionalClaimSubmissionMemberId, 0], [() => ProfessionalClaimSubmissionAddress$, 0], [() => ProfessionalClaimSubmissionPolicyOrGroupNumber, 0], [() => ProfessionalClaimSubmissionDateOfBirth, 0], [() => ProfessionalClaimSubmissionGenderCode, 0], [() => ProfessionalClaimSubmissionSsn, 0], [() => ProfessionalClaimSubmissionPropertyCasualtyClaimNumber, 0], [() => ProfessionalClaimSubmissionPlanName, 0]], 3
414
522
  ];
415
- export var ProfessionalClaimSubmissionOrderingProvider$ = [3, n3, _PCSOP,
523
+ export var ProfessionalClaimSubmissionOrderingProvider$ = [3, n2, _PCSOP,
416
524
  0,
417
525
  [_n, _ide],
418
526
  [[() => ProfessionalClaimSubmissionQualifiedPersonName$, 0], () => ProfessionalClaimSubmissionOrderingProviderIdentifiers$], 1
419
527
  ];
420
- export var ProfessionalClaimSubmissionOrderingProviderIdentifiers$ = [3, n3, _PCSOPI,
528
+ export var ProfessionalClaimSubmissionOrderingProviderIdentifiers$ = [3, n2, _PCSOPI,
421
529
  0,
422
530
  [_np, _sLN, _cN],
423
531
  [0, 0, 0]
424
532
  ];
425
- export var ProfessionalClaimSubmissionOtherInsured$ = [3, n3, _PCSOI,
533
+ export var ProfessionalClaimSubmissionOtherInsured$ = [3, n2, _PCSOI,
426
534
  0,
427
535
  [_n, _mI, _rL, _rTI, _cFI, _oP, _a, _ad, _pOGN, _pNl, _ss, _mSIT],
428
536
  [[() => ProfessionalClaimSubmissionQualifiedName$, 0], [() => ProfessionalClaimSubmissionMemberId, 0], 0, 0, 0, () => ProfessionalClaimSubmissionOtherPayer$, () => ProfessionalClaimSubmissionOtherInsuredAuthorization$, [() => ProfessionalClaimSubmissionAddress$, 0], [() => ProfessionalClaimSubmissionPolicyOrGroupNumber, 0], [() => ProfessionalClaimSubmissionPlanName, 0], [() => ProfessionalClaimSubmissionSsn, 0], 0], 7
429
537
  ];
430
- export var ProfessionalClaimSubmissionOtherInsuredAuthorization$ = [3, n3, _PCSOIA,
538
+ export var ProfessionalClaimSubmissionOtherInsuredAuthorization$ = [3, n2, _PCSOIA,
431
539
  0,
432
540
  [_iAA, _pRMI, _pGPS],
433
541
  [0, 0, 2], 2
434
542
  ];
435
- export var ProfessionalClaimSubmissionOtherPayer$ = [3, n3, _PCSOPr,
543
+ export var ProfessionalClaimSubmissionOtherPayer$ = [3, n2, _PCSOPr,
436
544
  0,
437
545
  [_n, _id],
438
546
  [() => ProfessionalClaimSubmissionQualifiedOrganizationName$, () => ProfessionalClaimSubmissionOtherPayerId$], 2
439
547
  ];
440
- export var ProfessionalClaimSubmissionPatient$ = [3, n3, _PCSP,
548
+ export var ProfessionalClaimSubmissionPatient$ = [3, n2, _PCSP,
441
549
  0,
442
550
  [_n, _dOB, _g, _ad, _rTI],
443
551
  [[() => ProfessionalClaimSubmissionQualifiedPersonName$, 0], [() => ProfessionalClaimSubmissionDateOfBirth, 0], [() => ProfessionalClaimSubmissionGenderCode, 0], [() => ProfessionalClaimSubmissionAddress$, 0], 0], 5
444
552
  ];
445
- export var ProfessionalClaimSubmissionPatientCondition$ = [3, n3, _PCSPC,
553
+ export var ProfessionalClaimSubmissionPatientCondition$ = [3, n2, _PCSPC,
446
554
  0,
447
555
  [_iER, _iAAR, _iOAR, _aAS],
448
556
  [2, 2, 2, 0]
449
557
  ];
450
- export var ProfessionalClaimSubmissionPayer$ = [3, n3, _PCSPr,
558
+ export var ProfessionalClaimSubmissionPayer$ = [3, n2, _PCSPr,
451
559
  0,
452
560
  [_id, _n, _ad, _rI],
453
561
  [0, () => ProfessionalClaimSubmissionQualifiedOrganizationName$, [() => ProfessionalClaimSubmissionAddress$, 0], 0], 1
454
562
  ];
455
- export var ProfessionalClaimSubmissionPersonName$ = [3, n3, _PCSPNro,
563
+ export var ProfessionalClaimSubmissionPersonName$ = [3, n2, _PCSPNro,
456
564
  8,
457
565
  [_lNa, _fNi, _mN, _suf],
458
566
  [0, 0, 0, 0], 1
459
567
  ];
460
- export var ProfessionalClaimSubmissionProcedureCode$ = [3, n3, _PCSPCr,
568
+ export var ProfessionalClaimSubmissionProcedureCode$ = [3, n2, _PCSPCr,
461
569
  0,
462
- [_co, _mo],
570
+ [_cod, _mo],
463
571
  [0, 64 | 0], 1
464
572
  ];
465
- export var ProfessionalClaimSubmissionReferenceNumbers$ = [3, n3, _PCSRN,
573
+ export var ProfessionalClaimSubmissionPurchasedService$ = [3, n2, _PCSPS,
574
+ 0,
575
+ [_cA, _pro],
576
+ [0, () => ProfessionalClaimSubmissionPurchasedServiceProvider$], 2
577
+ ];
578
+ export var ProfessionalClaimSubmissionPurchasedServiceProvider$ = [3, n2, _PCSPSP,
579
+ 0,
580
+ [_eT, _ide],
581
+ [0, () => ProfessionalClaimSubmissionPurchasedServiceProviderIdentifiers$], 2
582
+ ];
583
+ export var ProfessionalClaimSubmissionPurchasedServiceProviderIdentifiers$ = [3, n2, _PCSPSPI,
584
+ 0,
585
+ [_np],
586
+ [0], 1
587
+ ];
588
+ export var ProfessionalClaimSubmissionReferenceNumbers$ = [3, n2, _PCSRN,
466
589
  0,
467
590
  [_pAr, _re, _cl, _mC],
468
591
  [0, 0, 0, 0]
469
592
  ];
470
- export var ProfessionalClaimSubmissionReferringProvider$ = [3, n3, _PCSRP,
593
+ export var ProfessionalClaimSubmissionReferringProvider$ = [3, n2, _PCSRP,
471
594
  0,
472
595
  [_n, _ide],
473
596
  [[() => ProfessionalClaimSubmissionQualifiedPersonName$, 0], () => ProfessionalClaimSubmissionReferringProviderIdentifiers$], 1
474
597
  ];
475
- export var ProfessionalClaimSubmissionReferringProviderIdentifiers$ = [3, n3, _PCSRPI,
598
+ export var ProfessionalClaimSubmissionReferringProviderIdentifiers$ = [3, n2, _PCSRPI,
476
599
  0,
477
600
  [_np, _sLN, _cN],
478
601
  [0, 0, 0]
479
602
  ];
480
- export var ProfessionalClaimSubmissionRenderingProvider$ = [3, n3, _PCSRPr,
603
+ export var ProfessionalClaimSubmissionRenderingProvider$ = [3, n2, _PCSRPr,
481
604
  0,
482
605
  [_n, _ide],
483
606
  [[() => ProfessionalClaimSubmissionQualifiedName$, 0], () => ProfessionalClaimSubmissionRenderingProviderIdentifiers$], 1
484
607
  ];
485
- export var ProfessionalClaimSubmissionRenderingProviderIdentifiers$ = [3, n3, _PCSRPIr,
608
+ export var ProfessionalClaimSubmissionRenderingProviderIdentifiers$ = [3, n2, _PCSRPIr,
486
609
  0,
487
610
  [_np, _sLN, _cN, _lN, _tCa],
488
611
  [0, 0, 0, 0, 0]
489
612
  ];
490
- export var ProfessionalClaimSubmissionResubmission$ = [3, n3, _PCSR,
613
+ export var ProfessionalClaimSubmissionResubmission$ = [3, n2, _PCSR,
491
614
  0,
492
- [_co, _oRN],
615
+ [_cod, _oRN],
493
616
  [0, 0]
494
617
  ];
495
- export var ProfessionalClaimSubmissionServiceFacility$ = [3, n3, _PCSSF,
618
+ export var ProfessionalClaimSubmissionServiceFacility$ = [3, n2, _PCSSF,
496
619
  0,
497
620
  [_n, _ad, _ide],
498
621
  [() => ProfessionalClaimSubmissionQualifiedOrganizationName$, [() => ProfessionalClaimSubmissionAddress$, 0], () => ProfessionalClaimSubmissionServiceFacilityIdentifiers$], 2
499
622
  ];
500
- export var ProfessionalClaimSubmissionServiceFacilityIdentifiers$ = [3, n3, _PCSSFI,
623
+ export var ProfessionalClaimSubmissionServiceFacilityIdentifiers$ = [3, n2, _PCSSFI,
501
624
  0,
502
625
  [_np, _sLN, _cN, _lN],
503
626
  [0, 0, 0, 0]
504
627
  ];
505
- export var ProfessionalClaimSubmissionServiceLine$ = [3, n3, _PCSSL,
628
+ export var ProfessionalClaimSubmissionServiceLine$ = [3, n2, _PCSSL,
506
629
  0,
507
- [_dOS, _pCr, _dC, _lICA, _u, _pOS, _iE, _iERs, _iFP, _rPe, _oPr, _lICN, _dI, _nFUC, _at, _pAri],
508
- [() => ProfessionalClaimSubmissionDateRange$, () => ProfessionalClaimSubmissionProcedureCode$, 64 | 0, 0, 0, 0, 2, 2, 2, [() => ProfessionalClaimSubmissionRenderingProvider$, 0], [() => ProfessionalClaimSubmissionOrderingProvider$, 0], 0, () => ProfessionalClaimSubmissionDrugIdentification$, 0, () => ProfessionalClaimSubmissionAttachmentList, () => ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumbers], 5
630
+ [_dOS, _pCr, _dC, _lICA, _u, _pOS, _iE, _iERs, _iFP, _rPe, _oPr, _pSu, _lICN, _dI, _nFUC, _at, _pAri],
631
+ [() => ProfessionalClaimSubmissionDateRange$, () => ProfessionalClaimSubmissionProcedureCode$, 64 | 0, 0, 0, 0, 2, 2, 2, [() => ProfessionalClaimSubmissionRenderingProvider$, 0], [() => ProfessionalClaimSubmissionOrderingProvider$, 0], () => ProfessionalClaimSubmissionPurchasedService$, 0, () => ProfessionalClaimSubmissionDrugIdentification$, 0, () => ProfessionalClaimSubmissionAttachmentList, () => ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumbers], 5
509
632
  ];
510
- export var ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumber$ = [3, n3, _PCSSLPAN,
633
+ export var ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumber$ = [3, n2, _PCSSLPAN,
511
634
  0,
512
635
  [_pAN, _oPPI],
513
636
  [0, 0], 1
514
637
  ];
515
- export var ProfessionalClaimSubmissionSubmitter$ = [3, n3, _PCSSr,
638
+ export var ProfessionalClaimSubmissionSubmitter$ = [3, n2, _PCSSr,
516
639
  0,
517
- [_n, _con, _et],
640
+ [_n, _co, _et],
518
641
  [[() => ProfessionalClaimSubmissionQualifiedName$, 0], [() => ProfessionalClaimSubmissionContact$, 0], 0], 1
519
642
  ];
520
- export var ProfessionalClaimSubmissionSupervisingProvider$ = [3, n3, _PCSSP,
643
+ export var ProfessionalClaimSubmissionSupervisingProvider$ = [3, n2, _PCSSP,
521
644
  0,
522
645
  [_n, _ide],
523
646
  [[() => ProfessionalClaimSubmissionQualifiedPersonName$, 0], () => ProfessionalClaimSubmissionSupervisingProviderIdentifiers$], 1
524
647
  ];
525
- export var ProfessionalClaimSubmissionSupervisingProviderIdentifiers$ = [3, n3, _PCSSPI,
648
+ export var ProfessionalClaimSubmissionSupervisingProviderIdentifiers$ = [3, n2, _PCSSPI,
526
649
  0,
527
650
  [_np, _sLN, _cN, _lN],
528
651
  [0, 0, 0, 0]
529
652
  ];
530
- export var ValidateProfessionalClaimSubmissionInput$ = [3, n3, _VPCSI,
653
+ export var ValidateProfessionalClaimSubmissionInput$ = [3, n2, _VPCSI,
531
654
  0,
532
655
  [_p, _pa, _su, _i, _a, _en, _b, _sL, _pat, _oI],
533
656
  [0, [() => ProfessionalClaimSubmissionPayer$, 0], [() => ProfessionalClaimSubmissionSubmitter$, 0], [() => ProfessionalClaimSubmissionInsured$, 0], () => ProfessionalClaimSubmissionAuthorization$, [() => ProfessionalClaimSubmissionEncounter$, 0], [() => ProfessionalClaimSubmissionBilling$, 0], [() => ProfessionalClaimSubmissionServiceLines, 0], [() => ProfessionalClaimSubmissionPatient$, 0], [() => ProfessionalClaimSubmissionOtherInsuredList, 0]], 8
534
657
  ];
535
- export var ValidateProfessionalClaimSubmissionOutput$ = [3, n3, _VPCSO,
658
+ export var ValidateProfessionalClaimSubmissionOutput$ = [3, n2, _VPCSO,
659
+ 0,
660
+ [_er],
661
+ [() => ClaimRejectionErrors]
662
+ ];
663
+ export var ClaimDateRange$ = [3, n4, _CDR,
664
+ 0,
665
+ [_sta, _end],
666
+ [0, 0], 1
667
+ ];
668
+ export var ClaimAcknowledgmentSummary$ = [3, n5, _CAS,
669
+ 0,
670
+ [_id, _stat, _rB, _sN, _pA],
671
+ [0, 0, 0, 0, 5], 5
672
+ ];
673
+ export var ClaimPatientName$ = [3, n5, _CPN,
674
+ 0,
675
+ [_fNi, _mN, _lNa, _suf],
676
+ [0, 0, 0, 0]
677
+ ];
678
+ export var ClaimPaymentInformationSummary$ = [3, n5, _CPIS,
679
+ 0,
680
+ [_id, _sC, _tCCA, _cPA, _pA, _pRA, _cOETN],
681
+ [0, 0, 0, 0, 5, 0, 0], 5
682
+ ];
683
+ export var ClaimSubmissionSummary$ = [3, n5, _CSS,
684
+ 0,
685
+ [_id, _pCN, _tCCA, _pA, _sPI, _pNa, _dOS],
686
+ [0, 0, 0, 5, 0, () => ClaimPatientName$, () => ClaimDateRange$], 4
687
+ ];
688
+ export var ClaimSummary$ = [3, n5, _CS,
689
+ 0,
690
+ [_id, _pCN, _stat, _sRB, _t, _tCCA, _sA, _sPI, _pNa, _tCPA, _dOS],
691
+ [0, 0, 0, 0, 0, 0, 5, 0, () => ClaimPatientName$, 0, () => ClaimDateRange$], 7
692
+ ];
693
+ export var GetClaimInput$ = [3, n5, _GCI,
694
+ 0,
695
+ [_id],
696
+ [[0, 1]], 1
697
+ ];
698
+ export var GetClaimOutput$ = [3, n5, _GCO,
699
+ 0,
700
+ [_id, _pCN, _stat, _sRB, _t, _tCCA, _sA, _sPI, _pNa, _tCPA, _dOS],
701
+ [0, 0, 0, 0, 0, 0, 5, 0, () => ClaimPatientName$, 0, () => ClaimDateRange$], 7
702
+ ];
703
+ export var GetClaimTimelineInput$ = [3, n5, _GCTI,
704
+ 0,
705
+ [_id, _pSa, _pT],
706
+ [[0, 1], [1, { [_hQ]: _pSa }], [0, { [_hQ]: _pT }]], 1
707
+ ];
708
+ export var GetClaimTimelineOutput$ = [3, n5, _GCTO,
709
+ 0,
710
+ [_it, _nPT],
711
+ [() => ClaimTimelineEvents, 0], 1
712
+ ];
713
+ export var ListClaimsInput$ = [3, n5, _LCI,
714
+ 0,
715
+ [_pSa, _pT, _stat, _pCNa, _sAu, _sB],
716
+ [[1, { [_hQ]: _pSa }], [0, { [_hQ]: _pT }], [64 | 0, { [_hQ]: _stat }], [64 | 0, { [_hQ]: _pCNa }], [5, { [_hQ]: _sAu }], [5, { [_hQ]: _sB }]]
717
+ ];
718
+ export var ListClaimsOutput$ = [3, n5, _LCO,
719
+ 0,
720
+ [_it, _nPT],
721
+ [() => ClaimSummaries, 0], 1
722
+ ];
723
+ export var CreateEventDestinationInput$ = [3, n0, _CEDI,
724
+ 0,
725
+ [_n, _eTv, _dU, _d, _cL, _stat, _iK],
726
+ [0, 64 | 0, 0, 0, 1, 0, [0, { [_hH]: _IK, [_iTd]: 1 }]], 3
727
+ ];
728
+ export var CreateEventDestinationOutput$ = [3, n0, _CEDO,
729
+ 0,
730
+ [_id, _cAr, _uA, _stat, _n, _d, _eTv, _dU, _sS, _lDT, _cL],
731
+ [0, 5, 5, 0, 0, 0, 64 | 0, 0, [() => EventDestinationsSigningSecret, 0], 5, 1], 9
732
+ ];
733
+ export var DeleteEventDestinationInput$ = [3, n0, _DEDI,
734
+ 0,
735
+ [_dIe, _iK],
736
+ [[0, 1], [0, { [_hH]: _IK, [_iTd]: 1 }]], 1
737
+ ];
738
+ export var DeleteEventDestinationOutput$ = [3, n0, _DEDO,
536
739
  0,
537
740
  [],
538
741
  []
539
742
  ];
540
- export var ValidationFailure$ = [3, n2, _VF,
743
+ export var EventDestinationsDestinationSummary$ = [3, n0, _EDDS,
744
+ 0,
745
+ [_id, _cAr, _uA, _stat, _n, _d, _eTv, _dU, _lDT, _cL],
746
+ [0, 5, 5, 0, 0, 0, 64 | 0, 0, 5, 1], 8
747
+ ];
748
+ export var EventDestinationsEventPayloadResourceRef$ = [3, n0, _EDEPRR,
749
+ 0,
750
+ [_id, _t],
751
+ [0, 0], 2
752
+ ];
753
+ export var EventDestinationsEventSummary$ = [3, n0, _EDES,
754
+ 0,
755
+ [_id, _stat, _cAr, _eTve],
756
+ [0, 0, 5, 0], 4
757
+ ];
758
+ export var EventDestinationsV1EventPayload$ = [3, n0, _EDVEP,
759
+ 0,
760
+ [_o, _acc, _env, _cr, _res, _id, _t, _rRe],
761
+ [0, 0, 0, 5, () => EventDestinationsEventPayloadResourceRef$, 0, 0, () => EventDestinationsEventPayloadResourceRefList], 5
762
+ ];
763
+ export var GetEventDestinationEventInput$ = [3, n0, _GEDEI,
764
+ 0,
765
+ [_eI],
766
+ [[0, 1]], 1
767
+ ];
768
+ export var GetEventDestinationEventOutput$ = [3, n0, _GEDEO,
769
+ 0,
770
+ [_id, _stat, _cAr, _eTve, _eP],
771
+ [0, 0, 5, 0, () => EventDestinationsEventPayload$], 5
772
+ ];
773
+ export var GetEventDestinationInput$ = [3, n0, _GEDI,
774
+ 0,
775
+ [_dIe],
776
+ [[0, 1]], 1
777
+ ];
778
+ export var GetEventDestinationOutput$ = [3, n0, _GEDO,
779
+ 0,
780
+ [_id, _cAr, _uA, _stat, _n, _d, _eTv, _dU, _lDT, _cL],
781
+ [0, 5, 5, 0, 0, 0, 64 | 0, 0, 5, 1], 8
782
+ ];
783
+ export var GetEventDestinationSecretInput$ = [3, n0, _GEDSI,
784
+ 0,
785
+ [_dIe],
786
+ [[0, 1]], 1
787
+ ];
788
+ export var GetEventDestinationSecretOutput$ = [3, n0, _GEDSO,
789
+ 0,
790
+ [_sS, _pSEA],
791
+ [[() => EventDestinationsSigningSecret, 0], 5], 1
792
+ ];
793
+ export var ListEventDestinationEventsInput$ = [3, n0, _LEDEI,
794
+ 0,
795
+ [_pSa, _pT, _eI, _stat, _eTve, _cr],
796
+ [[1, { [_hQ]: _pSa }], [0, { [_hQ]: _pT }], [0, { [_hQ]: _eI }], [64 | 0, { [_hQ]: _stat }], [0, { [_hQ]: _eTve }], [64 | 0, { [_hQ]: _cr }]]
797
+ ];
798
+ export var ListEventDestinationEventsOutput$ = [3, n0, _LEDEO,
799
+ 0,
800
+ [_it, _nPT],
801
+ [() => EventDestinationsEventSummaryList, 0], 1
802
+ ];
803
+ export var ListEventDestinationsInput$ = [3, n0, _LEDI,
804
+ 0,
805
+ [_pSa, _pT, _stat, _eTve],
806
+ [[1, { [_hQ]: _pSa }], [0, { [_hQ]: _pT }], [0, { [_hQ]: _stat }], [0, { [_hQ]: _eTve }]]
807
+ ];
808
+ export var ListEventDestinationsOutput$ = [3, n0, _LEDO,
809
+ 0,
810
+ [_it, _nPT],
811
+ [() => EventDestinationsDestinationSummaryList, 0], 1
812
+ ];
813
+ export var RotateEventDestinationSecretInput$ = [3, n0, _REDSI,
814
+ 0,
815
+ [_dIe, _pSEH, _iK],
816
+ [[0, 1], 1, [0, { [_hH]: _IK, [_iTd]: 1 }]], 1
817
+ ];
818
+ export var RotateEventDestinationSecretOutput$ = [3, n0, _REDSO,
819
+ 0,
820
+ [_sS, _pSEA],
821
+ [[() => EventDestinationsSigningSecret, 0], 5], 1
822
+ ];
823
+ export var UpdateEventDestinationInput$ = [3, n0, _UEDI,
824
+ 0,
825
+ [_dIe, _n, _d, _eTv, _dU, _cL, _stat, _iK],
826
+ [[0, 1], 0, 0, 64 | 0, 0, 1, 0, [0, { [_hH]: _IK, [_iTd]: 1 }]], 1
827
+ ];
828
+ export var UpdateEventDestinationOutput$ = [3, n0, _UEDO,
829
+ 0,
830
+ [_id, _cAr, _uA, _stat, _n, _d, _eTv, _dU, _lDT, _cL],
831
+ [0, 5, 5, 0, 0, 0, 64 | 0, 0, 5, 1], 8
832
+ ];
833
+ export var ValidationFailure$ = [3, n1, _VF,
541
834
  0,
542
835
  [_m, _path],
543
836
  [0, 0], 1
544
837
  ];
545
- var ClaimEditErrors = [1, n0, _CEEla,
546
- 0, () => ClaimEditError$
838
+ var ClaimRejectionErrors = [1, n3, _CREl,
839
+ 0, () => ClaimRejectionError$
547
840
  ];
548
841
  var ProfessionalClaimSubmissionAdditionalDiagnosisCodes = 64 | 0;
549
- var ProfessionalClaimSubmissionAttachmentList = [1, n3, _PCSAL,
842
+ var ProfessionalClaimSubmissionAttachmentList = [1, n2, _PCSAL,
550
843
  0, () => ProfessionalClaimSubmissionAttachment$
551
844
  ];
552
845
  var ProfessionalClaimSubmissionClaimsCodeList = 64 | 0;
553
846
  var ProfessionalClaimSubmissionEPSDTReferralConditionIndicatorList = 64 | 0;
554
- var ProfessionalClaimSubmissionOtherInsuredList = [1, n3, _PCSOIL,
847
+ var ProfessionalClaimSubmissionOtherInsuredList = [1, n2, _PCSOIL,
555
848
  0, [() => ProfessionalClaimSubmissionOtherInsured$,
556
849
  0]
557
850
  ];
558
851
  var ProfessionalClaimSubmissionProcedureModifierList = 64 | 0;
559
852
  var ProfessionalClaimSubmissionServiceLineDiagnosisCodes = 64 | 0;
560
- var ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumbers = [1, n3, _PCSSLPANr,
853
+ var ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumbers = [1, n2, _PCSSLPANr,
561
854
  0, () => ProfessionalClaimSubmissionServiceLinePriorAuthorizationNumber$
562
855
  ];
563
- var ProfessionalClaimSubmissionServiceLines = [1, n3, _PCSSLr,
856
+ var ProfessionalClaimSubmissionServiceLines = [1, n2, _PCSSLr,
564
857
  0, [() => ProfessionalClaimSubmissionServiceLine$,
565
858
  0]
566
859
  ];
567
- var ValidationFailures = [1, n2, _VFa,
860
+ var ClaimPatientControlNumbersList = 64 | 0;
861
+ var ClaimStatusList = 64 | 0;
862
+ var ClaimSummaries = [1, n5, _CSl,
863
+ 0, () => ClaimSummary$
864
+ ];
865
+ var ClaimTimelineEvents = [1, n5, _CTE,
866
+ 0, () => ClaimTimelineEvent$
867
+ ];
868
+ var EventDestinationsDestinationSummaryList = [1, n0, _EDDSL,
869
+ 0, () => EventDestinationsDestinationSummary$
870
+ ];
871
+ var EventDestinationsEventPayloadResourceRefList = [1, n0, _EDEPRRL,
872
+ 0, () => EventDestinationsEventPayloadResourceRef$
873
+ ];
874
+ var EventDestinationsEventStatusList = 64 | 0;
875
+ var EventDestinationsEventSummaryList = [1, n0, _EDESL,
876
+ 0, () => EventDestinationsEventSummary$
877
+ ];
878
+ var EventDestinationsEventTypeList = 64 | 0;
879
+ var EventDestinationsTimestampFilter = 64 | 0;
880
+ var ValidationFailures = [1, n1, _VFa,
568
881
  0, () => ValidationFailure$
569
882
  ];
570
- export var ProfessionalClaimSubmissionClaimNote$ = [4, n3, _PCSCN,
883
+ export var ProfessionalClaimSubmissionClaimNote$ = [4, n2, _PCSCN,
571
884
  0,
572
885
  [_aId, _cNe, _gRODP, _dD, _tPO],
573
886
  [[() => ProfessionalClaimSubmissionClaimNoteText, 0], [() => ProfessionalClaimSubmissionClaimNoteText, 0], [() => ProfessionalClaimSubmissionClaimNoteText, 0], [() => ProfessionalClaimSubmissionClaimNoteText, 0], [() => ProfessionalClaimSubmissionClaimNoteText, 0]]
574
887
  ];
575
- export var ProfessionalClaimSubmissionOtherPayerId$ = [4, n3, _PCSOPIr,
888
+ export var ProfessionalClaimSubmissionOtherPayerId$ = [4, n2, _PCSOPIr,
576
889
  0,
577
890
  [_pI, _cPI],
578
891
  [0, 0]
579
892
  ];
580
- export var ProfessionalClaimSubmissionPrescriptionOrCompoundDrugAssociationNumber$ = [4, n3, _PCSPOCDAN,
893
+ export var ProfessionalClaimSubmissionPrescriptionOrCompoundDrugAssociationNumber$ = [4, n2, _PCSPOCDAN,
581
894
  0,
582
895
  [_lSN, _pPN],
583
896
  [0, 0]
584
897
  ];
585
- export var ProfessionalClaimSubmissionQualifiedName$ = [4, n3, _PCSQN,
898
+ export var ProfessionalClaimSubmissionQualifiedName$ = [4, n2, _PCSQN,
586
899
  0,
587
- [_o, _pe],
900
+ [_or, _pe],
588
901
  [0, [() => ProfessionalClaimSubmissionPersonName$, 0]]
589
902
  ];
590
- export var ProfessionalClaimSubmissionQualifiedOrganizationName$ = [4, n3, _PCSQON,
903
+ export var ProfessionalClaimSubmissionQualifiedOrganizationName$ = [4, n2, _PCSQON,
591
904
  0,
592
- [_o],
905
+ [_or],
593
906
  [0]
594
907
  ];
595
- export var ProfessionalClaimSubmissionQualifiedPersonName$ = [4, n3, _PCSQPN,
908
+ export var ProfessionalClaimSubmissionQualifiedPersonName$ = [4, n2, _PCSQPN,
596
909
  0,
597
910
  [_pe],
598
911
  [[() => ProfessionalClaimSubmissionPersonName$, 0]]
599
912
  ];
600
- export var ProfessionalClaimSubmissionTaxId$ = [4, n3, _PCSTI,
913
+ export var ProfessionalClaimSubmissionTaxId$ = [4, n2, _PCSTI,
601
914
  0,
602
915
  [_ss, _ei],
603
916
  [[() => ProfessionalClaimSubmissionSsn, 0], 0]
604
917
  ];
605
- export var CreateProfessionalClaimSubmission$ = [9, n3, _CPCS,
918
+ export var ClaimTimelineEvent$ = [4, n5, _CTEl,
919
+ 0,
920
+ [_pCS, _dCS, _iCS, _cAl, _cPIl],
921
+ [() => ClaimSubmissionSummary$, () => ClaimSubmissionSummary$, () => ClaimSubmissionSummary$, () => ClaimAcknowledgmentSummary$, () => ClaimPaymentInformationSummary$]
922
+ ];
923
+ export var EventDestinationsEventPayload$ = [4, n0, _EDEP,
924
+ 0,
925
+ [_vE],
926
+ [() => EventDestinationsV1EventPayload$]
927
+ ];
928
+ export var CreateProfessionalClaimSubmission$ = [9, n2, _CPCS,
606
929
  { [_ht]: ["POST", "/2025-03-07/professional-claim-submissions", 201] }, () => CreateProfessionalClaimSubmissionInput$, () => CreateProfessionalClaimSubmissionOutput$
607
930
  ];
608
- export var GetProfessionalClaimSubmission$ = [9, n3, _GPCS,
931
+ export var GetProfessionalClaimSubmission$ = [9, n2, _GPCS,
609
932
  { [_ht]: ["GET", "/2025-03-07/professional-claim-submissions/{id}", 200] }, () => GetProfessionalClaimSubmissionInput$, () => GetProfessionalClaimSubmissionOutput$
610
933
  ];
611
- export var ValidateProfessionalClaimSubmission$ = [9, n3, _VPCS,
934
+ export var ValidateProfessionalClaimSubmission$ = [9, n2, _VPCS,
612
935
  { [_ht]: ["POST", "/2025-03-07/professional-claim-submissions/validate", 200] }, () => ValidateProfessionalClaimSubmissionInput$, () => ValidateProfessionalClaimSubmissionOutput$
613
936
  ];
937
+ export var GetClaim$ = [9, n5, _GC,
938
+ { [_ht]: ["GET", "/2025-03-07/claims/{id}", 200] }, () => GetClaimInput$, () => GetClaimOutput$
939
+ ];
940
+ export var GetClaimTimeline$ = [9, n5, _GCT,
941
+ { [_ht]: ["GET", "/2025-03-07/claims/{id}/timeline", 200] }, () => GetClaimTimelineInput$, () => GetClaimTimelineOutput$
942
+ ];
943
+ export var ListClaims$ = [9, n5, _LC,
944
+ { [_ht]: ["GET", "/2025-03-07/claims", 200] }, () => ListClaimsInput$, () => ListClaimsOutput$
945
+ ];
946
+ export var CreateEventDestination$ = [9, n0, _CED,
947
+ { [_ht]: ["POST", "/2026-02-01/destinations", 201] }, () => CreateEventDestinationInput$, () => CreateEventDestinationOutput$
948
+ ];
949
+ export var DeleteEventDestination$ = [9, n0, _DED,
950
+ { [_ht]: ["DELETE", "/2026-02-01/destinations/{destinationId}", 204] }, () => DeleteEventDestinationInput$, () => DeleteEventDestinationOutput$
951
+ ];
952
+ export var GetEventDestination$ = [9, n0, _GED,
953
+ { [_ht]: ["GET", "/2026-02-01/destinations/{destinationId}", 200] }, () => GetEventDestinationInput$, () => GetEventDestinationOutput$
954
+ ];
955
+ export var GetEventDestinationEvent$ = [9, n0, _GEDE,
956
+ { [_ht]: ["GET", "/2026-02-01/events/{eventId}", 200] }, () => GetEventDestinationEventInput$, () => GetEventDestinationEventOutput$
957
+ ];
958
+ export var GetEventDestinationSecret$ = [9, n0, _GEDS,
959
+ { [_ht]: ["GET", "/2026-02-01/destinations/{destinationId}/secret", 200] }, () => GetEventDestinationSecretInput$, () => GetEventDestinationSecretOutput$
960
+ ];
961
+ export var ListEventDestinationEvents$ = [9, n0, _LEDE,
962
+ { [_ht]: ["GET", "/2026-02-01/events", 200] }, () => ListEventDestinationEventsInput$, () => ListEventDestinationEventsOutput$
963
+ ];
964
+ export var ListEventDestinations$ = [9, n0, _LED,
965
+ { [_ht]: ["GET", "/2026-02-01/destinations", 200] }, () => ListEventDestinationsInput$, () => ListEventDestinationsOutput$
966
+ ];
967
+ export var RotateEventDestinationSecret$ = [9, n0, _REDS,
968
+ { [_ht]: ["POST", "/2026-02-01/destinations/{destinationId}/secret/rotate", 200] }, () => RotateEventDestinationSecretInput$, () => RotateEventDestinationSecretOutput$
969
+ ];
970
+ export var UpdateEventDestination$ = [9, n0, _UED,
971
+ { [_ht]: ["POST", "/2026-02-01/destinations/{destinationId}", 200] }, () => UpdateEventDestinationInput$, () => UpdateEventDestinationOutput$
972
+ ];