celitech-sdk 1.1.68 → 1.1.72
Sign up to get free protection for your applications and to get access to all the features.
- package/.devcontainer/devcontainer.json +24 -0
- package/.github/workflows/publish_npmjs.yml +31 -0
- package/.manifest.json +245 -0
- package/LICENSE +9 -7
- package/README.md +86 -459
- package/documentation/models/CreatePurchaseOkResponse.md +31 -0
- package/documentation/models/CreatePurchaseRequest.md +15 -0
- package/documentation/models/EditPurchaseOkResponse.md +11 -0
- package/documentation/models/EditPurchaseRequest.md +11 -0
- package/documentation/models/GetEsimDeviceOkResponse.md +18 -0
- package/documentation/models/GetEsimHistoryOkResponse.md +26 -0
- package/documentation/models/GetEsimMacOkResponse.md +17 -0
- package/documentation/models/GetEsimOkResponse.md +18 -0
- package/documentation/models/GetPurchaseConsumptionOkResponse.md +8 -0
- package/documentation/models/ListDestinationsOkResponse.md +17 -0
- package/documentation/models/ListPackagesOkResponse.md +21 -0
- package/documentation/models/ListPurchasesOkResponse.md +46 -0
- package/documentation/models/TopUpEsimOkResponse.md +30 -0
- package/documentation/models/TopUpEsimRequest.md +14 -0
- package/documentation/services/DestinationsService.md +35 -0
- package/documentation/services/ESimService.md +148 -0
- package/documentation/services/PackagesService.md +48 -0
- package/documentation/services/PurchasesService.md +219 -0
- package/examples/README.md +27 -0
- package/examples/package.json +18 -0
- package/examples/src/index.ts +12 -0
- package/examples/tsconfig.json +22 -0
- package/package.json +17 -50
- package/src/http/client.ts +46 -0
- package/src/http/environment.ts +3 -0
- package/src/http/error.ts +12 -0
- package/src/http/handlers/handler-chain.ts +22 -0
- package/src/http/handlers/hook-handler.ts +47 -0
- package/src/http/handlers/request-validation-handler.ts +72 -0
- package/src/http/handlers/response-validation-handler.ts +106 -0
- package/src/http/handlers/retry-handler.ts +40 -0
- package/src/http/handlers/terminating-handler.ts +38 -0
- package/src/http/hooks/custom-hook.ts +87 -0
- package/src/http/hooks/hook.ts +40 -0
- package/src/http/index.ts +4 -0
- package/src/http/serializer.ts +183 -0
- package/src/http/transport/request-builder.ts +145 -0
- package/src/http/transport/request.ts +178 -0
- package/src/http/types.ts +70 -0
- package/src/index.ts +68 -0
- package/src/services/base-service.ts +29 -0
- package/src/services/destinations/destinations.ts +29 -0
- package/src/services/destinations/index.ts +1 -0
- package/src/services/destinations/models/destinations.ts +57 -0
- package/src/services/destinations/models/index.ts +2 -0
- package/src/services/destinations/models/list-destinations-ok-response.ts +42 -0
- package/src/services/e-sim/e-sim.ts +104 -0
- package/src/services/e-sim/index.ts +1 -0
- package/src/services/e-sim/models/device.ts +63 -0
- package/src/services/e-sim/models/get-esim-device-ok-response.ts +42 -0
- package/src/services/e-sim/models/get-esim-history-ok-response-esim.ts +47 -0
- package/src/services/e-sim/models/get-esim-history-ok-response.ts +46 -0
- package/src/services/e-sim/models/get-esim-mac-ok-response-esim.ts +57 -0
- package/src/services/e-sim/models/get-esim-mac-ok-response.ts +46 -0
- package/src/services/e-sim/models/get-esim-ok-response-esim.ts +63 -0
- package/src/services/e-sim/models/get-esim-ok-response.ts +46 -0
- package/src/services/e-sim/models/history.ts +53 -0
- package/src/services/e-sim/models/index.ts +9 -0
- package/src/services/e-sim/request-params.ts +3 -0
- package/src/services/packages/index.ts +1 -0
- package/src/services/packages/models/index.ts +2 -0
- package/src/services/packages/models/list-packages-ok-response.ts +49 -0
- package/src/services/packages/models/packages.ts +75 -0
- package/src/services/packages/packages.ts +49 -0
- package/src/services/packages/request-params.ts +10 -0
- package/src/services/purchases/index.ts +1 -0
- package/src/services/purchases/models/create-purchase-ok-response-profile.ts +46 -0
- package/src/services/purchases/models/create-purchase-ok-response-purchase.ts +81 -0
- package/src/services/purchases/models/create-purchase-ok-response.ts +61 -0
- package/src/services/purchases/models/create-purchase-request.ts +93 -0
- package/src/services/purchases/models/edit-purchase-ok-response.ts +69 -0
- package/src/services/purchases/models/edit-purchase-request.ts +69 -0
- package/src/services/purchases/models/get-purchase-consumption-ok-response.ts +48 -0
- package/src/services/purchases/models/index.ts +15 -0
- package/src/services/purchases/models/list-purchases-ok-response.ts +49 -0
- package/src/services/purchases/models/package_.ts +69 -0
- package/src/services/purchases/models/purchases-esim.ts +41 -0
- package/src/services/purchases/models/purchases.ts +107 -0
- package/src/services/purchases/models/top-up-esim-ok-response-profile.ts +41 -0
- package/src/services/purchases/models/top-up-esim-ok-response-purchase.ts +81 -0
- package/src/services/purchases/models/top-up-esim-ok-response.ts +61 -0
- package/src/services/purchases/models/top-up-esim-request.ts +87 -0
- package/src/services/purchases/purchases.ts +160 -0
- package/src/services/purchases/request-params.ts +10 -0
- package/tsconfig.json +22 -0
- package/dist/commonjs/BaseService.d.ts +0 -11
- package/dist/commonjs/BaseService.d.ts.map +0 -1
- package/dist/commonjs/BaseService.js +0 -30
- package/dist/commonjs/BaseService.js.map +0 -1
- package/dist/commonjs/hooks/CustomHook.d.ts +0 -59
- package/dist/commonjs/hooks/CustomHook.d.ts.map +0 -1
- package/dist/commonjs/hooks/CustomHook.js +0 -74
- package/dist/commonjs/hooks/CustomHook.js.map +0 -1
- package/dist/commonjs/hooks/Hook.d.ts +0 -24
- package/dist/commonjs/hooks/Hook.d.ts.map +0 -1
- package/dist/commonjs/hooks/Hook.js +0 -3
- package/dist/commonjs/hooks/Hook.js.map +0 -1
- package/dist/commonjs/http/Environment.d.ts +0 -4
- package/dist/commonjs/http/Environment.d.ts.map +0 -1
- package/dist/commonjs/http/Environment.js +0 -8
- package/dist/commonjs/http/Environment.js.map +0 -1
- package/dist/commonjs/http/HTTPClient.d.ts +0 -13
- package/dist/commonjs/http/HTTPClient.d.ts.map +0 -1
- package/dist/commonjs/http/HTTPClient.js +0 -3
- package/dist/commonjs/http/HTTPClient.js.map +0 -1
- package/dist/commonjs/http/HTTPLibrary.d.ts +0 -23
- package/dist/commonjs/http/HTTPLibrary.d.ts.map +0 -1
- package/dist/commonjs/http/HTTPLibrary.js +0 -143
- package/dist/commonjs/http/HTTPLibrary.js.map +0 -1
- package/dist/commonjs/http/QuerySerializer.d.ts +0 -6
- package/dist/commonjs/http/QuerySerializer.d.ts.map +0 -1
- package/dist/commonjs/http/QuerySerializer.js +0 -70
- package/dist/commonjs/http/QuerySerializer.js.map +0 -1
- package/dist/commonjs/http/errors/BadGateway.d.ts +0 -7
- package/dist/commonjs/http/errors/BadGateway.d.ts.map +0 -1
- package/dist/commonjs/http/errors/BadGateway.js +0 -12
- package/dist/commonjs/http/errors/BadGateway.js.map +0 -1
- package/dist/commonjs/http/errors/BadRequest.d.ts +0 -7
- package/dist/commonjs/http/errors/BadRequest.d.ts.map +0 -1
- package/dist/commonjs/http/errors/BadRequest.js +0 -12
- package/dist/commonjs/http/errors/BadRequest.js.map +0 -1
- package/dist/commonjs/http/errors/Conflict.d.ts +0 -7
- package/dist/commonjs/http/errors/Conflict.d.ts.map +0 -1
- package/dist/commonjs/http/errors/Conflict.js +0 -12
- package/dist/commonjs/http/errors/Conflict.js.map +0 -1
- package/dist/commonjs/http/errors/ExpectationFailed.d.ts +0 -7
- package/dist/commonjs/http/errors/ExpectationFailed.d.ts.map +0 -1
- package/dist/commonjs/http/errors/ExpectationFailed.js +0 -12
- package/dist/commonjs/http/errors/ExpectationFailed.js.map +0 -1
- package/dist/commonjs/http/errors/FailedDependency.d.ts +0 -7
- package/dist/commonjs/http/errors/FailedDependency.d.ts.map +0 -1
- package/dist/commonjs/http/errors/FailedDependency.js +0 -12
- package/dist/commonjs/http/errors/FailedDependency.js.map +0 -1
- package/dist/commonjs/http/errors/Forbidden.d.ts +0 -7
- package/dist/commonjs/http/errors/Forbidden.d.ts.map +0 -1
- package/dist/commonjs/http/errors/Forbidden.js +0 -12
- package/dist/commonjs/http/errors/Forbidden.js.map +0 -1
- package/dist/commonjs/http/errors/GatewayTimeout.d.ts +0 -7
- package/dist/commonjs/http/errors/GatewayTimeout.d.ts.map +0 -1
- package/dist/commonjs/http/errors/GatewayTimeout.js +0 -12
- package/dist/commonjs/http/errors/GatewayTimeout.js.map +0 -1
- package/dist/commonjs/http/errors/Gone.d.ts +0 -7
- package/dist/commonjs/http/errors/Gone.d.ts.map +0 -1
- package/dist/commonjs/http/errors/Gone.js +0 -12
- package/dist/commonjs/http/errors/Gone.js.map +0 -1
- package/dist/commonjs/http/errors/HttpVersionNotSupported.d.ts +0 -7
- package/dist/commonjs/http/errors/HttpVersionNotSupported.d.ts.map +0 -1
- package/dist/commonjs/http/errors/HttpVersionNotSupported.js +0 -12
- package/dist/commonjs/http/errors/HttpVersionNotSupported.js.map +0 -1
- package/dist/commonjs/http/errors/InternalServerError.d.ts +0 -7
- package/dist/commonjs/http/errors/InternalServerError.d.ts.map +0 -1
- package/dist/commonjs/http/errors/InternalServerError.js +0 -12
- package/dist/commonjs/http/errors/InternalServerError.js.map +0 -1
- package/dist/commonjs/http/errors/LengthRequired.d.ts +0 -7
- package/dist/commonjs/http/errors/LengthRequired.d.ts.map +0 -1
- package/dist/commonjs/http/errors/LengthRequired.js +0 -12
- package/dist/commonjs/http/errors/LengthRequired.js.map +0 -1
- package/dist/commonjs/http/errors/Locked.d.ts +0 -7
- package/dist/commonjs/http/errors/Locked.d.ts.map +0 -1
- package/dist/commonjs/http/errors/Locked.js +0 -12
- package/dist/commonjs/http/errors/Locked.js.map +0 -1
- package/dist/commonjs/http/errors/LoopDetected.d.ts +0 -7
- package/dist/commonjs/http/errors/LoopDetected.d.ts.map +0 -1
- package/dist/commonjs/http/errors/LoopDetected.js +0 -12
- package/dist/commonjs/http/errors/LoopDetected.js.map +0 -1
- package/dist/commonjs/http/errors/MethodNotAllowed.d.ts +0 -8
- package/dist/commonjs/http/errors/MethodNotAllowed.d.ts.map +0 -1
- package/dist/commonjs/http/errors/MethodNotAllowed.js +0 -13
- package/dist/commonjs/http/errors/MethodNotAllowed.js.map +0 -1
- package/dist/commonjs/http/errors/MisdirectedRequest.d.ts +0 -7
- package/dist/commonjs/http/errors/MisdirectedRequest.d.ts.map +0 -1
- package/dist/commonjs/http/errors/MisdirectedRequest.js +0 -12
- package/dist/commonjs/http/errors/MisdirectedRequest.js.map +0 -1
- package/dist/commonjs/http/errors/NetworkAuthenticationRequired.d.ts +0 -7
- package/dist/commonjs/http/errors/NetworkAuthenticationRequired.d.ts.map +0 -1
- package/dist/commonjs/http/errors/NetworkAuthenticationRequired.js +0 -12
- package/dist/commonjs/http/errors/NetworkAuthenticationRequired.js.map +0 -1
- package/dist/commonjs/http/errors/NotAcceptable.d.ts +0 -7
- package/dist/commonjs/http/errors/NotAcceptable.d.ts.map +0 -1
- package/dist/commonjs/http/errors/NotAcceptable.js +0 -12
- package/dist/commonjs/http/errors/NotAcceptable.js.map +0 -1
- package/dist/commonjs/http/errors/NotExtended.d.ts +0 -7
- package/dist/commonjs/http/errors/NotExtended.d.ts.map +0 -1
- package/dist/commonjs/http/errors/NotExtended.js +0 -12
- package/dist/commonjs/http/errors/NotExtended.js.map +0 -1
- package/dist/commonjs/http/errors/NotFound.d.ts +0 -7
- package/dist/commonjs/http/errors/NotFound.d.ts.map +0 -1
- package/dist/commonjs/http/errors/NotFound.js +0 -12
- package/dist/commonjs/http/errors/NotFound.js.map +0 -1
- package/dist/commonjs/http/errors/NotImplemented.d.ts +0 -7
- package/dist/commonjs/http/errors/NotImplemented.d.ts.map +0 -1
- package/dist/commonjs/http/errors/NotImplemented.js +0 -12
- package/dist/commonjs/http/errors/NotImplemented.js.map +0 -1
- package/dist/commonjs/http/errors/PayloadTooLarge.d.ts +0 -8
- package/dist/commonjs/http/errors/PayloadTooLarge.d.ts.map +0 -1
- package/dist/commonjs/http/errors/PayloadTooLarge.js +0 -13
- package/dist/commonjs/http/errors/PayloadTooLarge.js.map +0 -1
- package/dist/commonjs/http/errors/PaymentRequired.d.ts +0 -7
- package/dist/commonjs/http/errors/PaymentRequired.d.ts.map +0 -1
- package/dist/commonjs/http/errors/PaymentRequired.js +0 -12
- package/dist/commonjs/http/errors/PaymentRequired.js.map +0 -1
- package/dist/commonjs/http/errors/PreconditionFailed.d.ts +0 -7
- package/dist/commonjs/http/errors/PreconditionFailed.d.ts.map +0 -1
- package/dist/commonjs/http/errors/PreconditionFailed.js +0 -12
- package/dist/commonjs/http/errors/PreconditionFailed.js.map +0 -1
- package/dist/commonjs/http/errors/PreconditionRequired.d.ts +0 -7
- package/dist/commonjs/http/errors/PreconditionRequired.d.ts.map +0 -1
- package/dist/commonjs/http/errors/PreconditionRequired.js +0 -12
- package/dist/commonjs/http/errors/PreconditionRequired.js.map +0 -1
- package/dist/commonjs/http/errors/ProxyAuthenticationRequired.d.ts +0 -8
- package/dist/commonjs/http/errors/ProxyAuthenticationRequired.d.ts.map +0 -1
- package/dist/commonjs/http/errors/ProxyAuthenticationRequired.js +0 -13
- package/dist/commonjs/http/errors/ProxyAuthenticationRequired.js.map +0 -1
- package/dist/commonjs/http/errors/RangeNotSatisfiable.d.ts +0 -7
- package/dist/commonjs/http/errors/RangeNotSatisfiable.d.ts.map +0 -1
- package/dist/commonjs/http/errors/RangeNotSatisfiable.js +0 -12
- package/dist/commonjs/http/errors/RangeNotSatisfiable.js.map +0 -1
- package/dist/commonjs/http/errors/RequestHeaderFieldsTooLarge.d.ts +0 -7
- package/dist/commonjs/http/errors/RequestHeaderFieldsTooLarge.d.ts.map +0 -1
- package/dist/commonjs/http/errors/RequestHeaderFieldsTooLarge.js +0 -12
- package/dist/commonjs/http/errors/RequestHeaderFieldsTooLarge.js.map +0 -1
- package/dist/commonjs/http/errors/RequestTimeout.d.ts +0 -7
- package/dist/commonjs/http/errors/RequestTimeout.d.ts.map +0 -1
- package/dist/commonjs/http/errors/RequestTimeout.js +0 -12
- package/dist/commonjs/http/errors/RequestTimeout.js.map +0 -1
- package/dist/commonjs/http/errors/ServiceUnavailable.d.ts +0 -8
- package/dist/commonjs/http/errors/ServiceUnavailable.d.ts.map +0 -1
- package/dist/commonjs/http/errors/ServiceUnavailable.js +0 -13
- package/dist/commonjs/http/errors/ServiceUnavailable.js.map +0 -1
- package/dist/commonjs/http/errors/TooEarly.d.ts +0 -7
- package/dist/commonjs/http/errors/TooEarly.d.ts.map +0 -1
- package/dist/commonjs/http/errors/TooEarly.js +0 -12
- package/dist/commonjs/http/errors/TooEarly.js.map +0 -1
- package/dist/commonjs/http/errors/TooManyRequests.d.ts +0 -8
- package/dist/commonjs/http/errors/TooManyRequests.d.ts.map +0 -1
- package/dist/commonjs/http/errors/TooManyRequests.js +0 -13
- package/dist/commonjs/http/errors/TooManyRequests.js.map +0 -1
- package/dist/commonjs/http/errors/Unauthorized.d.ts +0 -8
- package/dist/commonjs/http/errors/Unauthorized.d.ts.map +0 -1
- package/dist/commonjs/http/errors/Unauthorized.js +0 -13
- package/dist/commonjs/http/errors/Unauthorized.js.map +0 -1
- package/dist/commonjs/http/errors/UnavailableForLegalReasons.d.ts +0 -7
- package/dist/commonjs/http/errors/UnavailableForLegalReasons.d.ts.map +0 -1
- package/dist/commonjs/http/errors/UnavailableForLegalReasons.js +0 -12
- package/dist/commonjs/http/errors/UnavailableForLegalReasons.js.map +0 -1
- package/dist/commonjs/http/errors/UnprocessableEntity.d.ts +0 -7
- package/dist/commonjs/http/errors/UnprocessableEntity.d.ts.map +0 -1
- package/dist/commonjs/http/errors/UnprocessableEntity.js +0 -12
- package/dist/commonjs/http/errors/UnprocessableEntity.js.map +0 -1
- package/dist/commonjs/http/errors/UnsufficientStorage.d.ts +0 -7
- package/dist/commonjs/http/errors/UnsufficientStorage.d.ts.map +0 -1
- package/dist/commonjs/http/errors/UnsufficientStorage.js +0 -12
- package/dist/commonjs/http/errors/UnsufficientStorage.js.map +0 -1
- package/dist/commonjs/http/errors/UnsupportedMediaType.d.ts +0 -7
- package/dist/commonjs/http/errors/UnsupportedMediaType.d.ts.map +0 -1
- package/dist/commonjs/http/errors/UnsupportedMediaType.js +0 -12
- package/dist/commonjs/http/errors/UnsupportedMediaType.js.map +0 -1
- package/dist/commonjs/http/errors/UpgradeRequired.d.ts +0 -7
- package/dist/commonjs/http/errors/UpgradeRequired.d.ts.map +0 -1
- package/dist/commonjs/http/errors/UpgradeRequired.js +0 -12
- package/dist/commonjs/http/errors/UpgradeRequired.js.map +0 -1
- package/dist/commonjs/http/errors/UriTooLong.d.ts +0 -7
- package/dist/commonjs/http/errors/UriTooLong.d.ts.map +0 -1
- package/dist/commonjs/http/errors/UriTooLong.js +0 -12
- package/dist/commonjs/http/errors/UriTooLong.js.map +0 -1
- package/dist/commonjs/http/errors/VariantAlsoNegotiates.d.ts +0 -7
- package/dist/commonjs/http/errors/VariantAlsoNegotiates.d.ts.map +0 -1
- package/dist/commonjs/http/errors/VariantAlsoNegotiates.js +0 -12
- package/dist/commonjs/http/errors/VariantAlsoNegotiates.js.map +0 -1
- package/dist/commonjs/http/errors/base.d.ts +0 -23
- package/dist/commonjs/http/errors/base.d.ts.map +0 -1
- package/dist/commonjs/http/errors/base.js +0 -36
- package/dist/commonjs/http/errors/base.js.map +0 -1
- package/dist/commonjs/http/errors/index.d.ts +0 -42
- package/dist/commonjs/http/errors/index.d.ts.map +0 -1
- package/dist/commonjs/http/errors/index.js +0 -87
- package/dist/commonjs/http/errors/index.js.map +0 -1
- package/dist/commonjs/http/httpExceptions.d.ts +0 -14
- package/dist/commonjs/http/httpExceptions.d.ts.map +0 -1
- package/dist/commonjs/http/httpExceptions.js +0 -92
- package/dist/commonjs/http/httpExceptions.js.map +0 -1
- package/dist/commonjs/index.d.ts +0 -26
- package/dist/commonjs/index.d.ts.map +0 -1
- package/dist/commonjs/index.js +0 -63
- package/dist/commonjs/index.js.map +0 -1
- package/dist/commonjs/models.d.ts +0 -15
- package/dist/commonjs/models.d.ts.map +0 -1
- package/dist/commonjs/models.js +0 -3
- package/dist/commonjs/models.js.map +0 -1
- package/dist/commonjs/services/destinations/Destinations.d.ts +0 -12
- package/dist/commonjs/services/destinations/Destinations.d.ts.map +0 -1
- package/dist/commonjs/services/destinations/Destinations.js +0 -32
- package/dist/commonjs/services/destinations/Destinations.js.map +0 -1
- package/dist/commonjs/services/destinations/index.d.ts +0 -2
- package/dist/commonjs/services/destinations/index.d.ts.map +0 -1
- package/dist/commonjs/services/destinations/index.js +0 -3
- package/dist/commonjs/services/destinations/index.js.map +0 -1
- package/dist/commonjs/services/destinations/models/ListDestinationsResponse.d.ts +0 -17
- package/dist/commonjs/services/destinations/models/ListDestinationsResponse.d.ts.map +0 -1
- package/dist/commonjs/services/destinations/models/ListDestinationsResponse.js +0 -3
- package/dist/commonjs/services/destinations/models/ListDestinationsResponse.js.map +0 -1
- package/dist/commonjs/services/eSim/ESim.d.ts +0 -40
- package/dist/commonjs/services/eSim/ESim.d.ts.map +0 -1
- package/dist/commonjs/services/eSim/ESim.js +0 -113
- package/dist/commonjs/services/eSim/ESim.js.map +0 -1
- package/dist/commonjs/services/eSim/index.d.ts +0 -5
- package/dist/commonjs/services/eSim/index.d.ts.map +0 -1
- package/dist/commonjs/services/eSim/index.js +0 -3
- package/dist/commonjs/services/eSim/index.js.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimDeviceResponse.d.ts +0 -23
- package/dist/commonjs/services/eSim/models/GetEsimDeviceResponse.d.ts.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimDeviceResponse.js +0 -3
- package/dist/commonjs/services/eSim/models/GetEsimDeviceResponse.js.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimHistoryResponse.d.ts +0 -26
- package/dist/commonjs/services/eSim/models/GetEsimHistoryResponse.d.ts.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimHistoryResponse.js +0 -3
- package/dist/commonjs/services/eSim/models/GetEsimHistoryResponse.js.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimMacResponse.d.ts +0 -19
- package/dist/commonjs/services/eSim/models/GetEsimMacResponse.d.ts.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimMacResponse.js +0 -3
- package/dist/commonjs/services/eSim/models/GetEsimMacResponse.js.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimResponse.d.ts +0 -23
- package/dist/commonjs/services/eSim/models/GetEsimResponse.d.ts.map +0 -1
- package/dist/commonjs/services/eSim/models/GetEsimResponse.js +0 -3
- package/dist/commonjs/services/eSim/models/GetEsimResponse.js.map +0 -1
- package/dist/commonjs/services/packages/Packages.d.ts +0 -30
- package/dist/commonjs/services/packages/Packages.d.ts.map +0 -1
- package/dist/commonjs/services/packages/Packages.js +0 -69
- package/dist/commonjs/services/packages/Packages.js.map +0 -1
- package/dist/commonjs/services/packages/index.d.ts +0 -2
- package/dist/commonjs/services/packages/index.d.ts.map +0 -1
- package/dist/commonjs/services/packages/index.js +0 -3
- package/dist/commonjs/services/packages/index.js.map +0 -1
- package/dist/commonjs/services/packages/models/ListPackagesResponse.d.ts +0 -30
- package/dist/commonjs/services/packages/models/ListPackagesResponse.d.ts.map +0 -1
- package/dist/commonjs/services/packages/models/ListPackagesResponse.js +0 -3
- package/dist/commonjs/services/packages/models/ListPackagesResponse.js.map +0 -1
- package/dist/commonjs/services/purchases/Purchases.d.ts +0 -66
- package/dist/commonjs/services/purchases/Purchases.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/Purchases.js +0 -150
- package/dist/commonjs/services/purchases/Purchases.js.map +0 -1
- package/dist/commonjs/services/purchases/index.d.ts +0 -9
- package/dist/commonjs/services/purchases/index.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/index.js +0 -3
- package/dist/commonjs/services/purchases/index.js.map +0 -1
- package/dist/commonjs/services/purchases/models/CreatePurchaseRequest.d.ts +0 -41
- package/dist/commonjs/services/purchases/models/CreatePurchaseRequest.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/CreatePurchaseRequest.js +0 -3
- package/dist/commonjs/services/purchases/models/CreatePurchaseRequest.js.map +0 -1
- package/dist/commonjs/services/purchases/models/CreatePurchaseResponse.d.ts +0 -48
- package/dist/commonjs/services/purchases/models/CreatePurchaseResponse.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/CreatePurchaseResponse.js +0 -3
- package/dist/commonjs/services/purchases/models/CreatePurchaseResponse.js.map +0 -1
- package/dist/commonjs/services/purchases/models/EditPurchaseRequest.d.ts +0 -25
- package/dist/commonjs/services/purchases/models/EditPurchaseRequest.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/EditPurchaseRequest.js +0 -3
- package/dist/commonjs/services/purchases/models/EditPurchaseRequest.js.map +0 -1
- package/dist/commonjs/services/purchases/models/EditPurchaseResponse.d.ts +0 -25
- package/dist/commonjs/services/purchases/models/EditPurchaseResponse.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/EditPurchaseResponse.js +0 -3
- package/dist/commonjs/services/purchases/models/EditPurchaseResponse.js.map +0 -1
- package/dist/commonjs/services/purchases/models/GetPurchaseConsumptionResponse.d.ts +0 -11
- package/dist/commonjs/services/purchases/models/GetPurchaseConsumptionResponse.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/GetPurchaseConsumptionResponse.js +0 -3
- package/dist/commonjs/services/purchases/models/GetPurchaseConsumptionResponse.js.map +0 -1
- package/dist/commonjs/services/purchases/models/ListPurchasesResponse.d.ts +0 -76
- package/dist/commonjs/services/purchases/models/ListPurchasesResponse.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/ListPurchasesResponse.js +0 -3
- package/dist/commonjs/services/purchases/models/ListPurchasesResponse.js.map +0 -1
- package/dist/commonjs/services/purchases/models/TopUpEsimRequest.d.ts +0 -37
- package/dist/commonjs/services/purchases/models/TopUpEsimRequest.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/TopUpEsimRequest.js +0 -3
- package/dist/commonjs/services/purchases/models/TopUpEsimRequest.js.map +0 -1
- package/dist/commonjs/services/purchases/models/TopUpEsimResponse.d.ts +0 -44
- package/dist/commonjs/services/purchases/models/TopUpEsimResponse.d.ts.map +0 -1
- package/dist/commonjs/services/purchases/models/TopUpEsimResponse.js +0 -3
- package/dist/commonjs/services/purchases/models/TopUpEsimResponse.js.map +0 -1
- package/dist/esm/BaseService.d.ts +0 -11
- package/dist/esm/BaseService.d.ts.map +0 -1
- package/dist/esm/BaseService.js +0 -24
- package/dist/esm/BaseService.js.map +0 -1
- package/dist/esm/hooks/CustomHook.d.ts +0 -59
- package/dist/esm/hooks/CustomHook.d.ts.map +0 -1
- package/dist/esm/hooks/CustomHook.js +0 -68
- package/dist/esm/hooks/CustomHook.js.map +0 -1
- package/dist/esm/hooks/Hook.d.ts +0 -24
- package/dist/esm/hooks/Hook.d.ts.map +0 -1
- package/dist/esm/hooks/Hook.js +0 -2
- package/dist/esm/hooks/Hook.js.map +0 -1
- package/dist/esm/http/Environment.d.ts +0 -4
- package/dist/esm/http/Environment.d.ts.map +0 -1
- package/dist/esm/http/Environment.js +0 -5
- package/dist/esm/http/Environment.js.map +0 -1
- package/dist/esm/http/HTTPClient.d.ts +0 -13
- package/dist/esm/http/HTTPClient.d.ts.map +0 -1
- package/dist/esm/http/HTTPClient.js +0 -2
- package/dist/esm/http/HTTPClient.js.map +0 -1
- package/dist/esm/http/HTTPLibrary.d.ts +0 -23
- package/dist/esm/http/HTTPLibrary.d.ts.map +0 -1
- package/dist/esm/http/HTTPLibrary.js +0 -137
- package/dist/esm/http/HTTPLibrary.js.map +0 -1
- package/dist/esm/http/QuerySerializer.d.ts +0 -6
- package/dist/esm/http/QuerySerializer.d.ts.map +0 -1
- package/dist/esm/http/QuerySerializer.js +0 -65
- package/dist/esm/http/QuerySerializer.js.map +0 -1
- package/dist/esm/http/errors/BadGateway.d.ts +0 -7
- package/dist/esm/http/errors/BadGateway.d.ts.map +0 -1
- package/dist/esm/http/errors/BadGateway.js +0 -9
- package/dist/esm/http/errors/BadGateway.js.map +0 -1
- package/dist/esm/http/errors/BadRequest.d.ts +0 -7
- package/dist/esm/http/errors/BadRequest.d.ts.map +0 -1
- package/dist/esm/http/errors/BadRequest.js +0 -9
- package/dist/esm/http/errors/BadRequest.js.map +0 -1
- package/dist/esm/http/errors/Conflict.d.ts +0 -7
- package/dist/esm/http/errors/Conflict.d.ts.map +0 -1
- package/dist/esm/http/errors/Conflict.js +0 -9
- package/dist/esm/http/errors/Conflict.js.map +0 -1
- package/dist/esm/http/errors/ExpectationFailed.d.ts +0 -7
- package/dist/esm/http/errors/ExpectationFailed.d.ts.map +0 -1
- package/dist/esm/http/errors/ExpectationFailed.js +0 -9
- package/dist/esm/http/errors/ExpectationFailed.js.map +0 -1
- package/dist/esm/http/errors/FailedDependency.d.ts +0 -7
- package/dist/esm/http/errors/FailedDependency.d.ts.map +0 -1
- package/dist/esm/http/errors/FailedDependency.js +0 -9
- package/dist/esm/http/errors/FailedDependency.js.map +0 -1
- package/dist/esm/http/errors/Forbidden.d.ts +0 -7
- package/dist/esm/http/errors/Forbidden.d.ts.map +0 -1
- package/dist/esm/http/errors/Forbidden.js +0 -9
- package/dist/esm/http/errors/Forbidden.js.map +0 -1
- package/dist/esm/http/errors/GatewayTimeout.d.ts +0 -7
- package/dist/esm/http/errors/GatewayTimeout.d.ts.map +0 -1
- package/dist/esm/http/errors/GatewayTimeout.js +0 -9
- package/dist/esm/http/errors/GatewayTimeout.js.map +0 -1
- package/dist/esm/http/errors/Gone.d.ts +0 -7
- package/dist/esm/http/errors/Gone.d.ts.map +0 -1
- package/dist/esm/http/errors/Gone.js +0 -9
- package/dist/esm/http/errors/Gone.js.map +0 -1
- package/dist/esm/http/errors/HttpVersionNotSupported.d.ts +0 -7
- package/dist/esm/http/errors/HttpVersionNotSupported.d.ts.map +0 -1
- package/dist/esm/http/errors/HttpVersionNotSupported.js +0 -9
- package/dist/esm/http/errors/HttpVersionNotSupported.js.map +0 -1
- package/dist/esm/http/errors/InternalServerError.d.ts +0 -7
- package/dist/esm/http/errors/InternalServerError.d.ts.map +0 -1
- package/dist/esm/http/errors/InternalServerError.js +0 -9
- package/dist/esm/http/errors/InternalServerError.js.map +0 -1
- package/dist/esm/http/errors/LengthRequired.d.ts +0 -7
- package/dist/esm/http/errors/LengthRequired.d.ts.map +0 -1
- package/dist/esm/http/errors/LengthRequired.js +0 -9
- package/dist/esm/http/errors/LengthRequired.js.map +0 -1
- package/dist/esm/http/errors/Locked.d.ts +0 -7
- package/dist/esm/http/errors/Locked.d.ts.map +0 -1
- package/dist/esm/http/errors/Locked.js +0 -9
- package/dist/esm/http/errors/Locked.js.map +0 -1
- package/dist/esm/http/errors/LoopDetected.d.ts +0 -7
- package/dist/esm/http/errors/LoopDetected.d.ts.map +0 -1
- package/dist/esm/http/errors/LoopDetected.js +0 -9
- package/dist/esm/http/errors/LoopDetected.js.map +0 -1
- package/dist/esm/http/errors/MethodNotAllowed.d.ts +0 -8
- package/dist/esm/http/errors/MethodNotAllowed.d.ts.map +0 -1
- package/dist/esm/http/errors/MethodNotAllowed.js +0 -10
- package/dist/esm/http/errors/MethodNotAllowed.js.map +0 -1
- package/dist/esm/http/errors/MisdirectedRequest.d.ts +0 -7
- package/dist/esm/http/errors/MisdirectedRequest.d.ts.map +0 -1
- package/dist/esm/http/errors/MisdirectedRequest.js +0 -9
- package/dist/esm/http/errors/MisdirectedRequest.js.map +0 -1
- package/dist/esm/http/errors/NetworkAuthenticationRequired.d.ts +0 -7
- package/dist/esm/http/errors/NetworkAuthenticationRequired.d.ts.map +0 -1
- package/dist/esm/http/errors/NetworkAuthenticationRequired.js +0 -9
- package/dist/esm/http/errors/NetworkAuthenticationRequired.js.map +0 -1
- package/dist/esm/http/errors/NotAcceptable.d.ts +0 -7
- package/dist/esm/http/errors/NotAcceptable.d.ts.map +0 -1
- package/dist/esm/http/errors/NotAcceptable.js +0 -9
- package/dist/esm/http/errors/NotAcceptable.js.map +0 -1
- package/dist/esm/http/errors/NotExtended.d.ts +0 -7
- package/dist/esm/http/errors/NotExtended.d.ts.map +0 -1
- package/dist/esm/http/errors/NotExtended.js +0 -9
- package/dist/esm/http/errors/NotExtended.js.map +0 -1
- package/dist/esm/http/errors/NotFound.d.ts +0 -7
- package/dist/esm/http/errors/NotFound.d.ts.map +0 -1
- package/dist/esm/http/errors/NotFound.js +0 -9
- package/dist/esm/http/errors/NotFound.js.map +0 -1
- package/dist/esm/http/errors/NotImplemented.d.ts +0 -7
- package/dist/esm/http/errors/NotImplemented.d.ts.map +0 -1
- package/dist/esm/http/errors/NotImplemented.js +0 -9
- package/dist/esm/http/errors/NotImplemented.js.map +0 -1
- package/dist/esm/http/errors/PayloadTooLarge.d.ts +0 -8
- package/dist/esm/http/errors/PayloadTooLarge.d.ts.map +0 -1
- package/dist/esm/http/errors/PayloadTooLarge.js +0 -10
- package/dist/esm/http/errors/PayloadTooLarge.js.map +0 -1
- package/dist/esm/http/errors/PaymentRequired.d.ts +0 -7
- package/dist/esm/http/errors/PaymentRequired.d.ts.map +0 -1
- package/dist/esm/http/errors/PaymentRequired.js +0 -9
- package/dist/esm/http/errors/PaymentRequired.js.map +0 -1
- package/dist/esm/http/errors/PreconditionFailed.d.ts +0 -7
- package/dist/esm/http/errors/PreconditionFailed.d.ts.map +0 -1
- package/dist/esm/http/errors/PreconditionFailed.js +0 -9
- package/dist/esm/http/errors/PreconditionFailed.js.map +0 -1
- package/dist/esm/http/errors/PreconditionRequired.d.ts +0 -7
- package/dist/esm/http/errors/PreconditionRequired.d.ts.map +0 -1
- package/dist/esm/http/errors/PreconditionRequired.js +0 -9
- package/dist/esm/http/errors/PreconditionRequired.js.map +0 -1
- package/dist/esm/http/errors/ProxyAuthenticationRequired.d.ts +0 -8
- package/dist/esm/http/errors/ProxyAuthenticationRequired.d.ts.map +0 -1
- package/dist/esm/http/errors/ProxyAuthenticationRequired.js +0 -10
- package/dist/esm/http/errors/ProxyAuthenticationRequired.js.map +0 -1
- package/dist/esm/http/errors/RangeNotSatisfiable.d.ts +0 -7
- package/dist/esm/http/errors/RangeNotSatisfiable.d.ts.map +0 -1
- package/dist/esm/http/errors/RangeNotSatisfiable.js +0 -9
- package/dist/esm/http/errors/RangeNotSatisfiable.js.map +0 -1
- package/dist/esm/http/errors/RequestHeaderFieldsTooLarge.d.ts +0 -7
- package/dist/esm/http/errors/RequestHeaderFieldsTooLarge.d.ts.map +0 -1
- package/dist/esm/http/errors/RequestHeaderFieldsTooLarge.js +0 -9
- package/dist/esm/http/errors/RequestHeaderFieldsTooLarge.js.map +0 -1
- package/dist/esm/http/errors/RequestTimeout.d.ts +0 -7
- package/dist/esm/http/errors/RequestTimeout.d.ts.map +0 -1
- package/dist/esm/http/errors/RequestTimeout.js +0 -9
- package/dist/esm/http/errors/RequestTimeout.js.map +0 -1
- package/dist/esm/http/errors/ServiceUnavailable.d.ts +0 -8
- package/dist/esm/http/errors/ServiceUnavailable.d.ts.map +0 -1
- package/dist/esm/http/errors/ServiceUnavailable.js +0 -10
- package/dist/esm/http/errors/ServiceUnavailable.js.map +0 -1
- package/dist/esm/http/errors/TooEarly.d.ts +0 -7
- package/dist/esm/http/errors/TooEarly.d.ts.map +0 -1
- package/dist/esm/http/errors/TooEarly.js +0 -9
- package/dist/esm/http/errors/TooEarly.js.map +0 -1
- package/dist/esm/http/errors/TooManyRequests.d.ts +0 -8
- package/dist/esm/http/errors/TooManyRequests.d.ts.map +0 -1
- package/dist/esm/http/errors/TooManyRequests.js +0 -10
- package/dist/esm/http/errors/TooManyRequests.js.map +0 -1
- package/dist/esm/http/errors/Unauthorized.d.ts +0 -8
- package/dist/esm/http/errors/Unauthorized.d.ts.map +0 -1
- package/dist/esm/http/errors/Unauthorized.js +0 -10
- package/dist/esm/http/errors/Unauthorized.js.map +0 -1
- package/dist/esm/http/errors/UnavailableForLegalReasons.d.ts +0 -7
- package/dist/esm/http/errors/UnavailableForLegalReasons.d.ts.map +0 -1
- package/dist/esm/http/errors/UnavailableForLegalReasons.js +0 -9
- package/dist/esm/http/errors/UnavailableForLegalReasons.js.map +0 -1
- package/dist/esm/http/errors/UnprocessableEntity.d.ts +0 -7
- package/dist/esm/http/errors/UnprocessableEntity.d.ts.map +0 -1
- package/dist/esm/http/errors/UnprocessableEntity.js +0 -9
- package/dist/esm/http/errors/UnprocessableEntity.js.map +0 -1
- package/dist/esm/http/errors/UnsufficientStorage.d.ts +0 -7
- package/dist/esm/http/errors/UnsufficientStorage.d.ts.map +0 -1
- package/dist/esm/http/errors/UnsufficientStorage.js +0 -9
- package/dist/esm/http/errors/UnsufficientStorage.js.map +0 -1
- package/dist/esm/http/errors/UnsupportedMediaType.d.ts +0 -7
- package/dist/esm/http/errors/UnsupportedMediaType.d.ts.map +0 -1
- package/dist/esm/http/errors/UnsupportedMediaType.js +0 -9
- package/dist/esm/http/errors/UnsupportedMediaType.js.map +0 -1
- package/dist/esm/http/errors/UpgradeRequired.d.ts +0 -7
- package/dist/esm/http/errors/UpgradeRequired.d.ts.map +0 -1
- package/dist/esm/http/errors/UpgradeRequired.js +0 -9
- package/dist/esm/http/errors/UpgradeRequired.js.map +0 -1
- package/dist/esm/http/errors/UriTooLong.d.ts +0 -7
- package/dist/esm/http/errors/UriTooLong.d.ts.map +0 -1
- package/dist/esm/http/errors/UriTooLong.js +0 -9
- package/dist/esm/http/errors/UriTooLong.js.map +0 -1
- package/dist/esm/http/errors/VariantAlsoNegotiates.d.ts +0 -7
- package/dist/esm/http/errors/VariantAlsoNegotiates.d.ts.map +0 -1
- package/dist/esm/http/errors/VariantAlsoNegotiates.js +0 -9
- package/dist/esm/http/errors/VariantAlsoNegotiates.js.map +0 -1
- package/dist/esm/http/errors/base.d.ts +0 -23
- package/dist/esm/http/errors/base.d.ts.map +0 -1
- package/dist/esm/http/errors/base.js +0 -28
- package/dist/esm/http/errors/base.js.map +0 -1
- package/dist/esm/http/errors/index.d.ts +0 -42
- package/dist/esm/http/errors/index.d.ts.map +0 -1
- package/dist/esm/http/errors/index.js +0 -42
- package/dist/esm/http/errors/index.js.map +0 -1
- package/dist/esm/http/httpExceptions.d.ts +0 -14
- package/dist/esm/http/httpExceptions.d.ts.map +0 -1
- package/dist/esm/http/httpExceptions.js +0 -86
- package/dist/esm/http/httpExceptions.js.map +0 -1
- package/dist/esm/index.d.ts +0 -26
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/index.js +0 -33
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/models.d.ts +0 -15
- package/dist/esm/models.d.ts.map +0 -1
- package/dist/esm/models.js +0 -2
- package/dist/esm/models.js.map +0 -1
- package/dist/esm/services/destinations/Destinations.d.ts +0 -12
- package/dist/esm/services/destinations/Destinations.d.ts.map +0 -1
- package/dist/esm/services/destinations/Destinations.js +0 -25
- package/dist/esm/services/destinations/Destinations.js.map +0 -1
- package/dist/esm/services/destinations/index.d.ts +0 -2
- package/dist/esm/services/destinations/index.d.ts.map +0 -1
- package/dist/esm/services/destinations/index.js +0 -2
- package/dist/esm/services/destinations/index.js.map +0 -1
- package/dist/esm/services/destinations/models/ListDestinationsResponse.d.ts +0 -17
- package/dist/esm/services/destinations/models/ListDestinationsResponse.d.ts.map +0 -1
- package/dist/esm/services/destinations/models/ListDestinationsResponse.js +0 -2
- package/dist/esm/services/destinations/models/ListDestinationsResponse.js.map +0 -1
- package/dist/esm/services/eSim/ESim.d.ts +0 -40
- package/dist/esm/services/eSim/ESim.d.ts.map +0 -1
- package/dist/esm/services/eSim/ESim.js +0 -106
- package/dist/esm/services/eSim/ESim.js.map +0 -1
- package/dist/esm/services/eSim/index.d.ts +0 -5
- package/dist/esm/services/eSim/index.d.ts.map +0 -1
- package/dist/esm/services/eSim/index.js +0 -2
- package/dist/esm/services/eSim/index.js.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimDeviceResponse.d.ts +0 -23
- package/dist/esm/services/eSim/models/GetEsimDeviceResponse.d.ts.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimDeviceResponse.js +0 -2
- package/dist/esm/services/eSim/models/GetEsimDeviceResponse.js.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimHistoryResponse.d.ts +0 -26
- package/dist/esm/services/eSim/models/GetEsimHistoryResponse.d.ts.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimHistoryResponse.js +0 -2
- package/dist/esm/services/eSim/models/GetEsimHistoryResponse.js.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimMacResponse.d.ts +0 -19
- package/dist/esm/services/eSim/models/GetEsimMacResponse.d.ts.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimMacResponse.js +0 -2
- package/dist/esm/services/eSim/models/GetEsimMacResponse.js.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimResponse.d.ts +0 -23
- package/dist/esm/services/eSim/models/GetEsimResponse.d.ts.map +0 -1
- package/dist/esm/services/eSim/models/GetEsimResponse.js +0 -2
- package/dist/esm/services/eSim/models/GetEsimResponse.js.map +0 -1
- package/dist/esm/services/packages/Packages.d.ts +0 -30
- package/dist/esm/services/packages/Packages.d.ts.map +0 -1
- package/dist/esm/services/packages/Packages.js +0 -62
- package/dist/esm/services/packages/Packages.js.map +0 -1
- package/dist/esm/services/packages/index.d.ts +0 -2
- package/dist/esm/services/packages/index.d.ts.map +0 -1
- package/dist/esm/services/packages/index.js +0 -2
- package/dist/esm/services/packages/index.js.map +0 -1
- package/dist/esm/services/packages/models/ListPackagesResponse.d.ts +0 -30
- package/dist/esm/services/packages/models/ListPackagesResponse.d.ts.map +0 -1
- package/dist/esm/services/packages/models/ListPackagesResponse.js +0 -2
- package/dist/esm/services/packages/models/ListPackagesResponse.js.map +0 -1
- package/dist/esm/services/purchases/Purchases.d.ts +0 -66
- package/dist/esm/services/purchases/Purchases.d.ts.map +0 -1
- package/dist/esm/services/purchases/Purchases.js +0 -143
- package/dist/esm/services/purchases/Purchases.js.map +0 -1
- package/dist/esm/services/purchases/index.d.ts +0 -9
- package/dist/esm/services/purchases/index.d.ts.map +0 -1
- package/dist/esm/services/purchases/index.js +0 -2
- package/dist/esm/services/purchases/index.js.map +0 -1
- package/dist/esm/services/purchases/models/CreatePurchaseRequest.d.ts +0 -41
- package/dist/esm/services/purchases/models/CreatePurchaseRequest.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/CreatePurchaseRequest.js +0 -2
- package/dist/esm/services/purchases/models/CreatePurchaseRequest.js.map +0 -1
- package/dist/esm/services/purchases/models/CreatePurchaseResponse.d.ts +0 -48
- package/dist/esm/services/purchases/models/CreatePurchaseResponse.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/CreatePurchaseResponse.js +0 -2
- package/dist/esm/services/purchases/models/CreatePurchaseResponse.js.map +0 -1
- package/dist/esm/services/purchases/models/EditPurchaseRequest.d.ts +0 -25
- package/dist/esm/services/purchases/models/EditPurchaseRequest.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/EditPurchaseRequest.js +0 -2
- package/dist/esm/services/purchases/models/EditPurchaseRequest.js.map +0 -1
- package/dist/esm/services/purchases/models/EditPurchaseResponse.d.ts +0 -25
- package/dist/esm/services/purchases/models/EditPurchaseResponse.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/EditPurchaseResponse.js +0 -2
- package/dist/esm/services/purchases/models/EditPurchaseResponse.js.map +0 -1
- package/dist/esm/services/purchases/models/GetPurchaseConsumptionResponse.d.ts +0 -11
- package/dist/esm/services/purchases/models/GetPurchaseConsumptionResponse.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/GetPurchaseConsumptionResponse.js +0 -2
- package/dist/esm/services/purchases/models/GetPurchaseConsumptionResponse.js.map +0 -1
- package/dist/esm/services/purchases/models/ListPurchasesResponse.d.ts +0 -76
- package/dist/esm/services/purchases/models/ListPurchasesResponse.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/ListPurchasesResponse.js +0 -2
- package/dist/esm/services/purchases/models/ListPurchasesResponse.js.map +0 -1
- package/dist/esm/services/purchases/models/TopUpEsimRequest.d.ts +0 -37
- package/dist/esm/services/purchases/models/TopUpEsimRequest.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/TopUpEsimRequest.js +0 -2
- package/dist/esm/services/purchases/models/TopUpEsimRequest.js.map +0 -1
- package/dist/esm/services/purchases/models/TopUpEsimResponse.d.ts +0 -44
- package/dist/esm/services/purchases/models/TopUpEsimResponse.d.ts.map +0 -1
- package/dist/esm/services/purchases/models/TopUpEsimResponse.js +0 -2
- package/dist/esm/services/purchases/models/TopUpEsimResponse.js.map +0 -1
- package/dist/umd/BaseService.d.ts +0 -11
- package/dist/umd/BaseService.d.ts.map +0 -1
- package/dist/umd/BaseService.js +0 -40
- package/dist/umd/BaseService.js.map +0 -1
- package/dist/umd/hooks/CustomHook.d.ts +0 -59
- package/dist/umd/hooks/CustomHook.d.ts.map +0 -1
- package/dist/umd/hooks/CustomHook.js +0 -84
- package/dist/umd/hooks/CustomHook.js.map +0 -1
- package/dist/umd/hooks/Hook.d.ts +0 -24
- package/dist/umd/hooks/Hook.d.ts.map +0 -1
- package/dist/umd/hooks/Hook.js +0 -13
- package/dist/umd/hooks/Hook.js.map +0 -1
- package/dist/umd/http/Environment.d.ts +0 -4
- package/dist/umd/http/Environment.d.ts.map +0 -1
- package/dist/umd/http/Environment.js +0 -18
- package/dist/umd/http/Environment.js.map +0 -1
- package/dist/umd/http/HTTPClient.d.ts +0 -13
- package/dist/umd/http/HTTPClient.d.ts.map +0 -1
- package/dist/umd/http/HTTPClient.js +0 -13
- package/dist/umd/http/HTTPClient.js.map +0 -1
- package/dist/umd/http/HTTPLibrary.d.ts +0 -23
- package/dist/umd/http/HTTPLibrary.d.ts.map +0 -1
- package/dist/umd/http/HTTPLibrary.js +0 -153
- package/dist/umd/http/HTTPLibrary.js.map +0 -1
- package/dist/umd/http/QuerySerializer.d.ts +0 -6
- package/dist/umd/http/QuerySerializer.d.ts.map +0 -1
- package/dist/umd/http/QuerySerializer.js +0 -80
- package/dist/umd/http/QuerySerializer.js.map +0 -1
- package/dist/umd/http/errors/BadGateway.d.ts +0 -7
- package/dist/umd/http/errors/BadGateway.d.ts.map +0 -1
- package/dist/umd/http/errors/BadGateway.js +0 -22
- package/dist/umd/http/errors/BadGateway.js.map +0 -1
- package/dist/umd/http/errors/BadRequest.d.ts +0 -7
- package/dist/umd/http/errors/BadRequest.d.ts.map +0 -1
- package/dist/umd/http/errors/BadRequest.js +0 -22
- package/dist/umd/http/errors/BadRequest.js.map +0 -1
- package/dist/umd/http/errors/Conflict.d.ts +0 -7
- package/dist/umd/http/errors/Conflict.d.ts.map +0 -1
- package/dist/umd/http/errors/Conflict.js +0 -22
- package/dist/umd/http/errors/Conflict.js.map +0 -1
- package/dist/umd/http/errors/ExpectationFailed.d.ts +0 -7
- package/dist/umd/http/errors/ExpectationFailed.d.ts.map +0 -1
- package/dist/umd/http/errors/ExpectationFailed.js +0 -22
- package/dist/umd/http/errors/ExpectationFailed.js.map +0 -1
- package/dist/umd/http/errors/FailedDependency.d.ts +0 -7
- package/dist/umd/http/errors/FailedDependency.d.ts.map +0 -1
- package/dist/umd/http/errors/FailedDependency.js +0 -22
- package/dist/umd/http/errors/FailedDependency.js.map +0 -1
- package/dist/umd/http/errors/Forbidden.d.ts +0 -7
- package/dist/umd/http/errors/Forbidden.d.ts.map +0 -1
- package/dist/umd/http/errors/Forbidden.js +0 -22
- package/dist/umd/http/errors/Forbidden.js.map +0 -1
- package/dist/umd/http/errors/GatewayTimeout.d.ts +0 -7
- package/dist/umd/http/errors/GatewayTimeout.d.ts.map +0 -1
- package/dist/umd/http/errors/GatewayTimeout.js +0 -22
- package/dist/umd/http/errors/GatewayTimeout.js.map +0 -1
- package/dist/umd/http/errors/Gone.d.ts +0 -7
- package/dist/umd/http/errors/Gone.d.ts.map +0 -1
- package/dist/umd/http/errors/Gone.js +0 -22
- package/dist/umd/http/errors/Gone.js.map +0 -1
- package/dist/umd/http/errors/HttpVersionNotSupported.d.ts +0 -7
- package/dist/umd/http/errors/HttpVersionNotSupported.d.ts.map +0 -1
- package/dist/umd/http/errors/HttpVersionNotSupported.js +0 -22
- package/dist/umd/http/errors/HttpVersionNotSupported.js.map +0 -1
- package/dist/umd/http/errors/InternalServerError.d.ts +0 -7
- package/dist/umd/http/errors/InternalServerError.d.ts.map +0 -1
- package/dist/umd/http/errors/InternalServerError.js +0 -22
- package/dist/umd/http/errors/InternalServerError.js.map +0 -1
- package/dist/umd/http/errors/LengthRequired.d.ts +0 -7
- package/dist/umd/http/errors/LengthRequired.d.ts.map +0 -1
- package/dist/umd/http/errors/LengthRequired.js +0 -22
- package/dist/umd/http/errors/LengthRequired.js.map +0 -1
- package/dist/umd/http/errors/Locked.d.ts +0 -7
- package/dist/umd/http/errors/Locked.d.ts.map +0 -1
- package/dist/umd/http/errors/Locked.js +0 -22
- package/dist/umd/http/errors/Locked.js.map +0 -1
- package/dist/umd/http/errors/LoopDetected.d.ts +0 -7
- package/dist/umd/http/errors/LoopDetected.d.ts.map +0 -1
- package/dist/umd/http/errors/LoopDetected.js +0 -22
- package/dist/umd/http/errors/LoopDetected.js.map +0 -1
- package/dist/umd/http/errors/MethodNotAllowed.d.ts +0 -8
- package/dist/umd/http/errors/MethodNotAllowed.d.ts.map +0 -1
- package/dist/umd/http/errors/MethodNotAllowed.js +0 -23
- package/dist/umd/http/errors/MethodNotAllowed.js.map +0 -1
- package/dist/umd/http/errors/MisdirectedRequest.d.ts +0 -7
- package/dist/umd/http/errors/MisdirectedRequest.d.ts.map +0 -1
- package/dist/umd/http/errors/MisdirectedRequest.js +0 -22
- package/dist/umd/http/errors/MisdirectedRequest.js.map +0 -1
- package/dist/umd/http/errors/NetworkAuthenticationRequired.d.ts +0 -7
- package/dist/umd/http/errors/NetworkAuthenticationRequired.d.ts.map +0 -1
- package/dist/umd/http/errors/NetworkAuthenticationRequired.js +0 -22
- package/dist/umd/http/errors/NetworkAuthenticationRequired.js.map +0 -1
- package/dist/umd/http/errors/NotAcceptable.d.ts +0 -7
- package/dist/umd/http/errors/NotAcceptable.d.ts.map +0 -1
- package/dist/umd/http/errors/NotAcceptable.js +0 -22
- package/dist/umd/http/errors/NotAcceptable.js.map +0 -1
- package/dist/umd/http/errors/NotExtended.d.ts +0 -7
- package/dist/umd/http/errors/NotExtended.d.ts.map +0 -1
- package/dist/umd/http/errors/NotExtended.js +0 -22
- package/dist/umd/http/errors/NotExtended.js.map +0 -1
- package/dist/umd/http/errors/NotFound.d.ts +0 -7
- package/dist/umd/http/errors/NotFound.d.ts.map +0 -1
- package/dist/umd/http/errors/NotFound.js +0 -22
- package/dist/umd/http/errors/NotFound.js.map +0 -1
- package/dist/umd/http/errors/NotImplemented.d.ts +0 -7
- package/dist/umd/http/errors/NotImplemented.d.ts.map +0 -1
- package/dist/umd/http/errors/NotImplemented.js +0 -22
- package/dist/umd/http/errors/NotImplemented.js.map +0 -1
- package/dist/umd/http/errors/PayloadTooLarge.d.ts +0 -8
- package/dist/umd/http/errors/PayloadTooLarge.d.ts.map +0 -1
- package/dist/umd/http/errors/PayloadTooLarge.js +0 -23
- package/dist/umd/http/errors/PayloadTooLarge.js.map +0 -1
- package/dist/umd/http/errors/PaymentRequired.d.ts +0 -7
- package/dist/umd/http/errors/PaymentRequired.d.ts.map +0 -1
- package/dist/umd/http/errors/PaymentRequired.js +0 -22
- package/dist/umd/http/errors/PaymentRequired.js.map +0 -1
- package/dist/umd/http/errors/PreconditionFailed.d.ts +0 -7
- package/dist/umd/http/errors/PreconditionFailed.d.ts.map +0 -1
- package/dist/umd/http/errors/PreconditionFailed.js +0 -22
- package/dist/umd/http/errors/PreconditionFailed.js.map +0 -1
- package/dist/umd/http/errors/PreconditionRequired.d.ts +0 -7
- package/dist/umd/http/errors/PreconditionRequired.d.ts.map +0 -1
- package/dist/umd/http/errors/PreconditionRequired.js +0 -22
- package/dist/umd/http/errors/PreconditionRequired.js.map +0 -1
- package/dist/umd/http/errors/ProxyAuthenticationRequired.d.ts +0 -8
- package/dist/umd/http/errors/ProxyAuthenticationRequired.d.ts.map +0 -1
- package/dist/umd/http/errors/ProxyAuthenticationRequired.js +0 -23
- package/dist/umd/http/errors/ProxyAuthenticationRequired.js.map +0 -1
- package/dist/umd/http/errors/RangeNotSatisfiable.d.ts +0 -7
- package/dist/umd/http/errors/RangeNotSatisfiable.d.ts.map +0 -1
- package/dist/umd/http/errors/RangeNotSatisfiable.js +0 -22
- package/dist/umd/http/errors/RangeNotSatisfiable.js.map +0 -1
- package/dist/umd/http/errors/RequestHeaderFieldsTooLarge.d.ts +0 -7
- package/dist/umd/http/errors/RequestHeaderFieldsTooLarge.d.ts.map +0 -1
- package/dist/umd/http/errors/RequestHeaderFieldsTooLarge.js +0 -22
- package/dist/umd/http/errors/RequestHeaderFieldsTooLarge.js.map +0 -1
- package/dist/umd/http/errors/RequestTimeout.d.ts +0 -7
- package/dist/umd/http/errors/RequestTimeout.d.ts.map +0 -1
- package/dist/umd/http/errors/RequestTimeout.js +0 -22
- package/dist/umd/http/errors/RequestTimeout.js.map +0 -1
- package/dist/umd/http/errors/ServiceUnavailable.d.ts +0 -8
- package/dist/umd/http/errors/ServiceUnavailable.d.ts.map +0 -1
- package/dist/umd/http/errors/ServiceUnavailable.js +0 -23
- package/dist/umd/http/errors/ServiceUnavailable.js.map +0 -1
- package/dist/umd/http/errors/TooEarly.d.ts +0 -7
- package/dist/umd/http/errors/TooEarly.d.ts.map +0 -1
- package/dist/umd/http/errors/TooEarly.js +0 -22
- package/dist/umd/http/errors/TooEarly.js.map +0 -1
- package/dist/umd/http/errors/TooManyRequests.d.ts +0 -8
- package/dist/umd/http/errors/TooManyRequests.d.ts.map +0 -1
- package/dist/umd/http/errors/TooManyRequests.js +0 -23
- package/dist/umd/http/errors/TooManyRequests.js.map +0 -1
- package/dist/umd/http/errors/Unauthorized.d.ts +0 -8
- package/dist/umd/http/errors/Unauthorized.d.ts.map +0 -1
- package/dist/umd/http/errors/Unauthorized.js +0 -23
- package/dist/umd/http/errors/Unauthorized.js.map +0 -1
- package/dist/umd/http/errors/UnavailableForLegalReasons.d.ts +0 -7
- package/dist/umd/http/errors/UnavailableForLegalReasons.d.ts.map +0 -1
- package/dist/umd/http/errors/UnavailableForLegalReasons.js +0 -22
- package/dist/umd/http/errors/UnavailableForLegalReasons.js.map +0 -1
- package/dist/umd/http/errors/UnprocessableEntity.d.ts +0 -7
- package/dist/umd/http/errors/UnprocessableEntity.d.ts.map +0 -1
- package/dist/umd/http/errors/UnprocessableEntity.js +0 -22
- package/dist/umd/http/errors/UnprocessableEntity.js.map +0 -1
- package/dist/umd/http/errors/UnsufficientStorage.d.ts +0 -7
- package/dist/umd/http/errors/UnsufficientStorage.d.ts.map +0 -1
- package/dist/umd/http/errors/UnsufficientStorage.js +0 -22
- package/dist/umd/http/errors/UnsufficientStorage.js.map +0 -1
- package/dist/umd/http/errors/UnsupportedMediaType.d.ts +0 -7
- package/dist/umd/http/errors/UnsupportedMediaType.d.ts.map +0 -1
- package/dist/umd/http/errors/UnsupportedMediaType.js +0 -22
- package/dist/umd/http/errors/UnsupportedMediaType.js.map +0 -1
- package/dist/umd/http/errors/UpgradeRequired.d.ts +0 -7
- package/dist/umd/http/errors/UpgradeRequired.d.ts.map +0 -1
- package/dist/umd/http/errors/UpgradeRequired.js +0 -22
- package/dist/umd/http/errors/UpgradeRequired.js.map +0 -1
- package/dist/umd/http/errors/UriTooLong.d.ts +0 -7
- package/dist/umd/http/errors/UriTooLong.d.ts.map +0 -1
- package/dist/umd/http/errors/UriTooLong.js +0 -22
- package/dist/umd/http/errors/UriTooLong.js.map +0 -1
- package/dist/umd/http/errors/VariantAlsoNegotiates.d.ts +0 -7
- package/dist/umd/http/errors/VariantAlsoNegotiates.d.ts.map +0 -1
- package/dist/umd/http/errors/VariantAlsoNegotiates.js +0 -22
- package/dist/umd/http/errors/VariantAlsoNegotiates.js.map +0 -1
- package/dist/umd/http/errors/base.d.ts +0 -23
- package/dist/umd/http/errors/base.d.ts.map +0 -1
- package/dist/umd/http/errors/base.js +0 -46
- package/dist/umd/http/errors/base.js.map +0 -1
- package/dist/umd/http/errors/index.d.ts +0 -42
- package/dist/umd/http/errors/index.d.ts.map +0 -1
- package/dist/umd/http/errors/index.js +0 -97
- package/dist/umd/http/errors/index.js.map +0 -1
- package/dist/umd/http/httpExceptions.d.ts +0 -14
- package/dist/umd/http/httpExceptions.d.ts.map +0 -1
- package/dist/umd/http/httpExceptions.js +0 -102
- package/dist/umd/http/httpExceptions.js.map +0 -1
- package/dist/umd/index.d.ts +0 -26
- package/dist/umd/index.d.ts.map +0 -1
- package/dist/umd/index.js +0 -73
- package/dist/umd/index.js.map +0 -1
- package/dist/umd/models.d.ts +0 -15
- package/dist/umd/models.d.ts.map +0 -1
- package/dist/umd/models.js +0 -13
- package/dist/umd/models.js.map +0 -1
- package/dist/umd/services/destinations/Destinations.d.ts +0 -12
- package/dist/umd/services/destinations/Destinations.d.ts.map +0 -1
- package/dist/umd/services/destinations/Destinations.js +0 -42
- package/dist/umd/services/destinations/Destinations.js.map +0 -1
- package/dist/umd/services/destinations/index.d.ts +0 -2
- package/dist/umd/services/destinations/index.d.ts.map +0 -1
- package/dist/umd/services/destinations/index.js +0 -13
- package/dist/umd/services/destinations/index.js.map +0 -1
- package/dist/umd/services/destinations/models/ListDestinationsResponse.d.ts +0 -17
- package/dist/umd/services/destinations/models/ListDestinationsResponse.d.ts.map +0 -1
- package/dist/umd/services/destinations/models/ListDestinationsResponse.js +0 -13
- package/dist/umd/services/destinations/models/ListDestinationsResponse.js.map +0 -1
- package/dist/umd/services/eSim/ESim.d.ts +0 -40
- package/dist/umd/services/eSim/ESim.d.ts.map +0 -1
- package/dist/umd/services/eSim/ESim.js +0 -123
- package/dist/umd/services/eSim/ESim.js.map +0 -1
- package/dist/umd/services/eSim/index.d.ts +0 -5
- package/dist/umd/services/eSim/index.d.ts.map +0 -1
- package/dist/umd/services/eSim/index.js +0 -13
- package/dist/umd/services/eSim/index.js.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimDeviceResponse.d.ts +0 -23
- package/dist/umd/services/eSim/models/GetEsimDeviceResponse.d.ts.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimDeviceResponse.js +0 -13
- package/dist/umd/services/eSim/models/GetEsimDeviceResponse.js.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimHistoryResponse.d.ts +0 -26
- package/dist/umd/services/eSim/models/GetEsimHistoryResponse.d.ts.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimHistoryResponse.js +0 -13
- package/dist/umd/services/eSim/models/GetEsimHistoryResponse.js.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimMacResponse.d.ts +0 -19
- package/dist/umd/services/eSim/models/GetEsimMacResponse.d.ts.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimMacResponse.js +0 -13
- package/dist/umd/services/eSim/models/GetEsimMacResponse.js.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimResponse.d.ts +0 -23
- package/dist/umd/services/eSim/models/GetEsimResponse.d.ts.map +0 -1
- package/dist/umd/services/eSim/models/GetEsimResponse.js +0 -13
- package/dist/umd/services/eSim/models/GetEsimResponse.js.map +0 -1
- package/dist/umd/services/packages/Packages.d.ts +0 -30
- package/dist/umd/services/packages/Packages.d.ts.map +0 -1
- package/dist/umd/services/packages/Packages.js +0 -79
- package/dist/umd/services/packages/Packages.js.map +0 -1
- package/dist/umd/services/packages/index.d.ts +0 -2
- package/dist/umd/services/packages/index.d.ts.map +0 -1
- package/dist/umd/services/packages/index.js +0 -13
- package/dist/umd/services/packages/index.js.map +0 -1
- package/dist/umd/services/packages/models/ListPackagesResponse.d.ts +0 -30
- package/dist/umd/services/packages/models/ListPackagesResponse.d.ts.map +0 -1
- package/dist/umd/services/packages/models/ListPackagesResponse.js +0 -13
- package/dist/umd/services/packages/models/ListPackagesResponse.js.map +0 -1
- package/dist/umd/services/purchases/Purchases.d.ts +0 -66
- package/dist/umd/services/purchases/Purchases.d.ts.map +0 -1
- package/dist/umd/services/purchases/Purchases.js +0 -160
- package/dist/umd/services/purchases/Purchases.js.map +0 -1
- package/dist/umd/services/purchases/index.d.ts +0 -9
- package/dist/umd/services/purchases/index.d.ts.map +0 -1
- package/dist/umd/services/purchases/index.js +0 -13
- package/dist/umd/services/purchases/index.js.map +0 -1
- package/dist/umd/services/purchases/models/CreatePurchaseRequest.d.ts +0 -41
- package/dist/umd/services/purchases/models/CreatePurchaseRequest.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/CreatePurchaseRequest.js +0 -13
- package/dist/umd/services/purchases/models/CreatePurchaseRequest.js.map +0 -1
- package/dist/umd/services/purchases/models/CreatePurchaseResponse.d.ts +0 -48
- package/dist/umd/services/purchases/models/CreatePurchaseResponse.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/CreatePurchaseResponse.js +0 -13
- package/dist/umd/services/purchases/models/CreatePurchaseResponse.js.map +0 -1
- package/dist/umd/services/purchases/models/EditPurchaseRequest.d.ts +0 -25
- package/dist/umd/services/purchases/models/EditPurchaseRequest.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/EditPurchaseRequest.js +0 -13
- package/dist/umd/services/purchases/models/EditPurchaseRequest.js.map +0 -1
- package/dist/umd/services/purchases/models/EditPurchaseResponse.d.ts +0 -25
- package/dist/umd/services/purchases/models/EditPurchaseResponse.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/EditPurchaseResponse.js +0 -13
- package/dist/umd/services/purchases/models/EditPurchaseResponse.js.map +0 -1
- package/dist/umd/services/purchases/models/GetPurchaseConsumptionResponse.d.ts +0 -11
- package/dist/umd/services/purchases/models/GetPurchaseConsumptionResponse.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/GetPurchaseConsumptionResponse.js +0 -13
- package/dist/umd/services/purchases/models/GetPurchaseConsumptionResponse.js.map +0 -1
- package/dist/umd/services/purchases/models/ListPurchasesResponse.d.ts +0 -76
- package/dist/umd/services/purchases/models/ListPurchasesResponse.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/ListPurchasesResponse.js +0 -13
- package/dist/umd/services/purchases/models/ListPurchasesResponse.js.map +0 -1
- package/dist/umd/services/purchases/models/TopUpEsimRequest.d.ts +0 -37
- package/dist/umd/services/purchases/models/TopUpEsimRequest.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/TopUpEsimRequest.js +0 -13
- package/dist/umd/services/purchases/models/TopUpEsimRequest.js.map +0 -1
- package/dist/umd/services/purchases/models/TopUpEsimResponse.d.ts +0 -44
- package/dist/umd/services/purchases/models/TopUpEsimResponse.d.ts.map +0 -1
- package/dist/umd/services/purchases/models/TopUpEsimResponse.js +0 -13
- package/dist/umd/services/purchases/models/TopUpEsimResponse.js.map +0 -1
package/README.md
CHANGED
@@ -1,484 +1,111 @@
|
|
1
|
-
# Celitech
|
1
|
+
# Celitech TypeScript SDK 1.1.72
|
2
2
|
|
3
|
-
|
3
|
+
Welcome to the Celitech SDK documentation. This guide will help you get started with integrating and using the Celitech SDK in your project.
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
## Versions
|
6
|
+
|
7
|
+
- API version: `1.1.0`
|
8
|
+
- SDK version: `1.1.72`
|
9
|
+
|
10
|
+
## About the API
|
11
|
+
|
12
|
+
Welcome to the CELITECH API documentation! Useful links: [Homepage](https://www.celitech.com) | [Support email](mailto:support@celitech.com) | [Blog](https://www.celitech.com/blog/)
|
7
13
|
|
8
14
|
## Table of Contents
|
9
15
|
|
10
|
-
- [
|
11
|
-
- [
|
12
|
-
- [
|
13
|
-
- [
|
14
|
-
- [
|
15
|
-
- [
|
16
|
-
- [Celitech Services](#celitech-services)
|
16
|
+
- [Setup & Configuration](#setup--configuration)
|
17
|
+
- [Supported Language Versions](#supported-language-versions)
|
18
|
+
- [Installation](#installation)
|
19
|
+
- [Environment Variables](#environment-variables)
|
20
|
+
- [Services](#services)
|
21
|
+
- [Models](#models)
|
17
22
|
- [License](#license)
|
18
23
|
|
19
|
-
|
24
|
+
# Setup & Configuration
|
20
25
|
|
21
|
-
|
26
|
+
## Supported Language Versions
|
27
|
+
|
28
|
+
This SDK is compatible with the following versions: `TypeScript >= 4.8.4`
|
22
29
|
|
23
30
|
## Installation
|
24
31
|
|
25
|
-
|
32
|
+
To get started with the SDK, we recommend installing using `npm`:
|
33
|
+
|
34
|
+
```bash
|
26
35
|
npm install celitech-sdk
|
27
36
|
```
|
28
37
|
|
29
38
|
## Environment Variables
|
30
39
|
|
31
|
-
|
40
|
+
These are the environment variables for the SDK:
|
32
41
|
|
33
42
|
| Name | Description |
|
34
43
|
| :------------ | :---------------------- |
|
35
44
|
| CLIENT_ID | Client ID parameter |
|
36
45
|
| CLIENT_SECRET | Client Secret parameter |
|
37
46
|
|
38
|
-
You can set these environment variables on the command line or
|
39
|
-
|
40
|
-
you are using a `.env` file,
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
|
88
|
-
|
|
89
|
-
| [
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
96
|
-
|
97
|
-
## Purchases
|
98
|
-
|
99
|
-
| Method | Description |
|
100
|
-
| :------------------------------------------------ | :----------------------- |
|
101
|
-
| [createPurchase](#createpurchase) | Create Purchase |
|
102
|
-
| [listPurchases](#listpurchases) | List Purchases |
|
103
|
-
| [topUpEsim](#topupesim) | Top-up eSIM |
|
104
|
-
| [editPurchase](#editpurchase) | Edit Purchase |
|
105
|
-
| [getPurchaseConsumption](#getpurchaseconsumption) | Get Purchase Consumption |
|
106
|
-
|
107
|
-
## ESim
|
108
|
-
|
109
|
-
| Method | Description |
|
110
|
-
| :-------------------------------- | :--------------- |
|
111
|
-
| [getEsim](#getesim) | Get eSIM Status |
|
112
|
-
| [getEsimDevice](#getesimdevice) | Get eSIM Device |
|
113
|
-
| [getEsimHistory](#getesimhistory) | Get eSIM History |
|
114
|
-
| [getEsimMac](#getesimmac) | Get eSIM MAC |
|
115
|
-
|
116
|
-
## All Methods
|
117
|
-
|
118
|
-
### **listDestinations**
|
119
|
-
|
120
|
-
List Destinations
|
121
|
-
|
122
|
-
- HTTP Method: GET
|
123
|
-
- Endpoint: /destinations
|
124
|
-
|
125
|
-
**Return Type**
|
126
|
-
|
127
|
-
ListDestinationsResponse
|
128
|
-
|
129
|
-
**Example Usage Code Snippet**
|
130
|
-
|
131
|
-
```Typescript
|
132
|
-
import { Celitech } from 'celitech-sdk';
|
133
|
-
|
134
|
-
const sdk = new Celitech();
|
135
|
-
|
136
|
-
(async () => {
|
137
|
-
const result = await sdk.destinations.listDestinations();
|
138
|
-
console.log(result);
|
139
|
-
})();
|
140
|
-
|
141
|
-
```
|
142
|
-
|
143
|
-
### **listPackages**
|
144
|
-
|
145
|
-
List Packages
|
146
|
-
|
147
|
-
- HTTP Method: GET
|
148
|
-
- Endpoint: /packages
|
149
|
-
|
150
|
-
**Optional Parameters**
|
151
|
-
|
152
|
-
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
|
153
|
-
|
154
|
-
| Name | Type | Description |
|
155
|
-
| :---------- | :----- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
156
|
-
| destination | string | ISO representation of the package's destination. |
|
157
|
-
| startDate | string | Start date of the package's validity in the format 'yyyy-MM-dd'. This date can be set to the current day or any day within the next 12 months. |
|
158
|
-
| endDate | string | End date of the package's validity in the format 'yyyy-MM-dd'. End date can be maximum 90 days after Start date. |
|
159
|
-
| afterCursor | string | To get the next batch of results, use this parameter. It tells the API where to start fetching data after the last item you received. It helps you avoid repeats and efficiently browse through large sets of data. |
|
160
|
-
| limit | number | Maximum number of packages to be returned in the response. The value must be greater than 0 and less than or equal to 160. If not provided, the default value is 20 |
|
161
|
-
| startTime | number | Epoch value representing the start time of the package's validity. This timestamp can be set to the current time or any time within the next 12 months |
|
162
|
-
| endTime | number | Epoch value representing the end time of the package's validity. End time can be maximum 90 days after Start time |
|
163
|
-
| duration | number | Duration in seconds for the package's validity. If this parameter is present, it will override the startTime and endTime parameters. The maximum duration for a package's validity period is 90 days |
|
164
|
-
|
165
|
-
**Return Type**
|
166
|
-
|
167
|
-
ListPackagesResponse
|
168
|
-
|
169
|
-
**Example Usage Code Snippet**
|
170
|
-
|
171
|
-
```Typescript
|
172
|
-
import { Celitech } from 'celitech-sdk';
|
173
|
-
|
174
|
-
const sdk = new Celitech();
|
175
|
-
|
176
|
-
(async () => {
|
177
|
-
const result = await sdk.packages.listPackages();
|
178
|
-
console.log(result);
|
179
|
-
})();
|
180
|
-
|
181
|
-
```
|
182
|
-
|
183
|
-
### **createPurchase**
|
184
|
-
|
185
|
-
Create Purchase
|
186
|
-
|
187
|
-
- HTTP Method: POST
|
188
|
-
- Endpoint: /purchases
|
189
|
-
|
190
|
-
**Required Parameters**
|
191
|
-
|
192
|
-
| input | object | Request body. |
|
193
|
-
|
194
|
-
**Return Type**
|
195
|
-
|
196
|
-
CreatePurchaseResponse
|
197
|
-
|
198
|
-
**Example Usage Code Snippet**
|
199
|
-
|
200
|
-
```Typescript
|
201
|
-
import { Celitech } from 'celitech-sdk';
|
202
|
-
|
203
|
-
const sdk = new Celitech();
|
204
|
-
|
205
|
-
(async () => {
|
206
|
-
const input = {
|
207
|
-
dataLimitInGB: 1,
|
208
|
-
destination: 'FRA',
|
209
|
-
endDate: '2023-11-20',
|
210
|
-
startDate: '2023-11-01',
|
211
|
-
};
|
212
|
-
const result = await sdk.purchases.createPurchase(input);
|
213
|
-
console.log(result);
|
214
|
-
})();
|
215
|
-
|
216
|
-
```
|
217
|
-
|
218
|
-
### **listPurchases**
|
219
|
-
|
220
|
-
List Purchases
|
221
|
-
|
222
|
-
- HTTP Method: GET
|
223
|
-
- Endpoint: /purchases
|
224
|
-
|
225
|
-
**Optional Parameters**
|
226
|
-
|
227
|
-
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
|
228
|
-
|
229
|
-
| Name | Type | Description |
|
230
|
-
| :---------- | :----- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
231
|
-
| iccid | string | ID of the eSIM |
|
232
|
-
| afterDate | string | Start date of the interval for filtering purchases in the format 'yyyy-MM-dd' |
|
233
|
-
| beforeDate | string | End date of the interval for filtering purchases in the format 'yyyy-MM-dd' |
|
234
|
-
| referenceId | string | The referenceId that was provided by the partner during the purchase or topup flow. |
|
235
|
-
| afterCursor | string | To get the next batch of results, use this parameter. It tells the API where to start fetching data after the last item you received. It helps you avoid repeats and efficiently browse through large sets of data. |
|
236
|
-
| limit | number | Maximum number of purchases to be returned in the response. The value must be greater than 0 and less than or equal to 100. If not provided, the default value is 20 |
|
237
|
-
| after | number | Epoch value representing the start of the time interval for filtering purchases |
|
238
|
-
| before | number | Epoch value representing the end of the time interval for filtering purchases |
|
239
|
-
|
240
|
-
**Return Type**
|
241
|
-
|
242
|
-
ListPurchasesResponse
|
243
|
-
|
244
|
-
**Example Usage Code Snippet**
|
245
|
-
|
246
|
-
```Typescript
|
247
|
-
import { Celitech } from 'celitech-sdk';
|
248
|
-
|
249
|
-
const sdk = new Celitech();
|
250
|
-
|
251
|
-
(async () => {
|
252
|
-
const result = await sdk.purchases.listPurchases();
|
253
|
-
console.log(result);
|
254
|
-
})();
|
255
|
-
|
256
|
-
```
|
257
|
-
|
258
|
-
### **topUpEsim**
|
259
|
-
|
260
|
-
Top-up eSIM
|
261
|
-
|
262
|
-
- HTTP Method: POST
|
263
|
-
- Endpoint: /purchases/topup
|
264
|
-
|
265
|
-
**Required Parameters**
|
266
|
-
|
267
|
-
| input | object | Request body. |
|
268
|
-
|
269
|
-
**Return Type**
|
270
|
-
|
271
|
-
TopUpEsimResponse
|
272
|
-
|
273
|
-
**Example Usage Code Snippet**
|
274
|
-
|
275
|
-
```Typescript
|
276
|
-
import { Celitech } from 'celitech-sdk';
|
277
|
-
|
278
|
-
const sdk = new Celitech();
|
279
|
-
|
280
|
-
(async () => {
|
281
|
-
const input = {
|
282
|
-
dataLimitInGB: 1,
|
283
|
-
endDate: '2023-11-20',
|
284
|
-
iccid: '1111222233334444555',
|
285
|
-
startDate: '2023-11-01',
|
286
|
-
};
|
287
|
-
const result = await sdk.purchases.topUpEsim(input);
|
288
|
-
console.log(result);
|
289
|
-
})();
|
290
|
-
|
291
|
-
```
|
292
|
-
|
293
|
-
### **editPurchase**
|
294
|
-
|
295
|
-
Edit Purchase
|
296
|
-
|
297
|
-
- HTTP Method: POST
|
298
|
-
- Endpoint: /purchases/edit
|
299
|
-
|
300
|
-
**Required Parameters**
|
301
|
-
|
302
|
-
| input | object | Request body. |
|
303
|
-
|
304
|
-
**Return Type**
|
305
|
-
|
306
|
-
EditPurchaseResponse
|
307
|
-
|
308
|
-
**Example Usage Code Snippet**
|
309
|
-
|
310
|
-
```Typescript
|
311
|
-
import { Celitech } from 'celitech-sdk';
|
312
|
-
|
313
|
-
const sdk = new Celitech();
|
314
|
-
|
315
|
-
(async () => {
|
316
|
-
const input = {
|
317
|
-
endDate: '2023-11-20',
|
318
|
-
purchaseId: 'ae471106-c8b4-42cf-b83a-b061291f2922',
|
319
|
-
startDate: '2023-11-01',
|
320
|
-
};
|
321
|
-
const result = await sdk.purchases.editPurchase(input);
|
322
|
-
console.log(result);
|
323
|
-
})();
|
324
|
-
|
325
|
-
```
|
326
|
-
|
327
|
-
### **getPurchaseConsumption**
|
328
|
-
|
329
|
-
Get Purchase Consumption
|
330
|
-
|
331
|
-
- HTTP Method: GET
|
332
|
-
- Endpoint: /purchases/{purchaseId}/consumption
|
333
|
-
|
334
|
-
**Required Parameters**
|
335
|
-
|
336
|
-
| Name | Type | Description |
|
337
|
-
| :--------- | :----- | :----------------- |
|
338
|
-
| purchaseId | string | ID of the purchase |
|
339
|
-
|
340
|
-
**Return Type**
|
341
|
-
|
342
|
-
GetPurchaseConsumptionResponse
|
343
|
-
|
344
|
-
**Example Usage Code Snippet**
|
345
|
-
|
346
|
-
```Typescript
|
347
|
-
import { Celitech } from 'celitech-sdk';
|
348
|
-
|
349
|
-
const sdk = new Celitech();
|
350
|
-
|
351
|
-
(async () => {
|
352
|
-
const result = await sdk.purchases.getPurchaseConsumption('4973fa15-6979-4daa-9cf3-672620df819c');
|
353
|
-
console.log(result);
|
354
|
-
})();
|
355
|
-
|
356
|
-
```
|
357
|
-
|
358
|
-
### **getEsim**
|
359
|
-
|
360
|
-
Get eSIM Status
|
361
|
-
|
362
|
-
- HTTP Method: GET
|
363
|
-
- Endpoint: /esim
|
364
|
-
|
365
|
-
**Required Parameters**
|
366
|
-
|
367
|
-
| Name | Type | Description |
|
368
|
-
| :---- | :----- | :------------- |
|
369
|
-
| iccid | string | ID of the eSIM |
|
370
|
-
|
371
|
-
**Return Type**
|
372
|
-
|
373
|
-
GetEsimResponse
|
374
|
-
|
375
|
-
**Example Usage Code Snippet**
|
376
|
-
|
377
|
-
```Typescript
|
378
|
-
import { Celitech } from 'celitech-sdk';
|
379
|
-
|
380
|
-
const sdk = new Celitech();
|
381
|
-
|
382
|
-
(async () => {
|
383
|
-
const result = await sdk.eSim.getEsim('1111222233334444555');
|
384
|
-
console.log(result);
|
385
|
-
})();
|
386
|
-
|
387
|
-
```
|
388
|
-
|
389
|
-
### **getEsimDevice**
|
390
|
-
|
391
|
-
Get eSIM Device
|
392
|
-
|
393
|
-
- HTTP Method: GET
|
394
|
-
- Endpoint: /esim/{iccid}/device
|
395
|
-
|
396
|
-
**Required Parameters**
|
397
|
-
|
398
|
-
| Name | Type | Description |
|
399
|
-
| :---- | :----- | :------------- |
|
400
|
-
| iccid | string | ID of the eSIM |
|
401
|
-
|
402
|
-
**Return Type**
|
403
|
-
|
404
|
-
GetEsimDeviceResponse
|
405
|
-
|
406
|
-
**Example Usage Code Snippet**
|
407
|
-
|
408
|
-
```Typescript
|
409
|
-
import { Celitech } from 'celitech-sdk';
|
410
|
-
|
411
|
-
const sdk = new Celitech();
|
412
|
-
|
413
|
-
(async () => {
|
414
|
-
const result = await sdk.eSim.getEsimDevice('1111222233334444555');
|
415
|
-
console.log(result);
|
416
|
-
})();
|
417
|
-
|
418
|
-
```
|
419
|
-
|
420
|
-
### **getEsimHistory**
|
421
|
-
|
422
|
-
Get eSIM History
|
423
|
-
|
424
|
-
- HTTP Method: GET
|
425
|
-
- Endpoint: /esim/{iccid}/history
|
426
|
-
|
427
|
-
**Required Parameters**
|
428
|
-
|
429
|
-
| Name | Type | Description |
|
430
|
-
| :---- | :----- | :------------- |
|
431
|
-
| iccid | string | ID of the eSIM |
|
432
|
-
|
433
|
-
**Return Type**
|
434
|
-
|
435
|
-
GetEsimHistoryResponse
|
436
|
-
|
437
|
-
**Example Usage Code Snippet**
|
438
|
-
|
439
|
-
```Typescript
|
440
|
-
import { Celitech } from 'celitech-sdk';
|
441
|
-
|
442
|
-
const sdk = new Celitech();
|
443
|
-
|
444
|
-
(async () => {
|
445
|
-
const result = await sdk.eSim.getEsimHistory('1111222233334444555');
|
446
|
-
console.log(result);
|
447
|
-
})();
|
448
|
-
|
449
|
-
```
|
450
|
-
|
451
|
-
### **getEsimMac**
|
452
|
-
|
453
|
-
Get eSIM MAC
|
454
|
-
|
455
|
-
- HTTP Method: GET
|
456
|
-
- Endpoint: /esim/{iccid}/mac
|
457
|
-
|
458
|
-
**Required Parameters**
|
459
|
-
|
460
|
-
| Name | Type | Description |
|
461
|
-
| :---- | :----- | :------------- |
|
462
|
-
| iccid | string | ID of the eSIM |
|
463
|
-
|
464
|
-
**Return Type**
|
465
|
-
|
466
|
-
GetEsimMacResponse
|
467
|
-
|
468
|
-
**Example Usage Code Snippet**
|
469
|
-
|
470
|
-
```Typescript
|
471
|
-
import { Celitech } from 'celitech-sdk';
|
472
|
-
|
473
|
-
const sdk = new Celitech();
|
474
|
-
|
475
|
-
(async () => {
|
476
|
-
const result = await sdk.eSim.getEsimMac('1111222233334444555');
|
477
|
-
console.log(result);
|
478
|
-
})();
|
479
|
-
|
480
|
-
```
|
47
|
+
Environment variables are a way to configure your application outside the code. You can set these environment variables on the command line or use your project's existing tooling for managing environment variables.
|
48
|
+
|
49
|
+
If you are using a `.env` file, a template with the variable names is provided in the `.env.example` file located in the same directory as this README.
|
50
|
+
|
51
|
+
## Services
|
52
|
+
|
53
|
+
The SDK provides various services to interact with the API.
|
54
|
+
|
55
|
+
<details>
|
56
|
+
<summary>Below is a list of all available services with links to their detailed documentation:</summary>
|
57
|
+
|
58
|
+
| Name |
|
59
|
+
| :------------------------------------------------------------------- |
|
60
|
+
| [DestinationsService](documentation/services/DestinationsService.md) |
|
61
|
+
| [PackagesService](documentation/services/PackagesService.md) |
|
62
|
+
| [PurchasesService](documentation/services/PurchasesService.md) |
|
63
|
+
| [ESimService](documentation/services/ESimService.md) |
|
64
|
+
|
65
|
+
</details>
|
66
|
+
|
67
|
+
## Models
|
68
|
+
|
69
|
+
The SDK includes several models that represent the data structures used in API requests and responses. These models help in organizing and managing the data efficiently.
|
70
|
+
|
71
|
+
<details>
|
72
|
+
<summary>Below is a list of all available models with links to their detailed documentation:</summary>
|
73
|
+
|
74
|
+
| Name | Description |
|
75
|
+
| :------------------------------------------------------------------------------------------- | :---------- |
|
76
|
+
| [ListDestinationsOkResponse](documentation/models/ListDestinationsOkResponse.md) | |
|
77
|
+
| [ListPackagesOkResponse](documentation/models/ListPackagesOkResponse.md) | |
|
78
|
+
| [ListPurchasesOkResponse](documentation/models/ListPurchasesOkResponse.md) | |
|
79
|
+
| [CreatePurchaseRequest](documentation/models/CreatePurchaseRequest.md) | |
|
80
|
+
| [CreatePurchaseOkResponse](documentation/models/CreatePurchaseOkResponse.md) | |
|
81
|
+
| [TopUpEsimRequest](documentation/models/TopUpEsimRequest.md) | |
|
82
|
+
| [TopUpEsimOkResponse](documentation/models/TopUpEsimOkResponse.md) | |
|
83
|
+
| [EditPurchaseRequest](documentation/models/EditPurchaseRequest.md) | |
|
84
|
+
| [EditPurchaseOkResponse](documentation/models/EditPurchaseOkResponse.md) | |
|
85
|
+
| [GetPurchaseConsumptionOkResponse](documentation/models/GetPurchaseConsumptionOkResponse.md) | |
|
86
|
+
| [GetEsimOkResponse](documentation/models/GetEsimOkResponse.md) | |
|
87
|
+
| [GetEsimDeviceOkResponse](documentation/models/GetEsimDeviceOkResponse.md) | |
|
88
|
+
| [GetEsimHistoryOkResponse](documentation/models/GetEsimHistoryOkResponse.md) | |
|
89
|
+
| [GetEsimMacOkResponse](documentation/models/GetEsimMacOkResponse.md) | |
|
90
|
+
| [Destinations](documentation/models/Destinations.md) | |
|
91
|
+
| [Packages](documentation/models/Packages.md) | |
|
92
|
+
| [Purchases](documentation/models/Purchases.md) | |
|
93
|
+
| [Package\_](documentation/models/Package_.md) | |
|
94
|
+
| [PurchasesEsim](documentation/models/PurchasesEsim.md) | |
|
95
|
+
| [CreatePurchaseOkResponsePurchase](documentation/models/CreatePurchaseOkResponsePurchase.md) | |
|
96
|
+
| [CreatePurchaseOkResponseProfile](documentation/models/CreatePurchaseOkResponseProfile.md) | |
|
97
|
+
| [TopUpEsimOkResponsePurchase](documentation/models/TopUpEsimOkResponsePurchase.md) | |
|
98
|
+
| [TopUpEsimOkResponseProfile](documentation/models/TopUpEsimOkResponseProfile.md) | |
|
99
|
+
| [GetEsimOkResponseEsim](documentation/models/GetEsimOkResponseEsim.md) | |
|
100
|
+
| [Device](documentation/models/Device.md) | |
|
101
|
+
| [GetEsimHistoryOkResponseEsim](documentation/models/GetEsimHistoryOkResponseEsim.md) | |
|
102
|
+
| [History](documentation/models/History.md) | |
|
103
|
+
| [GetEsimMacOkResponseEsim](documentation/models/GetEsimMacOkResponseEsim.md) | |
|
104
|
+
|
105
|
+
</details>
|
481
106
|
|
482
107
|
## License
|
483
108
|
|
484
|
-
|
109
|
+
This SDK is licensed under the MIT License.
|
110
|
+
|
111
|
+
See the [LICENSE](LICENSE) file for more details.
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# CreatePurchaseOkResponse
|
2
|
+
|
3
|
+
**Properties**
|
4
|
+
|
5
|
+
| Name | Type | Required | Description |
|
6
|
+
| :------- | :------------------------------- | :------- | :---------- |
|
7
|
+
| purchase | CreatePurchaseOkResponsePurchase | ❌ | |
|
8
|
+
| profile | CreatePurchaseOkResponseProfile | ❌ | |
|
9
|
+
|
10
|
+
# CreatePurchaseOkResponsePurchase
|
11
|
+
|
12
|
+
**Properties**
|
13
|
+
|
14
|
+
| Name | Type | Required | Description |
|
15
|
+
| :---------- | :----- | :------- | :------------------------------------------------------------------------- |
|
16
|
+
| id | string | ❌ | ID of the purchase |
|
17
|
+
| packageId | string | ❌ | ID of the package |
|
18
|
+
| startDate | string | ❌ | Start date of the package's validity in the format 'yyyy-MM-ddThh:mm:ssZZ' |
|
19
|
+
| endDate | string | ❌ | End date of the package's validity in the format 'yyyy-MM-ddThh:mm:ssZZ' |
|
20
|
+
| createdDate | string | ❌ | Creation date of the purchase in the format 'yyyy-MM-ddThh:mm:ssZZ' |
|
21
|
+
| startTime | number | ❌ | Epoch value representing the start time of the package's validity |
|
22
|
+
| endTime | number | ❌ | Epoch value representing the end time of the package's validity |
|
23
|
+
|
24
|
+
# CreatePurchaseOkResponseProfile
|
25
|
+
|
26
|
+
**Properties**
|
27
|
+
|
28
|
+
| Name | Type | Required | Description |
|
29
|
+
| :------------- | :----- | :------- | :---------------------------- |
|
30
|
+
| iccid | string | ❌ | ID of the eSIM |
|
31
|
+
| activationCode | string | ❌ | QR Code of the eSIM as base64 |
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# CreatePurchaseRequest
|
2
|
+
|
3
|
+
**Properties**
|
4
|
+
|
5
|
+
| Name | Type | Required | Description |
|
6
|
+
| :------------ | :----- | :------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
7
|
+
| destination | string | ✅ | ISO representation of the package's destination |
|
8
|
+
| dataLimitInGb | number | ✅ | Size of the package in GB. The available options are 1, 2, 3, 5, 8, 20GB |
|
9
|
+
| startDate | string | ✅ | Start date of the package's validity in the format 'yyyy-MM-dd'. This date can be set to the current day or any day within the next 12 months. |
|
10
|
+
| endDate | string | ✅ | End date of the package's validity in the format 'yyyy-MM-dd'. End date can be maximum 90 days after Start date. |
|
11
|
+
| email | string | ❌ | Email address where the purchase confirmation email will be sent (including QR Code & activation steps) |
|
12
|
+
| referenceId | string | ❌ | An identifier provided by the partner to link this purchase to their booking or transaction for analytics and debugging purposes. |
|
13
|
+
| networkBrand | string | ❌ | Customize the network brand of the issued eSIM. This parameter is accessible to platforms with Diamond tier and requires an alphanumeric string of up to 15 characters |
|
14
|
+
| startTime | number | ❌ | Epoch value representing the start time of the package's validity. This timestamp can be set to the current time or any time within the next 12 months. |
|
15
|
+
| endTime | number | ❌ | Epoch value representing the end time of the package's validity. End time can be maximum 90 days after Start time. |
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# EditPurchaseOkResponse
|
2
|
+
|
3
|
+
**Properties**
|
4
|
+
|
5
|
+
| Name | Type | Required | Description |
|
6
|
+
| :----------- | :----- | :------- | :------------------------------------------------------------------------- |
|
7
|
+
| purchaseId | string | ❌ | ID of the purchase |
|
8
|
+
| newStartDate | string | ❌ | Start date of the package's validity in the format 'yyyy-MM-ddThh:mm:ssZZ' |
|
9
|
+
| newEndDate | string | ❌ | End date of the package's validity in the format 'yyyy-MM-ddThh:mm:ssZZ' |
|
10
|
+
| newStartTime | number | ❌ | Epoch value representing the new start time of the package's validity |
|
11
|
+
| newEndTime | number | ❌ | Epoch value representing the new end time of the package's validity |
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# EditPurchaseRequest
|
2
|
+
|
3
|
+
**Properties**
|
4
|
+
|
5
|
+
| Name | Type | Required | Description |
|
6
|
+
| :--------- | :----- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
7
|
+
| purchaseId | string | ✅ | ID of the purchase |
|
8
|
+
| startDate | string | ✅ | Start date of the package's validity in the format 'yyyy-MM-dd'. This date can be set to the current day or any day within the next 12 months. |
|
9
|
+
| endDate | string | ✅ | End date of the package's validity in the format 'yyyy-MM-dd'. End date can be maximum 90 days after Start date. |
|
10
|
+
| startTime | number | ❌ | Epoch value representing the start time of the package's validity. This timestamp can be set to the current time or any time within the next 12 months. |
|
11
|
+
| endTime | number | ❌ | Epoch value representing the end time of the package's validity. End time can be maximum 90 days after Start time. |
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# GetEsimDeviceOkResponse
|
2
|
+
|
3
|
+
**Properties**
|
4
|
+
|
5
|
+
| Name | Type | Required | Description |
|
6
|
+
| :----- | :----- | :------- | :---------- |
|
7
|
+
| device | Device | ❌ | |
|
8
|
+
|
9
|
+
# Device
|
10
|
+
|
11
|
+
**Properties**
|
12
|
+
|
13
|
+
| Name | Type | Required | Description |
|
14
|
+
| :------------ | :----- | :------- | :------------------------ |
|
15
|
+
| oem | string | ❌ | Name of the OEM |
|
16
|
+
| hardwareName | string | ❌ | Name of the Device |
|
17
|
+
| hardwareModel | string | ❌ | Model of the Device |
|
18
|
+
| eid | string | ❌ | Serial Number of the eSIM |
|