@stedi/sdk 0.0.4 → 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.
- package/CHANGELOG.md +3 -0
- package/LICENSE +13 -12
- package/README.md +148 -33
- package/dist-cjs/Stedi.js +51 -0
- package/dist-cjs/StediClient.js +52 -0
- package/dist-cjs/{generated/payers/auth → auth}/httpAuthExtensionConfiguration.js +8 -7
- package/dist-cjs/auth/httpAuthSchemeProvider.js +48 -0
- package/dist-cjs/commandBuilder.js +15 -0
- package/dist-cjs/commands/CreateEventDestinationCommand.js +8 -0
- package/dist-cjs/commands/CreateProfessionalClaimSubmissionCommand.js +8 -0
- package/dist-cjs/commands/DeleteEventDestinationCommand.js +8 -0
- package/dist-cjs/commands/GetClaimCommand.js +8 -0
- package/dist-cjs/commands/GetClaimTimelineCommand.js +8 -0
- package/dist-cjs/commands/GetEventDestinationCommand.js +8 -0
- package/dist-cjs/commands/GetEventDestinationEventCommand.js +8 -0
- package/dist-cjs/commands/GetEventDestinationSecretCommand.js +8 -0
- package/dist-cjs/commands/GetProfessionalClaimSubmissionCommand.js +8 -0
- package/dist-cjs/commands/ListClaimsCommand.js +8 -0
- package/dist-cjs/commands/ListEventDestinationEventsCommand.js +8 -0
- package/dist-cjs/commands/ListEventDestinationsCommand.js +8 -0
- package/dist-cjs/commands/RotateEventDestinationSecretCommand.js +8 -0
- package/dist-cjs/commands/UpdateEventDestinationCommand.js +8 -0
- package/dist-cjs/commands/ValidateProfessionalClaimSubmissionCommand.js +8 -0
- package/dist-cjs/commands/index.js +18 -0
- package/dist-cjs/{generated/claims/endpoint → endpoint}/EndpointParameters.js +1 -8
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/{generated/payers/models/models_0.js → extensionConfiguration.js} +0 -1
- package/dist-cjs/index.js +14 -72
- package/dist-cjs/middleware/stediUserAgentMiddleware.js +24 -0
- package/dist-cjs/models/StediServiceException.js +12 -0
- package/dist-cjs/models/enums.js +248 -0
- package/dist-cjs/models/errors.js +127 -0
- package/dist-cjs/{generated/claims/models → models}/models_0.js +0 -1
- package/dist-cjs/pagination/GetClaimTimelinePaginator.js +7 -0
- package/dist-cjs/{generated/payers/pagination → pagination}/Interfaces.js +0 -1
- package/dist-cjs/pagination/ListClaimsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEventDestinationEventsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEventDestinationsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocol/stediRestJsonProtocol.js +53 -0
- package/dist-cjs/runtimeConfig.browser.js +30 -0
- package/dist-cjs/runtimeConfig.js +40 -0
- package/dist-cjs/{generated/claims/runtimeConfig.native.js → runtimeConfig.native.js} +0 -7
- package/dist-cjs/{generated/claims/runtimeConfig.shared.js → runtimeConfig.shared.js} +20 -20
- package/dist-cjs/runtimeExtensions.js +12 -0
- package/dist-cjs/schemas/schemas_0.js +977 -0
- package/dist-es/Stedi.js +47 -0
- package/dist-es/StediClient.js +48 -0
- package/dist-es/{generated/claims/auth → auth}/httpAuthExtensionConfiguration.js +8 -7
- package/dist-es/{generated/payers/auth → auth}/httpAuthSchemeProvider.js +11 -14
- package/dist-es/commandBuilder.js +11 -0
- package/dist-es/commands/CreateEventDestinationCommand.js +4 -0
- package/dist-es/commands/CreateProfessionalClaimSubmissionCommand.js +4 -0
- package/dist-es/commands/DeleteEventDestinationCommand.js +4 -0
- package/dist-es/commands/GetClaimCommand.js +4 -0
- package/dist-es/commands/GetClaimTimelineCommand.js +4 -0
- package/dist-es/commands/GetEventDestinationCommand.js +4 -0
- package/dist-es/commands/GetEventDestinationEventCommand.js +4 -0
- package/dist-es/commands/GetEventDestinationSecretCommand.js +4 -0
- package/dist-es/commands/GetProfessionalClaimSubmissionCommand.js +4 -0
- package/dist-es/commands/ListClaimsCommand.js +4 -0
- package/dist-es/commands/ListEventDestinationEventsCommand.js +4 -0
- package/dist-es/commands/ListEventDestinationsCommand.js +4 -0
- package/dist-es/commands/RotateEventDestinationSecretCommand.js +4 -0
- package/dist-es/commands/UpdateEventDestinationCommand.js +4 -0
- package/dist-es/commands/ValidateProfessionalClaimSubmissionCommand.js +4 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/{generated/payers/endpoint → endpoint}/EndpointParameters.js +1 -8
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -37
- package/dist-es/middleware/stediUserAgentMiddleware.js +20 -0
- package/dist-es/models/StediServiceException.js +8 -0
- package/dist-es/models/enums.js +245 -0
- package/dist-es/models/errors.js +115 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/GetClaimTimelinePaginator.js +4 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListClaimsPaginator.js +4 -0
- package/dist-es/pagination/ListEventDestinationEventsPaginator.js +4 -0
- package/dist-es/pagination/ListEventDestinationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocol/stediRestJsonProtocol.js +49 -0
- package/dist-es/runtimeConfig.browser.js +25 -0
- package/dist-es/runtimeConfig.js +35 -0
- package/dist-es/{generated/payers/runtimeConfig.native.js → runtimeConfig.native.js} +0 -7
- package/dist-es/{generated/payers/runtimeConfig.shared.js → runtimeConfig.shared.js} +16 -16
- package/dist-es/runtimeExtensions.js +8 -0
- package/dist-es/schemas/schemas_0.js +972 -0
- package/dist-types/Stedi.d.ts +146 -0
- package/dist-types/{generated/payers/PayersClient.d.ts → StediClient.d.ts} +33 -39
- package/dist-types/{generated/payers/auth → auth}/httpAuthExtensionConfiguration.d.ts +8 -6
- package/dist-types/{generated/claims/auth → auth}/httpAuthSchemeProvider.d.ts +17 -10
- package/dist-types/commandBuilder.d.ts +22 -0
- package/dist-types/commands/CreateEventDestinationCommand.d.ts +146 -0
- package/dist-types/commands/CreateProfessionalClaimSubmissionCommand.d.ts +799 -0
- package/dist-types/commands/DeleteEventDestinationCommand.d.ts +105 -0
- package/dist-types/commands/GetClaimCommand.d.ts +139 -0
- package/dist-types/commands/GetClaimTimelineCommand.d.ts +218 -0
- package/dist-types/commands/GetEventDestinationCommand.d.ts +124 -0
- package/dist-types/commands/GetEventDestinationEventCommand.d.ts +141 -0
- package/dist-types/commands/GetEventDestinationSecretCommand.d.ts +105 -0
- package/dist-types/commands/GetProfessionalClaimSubmissionCommand.d.ts +785 -0
- package/dist-types/commands/ListClaimsCommand.d.ts +169 -0
- package/dist-types/commands/ListEventDestinationEventsCommand.d.ts +120 -0
- package/dist-types/commands/ListEventDestinationsCommand.d.ts +132 -0
- package/dist-types/commands/RotateEventDestinationSecretCommand.d.ts +113 -0
- package/dist-types/commands/UpdateEventDestinationCommand.d.ts +142 -0
- package/dist-types/commands/ValidateProfessionalClaimSubmissionCommand.d.ts +786 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/{generated/payers/endpoint → endpoint}/EndpointParameters.d.ts +1 -1
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/{generated/claims/endpoint → endpoint}/endpointResolver.d.ts +0 -1
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +18 -34
- package/dist-types/middleware/stediUserAgentMiddleware.d.ts +5 -0
- package/dist-types/models/StediServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +1038 -0
- package/dist-types/models/errors.d.ts +120 -0
- package/dist-types/models/models_0.d.ts +2966 -0
- package/dist-types/pagination/GetClaimTimelinePaginator.d.ts +7 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListClaimsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEventDestinationEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEventDestinationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocol/stediRestJsonProtocol.d.ts +12 -0
- package/dist-types/{generated/claims/runtimeConfig.browser.d.ts → runtimeConfig.browser.d.ts} +18 -16
- package/dist-types/{generated/payers/runtimeConfig.d.ts → runtimeConfig.d.ts} +18 -16
- package/dist-types/{generated/payers/runtimeConfig.native.d.ts → runtimeConfig.native.d.ts} +18 -16
- package/dist-types/{generated/claims/runtimeConfig.shared.d.ts → runtimeConfig.shared.d.ts} +13 -10
- package/dist-types/{generated/claims/runtimeExtensions.d.ts → runtimeExtensions.d.ts} +2 -3
- package/dist-types/schemas/schemas_0.d.ts +123 -0
- package/package.json +60 -79
- package/dist-cjs/_registry.js +0 -47
- package/dist-cjs/_registry.js.map +0 -1
- package/dist-cjs/generated/claims/Claims.js +0 -19
- package/dist-cjs/generated/claims/Claims.js.map +0 -1
- package/dist-cjs/generated/claims/ClaimsClient.js +0 -68
- package/dist-cjs/generated/claims/ClaimsClient.js.map +0 -1
- package/dist-cjs/generated/claims/auth/httpAuthExtensionConfiguration.js +0 -50
- package/dist-cjs/generated/claims/auth/httpAuthExtensionConfiguration.js.map +0 -1
- package/dist-cjs/generated/claims/auth/httpAuthSchemeProvider.js +0 -51
- package/dist-cjs/generated/claims/auth/httpAuthSchemeProvider.js.map +0 -1
- package/dist-cjs/generated/claims/commands/ClaimsCms1500SubmissionCommand.js +0 -494
- package/dist-cjs/generated/claims/commands/ClaimsCms1500SubmissionCommand.js.map +0 -1
- package/dist-cjs/generated/claims/commands/index.js +0 -19
- package/dist-cjs/generated/claims/commands/index.js.map +0 -1
- package/dist-cjs/generated/claims/endpoint/EndpointParameters.js.map +0 -1
- package/dist-cjs/generated/claims/endpoint/bdd.js +0 -24
- package/dist-cjs/generated/claims/endpoint/bdd.js.map +0 -1
- package/dist-cjs/generated/claims/endpoint/endpointResolver.js +0 -23
- package/dist-cjs/generated/claims/endpoint/endpointResolver.js.map +0 -1
- package/dist-cjs/generated/claims/extensionConfiguration.js +0 -3
- package/dist-cjs/generated/claims/extensionConfiguration.js.map +0 -1
- package/dist-cjs/generated/claims/index.js +0 -34
- package/dist-cjs/generated/claims/index.js.map +0 -1
- package/dist-cjs/generated/claims/models/ClaimsServiceException.js +0 -22
- package/dist-cjs/generated/claims/models/ClaimsServiceException.js.map +0 -1
- package/dist-cjs/generated/claims/models/enums.js +0 -591
- package/dist-cjs/generated/claims/models/enums.js.map +0 -1
- package/dist-cjs/generated/claims/models/errors.js +0 -31
- package/dist-cjs/generated/claims/models/errors.js.map +0 -1
- package/dist-cjs/generated/claims/models/models_0.js.map +0 -1
- package/dist-cjs/generated/claims/runtimeConfig.browser.js +0 -45
- package/dist-cjs/generated/claims/runtimeConfig.browser.js.map +0 -1
- package/dist-cjs/generated/claims/runtimeConfig.js +0 -60
- package/dist-cjs/generated/claims/runtimeConfig.js.map +0 -1
- package/dist-cjs/generated/claims/runtimeConfig.native.js.map +0 -1
- package/dist-cjs/generated/claims/runtimeConfig.shared.js.map +0 -1
- package/dist-cjs/generated/claims/runtimeExtensions.js +0 -18
- package/dist-cjs/generated/claims/runtimeExtensions.js.map +0 -1
- package/dist-cjs/generated/claims/schemas/schemas_0.js +0 -507
- package/dist-cjs/generated/claims/schemas/schemas_0.js.map +0 -1
- package/dist-cjs/generated/payers/Payers.js +0 -23
- package/dist-cjs/generated/payers/Payers.js.map +0 -1
- package/dist-cjs/generated/payers/PayersClient.js +0 -68
- package/dist-cjs/generated/payers/PayersClient.js.map +0 -1
- package/dist-cjs/generated/payers/auth/httpAuthExtensionConfiguration.js.map +0 -1
- package/dist-cjs/generated/payers/auth/httpAuthSchemeProvider.js +0 -51
- package/dist-cjs/generated/payers/auth/httpAuthSchemeProvider.js.map +0 -1
- package/dist-cjs/generated/payers/commands/SearchPayersCommand.js +0 -753
- package/dist-cjs/generated/payers/commands/SearchPayersCommand.js.map +0 -1
- package/dist-cjs/generated/payers/commands/index.js +0 -19
- package/dist-cjs/generated/payers/commands/index.js.map +0 -1
- package/dist-cjs/generated/payers/endpoint/EndpointParameters.js +0 -19
- package/dist-cjs/generated/payers/endpoint/EndpointParameters.js.map +0 -1
- package/dist-cjs/generated/payers/endpoint/bdd.js +0 -24
- package/dist-cjs/generated/payers/endpoint/bdd.js.map +0 -1
- package/dist-cjs/generated/payers/endpoint/endpointResolver.js +0 -23
- package/dist-cjs/generated/payers/endpoint/endpointResolver.js.map +0 -1
- package/dist-cjs/generated/payers/extensionConfiguration.js +0 -3
- package/dist-cjs/generated/payers/extensionConfiguration.js.map +0 -1
- package/dist-cjs/generated/payers/index.js +0 -35
- package/dist-cjs/generated/payers/index.js.map +0 -1
- package/dist-cjs/generated/payers/models/PayersServiceException.js +0 -22
- package/dist-cjs/generated/payers/models/PayersServiceException.js.map +0 -1
- package/dist-cjs/generated/payers/models/enums.js +0 -333
- package/dist-cjs/generated/payers/models/enums.js.map +0 -1
- package/dist-cjs/generated/payers/models/errors.js +0 -86
- package/dist-cjs/generated/payers/models/errors.js.map +0 -1
- package/dist-cjs/generated/payers/models/models_0.js.map +0 -1
- package/dist-cjs/generated/payers/pagination/Interfaces.js.map +0 -1
- package/dist-cjs/generated/payers/pagination/SearchPayersPaginator.js +0 -12
- package/dist-cjs/generated/payers/pagination/SearchPayersPaginator.js.map +0 -1
- package/dist-cjs/generated/payers/pagination/index.js +0 -20
- package/dist-cjs/generated/payers/pagination/index.js.map +0 -1
- package/dist-cjs/generated/payers/runtimeConfig.browser.js +0 -45
- package/dist-cjs/generated/payers/runtimeConfig.browser.js.map +0 -1
- package/dist-cjs/generated/payers/runtimeConfig.js +0 -60
- package/dist-cjs/generated/payers/runtimeConfig.js.map +0 -1
- package/dist-cjs/generated/payers/runtimeConfig.native.js +0 -20
- package/dist-cjs/generated/payers/runtimeConfig.native.js.map +0 -1
- package/dist-cjs/generated/payers/runtimeConfig.shared.js +0 -48
- package/dist-cjs/generated/payers/runtimeConfig.shared.js.map +0 -1
- package/dist-cjs/generated/payers/runtimeExtensions.js +0 -18
- package/dist-cjs/generated/payers/runtimeExtensions.js.map +0 -1
- package/dist-cjs/generated/payers/schemas/schemas_0.js +0 -231
- package/dist-cjs/generated/payers/schemas/schemas_0.js.map +0 -1
- package/dist-cjs/index.js.map +0 -1
- package/dist-es/_registry.js +0 -11
- package/dist-es/_registry.js.map +0 -1
- package/dist-es/generated/claims/Claims.js +0 -15
- package/dist-es/generated/claims/Claims.js.map +0 -1
- package/dist-es/generated/claims/ClaimsClient.js +0 -64
- package/dist-es/generated/claims/ClaimsClient.js.map +0 -1
- package/dist-es/generated/claims/auth/httpAuthExtensionConfiguration.js.map +0 -1
- package/dist-es/generated/claims/auth/httpAuthSchemeProvider.js +0 -45
- package/dist-es/generated/claims/auth/httpAuthSchemeProvider.js.map +0 -1
- package/dist-es/generated/claims/commands/ClaimsCms1500SubmissionCommand.js +0 -490
- package/dist-es/generated/claims/commands/ClaimsCms1500SubmissionCommand.js.map +0 -1
- package/dist-es/generated/claims/commands/index.js +0 -3
- package/dist-es/generated/claims/commands/index.js.map +0 -1
- package/dist-es/generated/claims/endpoint/EndpointParameters.js +0 -15
- package/dist-es/generated/claims/endpoint/EndpointParameters.js.map +0 -1
- package/dist-es/generated/claims/endpoint/bdd.js +0 -21
- package/dist-es/generated/claims/endpoint/bdd.js.map +0 -1
- package/dist-es/generated/claims/endpoint/endpointResolver.js +0 -19
- package/dist-es/generated/claims/endpoint/endpointResolver.js.map +0 -1
- package/dist-es/generated/claims/extensionConfiguration.js +0 -2
- package/dist-es/generated/claims/extensionConfiguration.js.map +0 -1
- package/dist-es/generated/claims/index.js +0 -16
- package/dist-es/generated/claims/index.js.map +0 -1
- package/dist-es/generated/claims/models/ClaimsServiceException.js +0 -18
- package/dist-es/generated/claims/models/ClaimsServiceException.js.map +0 -1
- package/dist-es/generated/claims/models/enums.js +0 -588
- package/dist-es/generated/claims/models/enums.js.map +0 -1
- package/dist-es/generated/claims/models/errors.js +0 -27
- package/dist-es/generated/claims/models/errors.js.map +0 -1
- package/dist-es/generated/claims/models/models_0.js +0 -2
- package/dist-es/generated/claims/models/models_0.js.map +0 -1
- package/dist-es/generated/claims/runtimeConfig.browser.js +0 -38
- package/dist-es/generated/claims/runtimeConfig.browser.js.map +0 -1
- package/dist-es/generated/claims/runtimeConfig.js +0 -53
- package/dist-es/generated/claims/runtimeConfig.js.map +0 -1
- package/dist-es/generated/claims/runtimeConfig.native.js +0 -16
- package/dist-es/generated/claims/runtimeConfig.native.js.map +0 -1
- package/dist-es/generated/claims/runtimeConfig.shared.js +0 -44
- package/dist-es/generated/claims/runtimeConfig.shared.js.map +0 -1
- package/dist-es/generated/claims/runtimeExtensions.js +0 -14
- package/dist-es/generated/claims/runtimeExtensions.js.map +0 -1
- package/dist-es/generated/claims/schemas/schemas_0.js +0 -503
- package/dist-es/generated/claims/schemas/schemas_0.js.map +0 -1
- package/dist-es/generated/payers/Payers.js +0 -19
- package/dist-es/generated/payers/Payers.js.map +0 -1
- package/dist-es/generated/payers/PayersClient.js +0 -64
- package/dist-es/generated/payers/PayersClient.js.map +0 -1
- package/dist-es/generated/payers/auth/httpAuthExtensionConfiguration.js +0 -45
- package/dist-es/generated/payers/auth/httpAuthExtensionConfiguration.js.map +0 -1
- package/dist-es/generated/payers/auth/httpAuthSchemeProvider.js.map +0 -1
- package/dist-es/generated/payers/commands/SearchPayersCommand.js +0 -749
- package/dist-es/generated/payers/commands/SearchPayersCommand.js.map +0 -1
- package/dist-es/generated/payers/commands/index.js +0 -3
- package/dist-es/generated/payers/commands/index.js.map +0 -1
- package/dist-es/generated/payers/endpoint/EndpointParameters.js.map +0 -1
- package/dist-es/generated/payers/endpoint/bdd.js +0 -21
- package/dist-es/generated/payers/endpoint/bdd.js.map +0 -1
- package/dist-es/generated/payers/endpoint/endpointResolver.js +0 -19
- package/dist-es/generated/payers/endpoint/endpointResolver.js.map +0 -1
- package/dist-es/generated/payers/extensionConfiguration.js +0 -2
- package/dist-es/generated/payers/extensionConfiguration.js.map +0 -1
- package/dist-es/generated/payers/index.js +0 -17
- package/dist-es/generated/payers/index.js.map +0 -1
- package/dist-es/generated/payers/models/PayersServiceException.js +0 -18
- package/dist-es/generated/payers/models/PayersServiceException.js.map +0 -1
- package/dist-es/generated/payers/models/enums.js +0 -330
- package/dist-es/generated/payers/models/enums.js.map +0 -1
- package/dist-es/generated/payers/models/errors.js +0 -80
- package/dist-es/generated/payers/models/errors.js.map +0 -1
- package/dist-es/generated/payers/models/models_0.js +0 -2
- package/dist-es/generated/payers/models/models_0.js.map +0 -1
- package/dist-es/generated/payers/pagination/Interfaces.js +0 -2
- package/dist-es/generated/payers/pagination/Interfaces.js.map +0 -1
- package/dist-es/generated/payers/pagination/SearchPayersPaginator.js +0 -9
- package/dist-es/generated/payers/pagination/SearchPayersPaginator.js.map +0 -1
- package/dist-es/generated/payers/pagination/index.js +0 -4
- package/dist-es/generated/payers/pagination/index.js.map +0 -1
- package/dist-es/generated/payers/runtimeConfig.browser.js +0 -38
- package/dist-es/generated/payers/runtimeConfig.browser.js.map +0 -1
- package/dist-es/generated/payers/runtimeConfig.js +0 -53
- package/dist-es/generated/payers/runtimeConfig.js.map +0 -1
- package/dist-es/generated/payers/runtimeConfig.native.js.map +0 -1
- package/dist-es/generated/payers/runtimeConfig.shared.js.map +0 -1
- package/dist-es/generated/payers/runtimeExtensions.js +0 -14
- package/dist-es/generated/payers/runtimeExtensions.js.map +0 -1
- package/dist-es/generated/payers/schemas/schemas_0.js +0 -228
- package/dist-es/generated/payers/schemas/schemas_0.js.map +0 -1
- package/dist-es/index.js.map +0 -1
- package/dist-types/_registry.d.ts +0 -27
- package/dist-types/_registry.d.ts.map +0 -1
- package/dist-types/generated/claims/Claims.d.ts +0 -18
- package/dist-types/generated/claims/Claims.d.ts.map +0 -1
- package/dist-types/generated/claims/ClaimsClient.d.ts +0 -183
- package/dist-types/generated/claims/ClaimsClient.d.ts.map +0 -1
- package/dist-types/generated/claims/auth/httpAuthExtensionConfiguration.d.ts +0 -30
- package/dist-types/generated/claims/auth/httpAuthExtensionConfiguration.d.ts.map +0 -1
- package/dist-types/generated/claims/auth/httpAuthSchemeProvider.d.ts.map +0 -1
- package/dist-types/generated/claims/commands/ClaimsCms1500SubmissionCommand.d.ts +0 -514
- package/dist-types/generated/claims/commands/ClaimsCms1500SubmissionCommand.d.ts.map +0 -1
- package/dist-types/generated/claims/commands/index.d.ts +0 -2
- package/dist-types/generated/claims/commands/index.d.ts.map +0 -1
- package/dist-types/generated/claims/endpoint/EndpointParameters.d.ts +0 -33
- package/dist-types/generated/claims/endpoint/EndpointParameters.d.ts.map +0 -1
- package/dist-types/generated/claims/endpoint/bdd.d.ts +0 -3
- package/dist-types/generated/claims/endpoint/bdd.d.ts.map +0 -1
- package/dist-types/generated/claims/endpoint/endpointResolver.d.ts.map +0 -1
- package/dist-types/generated/claims/extensionConfiguration.d.ts +0 -10
- package/dist-types/generated/claims/extensionConfiguration.d.ts.map +0 -1
- package/dist-types/generated/claims/index.d.ts +0 -17
- package/dist-types/generated/claims/index.d.ts.map +0 -1
- package/dist-types/generated/claims/models/ClaimsServiceException.d.ts +0 -15
- package/dist-types/generated/claims/models/ClaimsServiceException.d.ts.map +0 -1
- package/dist-types/generated/claims/models/enums.d.ts +0 -707
- package/dist-types/generated/claims/models/enums.d.ts.map +0 -1
- package/dist-types/generated/claims/models/errors.d.ts +0 -20
- package/dist-types/generated/claims/models/errors.d.ts.map +0 -1
- package/dist-types/generated/claims/models/models_0.d.ts +0 -462
- package/dist-types/generated/claims/models/models_0.d.ts.map +0 -1
- package/dist-types/generated/claims/runtimeConfig.browser.d.ts.map +0 -1
- package/dist-types/generated/claims/runtimeConfig.d.ts +0 -54
- package/dist-types/generated/claims/runtimeConfig.d.ts.map +0 -1
- package/dist-types/generated/claims/runtimeConfig.native.d.ts +0 -53
- package/dist-types/generated/claims/runtimeConfig.native.d.ts.map +0 -1
- package/dist-types/generated/claims/runtimeConfig.shared.d.ts.map +0 -1
- package/dist-types/generated/claims/runtimeExtensions.d.ts.map +0 -1
- package/dist-types/generated/claims/schemas/schemas_0.d.ts +0 -62
- package/dist-types/generated/claims/schemas/schemas_0.d.ts.map +0 -1
- package/dist-types/generated/payers/Payers.d.ts +0 -26
- package/dist-types/generated/payers/Payers.d.ts.map +0 -1
- package/dist-types/generated/payers/PayersClient.d.ts.map +0 -1
- package/dist-types/generated/payers/auth/httpAuthExtensionConfiguration.d.ts.map +0 -1
- package/dist-types/generated/payers/auth/httpAuthSchemeProvider.d.ts +0 -82
- package/dist-types/generated/payers/auth/httpAuthSchemeProvider.d.ts.map +0 -1
- package/dist-types/generated/payers/commands/SearchPayersCommand.d.ts +0 -773
- package/dist-types/generated/payers/commands/SearchPayersCommand.d.ts.map +0 -1
- package/dist-types/generated/payers/commands/index.d.ts +0 -2
- package/dist-types/generated/payers/commands/index.d.ts.map +0 -1
- package/dist-types/generated/payers/endpoint/EndpointParameters.d.ts.map +0 -1
- package/dist-types/generated/payers/endpoint/bdd.d.ts +0 -3
- package/dist-types/generated/payers/endpoint/bdd.d.ts.map +0 -1
- package/dist-types/generated/payers/endpoint/endpointResolver.d.ts +0 -9
- package/dist-types/generated/payers/endpoint/endpointResolver.d.ts.map +0 -1
- package/dist-types/generated/payers/extensionConfiguration.d.ts +0 -10
- package/dist-types/generated/payers/extensionConfiguration.d.ts.map +0 -1
- package/dist-types/generated/payers/index.d.ts +0 -18
- package/dist-types/generated/payers/index.d.ts.map +0 -1
- package/dist-types/generated/payers/models/PayersServiceException.d.ts +0 -15
- package/dist-types/generated/payers/models/PayersServiceException.d.ts.map +0 -1
- package/dist-types/generated/payers/models/enums.d.ts +0 -353
- package/dist-types/generated/payers/models/enums.d.ts.map +0 -1
- package/dist-types/generated/payers/models/errors.d.ts +0 -58
- package/dist-types/generated/payers/models/errors.d.ts.map +0 -1
- package/dist-types/generated/payers/models/models_0.d.ts +0 -575
- package/dist-types/generated/payers/models/models_0.d.ts.map +0 -1
- package/dist-types/generated/payers/pagination/Interfaces.d.ts +0 -9
- package/dist-types/generated/payers/pagination/Interfaces.d.ts.map +0 -1
- package/dist-types/generated/payers/pagination/SearchPayersPaginator.d.ts +0 -8
- package/dist-types/generated/payers/pagination/SearchPayersPaginator.d.ts.map +0 -1
- package/dist-types/generated/payers/pagination/index.d.ts +0 -3
- package/dist-types/generated/payers/pagination/index.d.ts.map +0 -1
- package/dist-types/generated/payers/runtimeConfig.browser.d.ts +0 -54
- package/dist-types/generated/payers/runtimeConfig.browser.d.ts.map +0 -1
- package/dist-types/generated/payers/runtimeConfig.d.ts.map +0 -1
- package/dist-types/generated/payers/runtimeConfig.native.d.ts.map +0 -1
- package/dist-types/generated/payers/runtimeConfig.shared.d.ts +0 -34
- package/dist-types/generated/payers/runtimeConfig.shared.d.ts.map +0 -1
- package/dist-types/generated/payers/runtimeExtensions.d.ts +0 -18
- package/dist-types/generated/payers/runtimeExtensions.d.ts.map +0 -1
- package/dist-types/generated/payers/schemas/schemas_0.d.ts +0 -32
- package/dist-types/generated/payers/schemas/schemas_0.d.ts.map +0 -1
- package/dist-types/index.d.ts.map +0 -1
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
+
import { type CreateEventDestinationCommandInput, type CreateEventDestinationCommandOutput } from "./commands/CreateEventDestinationCommand";
|
|
3
|
+
import { type CreateProfessionalClaimSubmissionCommandInput, type CreateProfessionalClaimSubmissionCommandOutput } from "./commands/CreateProfessionalClaimSubmissionCommand";
|
|
4
|
+
import { type DeleteEventDestinationCommandInput, type DeleteEventDestinationCommandOutput } from "./commands/DeleteEventDestinationCommand";
|
|
5
|
+
import { type GetClaimCommandInput, type GetClaimCommandOutput } from "./commands/GetClaimCommand";
|
|
6
|
+
import { type GetClaimTimelineCommandInput, type GetClaimTimelineCommandOutput } from "./commands/GetClaimTimelineCommand";
|
|
7
|
+
import { type GetEventDestinationCommandInput, type GetEventDestinationCommandOutput } from "./commands/GetEventDestinationCommand";
|
|
8
|
+
import { type GetEventDestinationEventCommandInput, type GetEventDestinationEventCommandOutput } from "./commands/GetEventDestinationEventCommand";
|
|
9
|
+
import { type GetEventDestinationSecretCommandInput, type GetEventDestinationSecretCommandOutput } from "./commands/GetEventDestinationSecretCommand";
|
|
10
|
+
import { type GetProfessionalClaimSubmissionCommandInput, type GetProfessionalClaimSubmissionCommandOutput } from "./commands/GetProfessionalClaimSubmissionCommand";
|
|
11
|
+
import { type ListClaimsCommandInput, type ListClaimsCommandOutput } from "./commands/ListClaimsCommand";
|
|
12
|
+
import { type ListEventDestinationEventsCommandInput, type ListEventDestinationEventsCommandOutput } from "./commands/ListEventDestinationEventsCommand";
|
|
13
|
+
import { type ListEventDestinationsCommandInput, type ListEventDestinationsCommandOutput } from "./commands/ListEventDestinationsCommand";
|
|
14
|
+
import { type RotateEventDestinationSecretCommandInput, type RotateEventDestinationSecretCommandOutput } from "./commands/RotateEventDestinationSecretCommand";
|
|
15
|
+
import { type UpdateEventDestinationCommandInput, type UpdateEventDestinationCommandOutput } from "./commands/UpdateEventDestinationCommand";
|
|
16
|
+
import { type ValidateProfessionalClaimSubmissionCommandInput, type ValidateProfessionalClaimSubmissionCommandOutput } from "./commands/ValidateProfessionalClaimSubmissionCommand";
|
|
17
|
+
import { StediClient } from "./StediClient";
|
|
18
|
+
export interface Stedi {
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link CreateProfessionalClaimSubmissionCommand}
|
|
21
|
+
*/
|
|
22
|
+
createProfessionalClaimSubmission(args: CreateProfessionalClaimSubmissionCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfessionalClaimSubmissionCommandOutput>;
|
|
23
|
+
createProfessionalClaimSubmission(args: CreateProfessionalClaimSubmissionCommandInput, cb: (err: any, data?: CreateProfessionalClaimSubmissionCommandOutput) => void): void;
|
|
24
|
+
createProfessionalClaimSubmission(args: CreateProfessionalClaimSubmissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfessionalClaimSubmissionCommandOutput) => void): void;
|
|
25
|
+
/**
|
|
26
|
+
* @see {@link GetProfessionalClaimSubmissionCommand}
|
|
27
|
+
*/
|
|
28
|
+
getProfessionalClaimSubmission(args: GetProfessionalClaimSubmissionCommandInput, options?: __HttpHandlerOptions): Promise<GetProfessionalClaimSubmissionCommandOutput>;
|
|
29
|
+
getProfessionalClaimSubmission(args: GetProfessionalClaimSubmissionCommandInput, cb: (err: any, data?: GetProfessionalClaimSubmissionCommandOutput) => void): void;
|
|
30
|
+
getProfessionalClaimSubmission(args: GetProfessionalClaimSubmissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfessionalClaimSubmissionCommandOutput) => void): void;
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link ValidateProfessionalClaimSubmissionCommand}
|
|
33
|
+
*/
|
|
34
|
+
validateProfessionalClaimSubmission(args: ValidateProfessionalClaimSubmissionCommandInput, options?: __HttpHandlerOptions): Promise<ValidateProfessionalClaimSubmissionCommandOutput>;
|
|
35
|
+
validateProfessionalClaimSubmission(args: ValidateProfessionalClaimSubmissionCommandInput, cb: (err: any, data?: ValidateProfessionalClaimSubmissionCommandOutput) => void): void;
|
|
36
|
+
validateProfessionalClaimSubmission(args: ValidateProfessionalClaimSubmissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateProfessionalClaimSubmissionCommandOutput) => void): void;
|
|
37
|
+
/**
|
|
38
|
+
* @see {@link GetClaimCommand}
|
|
39
|
+
*/
|
|
40
|
+
getClaim(args: GetClaimCommandInput, options?: __HttpHandlerOptions): Promise<GetClaimCommandOutput>;
|
|
41
|
+
getClaim(args: GetClaimCommandInput, cb: (err: any, data?: GetClaimCommandOutput) => void): void;
|
|
42
|
+
getClaim(args: GetClaimCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClaimCommandOutput) => void): void;
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link GetClaimTimelineCommand}
|
|
45
|
+
*/
|
|
46
|
+
getClaimTimeline(args: GetClaimTimelineCommandInput, options?: __HttpHandlerOptions): Promise<GetClaimTimelineCommandOutput>;
|
|
47
|
+
getClaimTimeline(args: GetClaimTimelineCommandInput, cb: (err: any, data?: GetClaimTimelineCommandOutput) => void): void;
|
|
48
|
+
getClaimTimeline(args: GetClaimTimelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClaimTimelineCommandOutput) => void): void;
|
|
49
|
+
/**
|
|
50
|
+
* @see {@link ListClaimsCommand}
|
|
51
|
+
*/
|
|
52
|
+
listClaims(): Promise<ListClaimsCommandOutput>;
|
|
53
|
+
listClaims(args: ListClaimsCommandInput, options?: __HttpHandlerOptions): Promise<ListClaimsCommandOutput>;
|
|
54
|
+
listClaims(args: ListClaimsCommandInput, cb: (err: any, data?: ListClaimsCommandOutput) => void): void;
|
|
55
|
+
listClaims(args: ListClaimsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClaimsCommandOutput) => void): void;
|
|
56
|
+
/**
|
|
57
|
+
* @see {@link CreateEventDestinationCommand}
|
|
58
|
+
*/
|
|
59
|
+
createEventDestination(args: CreateEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventDestinationCommandOutput>;
|
|
60
|
+
createEventDestination(args: CreateEventDestinationCommandInput, cb: (err: any, data?: CreateEventDestinationCommandOutput) => void): void;
|
|
61
|
+
createEventDestination(args: CreateEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventDestinationCommandOutput) => void): void;
|
|
62
|
+
/**
|
|
63
|
+
* @see {@link DeleteEventDestinationCommand}
|
|
64
|
+
*/
|
|
65
|
+
deleteEventDestination(args: DeleteEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventDestinationCommandOutput>;
|
|
66
|
+
deleteEventDestination(args: DeleteEventDestinationCommandInput, cb: (err: any, data?: DeleteEventDestinationCommandOutput) => void): void;
|
|
67
|
+
deleteEventDestination(args: DeleteEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventDestinationCommandOutput) => void): void;
|
|
68
|
+
/**
|
|
69
|
+
* @see {@link GetEventDestinationCommand}
|
|
70
|
+
*/
|
|
71
|
+
getEventDestination(args: GetEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<GetEventDestinationCommandOutput>;
|
|
72
|
+
getEventDestination(args: GetEventDestinationCommandInput, cb: (err: any, data?: GetEventDestinationCommandOutput) => void): void;
|
|
73
|
+
getEventDestination(args: GetEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventDestinationCommandOutput) => void): void;
|
|
74
|
+
/**
|
|
75
|
+
* @see {@link GetEventDestinationEventCommand}
|
|
76
|
+
*/
|
|
77
|
+
getEventDestinationEvent(args: GetEventDestinationEventCommandInput, options?: __HttpHandlerOptions): Promise<GetEventDestinationEventCommandOutput>;
|
|
78
|
+
getEventDestinationEvent(args: GetEventDestinationEventCommandInput, cb: (err: any, data?: GetEventDestinationEventCommandOutput) => void): void;
|
|
79
|
+
getEventDestinationEvent(args: GetEventDestinationEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventDestinationEventCommandOutput) => void): void;
|
|
80
|
+
/**
|
|
81
|
+
* @see {@link GetEventDestinationSecretCommand}
|
|
82
|
+
*/
|
|
83
|
+
getEventDestinationSecret(args: GetEventDestinationSecretCommandInput, options?: __HttpHandlerOptions): Promise<GetEventDestinationSecretCommandOutput>;
|
|
84
|
+
getEventDestinationSecret(args: GetEventDestinationSecretCommandInput, cb: (err: any, data?: GetEventDestinationSecretCommandOutput) => void): void;
|
|
85
|
+
getEventDestinationSecret(args: GetEventDestinationSecretCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventDestinationSecretCommandOutput) => void): void;
|
|
86
|
+
/**
|
|
87
|
+
* @see {@link ListEventDestinationEventsCommand}
|
|
88
|
+
*/
|
|
89
|
+
listEventDestinationEvents(): Promise<ListEventDestinationEventsCommandOutput>;
|
|
90
|
+
listEventDestinationEvents(args: ListEventDestinationEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventDestinationEventsCommandOutput>;
|
|
91
|
+
listEventDestinationEvents(args: ListEventDestinationEventsCommandInput, cb: (err: any, data?: ListEventDestinationEventsCommandOutput) => void): void;
|
|
92
|
+
listEventDestinationEvents(args: ListEventDestinationEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventDestinationEventsCommandOutput) => void): void;
|
|
93
|
+
/**
|
|
94
|
+
* @see {@link ListEventDestinationsCommand}
|
|
95
|
+
*/
|
|
96
|
+
listEventDestinations(): Promise<ListEventDestinationsCommandOutput>;
|
|
97
|
+
listEventDestinations(args: ListEventDestinationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventDestinationsCommandOutput>;
|
|
98
|
+
listEventDestinations(args: ListEventDestinationsCommandInput, cb: (err: any, data?: ListEventDestinationsCommandOutput) => void): void;
|
|
99
|
+
listEventDestinations(args: ListEventDestinationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventDestinationsCommandOutput) => void): void;
|
|
100
|
+
/**
|
|
101
|
+
* @see {@link RotateEventDestinationSecretCommand}
|
|
102
|
+
*/
|
|
103
|
+
rotateEventDestinationSecret(args: RotateEventDestinationSecretCommandInput, options?: __HttpHandlerOptions): Promise<RotateEventDestinationSecretCommandOutput>;
|
|
104
|
+
rotateEventDestinationSecret(args: RotateEventDestinationSecretCommandInput, cb: (err: any, data?: RotateEventDestinationSecretCommandOutput) => void): void;
|
|
105
|
+
rotateEventDestinationSecret(args: RotateEventDestinationSecretCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RotateEventDestinationSecretCommandOutput) => void): void;
|
|
106
|
+
/**
|
|
107
|
+
* @see {@link UpdateEventDestinationCommand}
|
|
108
|
+
*/
|
|
109
|
+
updateEventDestination(args: UpdateEventDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventDestinationCommandOutput>;
|
|
110
|
+
updateEventDestination(args: UpdateEventDestinationCommandInput, cb: (err: any, data?: UpdateEventDestinationCommandOutput) => void): void;
|
|
111
|
+
updateEventDestination(args: UpdateEventDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventDestinationCommandOutput) => void): void;
|
|
112
|
+
/**
|
|
113
|
+
* @see {@link GetClaimTimelineCommand}
|
|
114
|
+
* @param args - command input.
|
|
115
|
+
* @param paginationConfig - optional pagination config.
|
|
116
|
+
* @returns AsyncIterable of {@link GetClaimTimelineCommandOutput}.
|
|
117
|
+
*/
|
|
118
|
+
paginateGetClaimTimeline(args: GetClaimTimelineCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetClaimTimelineCommandOutput>;
|
|
119
|
+
/**
|
|
120
|
+
* @see {@link ListClaimsCommand}
|
|
121
|
+
* @param args - command input.
|
|
122
|
+
* @param paginationConfig - optional pagination config.
|
|
123
|
+
* @returns AsyncIterable of {@link ListClaimsCommandOutput}.
|
|
124
|
+
*/
|
|
125
|
+
paginateListClaims(args?: ListClaimsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClaimsCommandOutput>;
|
|
126
|
+
/**
|
|
127
|
+
* @see {@link ListEventDestinationEventsCommand}
|
|
128
|
+
* @param args - command input.
|
|
129
|
+
* @param paginationConfig - optional pagination config.
|
|
130
|
+
* @returns AsyncIterable of {@link ListEventDestinationEventsCommandOutput}.
|
|
131
|
+
*/
|
|
132
|
+
paginateListEventDestinationEvents(args?: ListEventDestinationEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventDestinationEventsCommandOutput>;
|
|
133
|
+
/**
|
|
134
|
+
* @see {@link ListEventDestinationsCommand}
|
|
135
|
+
* @param args - command input.
|
|
136
|
+
* @param paginationConfig - optional pagination config.
|
|
137
|
+
* @returns AsyncIterable of {@link ListEventDestinationsCommandOutput}.
|
|
138
|
+
*/
|
|
139
|
+
paginateListEventDestinations(args?: ListEventDestinationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventDestinationsCommandOutput>;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* The Stedi SDK — unified, typed access to Stedi's healthcare APIs.
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export declare class Stedi extends StediClient implements Stedi {
|
|
146
|
+
}
|
|
@@ -1,24 +1,36 @@
|
|
|
1
|
-
import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/
|
|
2
|
-
import { type
|
|
3
|
-
import { type
|
|
4
|
-
import { type
|
|
5
|
-
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/
|
|
6
|
-
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
|
-
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
1
|
+
import { type HostHeaderInputConfig, type HostHeaderResolvedConfig, type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/core/client";
|
|
2
|
+
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
|
|
3
|
+
import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
4
|
+
import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
5
|
+
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
|
|
8
6
|
import type { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
7
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import type {
|
|
8
|
+
import type { CreateEventDestinationCommandInput, CreateEventDestinationCommandOutput } from "./commands/CreateEventDestinationCommand";
|
|
9
|
+
import type { CreateProfessionalClaimSubmissionCommandInput, CreateProfessionalClaimSubmissionCommandOutput } from "./commands/CreateProfessionalClaimSubmissionCommand";
|
|
10
|
+
import type { DeleteEventDestinationCommandInput, DeleteEventDestinationCommandOutput } from "./commands/DeleteEventDestinationCommand";
|
|
11
|
+
import type { GetClaimCommandInput, GetClaimCommandOutput } from "./commands/GetClaimCommand";
|
|
12
|
+
import type { GetClaimTimelineCommandInput, GetClaimTimelineCommandOutput } from "./commands/GetClaimTimelineCommand";
|
|
13
|
+
import type { GetEventDestinationCommandInput, GetEventDestinationCommandOutput } from "./commands/GetEventDestinationCommand";
|
|
14
|
+
import type { GetEventDestinationEventCommandInput, GetEventDestinationEventCommandOutput } from "./commands/GetEventDestinationEventCommand";
|
|
15
|
+
import type { GetEventDestinationSecretCommandInput, GetEventDestinationSecretCommandOutput } from "./commands/GetEventDestinationSecretCommand";
|
|
16
|
+
import type { GetProfessionalClaimSubmissionCommandInput, GetProfessionalClaimSubmissionCommandOutput } from "./commands/GetProfessionalClaimSubmissionCommand";
|
|
17
|
+
import type { ListClaimsCommandInput, ListClaimsCommandOutput } from "./commands/ListClaimsCommand";
|
|
18
|
+
import type { ListEventDestinationEventsCommandInput, ListEventDestinationEventsCommandOutput } from "./commands/ListEventDestinationEventsCommand";
|
|
19
|
+
import type { ListEventDestinationsCommandInput, ListEventDestinationsCommandOutput } from "./commands/ListEventDestinationsCommand";
|
|
20
|
+
import type { RotateEventDestinationSecretCommandInput, RotateEventDestinationSecretCommandOutput } from "./commands/RotateEventDestinationSecretCommand";
|
|
21
|
+
import type { UpdateEventDestinationCommandInput, UpdateEventDestinationCommandOutput } from "./commands/UpdateEventDestinationCommand";
|
|
22
|
+
import type { ValidateProfessionalClaimSubmissionCommandInput, ValidateProfessionalClaimSubmissionCommandOutput } from "./commands/ValidateProfessionalClaimSubmissionCommand";
|
|
11
23
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
12
24
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
13
25
|
export { __Client };
|
|
14
26
|
/**
|
|
15
27
|
* @public
|
|
16
28
|
*/
|
|
17
|
-
export type ServiceInputTypes =
|
|
29
|
+
export type ServiceInputTypes = CreateEventDestinationCommandInput | CreateProfessionalClaimSubmissionCommandInput | DeleteEventDestinationCommandInput | GetClaimCommandInput | GetClaimTimelineCommandInput | GetEventDestinationCommandInput | GetEventDestinationEventCommandInput | GetEventDestinationSecretCommandInput | GetProfessionalClaimSubmissionCommandInput | ListClaimsCommandInput | ListEventDestinationEventsCommandInput | ListEventDestinationsCommandInput | RotateEventDestinationSecretCommandInput | UpdateEventDestinationCommandInput | ValidateProfessionalClaimSubmissionCommandInput;
|
|
18
30
|
/**
|
|
19
31
|
* @public
|
|
20
32
|
*/
|
|
21
|
-
export type ServiceOutputTypes =
|
|
33
|
+
export type ServiceOutputTypes = CreateEventDestinationCommandOutput | CreateProfessionalClaimSubmissionCommandOutput | DeleteEventDestinationCommandOutput | GetClaimCommandOutput | GetClaimTimelineCommandOutput | GetEventDestinationCommandOutput | GetEventDestinationEventCommandOutput | GetEventDestinationSecretCommandOutput | GetProfessionalClaimSubmissionCommandOutput | ListClaimsCommandOutput | ListEventDestinationEventsCommandOutput | ListEventDestinationsCommandOutput | RotateEventDestinationSecretCommandOutput | UpdateEventDestinationCommandOutput | ValidateProfessionalClaimSubmissionCommandOutput;
|
|
22
34
|
/**
|
|
23
35
|
* @public
|
|
24
36
|
*/
|
|
@@ -78,23 +90,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
78
90
|
* trait of an operation.
|
|
79
91
|
*/
|
|
80
92
|
disableHostPrefix?: boolean;
|
|
81
|
-
/**
|
|
82
|
-
* Unique service identifier.
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
serviceId?: string;
|
|
86
|
-
/**
|
|
87
|
-
* Enables IPv6/IPv4 dualstack endpoint.
|
|
88
|
-
*/
|
|
89
|
-
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
90
|
-
/**
|
|
91
|
-
* Enables FIPS compatible endpoints.
|
|
92
|
-
*/
|
|
93
|
-
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
94
|
-
/**
|
|
95
|
-
* The AWS region to which this client will send requests
|
|
96
|
-
*/
|
|
97
|
-
region?: string | __Provider<string>;
|
|
98
93
|
/**
|
|
99
94
|
* Setting a client profile is similar to setting a value for the
|
|
100
95
|
* AWS_PROFILE environment variable. Setting a profile on a client
|
|
@@ -144,35 +139,35 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
144
139
|
/**
|
|
145
140
|
* @public
|
|
146
141
|
*/
|
|
147
|
-
export type
|
|
142
|
+
export type StediClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
148
143
|
/**
|
|
149
144
|
* @public
|
|
150
145
|
*
|
|
151
|
-
* The configuration interface of
|
|
146
|
+
* The configuration interface of StediClient class constructor that set the region, credentials and other options.
|
|
152
147
|
*/
|
|
153
|
-
export interface
|
|
148
|
+
export interface StediClientConfig extends StediClientConfigType {
|
|
154
149
|
}
|
|
155
150
|
/**
|
|
156
151
|
* @public
|
|
157
152
|
*/
|
|
158
|
-
export type
|
|
153
|
+
export type StediClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
159
154
|
/**
|
|
160
155
|
* @public
|
|
161
156
|
*
|
|
162
|
-
* The resolved configuration interface of
|
|
157
|
+
* The resolved configuration interface of StediClient class. This is resolved and normalized from the {@link StediClientConfig | constructor configuration interface}.
|
|
163
158
|
*/
|
|
164
|
-
export interface
|
|
159
|
+
export interface StediClientResolvedConfig extends StediClientResolvedConfigType {
|
|
165
160
|
}
|
|
166
161
|
/**
|
|
167
|
-
* The Stedi
|
|
162
|
+
* The Stedi SDK — unified, typed access to Stedi's healthcare APIs.
|
|
168
163
|
* @public
|
|
169
164
|
*/
|
|
170
|
-
export declare class
|
|
165
|
+
export declare class StediClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, StediClientResolvedConfig> {
|
|
171
166
|
/**
|
|
172
|
-
* The resolved configuration of
|
|
167
|
+
* The resolved configuration of StediClient class. This is resolved and normalized from the {@link StediClientConfig | constructor configuration interface}.
|
|
173
168
|
*/
|
|
174
|
-
readonly config:
|
|
175
|
-
constructor(...[configuration]: __CheckOptionalClientConfig<
|
|
169
|
+
readonly config: StediClientResolvedConfig;
|
|
170
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<StediClientConfig>);
|
|
176
171
|
/**
|
|
177
172
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
178
173
|
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
@@ -180,4 +175,3 @@ export declare class PayersClient extends __Client<__HttpHandlerOptions, Service
|
|
|
180
175
|
*/
|
|
181
176
|
destroy(): void;
|
|
182
177
|
}
|
|
183
|
-
//# sourceMappingURL=PayersClient.d.ts.map
|
|
@@ -1,23 +1,26 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type {
|
|
1
|
+
import { type ApiKeyIdentity, type ApiKeyIdentityProvider, type HttpAuthScheme, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
2
|
+
import type { StediHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export interface HttpAuthExtensionConfiguration {
|
|
7
7
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
8
8
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
9
|
-
setHttpAuthSchemeProvider(httpAuthSchemeProvider:
|
|
10
|
-
httpAuthSchemeProvider():
|
|
9
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: StediHttpAuthSchemeProvider): void;
|
|
10
|
+
httpAuthSchemeProvider(): StediHttpAuthSchemeProvider;
|
|
11
11
|
setApiKey(apiKey: ApiKeyIdentity | ApiKeyIdentityProvider): void;
|
|
12
12
|
apiKey(): ApiKeyIdentity | ApiKeyIdentityProvider | undefined;
|
|
13
|
+
setToken(token: TokenIdentity | TokenIdentityProvider): void;
|
|
14
|
+
token(): TokenIdentity | TokenIdentityProvider | undefined;
|
|
13
15
|
}
|
|
14
16
|
/**
|
|
15
17
|
* @internal
|
|
16
18
|
*/
|
|
17
19
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
18
20
|
httpAuthSchemes: HttpAuthScheme[];
|
|
19
|
-
httpAuthSchemeProvider:
|
|
21
|
+
httpAuthSchemeProvider: StediHttpAuthSchemeProvider;
|
|
20
22
|
apiKey: ApiKeyIdentity | ApiKeyIdentityProvider;
|
|
23
|
+
token: TokenIdentity | TokenIdentityProvider;
|
|
21
24
|
}>;
|
|
22
25
|
/**
|
|
23
26
|
* @internal
|
|
@@ -27,4 +30,3 @@ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuth
|
|
|
27
30
|
* @internal
|
|
28
31
|
*/
|
|
29
32
|
export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
|
|
30
|
-
//# sourceMappingURL=httpAuthExtensionConfiguration.d.ts.map
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { type ApiKeyIdentity, type ApiKeyIdentityProvider, type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider } from "@smithy/types";
|
|
2
|
-
import type {
|
|
1
|
+
import { type ApiKeyIdentity, type ApiKeyIdentityProvider, type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
2
|
+
import type { StediClientResolvedConfig } from "../StediClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
|
-
export interface
|
|
6
|
+
export interface StediHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
9
|
* @internal
|
|
10
10
|
*/
|
|
11
|
-
export interface
|
|
11
|
+
export interface StediHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<StediClientResolvedConfig, HandlerExecutionContext, StediHttpAuthSchemeParameters, object> {
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* @internal
|
|
15
15
|
*/
|
|
16
|
-
export declare const
|
|
16
|
+
export declare const defaultStediHttpAuthSchemeParametersProvider: (config: StediClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<StediHttpAuthSchemeParameters>;
|
|
17
17
|
/**
|
|
18
18
|
* @internal
|
|
19
19
|
*/
|
|
20
|
-
export interface
|
|
20
|
+
export interface StediHttpAuthSchemeProvider extends HttpAuthSchemeProvider<StediHttpAuthSchemeParameters> {
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* @internal
|
|
24
24
|
*/
|
|
25
|
-
export declare const
|
|
25
|
+
export declare const defaultStediHttpAuthSchemeProvider: StediHttpAuthSchemeProvider;
|
|
26
26
|
/**
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
@@ -43,11 +43,15 @@ export interface HttpAuthSchemeInputConfig {
|
|
|
43
43
|
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
44
44
|
* @internal
|
|
45
45
|
*/
|
|
46
|
-
httpAuthSchemeProvider?:
|
|
46
|
+
httpAuthSchemeProvider?: StediHttpAuthSchemeProvider;
|
|
47
47
|
/**
|
|
48
48
|
* The API key to use when making requests.
|
|
49
49
|
*/
|
|
50
50
|
apiKey?: ApiKeyIdentity | ApiKeyIdentityProvider;
|
|
51
|
+
/**
|
|
52
|
+
* The token used to authenticate requests.
|
|
53
|
+
*/
|
|
54
|
+
token?: TokenIdentity | TokenIdentityProvider;
|
|
51
55
|
}
|
|
52
56
|
/**
|
|
53
57
|
* @internal
|
|
@@ -69,14 +73,17 @@ export interface HttpAuthSchemeResolvedConfig {
|
|
|
69
73
|
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
70
74
|
* @internal
|
|
71
75
|
*/
|
|
72
|
-
readonly httpAuthSchemeProvider:
|
|
76
|
+
readonly httpAuthSchemeProvider: StediHttpAuthSchemeProvider;
|
|
73
77
|
/**
|
|
74
78
|
* The API key to use when making requests.
|
|
75
79
|
*/
|
|
76
80
|
readonly apiKey?: ApiKeyIdentityProvider;
|
|
81
|
+
/**
|
|
82
|
+
* The token used to authenticate requests.
|
|
83
|
+
*/
|
|
84
|
+
readonly token?: TokenIdentityProvider;
|
|
77
85
|
}
|
|
78
86
|
/**
|
|
79
87
|
* @internal
|
|
80
88
|
*/
|
|
81
89
|
export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig) => T & HttpAuthSchemeResolvedConfig;
|
|
82
|
-
//# sourceMappingURL=httpAuthSchemeProvider.d.ts.map
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ServiceInputTypes, ServiceOutputTypes, StediClientResolvedConfig } from "./StediClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, StediClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, StediClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _ep1: EndpointParameterInstructions;
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { CreateEventDestinationInput, CreateEventDestinationOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link CreateEventDestinationCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateEventDestinationCommandInput extends CreateEventDestinationInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link CreateEventDestinationCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface CreateEventDestinationCommandOutput extends CreateEventDestinationOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const CreateEventDestinationCommand_base: {
|
|
22
|
+
new (input: CreateEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<CreateEventDestinationCommandInput, CreateEventDestinationCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<CreateEventDestinationCommandInput, CreateEventDestinationCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Creates an event destination. Returns destination details and a signing secret for verifying event payloads.
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { StediClient, CreateEventDestinationCommand } from "@stedi/sdk"; // ES Modules import
|
|
32
|
+
* // const { StediClient, CreateEventDestinationCommand } = require("@stedi/sdk"); // CommonJS import
|
|
33
|
+
* // import type { StediClientConfig } from "@stedi/sdk";
|
|
34
|
+
* const config = {}; // type is StediClientConfig
|
|
35
|
+
* const client = new StediClient(config);
|
|
36
|
+
* const input = { // CreateEventDestinationInput
|
|
37
|
+
* name: "STRING_VALUE", // required
|
|
38
|
+
* description: "STRING_VALUE",
|
|
39
|
+
* eventTypes: [ // EventDestinationsEventTypeList // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* destinationUrl: "STRING_VALUE", // required
|
|
43
|
+
* concurrencyLimit: Number("int"),
|
|
44
|
+
* status: "ENABLED" || "DISABLED",
|
|
45
|
+
* idempotencyKey: "STRING_VALUE",
|
|
46
|
+
* };
|
|
47
|
+
* const command = new CreateEventDestinationCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateEventDestinationOutput
|
|
50
|
+
* // id: "STRING_VALUE", // required
|
|
51
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // status: "ENABLED" || "DISABLED", // required
|
|
54
|
+
* // lastDeliveryTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // name: "STRING_VALUE", // required
|
|
56
|
+
* // description: "STRING_VALUE", // required
|
|
57
|
+
* // eventTypes: [ // EventDestinationsEventTypeList // required
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // destinationUrl: "STRING_VALUE", // required
|
|
61
|
+
* // concurrencyLimit: Number("int"),
|
|
62
|
+
* // signingSecret: "STRING_VALUE", // required
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param CreateEventDestinationCommandInput - {@link CreateEventDestinationCommandInput}
|
|
68
|
+
* @returns {@link CreateEventDestinationCommandOutput}
|
|
69
|
+
* @see {@link CreateEventDestinationCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link CreateEventDestinationCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link StediClientResolvedConfig | config} for StediClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link EventDestinationsLimitExceededException} (client fault)
|
|
74
|
+
* The account has reached its maximum number of event destinations. Delete an existing destination or request a limit increase before creating another. Not retryable — the caller must change account state before retrying.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link AuthenticationFailedException} (client fault)
|
|
77
|
+
* The request credentials are missing or not valid.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ConflictException} (client fault)
|
|
80
|
+
* The request conflicts with the current state of the resource.
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ContentTooLargeException} (client fault)
|
|
83
|
+
* The request payload is larger than the service accepts. Send less in one request.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
86
|
+
* The caller is authenticated but lacks permission for this resource or action.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link InternalServerException} (server fault)
|
|
89
|
+
* The service failed unexpectedly. Retry with backoff.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
92
|
+
* The request is not valid. Fix the request before retrying.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
95
|
+
* The caller has exceeded a rate limit. Retry with backoff.
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link StediServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from Stedi service.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
101
|
+
* @example Create a destination
|
|
102
|
+
* ```javascript
|
|
103
|
+
* //
|
|
104
|
+
* const input = {
|
|
105
|
+
* destinationUrl: "https://example.com/webhooks",
|
|
106
|
+
* eventTypes: [
|
|
107
|
+
* "enrollment.activated"
|
|
108
|
+
* ],
|
|
109
|
+
* idempotencyKey: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
110
|
+
* name: "My Destination",
|
|
111
|
+
* status: "ENABLED"
|
|
112
|
+
* };
|
|
113
|
+
* const command = new CreateEventDestinationCommand(input);
|
|
114
|
+
* const response = await client.send(command);
|
|
115
|
+
* /* response is
|
|
116
|
+
* {
|
|
117
|
+
* createdAt: "2026-02-01T12:00:00Z",
|
|
118
|
+
* description: "Receives enrollment notifications",
|
|
119
|
+
* destinationUrl: "https://example.com/webhooks",
|
|
120
|
+
* eventTypes: [
|
|
121
|
+
* "enrollment.activated"
|
|
122
|
+
* ],
|
|
123
|
+
* id: "dst_550e8400-e29b-41d4-a716-446655440000",
|
|
124
|
+
* name: "My Destination",
|
|
125
|
+
* signingSecret: "whsec_YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXoxMjM0NTY=",
|
|
126
|
+
* status: "ENABLED",
|
|
127
|
+
* updatedAt: "2026-02-01T12:00:00Z"
|
|
128
|
+
* }
|
|
129
|
+
* *\/
|
|
130
|
+
* ```
|
|
131
|
+
*
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export declare class CreateEventDestinationCommand extends CreateEventDestinationCommand_base {
|
|
135
|
+
/** @internal type navigation helper, not in runtime. */
|
|
136
|
+
protected static __types: {
|
|
137
|
+
api: {
|
|
138
|
+
input: CreateEventDestinationInput;
|
|
139
|
+
output: CreateEventDestinationOutput;
|
|
140
|
+
};
|
|
141
|
+
sdk: {
|
|
142
|
+
input: CreateEventDestinationCommandInput;
|
|
143
|
+
output: CreateEventDestinationCommandOutput;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
}
|