@crevio/sdk 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devcontainer/README.md +30 -0
- package/.devcontainer/devcontainer.json +45 -0
- package/FUNCTIONS.md +87 -0
- package/README.md +464 -0
- package/RUNTIMES.md +48 -0
- package/dist/commonjs/core.d.ts +10 -0
- package/dist/commonjs/core.d.ts.map +1 -0
- package/dist/commonjs/core.js +17 -0
- package/dist/commonjs/core.js.map +1 -0
- package/dist/commonjs/funcs/accountsGet.d.ts +19 -0
- package/dist/commonjs/funcs/accountsGet.d.ts.map +1 -0
- package/dist/commonjs/funcs/accountsGet.js +124 -0
- package/dist/commonjs/funcs/accountsGet.js.map +1 -0
- package/dist/commonjs/funcs/checkoutsCreate.d.ts +18 -0
- package/dist/commonjs/funcs/checkoutsCreate.d.ts.map +1 -0
- package/dist/commonjs/funcs/checkoutsCreate.js +118 -0
- package/dist/commonjs/funcs/checkoutsCreate.js.map +1 -0
- package/dist/commonjs/funcs/productsGet.d.ts +19 -0
- package/dist/commonjs/funcs/productsGet.d.ts.map +1 -0
- package/dist/commonjs/funcs/productsGet.js +124 -0
- package/dist/commonjs/funcs/productsGet.js.map +1 -0
- package/dist/commonjs/funcs/productsList.d.ts +18 -0
- package/dist/commonjs/funcs/productsList.d.ts.map +1 -0
- package/dist/commonjs/funcs/productsList.js +109 -0
- package/dist/commonjs/funcs/productsList.js.map +1 -0
- package/dist/commonjs/funcs/userDelete.d.ts +18 -0
- package/dist/commonjs/funcs/userDelete.d.ts.map +1 -0
- package/dist/commonjs/funcs/userDelete.js +108 -0
- package/dist/commonjs/funcs/userDelete.js.map +1 -0
- package/dist/commonjs/funcs/userGet.d.ts +18 -0
- package/dist/commonjs/funcs/userGet.d.ts.map +1 -0
- package/dist/commonjs/funcs/userGet.js +108 -0
- package/dist/commonjs/funcs/userGet.js.map +1 -0
- package/dist/commonjs/hooks/hooks.d.ts +25 -0
- package/dist/commonjs/hooks/hooks.d.ts.map +1 -0
- package/dist/commonjs/hooks/hooks.js +86 -0
- package/dist/commonjs/hooks/hooks.js.map +1 -0
- package/dist/commonjs/hooks/index.d.ts +3 -0
- package/dist/commonjs/hooks/index.d.ts.map +1 -0
- package/dist/commonjs/hooks/index.js +22 -0
- package/dist/commonjs/hooks/index.js.map +1 -0
- package/dist/commonjs/hooks/registration.d.ts +3 -0
- package/dist/commonjs/hooks/registration.d.ts.map +1 -0
- package/dist/commonjs/hooks/registration.js +15 -0
- package/dist/commonjs/hooks/registration.js.map +1 -0
- package/dist/commonjs/hooks/types.d.ts +76 -0
- package/dist/commonjs/hooks/types.d.ts.map +1 -0
- package/dist/commonjs/hooks/types.js +6 -0
- package/dist/commonjs/hooks/types.js.map +1 -0
- package/dist/commonjs/index.d.ts +6 -0
- package/dist/commonjs/index.d.ts.map +1 -0
- package/dist/commonjs/index.js +48 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/lib/base64.d.ts +10 -0
- package/dist/commonjs/lib/base64.d.ts.map +1 -0
- package/dist/commonjs/lib/base64.js +71 -0
- package/dist/commonjs/lib/base64.js.map +1 -0
- package/dist/commonjs/lib/config.d.ts +38 -0
- package/dist/commonjs/lib/config.d.ts.map +1 -0
- package/dist/commonjs/lib/config.js +42 -0
- package/dist/commonjs/lib/config.js.map +1 -0
- package/dist/commonjs/lib/dlv.d.ts +14 -0
- package/dist/commonjs/lib/dlv.d.ts.map +1 -0
- package/dist/commonjs/lib/dlv.js +49 -0
- package/dist/commonjs/lib/dlv.js.map +1 -0
- package/dist/commonjs/lib/encodings.d.ts +52 -0
- package/dist/commonjs/lib/encodings.d.ts.map +1 -0
- package/dist/commonjs/lib/encodings.js +368 -0
- package/dist/commonjs/lib/encodings.js.map +1 -0
- package/dist/commonjs/lib/env.d.ts +15 -0
- package/dist/commonjs/lib/env.d.ts.map +1 -0
- package/dist/commonjs/lib/env.js +65 -0
- package/dist/commonjs/lib/env.js.map +1 -0
- package/dist/commonjs/lib/files.d.ts +13 -0
- package/dist/commonjs/lib/files.d.ts.map +1 -0
- package/dist/commonjs/lib/files.js +77 -0
- package/dist/commonjs/lib/files.js.map +1 -0
- package/dist/commonjs/lib/http.d.ts +67 -0
- package/dist/commonjs/lib/http.d.ts.map +1 -0
- package/dist/commonjs/lib/http.js +217 -0
- package/dist/commonjs/lib/http.js.map +1 -0
- package/dist/commonjs/lib/is-plain-object.d.ts +2 -0
- package/dist/commonjs/lib/is-plain-object.d.ts.map +1 -0
- package/dist/commonjs/lib/is-plain-object.js +41 -0
- package/dist/commonjs/lib/is-plain-object.js.map +1 -0
- package/dist/commonjs/lib/logger.d.ts +6 -0
- package/dist/commonjs/lib/logger.d.ts.map +1 -0
- package/dist/commonjs/lib/logger.js +6 -0
- package/dist/commonjs/lib/logger.js.map +1 -0
- package/dist/commonjs/lib/matchers.d.ts +59 -0
- package/dist/commonjs/lib/matchers.d.ts.map +1 -0
- package/dist/commonjs/lib/matchers.js +222 -0
- package/dist/commonjs/lib/matchers.js.map +1 -0
- package/dist/commonjs/lib/primitives.d.ts +26 -0
- package/dist/commonjs/lib/primitives.d.ts.map +1 -0
- package/dist/commonjs/lib/primitives.js +111 -0
- package/dist/commonjs/lib/primitives.js.map +1 -0
- package/dist/commonjs/lib/retries.d.ts +38 -0
- package/dist/commonjs/lib/retries.d.ts.map +1 -0
- package/dist/commonjs/lib/retries.js +153 -0
- package/dist/commonjs/lib/retries.js.map +1 -0
- package/dist/commonjs/lib/schemas.d.ts +19 -0
- package/dist/commonjs/lib/schemas.d.ts.map +1 -0
- package/dist/commonjs/lib/schemas.js +62 -0
- package/dist/commonjs/lib/schemas.js.map +1 -0
- package/dist/commonjs/lib/sdks.d.ts +63 -0
- package/dist/commonjs/lib/sdks.d.ts.map +1 -0
- package/dist/commonjs/lib/sdks.js +273 -0
- package/dist/commonjs/lib/sdks.js.map +1 -0
- package/dist/commonjs/lib/security.d.ts +83 -0
- package/dist/commonjs/lib/security.d.ts.map +1 -0
- package/dist/commonjs/lib/security.js +144 -0
- package/dist/commonjs/lib/security.js.map +1 -0
- package/dist/commonjs/lib/url.d.ts +5 -0
- package/dist/commonjs/lib/url.d.ts.map +1 -0
- package/dist/commonjs/lib/url.js +25 -0
- package/dist/commonjs/lib/url.js.map +1 -0
- package/dist/commonjs/models/account.d.ts +44 -0
- package/dist/commonjs/models/account.d.ts.map +1 -0
- package/dist/commonjs/models/account.js +99 -0
- package/dist/commonjs/models/account.js.map +1 -0
- package/dist/commonjs/models/accountslim.d.ts +33 -0
- package/dist/commonjs/models/accountslim.d.ts.map +1 -0
- package/dist/commonjs/models/accountslim.js +73 -0
- package/dist/commonjs/models/accountslim.js.map +1 -0
- package/dist/commonjs/models/checkoutrequest.d.ts +94 -0
- package/dist/commonjs/models/checkoutrequest.d.ts.map +1 -0
- package/dist/commonjs/models/checkoutrequest.js +160 -0
- package/dist/commonjs/models/checkoutrequest.js.map +1 -0
- package/dist/commonjs/models/checkoutresponse.d.ts +31 -0
- package/dist/commonjs/models/checkoutresponse.d.ts.map +1 -0
- package/dist/commonjs/models/checkoutresponse.js +82 -0
- package/dist/commonjs/models/checkoutresponse.js.map +1 -0
- package/dist/commonjs/models/errors/creviodefaulterror.d.ts +10 -0
- package/dist/commonjs/models/errors/creviodefaulterror.d.ts.map +1 -0
- package/dist/commonjs/models/errors/creviodefaulterror.js +34 -0
- package/dist/commonjs/models/errors/creviodefaulterror.js.map +1 -0
- package/dist/commonjs/models/errors/crevioerror.d.ts +19 -0
- package/dist/commonjs/models/errors/crevioerror.d.ts.map +1 -0
- package/dist/commonjs/models/errors/crevioerror.js +20 -0
- package/dist/commonjs/models/errors/crevioerror.js.map +1 -0
- package/dist/commonjs/models/errors/error.d.ts +45 -0
- package/dist/commonjs/models/errors/error.d.ts.map +1 -0
- package/dist/commonjs/models/errors/error.js +94 -0
- package/dist/commonjs/models/errors/error.js.map +1 -0
- package/dist/commonjs/models/errors/httpclienterrors.d.ts +44 -0
- package/dist/commonjs/models/errors/httpclienterrors.d.ts.map +1 -0
- package/dist/commonjs/models/errors/httpclienterrors.js +78 -0
- package/dist/commonjs/models/errors/httpclienterrors.js.map +1 -0
- package/dist/commonjs/models/errors/index.d.ts +6 -0
- package/dist/commonjs/models/errors/index.d.ts.map +1 -0
- package/dist/commonjs/models/errors/index.js +25 -0
- package/dist/commonjs/models/errors/index.js.map +1 -0
- package/dist/commonjs/models/errors/responsevalidationerror.d.ts +26 -0
- package/dist/commonjs/models/errors/responsevalidationerror.d.ts.map +1 -0
- package/dist/commonjs/models/errors/responsevalidationerror.js +66 -0
- package/dist/commonjs/models/errors/responsevalidationerror.js.map +1 -0
- package/dist/commonjs/models/errors/sdkvalidationerror.d.ts +21 -0
- package/dist/commonjs/models/errors/sdkvalidationerror.d.ts.map +1 -0
- package/dist/commonjs/models/errors/sdkvalidationerror.js +129 -0
- package/dist/commonjs/models/errors/sdkvalidationerror.js.map +1 -0
- package/dist/commonjs/models/fileattachment.d.ts +37 -0
- package/dist/commonjs/models/fileattachment.d.ts.map +1 -0
- package/dist/commonjs/models/fileattachment.js +88 -0
- package/dist/commonjs/models/fileattachment.js.map +1 -0
- package/dist/commonjs/models/imageattachment.d.ts +37 -0
- package/dist/commonjs/models/imageattachment.d.ts.map +1 -0
- package/dist/commonjs/models/imageattachment.js +88 -0
- package/dist/commonjs/models/imageattachment.js.map +1 -0
- package/dist/commonjs/models/index.d.ts +15 -0
- package/dist/commonjs/models/index.d.ts.map +1 -0
- package/dist/commonjs/models/index.js +34 -0
- package/dist/commonjs/models/index.js.map +1 -0
- package/dist/commonjs/models/linkinbiopage.d.ts +33 -0
- package/dist/commonjs/models/linkinbiopage.d.ts.map +1 -0
- package/dist/commonjs/models/linkinbiopage.js +73 -0
- package/dist/commonjs/models/linkinbiopage.js.map +1 -0
- package/dist/commonjs/models/operations/delete.d.ts +28 -0
- package/dist/commonjs/models/operations/delete.d.ts.map +1 -0
- package/dist/commonjs/models/operations/delete.js +65 -0
- package/dist/commonjs/models/operations/delete.js.map +1 -0
- package/dist/commonjs/models/operations/getaccount.d.ts +32 -0
- package/dist/commonjs/models/operations/getaccount.d.ts.map +1 -0
- package/dist/commonjs/models/operations/getaccount.js +78 -0
- package/dist/commonjs/models/operations/getaccount.js.map +1 -0
- package/dist/commonjs/models/operations/getproduct.d.ts +32 -0
- package/dist/commonjs/models/operations/getproduct.d.ts.map +1 -0
- package/dist/commonjs/models/operations/getproduct.js +78 -0
- package/dist/commonjs/models/operations/getproduct.js.map +1 -0
- package/dist/commonjs/models/operations/index.d.ts +4 -0
- package/dist/commonjs/models/operations/index.d.ts.map +1 -0
- package/dist/commonjs/models/operations/index.js +23 -0
- package/dist/commonjs/models/operations/index.js.map +1 -0
- package/dist/commonjs/models/pricevariant.d.ts +46 -0
- package/dist/commonjs/models/pricevariant.d.ts.map +1 -0
- package/dist/commonjs/models/pricevariant.js +92 -0
- package/dist/commonjs/models/pricevariant.js.map +1 -0
- package/dist/commonjs/models/product.d.ts +94 -0
- package/dist/commonjs/models/product.d.ts.map +1 -0
- package/dist/commonjs/models/product.js +149 -0
- package/dist/commonjs/models/product.js.map +1 -0
- package/dist/commonjs/models/review.d.ts +35 -0
- package/dist/commonjs/models/review.d.ts.map +1 -0
- package/dist/commonjs/models/review.js +85 -0
- package/dist/commonjs/models/review.js.map +1 -0
- package/dist/commonjs/models/security.d.ts +29 -0
- package/dist/commonjs/models/security.d.ts.map +1 -0
- package/dist/commonjs/models/security.js +78 -0
- package/dist/commonjs/models/security.js.map +1 -0
- package/dist/commonjs/models/seo.d.ts +33 -0
- package/dist/commonjs/models/seo.d.ts.map +1 -0
- package/dist/commonjs/models/seo.js +75 -0
- package/dist/commonjs/models/seo.js.map +1 -0
- package/dist/commonjs/models/sociallink.d.ts +35 -0
- package/dist/commonjs/models/sociallink.d.ts.map +1 -0
- package/dist/commonjs/models/sociallink.js +75 -0
- package/dist/commonjs/models/sociallink.js.map +1 -0
- package/dist/commonjs/models/user.d.ts +65 -0
- package/dist/commonjs/models/user.d.ts.map +1 -0
- package/dist/commonjs/models/user.js +138 -0
- package/dist/commonjs/models/user.js.map +1 -0
- package/dist/commonjs/package.json +3 -0
- package/dist/commonjs/sdk/accounts.d.ts +13 -0
- package/dist/commonjs/sdk/accounts.d.ts.map +1 -0
- package/dist/commonjs/sdk/accounts.js +22 -0
- package/dist/commonjs/sdk/accounts.js.map +1 -0
- package/dist/commonjs/sdk/checkouts.d.ts +12 -0
- package/dist/commonjs/sdk/checkouts.d.ts.map +1 -0
- package/dist/commonjs/sdk/checkouts.js +22 -0
- package/dist/commonjs/sdk/checkouts.js.map +1 -0
- package/dist/commonjs/sdk/index.d.ts +2 -0
- package/dist/commonjs/sdk/index.d.ts.map +1 -0
- package/dist/commonjs/sdk/index.js +21 -0
- package/dist/commonjs/sdk/index.js.map +1 -0
- package/dist/commonjs/sdk/products.d.ts +20 -0
- package/dist/commonjs/sdk/products.d.ts.map +1 -0
- package/dist/commonjs/sdk/products.js +32 -0
- package/dist/commonjs/sdk/products.js.map +1 -0
- package/dist/commonjs/sdk/sdk.d.ts +16 -0
- package/dist/commonjs/sdk/sdk.d.ts.map +1 -0
- package/dist/commonjs/sdk/sdk.js +27 -0
- package/dist/commonjs/sdk/sdk.js.map +1 -0
- package/dist/commonjs/sdk/user.d.ts +20 -0
- package/dist/commonjs/sdk/user.d.ts.map +1 -0
- package/dist/commonjs/sdk/user.js +32 -0
- package/dist/commonjs/sdk/user.js.map +1 -0
- package/dist/commonjs/types/async.d.ts +23 -0
- package/dist/commonjs/types/async.d.ts.map +1 -0
- package/dist/commonjs/types/async.js +44 -0
- package/dist/commonjs/types/async.js.map +1 -0
- package/dist/commonjs/types/blobs.d.ts +4 -0
- package/dist/commonjs/types/blobs.d.ts.map +1 -0
- package/dist/commonjs/types/blobs.js +62 -0
- package/dist/commonjs/types/blobs.js.map +1 -0
- package/dist/commonjs/types/constdatetime.d.ts +3 -0
- package/dist/commonjs/types/constdatetime.d.ts.map +1 -0
- package/dist/commonjs/types/constdatetime.js +46 -0
- package/dist/commonjs/types/constdatetime.js.map +1 -0
- package/dist/commonjs/types/enums.d.ts +12 -0
- package/dist/commonjs/types/enums.d.ts.map +1 -0
- package/dist/commonjs/types/enums.js +10 -0
- package/dist/commonjs/types/enums.js.map +1 -0
- package/dist/commonjs/types/fp.d.ts +31 -0
- package/dist/commonjs/types/fp.d.ts.map +1 -0
- package/dist/commonjs/types/fp.js +37 -0
- package/dist/commonjs/types/fp.js.map +1 -0
- package/dist/commonjs/types/index.d.ts +8 -0
- package/dist/commonjs/types/index.d.ts.map +1 -0
- package/dist/commonjs/types/index.js +16 -0
- package/dist/commonjs/types/index.js.map +1 -0
- package/dist/commonjs/types/operations.d.ts +27 -0
- package/dist/commonjs/types/operations.d.ts.map +1 -0
- package/dist/commonjs/types/operations.js +83 -0
- package/dist/commonjs/types/operations.js.map +1 -0
- package/dist/commonjs/types/rfcdate.d.ts +21 -0
- package/dist/commonjs/types/rfcdate.d.ts.map +1 -0
- package/dist/commonjs/types/rfcdate.js +46 -0
- package/dist/commonjs/types/rfcdate.js.map +1 -0
- package/dist/commonjs/types/streams.d.ts +2 -0
- package/dist/commonjs/types/streams.d.ts.map +1 -0
- package/dist/commonjs/types/streams.js +18 -0
- package/dist/commonjs/types/streams.js.map +1 -0
- package/dist/esm/core.d.ts +10 -0
- package/dist/esm/core.d.ts.map +1 -0
- package/dist/esm/core.js +13 -0
- package/dist/esm/core.js.map +1 -0
- package/dist/esm/funcs/accountsGet.d.ts +19 -0
- package/dist/esm/funcs/accountsGet.d.ts.map +1 -0
- package/dist/esm/funcs/accountsGet.js +88 -0
- package/dist/esm/funcs/accountsGet.js.map +1 -0
- package/dist/esm/funcs/checkoutsCreate.d.ts +18 -0
- package/dist/esm/funcs/checkoutsCreate.d.ts.map +1 -0
- package/dist/esm/funcs/checkoutsCreate.js +82 -0
- package/dist/esm/funcs/checkoutsCreate.js.map +1 -0
- package/dist/esm/funcs/productsGet.d.ts +19 -0
- package/dist/esm/funcs/productsGet.d.ts.map +1 -0
- package/dist/esm/funcs/productsGet.js +88 -0
- package/dist/esm/funcs/productsGet.js.map +1 -0
- package/dist/esm/funcs/productsList.d.ts +18 -0
- package/dist/esm/funcs/productsList.d.ts.map +1 -0
- package/dist/esm/funcs/productsList.js +73 -0
- package/dist/esm/funcs/productsList.js.map +1 -0
- package/dist/esm/funcs/userDelete.d.ts +18 -0
- package/dist/esm/funcs/userDelete.d.ts.map +1 -0
- package/dist/esm/funcs/userDelete.js +72 -0
- package/dist/esm/funcs/userDelete.js.map +1 -0
- package/dist/esm/funcs/userGet.d.ts +18 -0
- package/dist/esm/funcs/userGet.d.ts.map +1 -0
- package/dist/esm/funcs/userGet.js +72 -0
- package/dist/esm/funcs/userGet.js.map +1 -0
- package/dist/esm/hooks/hooks.d.ts +25 -0
- package/dist/esm/hooks/hooks.d.ts.map +1 -0
- package/dist/esm/hooks/hooks.js +82 -0
- package/dist/esm/hooks/hooks.js.map +1 -0
- package/dist/esm/hooks/index.d.ts +3 -0
- package/dist/esm/hooks/index.d.ts.map +1 -0
- package/dist/esm/hooks/index.js +6 -0
- package/dist/esm/hooks/index.js.map +1 -0
- package/dist/esm/hooks/registration.d.ts +3 -0
- package/dist/esm/hooks/registration.d.ts.map +1 -0
- package/dist/esm/hooks/registration.js +12 -0
- package/dist/esm/hooks/registration.js.map +1 -0
- package/dist/esm/hooks/types.d.ts +76 -0
- package/dist/esm/hooks/types.d.ts.map +1 -0
- package/dist/esm/hooks/types.js +5 -0
- package/dist/esm/hooks/types.js.map +1 -0
- package/dist/esm/index.d.ts +6 -0
- package/dist/esm/index.d.ts.map +1 -0
- package/dist/esm/index.js +8 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/lib/base64.d.ts +10 -0
- package/dist/esm/lib/base64.d.ts.map +1 -0
- package/dist/esm/lib/base64.js +29 -0
- package/dist/esm/lib/base64.js.map +1 -0
- package/dist/esm/lib/config.d.ts +38 -0
- package/dist/esm/lib/config.d.ts.map +1 -0
- package/dist/esm/lib/config.js +38 -0
- package/dist/esm/lib/config.js.map +1 -0
- package/dist/esm/lib/dlv.d.ts +14 -0
- package/dist/esm/lib/dlv.d.ts.map +1 -0
- package/dist/esm/lib/dlv.js +46 -0
- package/dist/esm/lib/dlv.js.map +1 -0
- package/dist/esm/lib/encodings.d.ts +52 -0
- package/dist/esm/lib/encodings.d.ts.map +1 -0
- package/dist/esm/lib/encodings.js +354 -0
- package/dist/esm/lib/encodings.js.map +1 -0
- package/dist/esm/lib/env.d.ts +15 -0
- package/dist/esm/lib/env.d.ts.map +1 -0
- package/dist/esm/lib/env.js +27 -0
- package/dist/esm/lib/env.js.map +1 -0
- package/dist/esm/lib/files.d.ts +13 -0
- package/dist/esm/lib/files.d.ts.map +1 -0
- package/dist/esm/lib/files.js +73 -0
- package/dist/esm/lib/files.js.map +1 -0
- package/dist/esm/lib/http.d.ts +67 -0
- package/dist/esm/lib/http.d.ts.map +1 -0
- package/dist/esm/lib/http.js +207 -0
- package/dist/esm/lib/http.js.map +1 -0
- package/dist/esm/lib/is-plain-object.d.ts +2 -0
- package/dist/esm/lib/is-plain-object.d.ts.map +1 -0
- package/dist/esm/lib/is-plain-object.js +38 -0
- package/dist/esm/lib/is-plain-object.js.map +1 -0
- package/dist/esm/lib/logger.d.ts +6 -0
- package/dist/esm/lib/logger.d.ts.map +1 -0
- package/dist/esm/lib/logger.js +5 -0
- package/dist/esm/lib/logger.js.map +1 -0
- package/dist/esm/lib/matchers.d.ts +59 -0
- package/dist/esm/lib/matchers.d.ts.map +1 -0
- package/dist/esm/lib/matchers.js +203 -0
- package/dist/esm/lib/matchers.js.map +1 -0
- package/dist/esm/lib/primitives.d.ts +26 -0
- package/dist/esm/lib/primitives.d.ts.map +1 -0
- package/dist/esm/lib/primitives.js +103 -0
- package/dist/esm/lib/primitives.js.map +1 -0
- package/dist/esm/lib/retries.d.ts +38 -0
- package/dist/esm/lib/retries.d.ts.map +1 -0
- package/dist/esm/lib/retries.js +147 -0
- package/dist/esm/lib/retries.js.map +1 -0
- package/dist/esm/lib/schemas.d.ts +19 -0
- package/dist/esm/lib/schemas.d.ts.map +1 -0
- package/dist/esm/lib/schemas.js +57 -0
- package/dist/esm/lib/schemas.js.map +1 -0
- package/dist/esm/lib/sdks.d.ts +63 -0
- package/dist/esm/lib/sdks.d.ts.map +1 -0
- package/dist/esm/lib/sdks.js +269 -0
- package/dist/esm/lib/sdks.js.map +1 -0
- package/dist/esm/lib/security.d.ts +83 -0
- package/dist/esm/lib/security.d.ts.map +1 -0
- package/dist/esm/lib/security.js +137 -0
- package/dist/esm/lib/security.js.map +1 -0
- package/dist/esm/lib/url.d.ts +5 -0
- package/dist/esm/lib/url.d.ts.map +1 -0
- package/dist/esm/lib/url.js +22 -0
- package/dist/esm/lib/url.js.map +1 -0
- package/dist/esm/models/account.d.ts +44 -0
- package/dist/esm/models/account.d.ts.map +1 -0
- package/dist/esm/models/account.js +61 -0
- package/dist/esm/models/account.js.map +1 -0
- package/dist/esm/models/accountslim.d.ts +33 -0
- package/dist/esm/models/accountslim.d.ts.map +1 -0
- package/dist/esm/models/accountslim.js +35 -0
- package/dist/esm/models/accountslim.js.map +1 -0
- package/dist/esm/models/checkoutrequest.d.ts +94 -0
- package/dist/esm/models/checkoutrequest.d.ts.map +1 -0
- package/dist/esm/models/checkoutrequest.js +118 -0
- package/dist/esm/models/checkoutrequest.js.map +1 -0
- package/dist/esm/models/checkoutresponse.d.ts +31 -0
- package/dist/esm/models/checkoutresponse.d.ts.map +1 -0
- package/dist/esm/models/checkoutresponse.js +44 -0
- package/dist/esm/models/checkoutresponse.js.map +1 -0
- package/dist/esm/models/errors/creviodefaulterror.d.ts +10 -0
- package/dist/esm/models/errors/creviodefaulterror.d.ts.map +1 -0
- package/dist/esm/models/errors/creviodefaulterror.js +30 -0
- package/dist/esm/models/errors/creviodefaulterror.js.map +1 -0
- package/dist/esm/models/errors/crevioerror.d.ts +19 -0
- package/dist/esm/models/errors/crevioerror.d.ts.map +1 -0
- package/dist/esm/models/errors/crevioerror.js +16 -0
- package/dist/esm/models/errors/crevioerror.js.map +1 -0
- package/dist/esm/models/errors/error.d.ts +45 -0
- package/dist/esm/models/errors/error.d.ts.map +1 -0
- package/dist/esm/models/errors/error.js +57 -0
- package/dist/esm/models/errors/error.js.map +1 -0
- package/dist/esm/models/errors/httpclienterrors.d.ts +44 -0
- package/dist/esm/models/errors/httpclienterrors.d.ts.map +1 -0
- package/dist/esm/models/errors/httpclienterrors.js +69 -0
- package/dist/esm/models/errors/httpclienterrors.js.map +1 -0
- package/dist/esm/models/errors/index.d.ts +6 -0
- package/dist/esm/models/errors/index.d.ts.map +1 -0
- package/dist/esm/models/errors/index.js +9 -0
- package/dist/esm/models/errors/index.js.map +1 -0
- package/dist/esm/models/errors/responsevalidationerror.d.ts +26 -0
- package/dist/esm/models/errors/responsevalidationerror.d.ts.map +1 -0
- package/dist/esm/models/errors/responsevalidationerror.js +29 -0
- package/dist/esm/models/errors/responsevalidationerror.js.map +1 -0
- package/dist/esm/models/errors/sdkvalidationerror.d.ts +21 -0
- package/dist/esm/models/errors/sdkvalidationerror.d.ts.map +1 -0
- package/dist/esm/models/errors/sdkvalidationerror.js +91 -0
- package/dist/esm/models/errors/sdkvalidationerror.js.map +1 -0
- package/dist/esm/models/fileattachment.d.ts +37 -0
- package/dist/esm/models/fileattachment.d.ts.map +1 -0
- package/dist/esm/models/fileattachment.js +50 -0
- package/dist/esm/models/fileattachment.js.map +1 -0
- package/dist/esm/models/imageattachment.d.ts +37 -0
- package/dist/esm/models/imageattachment.d.ts.map +1 -0
- package/dist/esm/models/imageattachment.js +50 -0
- package/dist/esm/models/imageattachment.js.map +1 -0
- package/dist/esm/models/index.d.ts +15 -0
- package/dist/esm/models/index.d.ts.map +1 -0
- package/dist/esm/models/index.js +18 -0
- package/dist/esm/models/index.js.map +1 -0
- package/dist/esm/models/linkinbiopage.d.ts +33 -0
- package/dist/esm/models/linkinbiopage.d.ts.map +1 -0
- package/dist/esm/models/linkinbiopage.js +35 -0
- package/dist/esm/models/linkinbiopage.js.map +1 -0
- package/dist/esm/models/operations/delete.d.ts +28 -0
- package/dist/esm/models/operations/delete.d.ts.map +1 -0
- package/dist/esm/models/operations/delete.js +27 -0
- package/dist/esm/models/operations/delete.js.map +1 -0
- package/dist/esm/models/operations/getaccount.d.ts +32 -0
- package/dist/esm/models/operations/getaccount.d.ts.map +1 -0
- package/dist/esm/models/operations/getaccount.js +40 -0
- package/dist/esm/models/operations/getaccount.js.map +1 -0
- package/dist/esm/models/operations/getproduct.d.ts +32 -0
- package/dist/esm/models/operations/getproduct.d.ts.map +1 -0
- package/dist/esm/models/operations/getproduct.js +40 -0
- package/dist/esm/models/operations/getproduct.js.map +1 -0
- package/dist/esm/models/operations/index.d.ts +4 -0
- package/dist/esm/models/operations/index.d.ts.map +1 -0
- package/dist/esm/models/operations/index.js +7 -0
- package/dist/esm/models/operations/index.js.map +1 -0
- package/dist/esm/models/pricevariant.d.ts +46 -0
- package/dist/esm/models/pricevariant.d.ts.map +1 -0
- package/dist/esm/models/pricevariant.js +54 -0
- package/dist/esm/models/pricevariant.js.map +1 -0
- package/dist/esm/models/product.d.ts +94 -0
- package/dist/esm/models/product.d.ts.map +1 -0
- package/dist/esm/models/product.js +111 -0
- package/dist/esm/models/product.js.map +1 -0
- package/dist/esm/models/review.d.ts +35 -0
- package/dist/esm/models/review.d.ts.map +1 -0
- package/dist/esm/models/review.js +47 -0
- package/dist/esm/models/review.js.map +1 -0
- package/dist/esm/models/security.d.ts +29 -0
- package/dist/esm/models/security.d.ts.map +1 -0
- package/dist/esm/models/security.js +40 -0
- package/dist/esm/models/security.js.map +1 -0
- package/dist/esm/models/seo.d.ts +33 -0
- package/dist/esm/models/seo.d.ts.map +1 -0
- package/dist/esm/models/seo.js +37 -0
- package/dist/esm/models/seo.js.map +1 -0
- package/dist/esm/models/sociallink.d.ts +35 -0
- package/dist/esm/models/sociallink.d.ts.map +1 -0
- package/dist/esm/models/sociallink.js +37 -0
- package/dist/esm/models/sociallink.js.map +1 -0
- package/dist/esm/models/user.d.ts +65 -0
- package/dist/esm/models/user.d.ts.map +1 -0
- package/dist/esm/models/user.js +100 -0
- package/dist/esm/models/user.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/dist/esm/sdk/accounts.d.ts +13 -0
- package/dist/esm/sdk/accounts.d.ts.map +1 -0
- package/dist/esm/sdk/accounts.js +18 -0
- package/dist/esm/sdk/accounts.js.map +1 -0
- package/dist/esm/sdk/checkouts.d.ts +12 -0
- package/dist/esm/sdk/checkouts.d.ts.map +1 -0
- package/dist/esm/sdk/checkouts.js +18 -0
- package/dist/esm/sdk/checkouts.js.map +1 -0
- package/dist/esm/sdk/index.d.ts +2 -0
- package/dist/esm/sdk/index.d.ts.map +1 -0
- package/dist/esm/sdk/index.js +5 -0
- package/dist/esm/sdk/index.js.map +1 -0
- package/dist/esm/sdk/products.d.ts +20 -0
- package/dist/esm/sdk/products.d.ts.map +1 -0
- package/dist/esm/sdk/products.js +28 -0
- package/dist/esm/sdk/products.js.map +1 -0
- package/dist/esm/sdk/sdk.d.ts +16 -0
- package/dist/esm/sdk/sdk.d.ts.map +1 -0
- package/dist/esm/sdk/sdk.js +23 -0
- package/dist/esm/sdk/sdk.js.map +1 -0
- package/dist/esm/sdk/user.d.ts +20 -0
- package/dist/esm/sdk/user.d.ts.map +1 -0
- package/dist/esm/sdk/user.js +28 -0
- package/dist/esm/sdk/user.js.map +1 -0
- package/dist/esm/types/async.d.ts +23 -0
- package/dist/esm/types/async.d.ts.map +1 -0
- package/dist/esm/types/async.js +40 -0
- package/dist/esm/types/async.js.map +1 -0
- package/dist/esm/types/blobs.d.ts +4 -0
- package/dist/esm/types/blobs.d.ts.map +1 -0
- package/dist/esm/types/blobs.js +25 -0
- package/dist/esm/types/blobs.js.map +1 -0
- package/dist/esm/types/constdatetime.d.ts +3 -0
- package/dist/esm/types/constdatetime.d.ts.map +1 -0
- package/dist/esm/types/constdatetime.js +10 -0
- package/dist/esm/types/constdatetime.js.map +1 -0
- package/dist/esm/types/enums.d.ts +12 -0
- package/dist/esm/types/enums.d.ts.map +1 -0
- package/dist/esm/types/enums.js +7 -0
- package/dist/esm/types/enums.js.map +1 -0
- package/dist/esm/types/fp.d.ts +31 -0
- package/dist/esm/types/fp.d.ts.map +1 -0
- package/dist/esm/types/fp.js +31 -0
- package/dist/esm/types/fp.js.map +1 -0
- package/dist/esm/types/index.d.ts +8 -0
- package/dist/esm/types/index.d.ts.map +1 -0
- package/dist/esm/types/index.js +8 -0
- package/dist/esm/types/index.js.map +1 -0
- package/dist/esm/types/operations.d.ts +27 -0
- package/dist/esm/types/operations.d.ts.map +1 -0
- package/dist/esm/types/operations.js +77 -0
- package/dist/esm/types/operations.js.map +1 -0
- package/dist/esm/types/rfcdate.d.ts +21 -0
- package/dist/esm/types/rfcdate.d.ts.map +1 -0
- package/dist/esm/types/rfcdate.js +42 -0
- package/dist/esm/types/rfcdate.js.map +1 -0
- package/dist/esm/types/streams.d.ts +2 -0
- package/dist/esm/types/streams.d.ts.map +1 -0
- package/dist/esm/types/streams.js +15 -0
- package/dist/esm/types/streams.js.map +1 -0
- package/docs/sdks/accounts/README.md +84 -0
- package/docs/sdks/checkouts/README.md +96 -0
- package/docs/sdks/crevio/README.md +7 -0
- package/docs/sdks/products/README.md +154 -0
- package/docs/sdks/user/README.md +149 -0
- package/examples/README.md +31 -0
- package/examples/package-lock.json +611 -0
- package/examples/package.json +18 -0
- package/examples/userGet.example.ts +26 -0
- package/jsr.json +27 -0
- package/package.json +122 -0
- package/src/core.ts +13 -0
- package/src/funcs/accountsGet.ts +176 -0
- package/src/funcs/checkoutsCreate.ts +169 -0
- package/src/funcs/productsGet.ts +176 -0
- package/src/funcs/productsList.ts +152 -0
- package/src/funcs/userDelete.ts +151 -0
- package/src/funcs/userGet.ts +151 -0
- package/src/hooks/hooks.ts +132 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/registration.ts +14 -0
- package/src/hooks/types.ts +107 -0
- package/src/index.ts +9 -0
- package/src/lib/base64.ts +37 -0
- package/src/lib/config.ts +71 -0
- package/src/lib/dlv.ts +53 -0
- package/src/lib/encodings.ts +483 -0
- package/src/lib/env.ts +41 -0
- package/src/lib/files.ts +82 -0
- package/src/lib/http.ts +323 -0
- package/src/lib/is-plain-object.ts +43 -0
- package/src/lib/logger.ts +9 -0
- package/src/lib/matchers.ts +352 -0
- package/src/lib/primitives.ts +150 -0
- package/src/lib/retries.ts +218 -0
- package/src/lib/schemas.ts +91 -0
- package/src/lib/sdks.ts +406 -0
- package/src/lib/security.ts +261 -0
- package/src/lib/url.ts +33 -0
- package/src/models/account.ts +116 -0
- package/src/models/accountslim.ts +70 -0
- package/src/models/checkoutrequest.ts +232 -0
- package/src/models/checkoutresponse.ts +81 -0
- package/src/models/errors/creviodefaulterror.ts +40 -0
- package/src/models/errors/crevioerror.ts +35 -0
- package/src/models/errors/error.ts +88 -0
- package/src/models/errors/httpclienterrors.ts +62 -0
- package/src/models/errors/index.ts +9 -0
- package/src/models/errors/responsevalidationerror.ts +50 -0
- package/src/models/errors/sdkvalidationerror.ts +109 -0
- package/src/models/fileattachment.ts +89 -0
- package/src/models/imageattachment.ts +91 -0
- package/src/models/index.ts +18 -0
- package/src/models/linkinbiopage.ts +70 -0
- package/src/models/operations/delete.ts +57 -0
- package/src/models/operations/getaccount.ts +78 -0
- package/src/models/operations/getproduct.ts +78 -0
- package/src/models/operations/index.ts +7 -0
- package/src/models/pricevariant.ts +102 -0
- package/src/models/product.ts +205 -0
- package/src/models/review.ts +80 -0
- package/src/models/security.ts +71 -0
- package/src/models/seo.ts +64 -0
- package/src/models/sociallink.ts +74 -0
- package/src/models/user.ts +172 -0
- package/src/sdk/accounts.ts +28 -0
- package/src/sdk/checkouts.ts +27 -0
- package/src/sdk/index.ts +5 -0
- package/src/sdk/products.ts +44 -0
- package/src/sdk/sdk.ts +31 -0
- package/src/sdk/user.ts +42 -0
- package/src/types/async.ts +68 -0
- package/src/types/blobs.ts +31 -0
- package/src/types/constdatetime.ts +15 -0
- package/src/types/enums.ts +16 -0
- package/src/types/fp.ts +50 -0
- package/src/types/index.ts +11 -0
- package/src/types/operations.ts +105 -0
- package/src/types/rfcdate.ts +54 -0
- package/src/types/streams.ts +21 -0
- package/tsconfig.json +41 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
import { remap as remap$ } from "../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "./errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
export type CheckoutResponse = {
|
|
12
|
+
checkoutId?: string | undefined;
|
|
13
|
+
checkoutUrl?: string | undefined;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
/** @internal */
|
|
17
|
+
export const CheckoutResponse$inboundSchema: z.ZodType<
|
|
18
|
+
CheckoutResponse,
|
|
19
|
+
z.ZodTypeDef,
|
|
20
|
+
unknown
|
|
21
|
+
> = z.object({
|
|
22
|
+
checkout_id: z.string().optional(),
|
|
23
|
+
checkout_url: z.string().optional(),
|
|
24
|
+
}).transform((v) => {
|
|
25
|
+
return remap$(v, {
|
|
26
|
+
"checkout_id": "checkoutId",
|
|
27
|
+
"checkout_url": "checkoutUrl",
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
/** @internal */
|
|
32
|
+
export type CheckoutResponse$Outbound = {
|
|
33
|
+
checkout_id?: string | undefined;
|
|
34
|
+
checkout_url?: string | undefined;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
/** @internal */
|
|
38
|
+
export const CheckoutResponse$outboundSchema: z.ZodType<
|
|
39
|
+
CheckoutResponse$Outbound,
|
|
40
|
+
z.ZodTypeDef,
|
|
41
|
+
CheckoutResponse
|
|
42
|
+
> = z.object({
|
|
43
|
+
checkoutId: z.string().optional(),
|
|
44
|
+
checkoutUrl: z.string().optional(),
|
|
45
|
+
}).transform((v) => {
|
|
46
|
+
return remap$(v, {
|
|
47
|
+
checkoutId: "checkout_id",
|
|
48
|
+
checkoutUrl: "checkout_url",
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
55
|
+
*/
|
|
56
|
+
export namespace CheckoutResponse$ {
|
|
57
|
+
/** @deprecated use `CheckoutResponse$inboundSchema` instead. */
|
|
58
|
+
export const inboundSchema = CheckoutResponse$inboundSchema;
|
|
59
|
+
/** @deprecated use `CheckoutResponse$outboundSchema` instead. */
|
|
60
|
+
export const outboundSchema = CheckoutResponse$outboundSchema;
|
|
61
|
+
/** @deprecated use `CheckoutResponse$Outbound` instead. */
|
|
62
|
+
export type Outbound = CheckoutResponse$Outbound;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export function checkoutResponseToJSON(
|
|
66
|
+
checkoutResponse: CheckoutResponse,
|
|
67
|
+
): string {
|
|
68
|
+
return JSON.stringify(
|
|
69
|
+
CheckoutResponse$outboundSchema.parse(checkoutResponse),
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export function checkoutResponseFromJSON(
|
|
74
|
+
jsonString: string,
|
|
75
|
+
): SafeParseResult<CheckoutResponse, SDKValidationError> {
|
|
76
|
+
return safeParse(
|
|
77
|
+
jsonString,
|
|
78
|
+
(x) => CheckoutResponse$inboundSchema.parse(JSON.parse(x)),
|
|
79
|
+
`Failed to parse 'CheckoutResponse' from JSON`,
|
|
80
|
+
);
|
|
81
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { CrevioError } from "./crevioerror.js";
|
|
6
|
+
|
|
7
|
+
/** The fallback error class if no more specific error class is matched */
|
|
8
|
+
export class CrevioDefaultError extends CrevioError {
|
|
9
|
+
constructor(
|
|
10
|
+
message: string,
|
|
11
|
+
httpMeta: {
|
|
12
|
+
response: Response;
|
|
13
|
+
request: Request;
|
|
14
|
+
body: string;
|
|
15
|
+
},
|
|
16
|
+
) {
|
|
17
|
+
if (message) {
|
|
18
|
+
message += `: `;
|
|
19
|
+
}
|
|
20
|
+
message += `Status ${httpMeta.response.status}`;
|
|
21
|
+
const contentType = httpMeta.response.headers.get("content-type") || `""`;
|
|
22
|
+
if (contentType !== "application/json") {
|
|
23
|
+
message += ` Content-Type ${
|
|
24
|
+
contentType.includes(" ") ? `"${contentType}"` : contentType
|
|
25
|
+
}`;
|
|
26
|
+
}
|
|
27
|
+
const body = httpMeta.body || `""`;
|
|
28
|
+
message += body.length > 100 ? "\n" : ". ";
|
|
29
|
+
let bodyDisplay = body;
|
|
30
|
+
if (body.length > 10000) {
|
|
31
|
+
const truncated = body.substring(0, 10000);
|
|
32
|
+
const remaining = body.length - 10000;
|
|
33
|
+
bodyDisplay = `${truncated}...and ${remaining} more chars`;
|
|
34
|
+
}
|
|
35
|
+
message += `Body: ${bodyDisplay}`;
|
|
36
|
+
message = message.trim();
|
|
37
|
+
super(message, httpMeta);
|
|
38
|
+
this.name = "CrevioDefaultError";
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/** The base class for all HTTP error responses */
|
|
6
|
+
export class CrevioError extends Error {
|
|
7
|
+
/** HTTP status code */
|
|
8
|
+
public readonly statusCode: number;
|
|
9
|
+
/** HTTP body */
|
|
10
|
+
public readonly body: string;
|
|
11
|
+
/** HTTP headers */
|
|
12
|
+
public readonly headers: Headers;
|
|
13
|
+
/** HTTP content type */
|
|
14
|
+
public readonly contentType: string;
|
|
15
|
+
/** Raw response */
|
|
16
|
+
public readonly rawResponse: Response;
|
|
17
|
+
|
|
18
|
+
constructor(
|
|
19
|
+
message: string,
|
|
20
|
+
httpMeta: {
|
|
21
|
+
response: Response;
|
|
22
|
+
request: Request;
|
|
23
|
+
body: string;
|
|
24
|
+
},
|
|
25
|
+
) {
|
|
26
|
+
super(message);
|
|
27
|
+
this.statusCode = httpMeta.response.status;
|
|
28
|
+
this.body = httpMeta.body;
|
|
29
|
+
this.headers = httpMeta.response.headers;
|
|
30
|
+
this.contentType = httpMeta.response.headers.get("content-type") || "";
|
|
31
|
+
this.rawResponse = httpMeta.response;
|
|
32
|
+
|
|
33
|
+
this.name = "CrevioError";
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
import { CrevioError } from "./crevioerror.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Authentication required
|
|
10
|
+
*/
|
|
11
|
+
export type ErrorTData = {
|
|
12
|
+
error?: string | undefined;
|
|
13
|
+
details?: Array<string> | undefined;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Authentication required
|
|
18
|
+
*/
|
|
19
|
+
export class ErrorT extends CrevioError {
|
|
20
|
+
error?: string | undefined;
|
|
21
|
+
details?: Array<string> | undefined;
|
|
22
|
+
|
|
23
|
+
/** The original data that was passed to this error instance. */
|
|
24
|
+
data$: ErrorTData;
|
|
25
|
+
|
|
26
|
+
constructor(
|
|
27
|
+
err: ErrorTData,
|
|
28
|
+
httpMeta: { response: Response; request: Request; body: string },
|
|
29
|
+
) {
|
|
30
|
+
const message = "message" in err && typeof err.message === "string"
|
|
31
|
+
? err.message
|
|
32
|
+
: `API error occurred: ${JSON.stringify(err)}`;
|
|
33
|
+
super(message, httpMeta);
|
|
34
|
+
this.data$ = err;
|
|
35
|
+
if (err.error != null) this.error = err.error;
|
|
36
|
+
if (err.details != null) this.details = err.details;
|
|
37
|
+
|
|
38
|
+
this.name = "ErrorT";
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** @internal */
|
|
43
|
+
export const ErrorT$inboundSchema: z.ZodType<ErrorT, z.ZodTypeDef, unknown> = z
|
|
44
|
+
.object({
|
|
45
|
+
error: z.string().optional(),
|
|
46
|
+
details: z.array(z.string()).optional(),
|
|
47
|
+
request$: z.instanceof(Request),
|
|
48
|
+
response$: z.instanceof(Response),
|
|
49
|
+
body$: z.string(),
|
|
50
|
+
})
|
|
51
|
+
.transform((v) => {
|
|
52
|
+
return new ErrorT(v, {
|
|
53
|
+
request: v.request$,
|
|
54
|
+
response: v.response$,
|
|
55
|
+
body: v.body$,
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
/** @internal */
|
|
60
|
+
export type ErrorT$Outbound = {
|
|
61
|
+
error?: string | undefined;
|
|
62
|
+
details?: Array<string> | undefined;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
/** @internal */
|
|
66
|
+
export const ErrorT$outboundSchema: z.ZodType<
|
|
67
|
+
ErrorT$Outbound,
|
|
68
|
+
z.ZodTypeDef,
|
|
69
|
+
ErrorT
|
|
70
|
+
> = z.instanceof(ErrorT)
|
|
71
|
+
.transform(v => v.data$)
|
|
72
|
+
.pipe(z.object({
|
|
73
|
+
error: z.string().optional(),
|
|
74
|
+
details: z.array(z.string()).optional(),
|
|
75
|
+
}));
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
80
|
+
*/
|
|
81
|
+
export namespace ErrorT$ {
|
|
82
|
+
/** @deprecated use `ErrorT$inboundSchema` instead. */
|
|
83
|
+
export const inboundSchema = ErrorT$inboundSchema;
|
|
84
|
+
/** @deprecated use `ErrorT$outboundSchema` instead. */
|
|
85
|
+
export const outboundSchema = ErrorT$outboundSchema;
|
|
86
|
+
/** @deprecated use `ErrorT$Outbound` instead. */
|
|
87
|
+
export type Outbound = ErrorT$Outbound;
|
|
88
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Base class for all HTTP errors.
|
|
7
|
+
*/
|
|
8
|
+
export class HTTPClientError extends Error {
|
|
9
|
+
/** The underlying cause of the error. */
|
|
10
|
+
override readonly cause: unknown;
|
|
11
|
+
override name = "HTTPClientError";
|
|
12
|
+
constructor(message: string, opts?: { cause?: unknown }) {
|
|
13
|
+
let msg = message;
|
|
14
|
+
if (opts?.cause) {
|
|
15
|
+
msg += `: ${opts.cause}`;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
super(msg, opts);
|
|
19
|
+
// In older runtimes, the cause field would not have been assigned through
|
|
20
|
+
// the super() call.
|
|
21
|
+
if (typeof this.cause === "undefined") {
|
|
22
|
+
this.cause = opts?.cause;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* An error to capture unrecognised or unexpected errors when making HTTP calls.
|
|
29
|
+
*/
|
|
30
|
+
export class UnexpectedClientError extends HTTPClientError {
|
|
31
|
+
override name = "UnexpectedClientError";
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* An error that is raised when any inputs used to create a request are invalid.
|
|
36
|
+
*/
|
|
37
|
+
export class InvalidRequestError extends HTTPClientError {
|
|
38
|
+
override name = "InvalidRequestError";
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* An error that is raised when a HTTP request was aborted by the client error.
|
|
43
|
+
*/
|
|
44
|
+
export class RequestAbortedError extends HTTPClientError {
|
|
45
|
+
override readonly name = "RequestAbortedError";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* An error that is raised when a HTTP request timed out due to an AbortSignal
|
|
50
|
+
* signal timeout.
|
|
51
|
+
*/
|
|
52
|
+
export class RequestTimeoutError extends HTTPClientError {
|
|
53
|
+
override readonly name = "RequestTimeoutError";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* An error that is raised when a HTTP client is unable to make a request to
|
|
58
|
+
* a server.
|
|
59
|
+
*/
|
|
60
|
+
export class ConnectionError extends HTTPClientError {
|
|
61
|
+
override readonly name = "ConnectionError";
|
|
62
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export * from "./creviodefaulterror.js";
|
|
6
|
+
export * from "./error.js";
|
|
7
|
+
export * from "./httpclienterrors.js";
|
|
8
|
+
export * from "./responsevalidationerror.js";
|
|
9
|
+
export * from "./sdkvalidationerror.js";
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
import { CrevioError } from "./crevioerror.js";
|
|
7
|
+
import { formatZodError } from "./sdkvalidationerror.js";
|
|
8
|
+
|
|
9
|
+
export class ResponseValidationError extends CrevioError {
|
|
10
|
+
/**
|
|
11
|
+
* The raw value that failed validation.
|
|
12
|
+
*/
|
|
13
|
+
public readonly rawValue: unknown;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* The raw message that failed validation.
|
|
17
|
+
*/
|
|
18
|
+
public readonly rawMessage: unknown;
|
|
19
|
+
|
|
20
|
+
constructor(
|
|
21
|
+
message: string,
|
|
22
|
+
extra: {
|
|
23
|
+
response: Response;
|
|
24
|
+
request: Request;
|
|
25
|
+
body: string;
|
|
26
|
+
cause: unknown;
|
|
27
|
+
rawValue: unknown;
|
|
28
|
+
rawMessage: unknown;
|
|
29
|
+
},
|
|
30
|
+
) {
|
|
31
|
+
super(message, extra);
|
|
32
|
+
this.name = "ResponseValidationError";
|
|
33
|
+
this.cause = extra.cause;
|
|
34
|
+
this.rawValue = extra.rawValue;
|
|
35
|
+
this.rawMessage = extra.rawMessage;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Return a pretty-formatted error message if the underlying validation error
|
|
40
|
+
* is a ZodError or some other recognized error type, otherwise return the
|
|
41
|
+
* default error message.
|
|
42
|
+
*/
|
|
43
|
+
public pretty(): string {
|
|
44
|
+
if (this.cause instanceof z.ZodError) {
|
|
45
|
+
return `${this.rawMessage}\n${formatZodError(this.cause)}`;
|
|
46
|
+
} else {
|
|
47
|
+
return this.toString();
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
|
|
7
|
+
export class SDKValidationError extends Error {
|
|
8
|
+
/**
|
|
9
|
+
* The raw value that failed validation.
|
|
10
|
+
*/
|
|
11
|
+
public readonly rawValue: unknown;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* The raw message that failed validation.
|
|
15
|
+
*/
|
|
16
|
+
public readonly rawMessage: unknown;
|
|
17
|
+
|
|
18
|
+
// Allows for backwards compatibility for `instanceof` checks of `ResponseValidationError`
|
|
19
|
+
static override [Symbol.hasInstance](
|
|
20
|
+
instance: unknown,
|
|
21
|
+
): instance is SDKValidationError {
|
|
22
|
+
if (!(instance instanceof Error)) return false;
|
|
23
|
+
if (!("rawValue" in instance)) return false;
|
|
24
|
+
if (!("rawMessage" in instance)) return false;
|
|
25
|
+
if (!("pretty" in instance)) return false;
|
|
26
|
+
if (typeof instance.pretty !== "function") return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
constructor(message: string, cause: unknown, rawValue: unknown) {
|
|
31
|
+
super(`${message}: ${cause}`);
|
|
32
|
+
this.name = "SDKValidationError";
|
|
33
|
+
this.cause = cause;
|
|
34
|
+
this.rawValue = rawValue;
|
|
35
|
+
this.rawMessage = message;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Return a pretty-formatted error message if the underlying validation error
|
|
40
|
+
* is a ZodError or some other recognized error type, otherwise return the
|
|
41
|
+
* default error message.
|
|
42
|
+
*/
|
|
43
|
+
public pretty(): string {
|
|
44
|
+
if (this.cause instanceof z.ZodError) {
|
|
45
|
+
return `${this.rawMessage}\n${formatZodError(this.cause)}`;
|
|
46
|
+
} else {
|
|
47
|
+
return this.toString();
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function formatZodError(err: z.ZodError, level = 0): string {
|
|
53
|
+
let pre = " ".repeat(level);
|
|
54
|
+
pre = level > 0 ? `│${pre}` : pre;
|
|
55
|
+
pre += " ".repeat(level);
|
|
56
|
+
|
|
57
|
+
let message = "";
|
|
58
|
+
const append = (str: string) => (message += `\n${pre}${str}`);
|
|
59
|
+
|
|
60
|
+
const len = err.issues.length;
|
|
61
|
+
const headline = len === 1 ? `${len} issue found` : `${len} issues found`;
|
|
62
|
+
|
|
63
|
+
if (len) {
|
|
64
|
+
append(`┌ ${headline}:`);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
for (const issue of err.issues) {
|
|
68
|
+
let path = issue.path.join(".");
|
|
69
|
+
path = path ? `<root>.${path}` : "<root>";
|
|
70
|
+
append(`│ • [${path}]: ${issue.message} (${issue.code})`);
|
|
71
|
+
switch (issue.code) {
|
|
72
|
+
case "invalid_literal":
|
|
73
|
+
case "invalid_type": {
|
|
74
|
+
append(`│ Want: ${issue.expected}`);
|
|
75
|
+
append(`│ Got: ${issue.received}`);
|
|
76
|
+
break;
|
|
77
|
+
}
|
|
78
|
+
case "unrecognized_keys": {
|
|
79
|
+
append(`│ Keys: ${issue.keys.join(", ")}`);
|
|
80
|
+
break;
|
|
81
|
+
}
|
|
82
|
+
case "invalid_enum_value": {
|
|
83
|
+
append(`│ Allowed: ${issue.options.join(", ")}`);
|
|
84
|
+
append(`│ Got: ${issue.received}`);
|
|
85
|
+
break;
|
|
86
|
+
}
|
|
87
|
+
case "invalid_union_discriminator": {
|
|
88
|
+
append(`│ Allowed: ${issue.options.join(", ")}`);
|
|
89
|
+
break;
|
|
90
|
+
}
|
|
91
|
+
case "invalid_union": {
|
|
92
|
+
const len = issue.unionErrors.length;
|
|
93
|
+
append(
|
|
94
|
+
`│ ✖︎ Attemped to deserialize into one of ${len} union members:`,
|
|
95
|
+
);
|
|
96
|
+
issue.unionErrors.forEach((err, i) => {
|
|
97
|
+
append(`│ ✖︎ Member ${i + 1} of ${len}`);
|
|
98
|
+
append(`${formatZodError(err, level + 1)}`);
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (err.issues.length) {
|
|
105
|
+
append(`└─*`);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return message.slice(1);
|
|
109
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
import { remap as remap$ } from "../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "./errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
export type FileAttachment = {
|
|
12
|
+
id?: number | undefined;
|
|
13
|
+
filename?: string | undefined;
|
|
14
|
+
contentType?: string | undefined;
|
|
15
|
+
byteSize?: number | undefined;
|
|
16
|
+
url?: string | undefined;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/** @internal */
|
|
20
|
+
export const FileAttachment$inboundSchema: z.ZodType<
|
|
21
|
+
FileAttachment,
|
|
22
|
+
z.ZodTypeDef,
|
|
23
|
+
unknown
|
|
24
|
+
> = z.object({
|
|
25
|
+
id: z.number().int().optional(),
|
|
26
|
+
filename: z.string().optional(),
|
|
27
|
+
content_type: z.string().optional(),
|
|
28
|
+
byte_size: z.number().int().optional(),
|
|
29
|
+
url: z.string().optional(),
|
|
30
|
+
}).transform((v) => {
|
|
31
|
+
return remap$(v, {
|
|
32
|
+
"content_type": "contentType",
|
|
33
|
+
"byte_size": "byteSize",
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
/** @internal */
|
|
38
|
+
export type FileAttachment$Outbound = {
|
|
39
|
+
id?: number | undefined;
|
|
40
|
+
filename?: string | undefined;
|
|
41
|
+
content_type?: string | undefined;
|
|
42
|
+
byte_size?: number | undefined;
|
|
43
|
+
url?: string | undefined;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
/** @internal */
|
|
47
|
+
export const FileAttachment$outboundSchema: z.ZodType<
|
|
48
|
+
FileAttachment$Outbound,
|
|
49
|
+
z.ZodTypeDef,
|
|
50
|
+
FileAttachment
|
|
51
|
+
> = z.object({
|
|
52
|
+
id: z.number().int().optional(),
|
|
53
|
+
filename: z.string().optional(),
|
|
54
|
+
contentType: z.string().optional(),
|
|
55
|
+
byteSize: z.number().int().optional(),
|
|
56
|
+
url: z.string().optional(),
|
|
57
|
+
}).transform((v) => {
|
|
58
|
+
return remap$(v, {
|
|
59
|
+
contentType: "content_type",
|
|
60
|
+
byteSize: "byte_size",
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
67
|
+
*/
|
|
68
|
+
export namespace FileAttachment$ {
|
|
69
|
+
/** @deprecated use `FileAttachment$inboundSchema` instead. */
|
|
70
|
+
export const inboundSchema = FileAttachment$inboundSchema;
|
|
71
|
+
/** @deprecated use `FileAttachment$outboundSchema` instead. */
|
|
72
|
+
export const outboundSchema = FileAttachment$outboundSchema;
|
|
73
|
+
/** @deprecated use `FileAttachment$Outbound` instead. */
|
|
74
|
+
export type Outbound = FileAttachment$Outbound;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export function fileAttachmentToJSON(fileAttachment: FileAttachment): string {
|
|
78
|
+
return JSON.stringify(FileAttachment$outboundSchema.parse(fileAttachment));
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export function fileAttachmentFromJSON(
|
|
82
|
+
jsonString: string,
|
|
83
|
+
): SafeParseResult<FileAttachment, SDKValidationError> {
|
|
84
|
+
return safeParse(
|
|
85
|
+
jsonString,
|
|
86
|
+
(x) => FileAttachment$inboundSchema.parse(JSON.parse(x)),
|
|
87
|
+
`Failed to parse 'FileAttachment' from JSON`,
|
|
88
|
+
);
|
|
89
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
import { remap as remap$ } from "../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "./errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
export type ImageAttachment = {
|
|
12
|
+
id?: number | undefined;
|
|
13
|
+
filename?: string | undefined;
|
|
14
|
+
contentType?: string | undefined;
|
|
15
|
+
byteSize?: number | undefined;
|
|
16
|
+
url?: string | undefined;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/** @internal */
|
|
20
|
+
export const ImageAttachment$inboundSchema: z.ZodType<
|
|
21
|
+
ImageAttachment,
|
|
22
|
+
z.ZodTypeDef,
|
|
23
|
+
unknown
|
|
24
|
+
> = z.object({
|
|
25
|
+
id: z.number().int().optional(),
|
|
26
|
+
filename: z.string().optional(),
|
|
27
|
+
content_type: z.string().optional(),
|
|
28
|
+
byte_size: z.number().int().optional(),
|
|
29
|
+
url: z.string().optional(),
|
|
30
|
+
}).transform((v) => {
|
|
31
|
+
return remap$(v, {
|
|
32
|
+
"content_type": "contentType",
|
|
33
|
+
"byte_size": "byteSize",
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
/** @internal */
|
|
38
|
+
export type ImageAttachment$Outbound = {
|
|
39
|
+
id?: number | undefined;
|
|
40
|
+
filename?: string | undefined;
|
|
41
|
+
content_type?: string | undefined;
|
|
42
|
+
byte_size?: number | undefined;
|
|
43
|
+
url?: string | undefined;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
/** @internal */
|
|
47
|
+
export const ImageAttachment$outboundSchema: z.ZodType<
|
|
48
|
+
ImageAttachment$Outbound,
|
|
49
|
+
z.ZodTypeDef,
|
|
50
|
+
ImageAttachment
|
|
51
|
+
> = z.object({
|
|
52
|
+
id: z.number().int().optional(),
|
|
53
|
+
filename: z.string().optional(),
|
|
54
|
+
contentType: z.string().optional(),
|
|
55
|
+
byteSize: z.number().int().optional(),
|
|
56
|
+
url: z.string().optional(),
|
|
57
|
+
}).transform((v) => {
|
|
58
|
+
return remap$(v, {
|
|
59
|
+
contentType: "content_type",
|
|
60
|
+
byteSize: "byte_size",
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
67
|
+
*/
|
|
68
|
+
export namespace ImageAttachment$ {
|
|
69
|
+
/** @deprecated use `ImageAttachment$inboundSchema` instead. */
|
|
70
|
+
export const inboundSchema = ImageAttachment$inboundSchema;
|
|
71
|
+
/** @deprecated use `ImageAttachment$outboundSchema` instead. */
|
|
72
|
+
export const outboundSchema = ImageAttachment$outboundSchema;
|
|
73
|
+
/** @deprecated use `ImageAttachment$Outbound` instead. */
|
|
74
|
+
export type Outbound = ImageAttachment$Outbound;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export function imageAttachmentToJSON(
|
|
78
|
+
imageAttachment: ImageAttachment,
|
|
79
|
+
): string {
|
|
80
|
+
return JSON.stringify(ImageAttachment$outboundSchema.parse(imageAttachment));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function imageAttachmentFromJSON(
|
|
84
|
+
jsonString: string,
|
|
85
|
+
): SafeParseResult<ImageAttachment, SDKValidationError> {
|
|
86
|
+
return safeParse(
|
|
87
|
+
jsonString,
|
|
88
|
+
(x) => ImageAttachment$inboundSchema.parse(JSON.parse(x)),
|
|
89
|
+
`Failed to parse 'ImageAttachment' from JSON`,
|
|
90
|
+
);
|
|
91
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export * from "./account.js";
|
|
6
|
+
export * from "./accountslim.js";
|
|
7
|
+
export * from "./checkoutrequest.js";
|
|
8
|
+
export * from "./checkoutresponse.js";
|
|
9
|
+
export * from "./fileattachment.js";
|
|
10
|
+
export * from "./imageattachment.js";
|
|
11
|
+
export * from "./linkinbiopage.js";
|
|
12
|
+
export * from "./pricevariant.js";
|
|
13
|
+
export * from "./product.js";
|
|
14
|
+
export * from "./review.js";
|
|
15
|
+
export * from "./security.js";
|
|
16
|
+
export * from "./seo.js";
|
|
17
|
+
export * from "./sociallink.js";
|
|
18
|
+
export * from "./user.js";
|