@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,169 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListClaimsInput, ListClaimsOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListClaimsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListClaimsCommandInput extends ListClaimsInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListClaimsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListClaimsCommandOutput extends ListClaimsOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListClaimsCommand_base: {
|
|
22
|
+
new (input: ListClaimsCommandInput): import("@smithy/core/client").CommandImpl<ListClaimsCommandInput, ListClaimsCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListClaimsCommandInput]): import("@smithy/core/client").CommandImpl<ListClaimsCommandInput, ListClaimsCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Retrieve a paginated list of claim records, newest first. Filter by status, patient control numbers, or submission time
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { StediClient, ListClaimsCommand } from "@stedi/sdk"; // ES Modules import
|
|
32
|
+
* // const { StediClient, ListClaimsCommand } = 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 = { // ListClaimsInput
|
|
37
|
+
* pageSize: Number("int"),
|
|
38
|
+
* pageToken: "STRING_VALUE",
|
|
39
|
+
* status: [ // ClaimStatusList
|
|
40
|
+
* "SUBMITTED" || "RECEIVED" || "ACCEPTED" || "REJECTED" || "PROCESSED" || "DENIED" || "UNKNOWN",
|
|
41
|
+
* ],
|
|
42
|
+
* patientControlNumbers: [ // ClaimPatientControlNumbersList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* submittedAfter: new Date("TIMESTAMP"),
|
|
46
|
+
* submittedBefore: new Date("TIMESTAMP"),
|
|
47
|
+
* };
|
|
48
|
+
* const command = new ListClaimsCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // ListClaimsOutput
|
|
51
|
+
* // nextPageToken: "STRING_VALUE",
|
|
52
|
+
* // items: [ // ClaimSummaries // required
|
|
53
|
+
* // { // ClaimSummary
|
|
54
|
+
* // id: "STRING_VALUE", // required
|
|
55
|
+
* // stediPayerId: "STRING_VALUE",
|
|
56
|
+
* // patientControlNumber: "STRING_VALUE", // required
|
|
57
|
+
* // patientName: { // ClaimPatientName
|
|
58
|
+
* // firstName: "STRING_VALUE",
|
|
59
|
+
* // middleName: "STRING_VALUE",
|
|
60
|
+
* // lastName: "STRING_VALUE",
|
|
61
|
+
* // suffix: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // status: "SUBMITTED" || "RECEIVED" || "ACCEPTED" || "REJECTED" || "PROCESSED" || "DENIED" || "UNKNOWN", // required
|
|
64
|
+
* // statusReportedBy: "PAYER" || "CLEARINGHOUSE", // required
|
|
65
|
+
* // type: "DENTAL" || "INSTITUTIONAL" || "PROFESSIONAL", // required
|
|
66
|
+
* // totalClaimChargeAmount: "STRING_VALUE", // required
|
|
67
|
+
* // totalClaimPaidAmount: "STRING_VALUE",
|
|
68
|
+
* // datesOfService: { // ClaimDateRange
|
|
69
|
+
* // start: "STRING_VALUE", // required
|
|
70
|
+
* // end: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // submittedAt: new Date("TIMESTAMP"), // required
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @param ListClaimsCommandInput - {@link ListClaimsCommandInput}
|
|
80
|
+
* @returns {@link ListClaimsCommandOutput}
|
|
81
|
+
* @see {@link ListClaimsCommandInput} for command's `input` shape.
|
|
82
|
+
* @see {@link ListClaimsCommandOutput} for command's `response` shape.
|
|
83
|
+
* @see {@link StediClientResolvedConfig | config} for StediClient's `config` shape.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link AuthenticationFailedException} (client fault)
|
|
86
|
+
* The request credentials are missing or not valid.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
89
|
+
* The caller is authenticated but lacks permission for this resource or action.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InternalServerException} (server fault)
|
|
92
|
+
* The service failed unexpectedly. Retry with backoff.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
95
|
+
* The request is not valid. Fix the request before retrying.
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
98
|
+
* The caller has exceeded a rate limit. Retry with backoff.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link StediServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from Stedi service.</p>
|
|
102
|
+
*
|
|
103
|
+
*
|
|
104
|
+
* @example List claims
|
|
105
|
+
* ```javascript
|
|
106
|
+
* //
|
|
107
|
+
* const input = {
|
|
108
|
+
* pageSize: 100
|
|
109
|
+
* };
|
|
110
|
+
* const command = new ListClaimsCommand(input);
|
|
111
|
+
* const response = await client.send(command);
|
|
112
|
+
* /* response is
|
|
113
|
+
* {
|
|
114
|
+
* items: [
|
|
115
|
+
* {
|
|
116
|
+
* datesOfService: {
|
|
117
|
+
* start: "2026-01-05"
|
|
118
|
+
* },
|
|
119
|
+
* id: "clm_01K6XFP3TZ8RA9X84963NMW40N",
|
|
120
|
+
* patientControlNumber: "123456",
|
|
121
|
+
* patientName: {
|
|
122
|
+
* firstName: "John",
|
|
123
|
+
* lastName: "Doe",
|
|
124
|
+
* middleName: "Michael",
|
|
125
|
+
* suffix: "Jr"
|
|
126
|
+
* },
|
|
127
|
+
* status: "PROCESSED",
|
|
128
|
+
* statusReportedBy: "PAYER",
|
|
129
|
+
* stediPayerId: "ABCDE",
|
|
130
|
+
* submittedAt: "2026-01-16T10:00:00Z",
|
|
131
|
+
* totalClaimChargeAmount: "832.00",
|
|
132
|
+
* totalClaimPaidAmount: "200.00",
|
|
133
|
+
* type: "PROFESSIONAL"
|
|
134
|
+
* },
|
|
135
|
+
* {
|
|
136
|
+
* id: "clm_01K6XFP3TZ8RA9X84963NMW41P",
|
|
137
|
+
* patientControlNumber: "123457",
|
|
138
|
+
* patientName: {
|
|
139
|
+
* firstName: "Jane",
|
|
140
|
+
* lastName: "Doe"
|
|
141
|
+
* },
|
|
142
|
+
* status: "SUBMITTED",
|
|
143
|
+
* statusReportedBy: "CLEARINGHOUSE",
|
|
144
|
+
* stediPayerId: "ABCDE",
|
|
145
|
+
* submittedAt: "2026-01-06T10:00:00Z",
|
|
146
|
+
* totalClaimChargeAmount: "125.00",
|
|
147
|
+
* type: "PROFESSIONAL"
|
|
148
|
+
* }
|
|
149
|
+
* ],
|
|
150
|
+
* nextPageToken: "eyJsYXN0SWQiOiIwMUs2WEZQMyJ9"
|
|
151
|
+
* }
|
|
152
|
+
* *\/
|
|
153
|
+
* ```
|
|
154
|
+
*
|
|
155
|
+
* @internal
|
|
156
|
+
*/
|
|
157
|
+
export declare class ListClaimsCommand extends ListClaimsCommand_base {
|
|
158
|
+
/** @internal type navigation helper, not in runtime. */
|
|
159
|
+
protected static __types: {
|
|
160
|
+
api: {
|
|
161
|
+
input: ListClaimsInput;
|
|
162
|
+
output: ListClaimsOutput;
|
|
163
|
+
};
|
|
164
|
+
sdk: {
|
|
165
|
+
input: ListClaimsCommandInput;
|
|
166
|
+
output: ListClaimsCommandOutput;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListEventDestinationEventsInput, ListEventDestinationEventsOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListEventDestinationEventsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListEventDestinationEventsCommandInput extends ListEventDestinationEventsInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListEventDestinationEventsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListEventDestinationEventsCommandOutput extends ListEventDestinationEventsOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListEventDestinationEventsCommand_base: {
|
|
22
|
+
new (input: ListEventDestinationEventsCommandInput): import("@smithy/core/client").CommandImpl<ListEventDestinationEventsCommandInput, ListEventDestinationEventsCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListEventDestinationEventsCommandInput]): import("@smithy/core/client").CommandImpl<ListEventDestinationEventsCommandInput, ListEventDestinationEventsCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Lists all events for your account. Results are paginated.
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { StediClient, ListEventDestinationEventsCommand } from "@stedi/sdk"; // ES Modules import
|
|
32
|
+
* // const { StediClient, ListEventDestinationEventsCommand } = 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 = { // ListEventDestinationEventsInput
|
|
37
|
+
* pageSize: Number("int"),
|
|
38
|
+
* pageToken: "STRING_VALUE",
|
|
39
|
+
* eventId: "STRING_VALUE",
|
|
40
|
+
* status: [ // EventDestinationsEventStatusList
|
|
41
|
+
* "PENDING" || "DELIVERED" || "FAILED",
|
|
42
|
+
* ],
|
|
43
|
+
* eventType: "STRING_VALUE",
|
|
44
|
+
* created: [ // EventDestinationsTimestampFilter
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* };
|
|
48
|
+
* const command = new ListEventDestinationEventsCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // ListEventDestinationEventsOutput
|
|
51
|
+
* // nextPageToken: "STRING_VALUE",
|
|
52
|
+
* // items: [ // EventDestinationsEventSummaryList // required
|
|
53
|
+
* // { // EventDestinationsEventSummary
|
|
54
|
+
* // id: "STRING_VALUE", // required
|
|
55
|
+
* // status: "PENDING" || "DELIVERED" || "FAILED", // required
|
|
56
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // eventType: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
62
|
+
* ```
|
|
63
|
+
*
|
|
64
|
+
* @param ListEventDestinationEventsCommandInput - {@link ListEventDestinationEventsCommandInput}
|
|
65
|
+
* @returns {@link ListEventDestinationEventsCommandOutput}
|
|
66
|
+
* @see {@link ListEventDestinationEventsCommandInput} for command's `input` shape.
|
|
67
|
+
* @see {@link ListEventDestinationEventsCommandOutput} for command's `response` shape.
|
|
68
|
+
* @see {@link StediClientResolvedConfig | config} for StediClient's `config` shape.
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link AuthenticationFailedException} (client fault)
|
|
71
|
+
* The request credentials are missing or not valid.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
74
|
+
* The caller is authenticated but lacks permission for this resource or action.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* The service failed unexpectedly. Retry with backoff.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
80
|
+
* The request is not valid. Fix the request before retrying.
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link StediServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Stedi service.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
86
|
+
* @example List events
|
|
87
|
+
* ```javascript
|
|
88
|
+
* //
|
|
89
|
+
* const input = { /* empty *\/ };
|
|
90
|
+
* const command = new ListEventDestinationEventsCommand(input);
|
|
91
|
+
* const response = await client.send(command);
|
|
92
|
+
* /* response is
|
|
93
|
+
* {
|
|
94
|
+
* items: [
|
|
95
|
+
* {
|
|
96
|
+
* createdAt: "2026-02-01T12:00:00Z",
|
|
97
|
+
* eventType: "enrollment.activated",
|
|
98
|
+
* id: "evt_550e8400-e29b-41d4-a716-446655440000",
|
|
99
|
+
* status: "DELIVERED"
|
|
100
|
+
* }
|
|
101
|
+
* ]
|
|
102
|
+
* }
|
|
103
|
+
* *\/
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export declare class ListEventDestinationEventsCommand extends ListEventDestinationEventsCommand_base {
|
|
109
|
+
/** @internal type navigation helper, not in runtime. */
|
|
110
|
+
protected static __types: {
|
|
111
|
+
api: {
|
|
112
|
+
input: ListEventDestinationEventsInput;
|
|
113
|
+
output: ListEventDestinationEventsOutput;
|
|
114
|
+
};
|
|
115
|
+
sdk: {
|
|
116
|
+
input: ListEventDestinationEventsCommandInput;
|
|
117
|
+
output: ListEventDestinationEventsCommandOutput;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListEventDestinationsInput, ListEventDestinationsOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListEventDestinationsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListEventDestinationsCommandInput extends ListEventDestinationsInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListEventDestinationsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListEventDestinationsCommandOutput extends ListEventDestinationsOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListEventDestinationsCommand_base: {
|
|
22
|
+
new (input: ListEventDestinationsCommandInput): import("@smithy/core/client").CommandImpl<ListEventDestinationsCommandInput, ListEventDestinationsCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListEventDestinationsCommandInput]): import("@smithy/core/client").CommandImpl<ListEventDestinationsCommandInput, ListEventDestinationsCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Lists all destinations configured for your account. Results are paginated.
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { StediClient, ListEventDestinationsCommand } from "@stedi/sdk"; // ES Modules import
|
|
32
|
+
* // const { StediClient, ListEventDestinationsCommand } = 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 = { // ListEventDestinationsInput
|
|
37
|
+
* pageSize: Number("int"),
|
|
38
|
+
* pageToken: "STRING_VALUE",
|
|
39
|
+
* status: "ENABLED" || "DISABLED",
|
|
40
|
+
* eventType: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListEventDestinationsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListEventDestinationsOutput
|
|
45
|
+
* // nextPageToken: "STRING_VALUE",
|
|
46
|
+
* // items: [ // EventDestinationsDestinationSummaryList // required
|
|
47
|
+
* // { // EventDestinationsDestinationSummary
|
|
48
|
+
* // id: "STRING_VALUE", // required
|
|
49
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // status: "ENABLED" || "DISABLED", // required
|
|
52
|
+
* // lastDeliveryTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // name: "STRING_VALUE", // required
|
|
54
|
+
* // description: "STRING_VALUE", // required
|
|
55
|
+
* // eventTypes: [ // EventDestinationsEventTypeList // required
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // destinationUrl: "STRING_VALUE", // required
|
|
59
|
+
* // concurrencyLimit: Number("int"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListEventDestinationsCommandInput - {@link ListEventDestinationsCommandInput}
|
|
67
|
+
* @returns {@link ListEventDestinationsCommandOutput}
|
|
68
|
+
* @see {@link ListEventDestinationsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListEventDestinationsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link StediClientResolvedConfig | config} for StediClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AuthenticationFailedException} (client fault)
|
|
73
|
+
* The request credentials are missing or not valid.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
76
|
+
* The caller is authenticated but lacks permission for this resource or action.
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InternalServerException} (server fault)
|
|
79
|
+
* The service failed unexpectedly. Retry with backoff.
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
82
|
+
* The request is not valid. Fix the request before retrying.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
85
|
+
* The caller has exceeded a rate limit. Retry with backoff.
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link StediServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Stedi service.</p>
|
|
89
|
+
*
|
|
90
|
+
*
|
|
91
|
+
* @example List destinations
|
|
92
|
+
* ```javascript
|
|
93
|
+
* //
|
|
94
|
+
* const input = { /* empty *\/ };
|
|
95
|
+
* const command = new ListEventDestinationsCommand(input);
|
|
96
|
+
* const response = await client.send(command);
|
|
97
|
+
* /* response is
|
|
98
|
+
* {
|
|
99
|
+
* items: [
|
|
100
|
+
* {
|
|
101
|
+
* createdAt: "2026-02-01T12:00:00Z",
|
|
102
|
+
* description: "Receives enrollment notifications",
|
|
103
|
+
* destinationUrl: "https://example.com/webhooks",
|
|
104
|
+
* eventTypes: [
|
|
105
|
+
* "enrollment.activated"
|
|
106
|
+
* ],
|
|
107
|
+
* id: "dst_550e8400-e29b-41d4-a716-446655440000",
|
|
108
|
+
* lastDeliveryTime: "2026-02-01T12:00:01Z",
|
|
109
|
+
* name: "My Destination",
|
|
110
|
+
* status: "ENABLED",
|
|
111
|
+
* updatedAt: "2026-02-01T12:00:00Z"
|
|
112
|
+
* }
|
|
113
|
+
* ]
|
|
114
|
+
* }
|
|
115
|
+
* *\/
|
|
116
|
+
* ```
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare class ListEventDestinationsCommand extends ListEventDestinationsCommand_base {
|
|
121
|
+
/** @internal type navigation helper, not in runtime. */
|
|
122
|
+
protected static __types: {
|
|
123
|
+
api: {
|
|
124
|
+
input: ListEventDestinationsInput;
|
|
125
|
+
output: ListEventDestinationsOutput;
|
|
126
|
+
};
|
|
127
|
+
sdk: {
|
|
128
|
+
input: ListEventDestinationsCommandInput;
|
|
129
|
+
output: ListEventDestinationsCommandOutput;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { RotateEventDestinationSecretInput, RotateEventDestinationSecretOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link RotateEventDestinationSecretCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface RotateEventDestinationSecretCommandInput extends RotateEventDestinationSecretInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link RotateEventDestinationSecretCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface RotateEventDestinationSecretCommandOutput extends RotateEventDestinationSecretOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const RotateEventDestinationSecretCommand_base: {
|
|
22
|
+
new (input: RotateEventDestinationSecretCommandInput): import("@smithy/core/client").CommandImpl<RotateEventDestinationSecretCommandInput, RotateEventDestinationSecretCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RotateEventDestinationSecretCommandInput): import("@smithy/core/client").CommandImpl<RotateEventDestinationSecretCommandInput, RotateEventDestinationSecretCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Rotates the signing secret for a destination. The previous secret remains valid for the period specified by `previousSecretExpiryHours` (or `0` for immediate invalidation) to allow for a graceful transition.
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { StediClient, RotateEventDestinationSecretCommand } from "@stedi/sdk"; // ES Modules import
|
|
32
|
+
* // const { StediClient, RotateEventDestinationSecretCommand } = 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 = { // RotateEventDestinationSecretInput
|
|
37
|
+
* destinationId: "STRING_VALUE", // required
|
|
38
|
+
* previousSecretExpiryHours: Number("int"),
|
|
39
|
+
* idempotencyKey: "STRING_VALUE",
|
|
40
|
+
* };
|
|
41
|
+
* const command = new RotateEventDestinationSecretCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // RotateEventDestinationSecretOutput
|
|
44
|
+
* // signingSecret: "STRING_VALUE", // required
|
|
45
|
+
* // previousSecretExpiresAt: new Date("TIMESTAMP"),
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param RotateEventDestinationSecretCommandInput - {@link RotateEventDestinationSecretCommandInput}
|
|
51
|
+
* @returns {@link RotateEventDestinationSecretCommandOutput}
|
|
52
|
+
* @see {@link RotateEventDestinationSecretCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link RotateEventDestinationSecretCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link StediClientResolvedConfig | config} for StediClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AuthenticationFailedException} (client fault)
|
|
57
|
+
* The request credentials are missing or not valid.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* The request conflicts with the current state of the resource.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
63
|
+
* The caller is authenticated but lacks permission for this resource or action.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerException} (server fault)
|
|
66
|
+
* The service failed unexpectedly. Retry with backoff.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
69
|
+
* The request is not valid. Fix the request before retrying.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link NotFoundException} (client fault)
|
|
72
|
+
* The requested resource does not exist.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
+
* The caller has exceeded a rate limit. Retry with backoff.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link StediServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Stedi service.</p>
|
|
79
|
+
*
|
|
80
|
+
*
|
|
81
|
+
* @example Rotate destination secret
|
|
82
|
+
* ```javascript
|
|
83
|
+
* //
|
|
84
|
+
* const input = {
|
|
85
|
+
* destinationId: "dst_550e8400-e29b-41d4-a716-446655440000",
|
|
86
|
+
* idempotencyKey: "d4e5f6a7-b8c9-0123-defa-234567890123",
|
|
87
|
+
* previousSecretExpiryHours: 24
|
|
88
|
+
* };
|
|
89
|
+
* const command = new RotateEventDestinationSecretCommand(input);
|
|
90
|
+
* const response = await client.send(command);
|
|
91
|
+
* /* response is
|
|
92
|
+
* {
|
|
93
|
+
* previousSecretExpiresAt: "2025-01-01T00:00:00Z",
|
|
94
|
+
* signingSecret: "whsec_bmV3c2VjcmV0Zm9ycm90YXRpb25leGFtcGxlMTIzNA=="
|
|
95
|
+
* }
|
|
96
|
+
* *\/
|
|
97
|
+
* ```
|
|
98
|
+
*
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export declare class RotateEventDestinationSecretCommand extends RotateEventDestinationSecretCommand_base {
|
|
102
|
+
/** @internal type navigation helper, not in runtime. */
|
|
103
|
+
protected static __types: {
|
|
104
|
+
api: {
|
|
105
|
+
input: RotateEventDestinationSecretInput;
|
|
106
|
+
output: RotateEventDestinationSecretOutput;
|
|
107
|
+
};
|
|
108
|
+
sdk: {
|
|
109
|
+
input: RotateEventDestinationSecretCommandInput;
|
|
110
|
+
output: RotateEventDestinationSecretCommandOutput;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { UpdateEventDestinationInput, UpdateEventDestinationOutput } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link UpdateEventDestinationCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface UpdateEventDestinationCommandInput extends UpdateEventDestinationInput {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link UpdateEventDestinationCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface UpdateEventDestinationCommandOutput extends UpdateEventDestinationOutput, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const UpdateEventDestinationCommand_base: {
|
|
22
|
+
new (input: UpdateEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<UpdateEventDestinationCommandInput, UpdateEventDestinationCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateEventDestinationCommandInput): import("@smithy/core/client").CommandImpl<UpdateEventDestinationCommandInput, UpdateEventDestinationCommandOutput, import("..").StediClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Updates an existing destination configuration.
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { StediClient, UpdateEventDestinationCommand } from "@stedi/sdk"; // ES Modules import
|
|
32
|
+
* // const { StediClient, UpdateEventDestinationCommand } = 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 = { // UpdateEventDestinationInput
|
|
37
|
+
* destinationId: "STRING_VALUE", // required
|
|
38
|
+
* name: "STRING_VALUE",
|
|
39
|
+
* description: "STRING_VALUE",
|
|
40
|
+
* eventTypes: [ // EventDestinationsEventTypeList
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* destinationUrl: "STRING_VALUE",
|
|
44
|
+
* concurrencyLimit: Number("int"),
|
|
45
|
+
* status: "ENABLED" || "DISABLED",
|
|
46
|
+
* idempotencyKey: "STRING_VALUE",
|
|
47
|
+
* };
|
|
48
|
+
* const command = new UpdateEventDestinationCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // UpdateEventDestinationOutput
|
|
51
|
+
* // id: "STRING_VALUE", // required
|
|
52
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // status: "ENABLED" || "DISABLED", // required
|
|
55
|
+
* // lastDeliveryTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // name: "STRING_VALUE", // required
|
|
57
|
+
* // description: "STRING_VALUE", // required
|
|
58
|
+
* // eventTypes: [ // EventDestinationsEventTypeList // required
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // destinationUrl: "STRING_VALUE", // required
|
|
62
|
+
* // concurrencyLimit: Number("int"),
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param UpdateEventDestinationCommandInput - {@link UpdateEventDestinationCommandInput}
|
|
68
|
+
* @returns {@link UpdateEventDestinationCommandOutput}
|
|
69
|
+
* @see {@link UpdateEventDestinationCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link UpdateEventDestinationCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link StediClientResolvedConfig | config} for StediClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AuthenticationFailedException} (client fault)
|
|
74
|
+
* The request credentials are missing or not valid.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ConflictException} (client fault)
|
|
77
|
+
* The request conflicts with the current state of the resource.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ContentTooLargeException} (client fault)
|
|
80
|
+
* The request payload is larger than the service accepts. Send less in one request.
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
83
|
+
* The caller is authenticated but lacks permission for this resource or action.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InternalServerException} (server fault)
|
|
86
|
+
* The service failed unexpectedly. Retry with backoff.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
89
|
+
* The request is not valid. Fix the request before retrying.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link NotFoundException} (client fault)
|
|
92
|
+
* The requested resource does not exist.
|
|
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 Update a destination
|
|
102
|
+
* ```javascript
|
|
103
|
+
* //
|
|
104
|
+
* const input = {
|
|
105
|
+
* destinationId: "dst_550e8400-e29b-41d4-a716-446655440000",
|
|
106
|
+
* idempotencyKey: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
107
|
+
* name: "Updated Destination Name",
|
|
108
|
+
* status: "DISABLED"
|
|
109
|
+
* };
|
|
110
|
+
* const command = new UpdateEventDestinationCommand(input);
|
|
111
|
+
* const response = await client.send(command);
|
|
112
|
+
* /* response is
|
|
113
|
+
* {
|
|
114
|
+
* createdAt: "2026-02-01T12:00:00Z",
|
|
115
|
+
* description: "",
|
|
116
|
+
* destinationUrl: "https://example.com/webhooks",
|
|
117
|
+
* eventTypes: [
|
|
118
|
+
* "enrollment.activated"
|
|
119
|
+
* ],
|
|
120
|
+
* id: "dst_550e8400-e29b-41d4-a716-446655440000",
|
|
121
|
+
* name: "Updated Destination Name",
|
|
122
|
+
* status: "DISABLED",
|
|
123
|
+
* updatedAt: "2026-02-02T08:30:00Z"
|
|
124
|
+
* }
|
|
125
|
+
* *\/
|
|
126
|
+
* ```
|
|
127
|
+
*
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export declare class UpdateEventDestinationCommand extends UpdateEventDestinationCommand_base {
|
|
131
|
+
/** @internal type navigation helper, not in runtime. */
|
|
132
|
+
protected static __types: {
|
|
133
|
+
api: {
|
|
134
|
+
input: UpdateEventDestinationInput;
|
|
135
|
+
output: UpdateEventDestinationOutput;
|
|
136
|
+
};
|
|
137
|
+
sdk: {
|
|
138
|
+
input: UpdateEventDestinationCommandInput;
|
|
139
|
+
output: UpdateEventDestinationCommandOutput;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
}
|