@djust-b2b/djust-front-sdk 3.0.0-beta.8 → 3.0.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/README.md +34 -30
- package/dist/.tsbuildinfo +1 -1
- package/dist/.tsbuildinfo-esm +1 -1
- package/dist/client/create-client.d.ts +18 -0
- package/dist/client/create-client.d.ts.map +1 -1
- package/dist/client/transport.d.ts +5 -0
- package/dist/client/transport.d.ts.map +1 -1
- package/dist/errors/classes/not-found.error.d.ts +1 -1
- package/dist/errors/classes/not-found.error.d.ts.map +1 -1
- package/dist/errors/factory.d.ts.map +1 -1
- package/dist/errors/helpers/djust-api-error.d.ts +29 -0
- package/dist/errors/helpers/djust-api-error.d.ts.map +1 -0
- package/dist/errors/types.d.ts +4 -0
- package/dist/errors/types.d.ts.map +1 -1
- package/dist/index.d.ts +43 -41
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +274 -64
- package/dist/interfaces/index.d.ts +15 -3
- package/dist/interfaces/index.d.ts.map +1 -1
- package/dist/services/base.service.d.ts +2 -0
- package/dist/services/base.service.d.ts.map +1 -1
- package/dist/services/commercial-order/commercial-order.service.d.ts +8 -5
- package/dist/services/commercial-order/commercial-order.service.d.ts.map +1 -1
- package/dist/services/commercial-order/definitions.d.ts +13 -0
- package/dist/services/commercial-order/definitions.d.ts.map +1 -1
- package/dist/services/commercial-order/index.d.ts +30 -19
- package/dist/services/commercial-order/index.d.ts.map +1 -1
- package/dist/services/commercial-order/module.d.ts +1 -1
- package/dist/services/commercial-order/module.d.ts.map +1 -1
- package/dist/services/commercial-order/types.d.ts +1 -0
- package/dist/services/commercial-order/types.d.ts.map +1 -1
- package/dist/services/logistic-order/definitions.d.ts +23 -1
- package/dist/services/logistic-order/definitions.d.ts.map +1 -1
- package/dist/services/logistic-order/endpoints.d.ts +1 -0
- package/dist/services/logistic-order/endpoints.d.ts.map +1 -1
- package/dist/services/logistic-order/index.d.ts +77 -1
- package/dist/services/logistic-order/index.d.ts.map +1 -1
- package/dist/services/logistic-order/logistic-order.service.d.ts +6 -1
- package/dist/services/logistic-order/logistic-order.service.d.ts.map +1 -1
- package/dist/services/logistic-order/module.d.ts +1 -1
- package/dist/services/logistic-order/module.d.ts.map +1 -1
- package/dist/services/logistic-order/types.d.ts +9 -0
- package/dist/services/logistic-order/types.d.ts.map +1 -1
- package/dist/services/operation/definitions.d.ts +1 -18
- package/dist/services/operation/definitions.d.ts.map +1 -1
- package/dist/services/payment/definitions.d.ts +0 -10
- package/dist/services/payment/definitions.d.ts.map +1 -1
- package/dist/services/product/definitions.d.ts +1 -0
- package/dist/services/product/definitions.d.ts.map +1 -1
- package/dist/services/product/index.d.ts +6 -5
- package/dist/services/product/index.d.ts.map +1 -1
- package/dist/services/product-variant/definitions.d.ts +3 -142
- package/dist/services/product-variant/definitions.d.ts.map +1 -1
- package/dist/services/quote/definitions.d.ts +3 -1
- package/dist/services/quote/definitions.d.ts.map +1 -1
- package/dist/services/quote/index.d.ts +2 -1
- package/dist/services/quote/index.d.ts.map +1 -1
- package/dist/services/quote/quote.service.d.ts +1 -0
- package/dist/services/quote/quote.service.d.ts.map +1 -1
- package/dist/services/quote/types.d.ts +2 -0
- package/dist/services/quote/types.d.ts.map +1 -1
- package/dist/settings/fetch-instance.d.ts.map +1 -1
- package/dist/settings/sdk-version.d.ts +3 -0
- package/dist/settings/sdk-version.d.ts.map +1 -0
- package/lib/.tsbuildinfo +1 -0
- package/lib/client/create-client.d.ts +251 -0
- package/lib/client/create-client.d.ts.map +1 -0
- package/lib/client/create-client.js +233 -0
- package/lib/client/create-client.js.map +1 -0
- package/lib/client/index.d.ts +14 -0
- package/lib/client/index.d.ts.map +1 -0
- package/lib/client/index.js +91 -0
- package/lib/client/index.js.map +1 -0
- package/lib/client/performance.d.ts +203 -0
- package/lib/client/performance.d.ts.map +1 -0
- package/lib/client/performance.js +409 -0
- package/lib/client/performance.js.map +1 -0
- package/lib/client/transport.d.ts +372 -0
- package/lib/client/transport.d.ts.map +1 -0
- package/lib/client/transport.js +735 -0
- package/lib/client/transport.js.map +1 -0
- package/lib/errors/base.d.ts +101 -0
- package/lib/errors/base.d.ts.map +1 -0
- package/lib/errors/base.js +145 -0
- package/lib/errors/base.js.map +1 -0
- package/lib/errors/classes/auth.error.d.ts +64 -0
- package/lib/errors/classes/auth.error.d.ts.map +1 -0
- package/lib/errors/classes/auth.error.js +116 -0
- package/lib/errors/classes/auth.error.js.map +1 -0
- package/lib/errors/classes/forbidden.error.d.ts +52 -0
- package/lib/errors/classes/forbidden.error.d.ts.map +1 -0
- package/lib/errors/classes/forbidden.error.js +90 -0
- package/lib/errors/classes/forbidden.error.js.map +1 -0
- package/lib/errors/classes/index.d.ts +17 -0
- package/lib/errors/classes/index.d.ts.map +1 -0
- package/lib/errors/classes/index.js +29 -0
- package/lib/errors/classes/index.js.map +1 -0
- package/lib/errors/classes/network.error.d.ts +63 -0
- package/lib/errors/classes/network.error.d.ts.map +1 -0
- package/lib/errors/classes/network.error.js +122 -0
- package/lib/errors/classes/network.error.js.map +1 -0
- package/lib/errors/classes/not-found.error.d.ts +58 -0
- package/lib/errors/classes/not-found.error.d.ts.map +1 -0
- package/lib/errors/classes/not-found.error.js +120 -0
- package/lib/errors/classes/not-found.error.js.map +1 -0
- package/lib/errors/classes/rate-limit.error.d.ts +49 -0
- package/lib/errors/classes/rate-limit.error.d.ts.map +1 -0
- package/lib/errors/classes/rate-limit.error.js +107 -0
- package/lib/errors/classes/rate-limit.error.js.map +1 -0
- package/lib/errors/classes/server.error.d.ts +63 -0
- package/lib/errors/classes/server.error.d.ts.map +1 -0
- package/lib/errors/classes/server.error.js +156 -0
- package/lib/errors/classes/server.error.js.map +1 -0
- package/lib/errors/classes/timeout.error.d.ts +64 -0
- package/lib/errors/classes/timeout.error.d.ts.map +1 -0
- package/lib/errors/classes/timeout.error.js +90 -0
- package/lib/errors/classes/timeout.error.js.map +1 -0
- package/lib/errors/classes/unexpected.error.d.ts +70 -0
- package/lib/errors/classes/unexpected.error.d.ts.map +1 -0
- package/lib/errors/classes/unexpected.error.js +105 -0
- package/lib/errors/classes/unexpected.error.js.map +1 -0
- package/lib/errors/classes/validation.error.d.ts +68 -0
- package/lib/errors/classes/validation.error.d.ts.map +1 -0
- package/lib/errors/classes/validation.error.js +103 -0
- package/lib/errors/classes/validation.error.js.map +1 -0
- package/lib/errors/codes.d.ts +111 -0
- package/lib/errors/codes.d.ts.map +1 -0
- package/lib/errors/codes.js +143 -0
- package/lib/errors/codes.js.map +1 -0
- package/lib/errors/compat.d.ts +99 -0
- package/lib/errors/compat.d.ts.map +1 -0
- package/lib/errors/compat.js +280 -0
- package/lib/errors/compat.js.map +1 -0
- package/lib/errors/factory.d.ts +33 -0
- package/lib/errors/factory.d.ts.map +1 -0
- package/lib/errors/factory.js +298 -0
- package/lib/errors/factory.js.map +1 -0
- package/lib/errors/guards.d.ts +142 -0
- package/lib/errors/guards.d.ts.map +1 -0
- package/lib/errors/guards.js +281 -0
- package/lib/errors/guards.js.map +1 -0
- package/lib/errors/helpers/djust-api-error.d.ts +29 -0
- package/lib/errors/helpers/djust-api-error.d.ts.map +1 -0
- package/lib/errors/helpers/djust-api-error.js +49 -0
- package/lib/errors/helpers/djust-api-error.js.map +1 -0
- package/lib/errors/index.d.ts +25 -0
- package/lib/errors/index.d.ts.map +1 -0
- package/lib/errors/index.js +89 -0
- package/lib/errors/index.js.map +1 -0
- package/lib/errors/types.d.ts +104 -0
- package/lib/errors/types.d.ts.map +1 -0
- package/lib/errors/types.js +10 -0
- package/lib/errors/types.js.map +1 -0
- package/lib/helpers/index.d.ts +42 -0
- package/lib/helpers/index.d.ts.map +1 -0
- package/lib/helpers/index.js +102 -0
- package/lib/helpers/index.js.map +1 -0
- package/lib/helpers/parameters-validation.d.ts +3 -0
- package/lib/helpers/parameters-validation.d.ts.map +1 -0
- package/lib/helpers/parameters-validation.js +22 -0
- package/lib/helpers/parameters-validation.js.map +1 -0
- package/lib/helpers/utils.d.ts +5 -0
- package/lib/helpers/utils.d.ts.map +1 -0
- package/lib/helpers/utils.js +30 -0
- package/lib/helpers/utils.js.map +1 -0
- package/lib/index.d.ts +267 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +182 -0
- package/lib/index.js.map +1 -0
- package/lib/interfaces/index.d.ts +43 -0
- package/lib/interfaces/index.d.ts.map +1 -0
- package/lib/interfaces/index.js +36 -0
- package/lib/interfaces/index.js.map +1 -0
- package/lib/interfaces/models/address.d.ts +61 -0
- package/lib/interfaces/models/address.d.ts.map +1 -0
- package/lib/interfaces/models/address.js +3 -0
- package/lib/interfaces/models/address.js.map +1 -0
- package/lib/interfaces/models/attribute.d.ts +31 -0
- package/lib/interfaces/models/attribute.d.ts.map +1 -0
- package/lib/interfaces/models/attribute.js +3 -0
- package/lib/interfaces/models/attribute.js.map +1 -0
- package/lib/interfaces/models/auth.d.ts +37 -0
- package/lib/interfaces/models/auth.d.ts.map +1 -0
- package/lib/interfaces/models/auth.js +3 -0
- package/lib/interfaces/models/auth.js.map +1 -0
- package/lib/interfaces/models/cart.d.ts +64 -0
- package/lib/interfaces/models/cart.d.ts.map +1 -0
- package/lib/interfaces/models/cart.js +3 -0
- package/lib/interfaces/models/cart.js.map +1 -0
- package/lib/interfaces/models/common.d.ts +68 -0
- package/lib/interfaces/models/common.d.ts.map +1 -0
- package/lib/interfaces/models/common.js +3 -0
- package/lib/interfaces/models/common.js.map +1 -0
- package/lib/interfaces/models/custom-field.d.ts +57 -0
- package/lib/interfaces/models/custom-field.d.ts.map +1 -0
- package/lib/interfaces/models/custom-field.js +3 -0
- package/lib/interfaces/models/custom-field.js.map +1 -0
- package/lib/interfaces/models/customer-account.d.ts +52 -0
- package/lib/interfaces/models/customer-account.d.ts.map +1 -0
- package/lib/interfaces/models/customer-account.js +3 -0
- package/lib/interfaces/models/customer-account.js.map +1 -0
- package/lib/interfaces/models/customer-organisation.d.ts +14 -0
- package/lib/interfaces/models/customer-organisation.d.ts.map +1 -0
- package/lib/interfaces/models/customer-organisation.js +3 -0
- package/lib/interfaces/models/customer-organisation.js.map +1 -0
- package/lib/interfaces/models/customer-user.d.ts +114 -0
- package/lib/interfaces/models/customer-user.d.ts.map +1 -0
- package/lib/interfaces/models/customer-user.js +3 -0
- package/lib/interfaces/models/customer-user.js.map +1 -0
- package/lib/interfaces/models/incident.d.ts +37 -0
- package/lib/interfaces/models/incident.d.ts.map +1 -0
- package/lib/interfaces/models/incident.js +3 -0
- package/lib/interfaces/models/incident.js.map +1 -0
- package/lib/interfaces/models/navigation-category.d.ts +22 -0
- package/lib/interfaces/models/navigation-category.d.ts.map +1 -0
- package/lib/interfaces/models/navigation-category.js +3 -0
- package/lib/interfaces/models/navigation-category.js.map +1 -0
- package/lib/interfaces/models/offer.d.ts +151 -0
- package/lib/interfaces/models/offer.d.ts.map +1 -0
- package/lib/interfaces/models/offer.js +3 -0
- package/lib/interfaces/models/offer.js.map +1 -0
- package/lib/interfaces/models/order.d.ts +701 -0
- package/lib/interfaces/models/order.d.ts.map +1 -0
- package/lib/interfaces/models/order.js +3 -0
- package/lib/interfaces/models/order.js.map +1 -0
- package/lib/interfaces/models/payment.d.ts +20 -0
- package/lib/interfaces/models/payment.d.ts.map +1 -0
- package/lib/interfaces/models/payment.js +3 -0
- package/lib/interfaces/models/payment.js.map +1 -0
- package/lib/interfaces/models/price.d.ts +6 -0
- package/lib/interfaces/models/price.d.ts.map +1 -0
- package/lib/interfaces/models/price.js +3 -0
- package/lib/interfaces/models/price.js.map +1 -0
- package/lib/interfaces/models/product.d.ts +243 -0
- package/lib/interfaces/models/product.d.ts.map +1 -0
- package/lib/interfaces/models/product.js +3 -0
- package/lib/interfaces/models/product.js.map +1 -0
- package/lib/interfaces/models/quote.d.ts +77 -0
- package/lib/interfaces/models/quote.d.ts.map +1 -0
- package/lib/interfaces/models/quote.js +3 -0
- package/lib/interfaces/models/quote.js.map +1 -0
- package/lib/interfaces/models/searchProduct.d.ts +128 -0
- package/lib/interfaces/models/searchProduct.d.ts.map +1 -0
- package/lib/interfaces/models/searchProduct.js +3 -0
- package/lib/interfaces/models/searchProduct.js.map +1 -0
- package/lib/interfaces/models/supplier.d.ts +72 -0
- package/lib/interfaces/models/supplier.d.ts.map +1 -0
- package/lib/interfaces/models/supplier.js +3 -0
- package/lib/interfaces/models/supplier.js.map +1 -0
- package/lib/services/attributes/attributes.service.d.ts +18 -0
- package/lib/services/attributes/attributes.service.d.ts.map +1 -0
- package/lib/services/attributes/attributes.service.js +37 -0
- package/lib/services/attributes/attributes.service.js.map +1 -0
- package/lib/services/attributes/definitions.d.ts +28 -0
- package/lib/services/attributes/definitions.d.ts.map +1 -0
- package/lib/services/attributes/definitions.js +3 -0
- package/lib/services/attributes/definitions.js.map +1 -0
- package/lib/services/attributes/endpoints.d.ts +12 -0
- package/lib/services/attributes/endpoints.d.ts.map +1 -0
- package/lib/services/attributes/endpoints.js +14 -0
- package/lib/services/attributes/endpoints.js.map +1 -0
- package/lib/services/attributes/index.d.ts +33 -0
- package/lib/services/attributes/index.d.ts.map +1 -0
- package/lib/services/attributes/index.js +50 -0
- package/lib/services/attributes/index.js.map +1 -0
- package/lib/services/attributes/module.d.ts +11 -0
- package/lib/services/attributes/module.d.ts.map +1 -0
- package/lib/services/attributes/module.js +15 -0
- package/lib/services/attributes/module.js.map +1 -0
- package/lib/services/attributes/types.d.ts +35 -0
- package/lib/services/attributes/types.d.ts.map +1 -0
- package/lib/services/attributes/types.js +10 -0
- package/lib/services/attributes/types.js.map +1 -0
- package/lib/services/auth/__mocks__/auth.mocks.d.ts +249 -0
- package/lib/services/auth/__mocks__/auth.mocks.d.ts.map +1 -0
- package/lib/services/auth/__mocks__/auth.mocks.js +221 -0
- package/lib/services/auth/__mocks__/auth.mocks.js.map +1 -0
- package/lib/services/auth/auth.service.d.ts +286 -0
- package/lib/services/auth/auth.service.d.ts.map +1 -0
- package/lib/services/auth/auth.service.js +423 -0
- package/lib/services/auth/auth.service.js.map +1 -0
- package/lib/services/auth/definitions.d.ts +69 -0
- package/lib/services/auth/definitions.d.ts.map +1 -0
- package/lib/services/auth/definitions.js +3 -0
- package/lib/services/auth/definitions.js.map +1 -0
- package/lib/services/auth/definitions.requests.d.ts +25 -0
- package/lib/services/auth/definitions.requests.d.ts.map +1 -0
- package/lib/services/auth/definitions.requests.js +6 -0
- package/lib/services/auth/definitions.requests.js.map +1 -0
- package/lib/services/auth/endpoints.d.ts +30 -0
- package/lib/services/auth/endpoints.d.ts.map +1 -0
- package/lib/services/auth/endpoints.js +32 -0
- package/lib/services/auth/endpoints.js.map +1 -0
- package/lib/services/auth/index.d.ts +232 -0
- package/lib/services/auth/index.d.ts.map +1 -0
- package/lib/services/auth/index.js +310 -0
- package/lib/services/auth/index.js.map +1 -0
- package/lib/services/auth/module.d.ts +11 -0
- package/lib/services/auth/module.d.ts.map +1 -0
- package/lib/services/auth/module.js +17 -0
- package/lib/services/auth/module.js.map +1 -0
- package/lib/services/auth/types.d.ts +124 -0
- package/lib/services/auth/types.d.ts.map +1 -0
- package/lib/services/auth/types.js +10 -0
- package/lib/services/auth/types.js.map +1 -0
- package/lib/services/base.service.d.ts +83 -0
- package/lib/services/base.service.d.ts.map +1 -0
- package/lib/services/base.service.js +121 -0
- package/lib/services/base.service.js.map +1 -0
- package/lib/services/cart/cart.service.d.ts +443 -0
- package/lib/services/cart/cart.service.d.ts.map +1 -0
- package/lib/services/cart/cart.service.js +551 -0
- package/lib/services/cart/cart.service.js.map +1 -0
- package/lib/services/cart/definitions.d.ts +84 -0
- package/lib/services/cart/definitions.d.ts.map +1 -0
- package/lib/services/cart/definitions.js +3 -0
- package/lib/services/cart/definitions.js.map +1 -0
- package/lib/services/cart/endpoints.d.ts +24 -0
- package/lib/services/cart/endpoints.d.ts.map +1 -0
- package/lib/services/cart/endpoints.js +26 -0
- package/lib/services/cart/endpoints.js.map +1 -0
- package/lib/services/cart/index.d.ts +330 -0
- package/lib/services/cart/index.d.ts.map +1 -0
- package/lib/services/cart/index.js +464 -0
- package/lib/services/cart/index.js.map +1 -0
- package/lib/services/cart/module.d.ts +11 -0
- package/lib/services/cart/module.d.ts.map +1 -0
- package/lib/services/cart/module.js +17 -0
- package/lib/services/cart/module.js.map +1 -0
- package/lib/services/cart/types.d.ts +236 -0
- package/lib/services/cart/types.d.ts.map +1 -0
- package/lib/services/cart/types.js +10 -0
- package/lib/services/cart/types.js.map +1 -0
- package/lib/services/commercial-order/commercial-order.service.d.ts +435 -0
- package/lib/services/commercial-order/commercial-order.service.d.ts.map +1 -0
- package/lib/services/commercial-order/commercial-order.service.js +690 -0
- package/lib/services/commercial-order/commercial-order.service.js.map +1 -0
- package/lib/services/commercial-order/definitions.d.ts +182 -0
- package/lib/services/commercial-order/definitions.d.ts.map +1 -0
- package/lib/services/commercial-order/definitions.js +3 -0
- package/lib/services/commercial-order/definitions.js.map +1 -0
- package/lib/services/commercial-order/endpoints.d.ts +28 -0
- package/lib/services/commercial-order/endpoints.d.ts.map +1 -0
- package/lib/services/commercial-order/endpoints.js +33 -0
- package/lib/services/commercial-order/endpoints.js.map +1 -0
- package/lib/services/commercial-order/index.d.ts +721 -0
- package/lib/services/commercial-order/index.d.ts.map +1 -0
- package/lib/services/commercial-order/index.js +986 -0
- package/lib/services/commercial-order/index.js.map +1 -0
- package/lib/services/commercial-order/module.d.ts +11 -0
- package/lib/services/commercial-order/module.d.ts.map +1 -0
- package/lib/services/commercial-order/module.js +15 -0
- package/lib/services/commercial-order/module.js.map +1 -0
- package/lib/services/commercial-order/types.d.ts +244 -0
- package/lib/services/commercial-order/types.d.ts.map +1 -0
- package/lib/services/commercial-order/types.js +10 -0
- package/lib/services/commercial-order/types.js.map +1 -0
- package/lib/services/custom-field/custom-field.service.d.ts +23 -0
- package/lib/services/custom-field/custom-field.service.d.ts.map +1 -0
- package/lib/services/custom-field/custom-field.service.js +64 -0
- package/lib/services/custom-field/custom-field.service.js.map +1 -0
- package/lib/services/custom-field/definitions.d.ts +107 -0
- package/lib/services/custom-field/definitions.d.ts.map +1 -0
- package/lib/services/custom-field/definitions.js +61 -0
- package/lib/services/custom-field/definitions.js.map +1 -0
- package/lib/services/custom-field/endpoints.d.ts +13 -0
- package/lib/services/custom-field/endpoints.d.ts.map +1 -0
- package/lib/services/custom-field/endpoints.js +15 -0
- package/lib/services/custom-field/endpoints.js.map +1 -0
- package/lib/services/custom-field/index.d.ts +115 -0
- package/lib/services/custom-field/index.d.ts.map +1 -0
- package/lib/services/custom-field/index.js +144 -0
- package/lib/services/custom-field/index.js.map +1 -0
- package/lib/services/custom-field/module.d.ts +11 -0
- package/lib/services/custom-field/module.d.ts.map +1 -0
- package/lib/services/custom-field/module.js +15 -0
- package/lib/services/custom-field/module.js.map +1 -0
- package/lib/services/custom-field/types.d.ts +51 -0
- package/lib/services/custom-field/types.d.ts.map +1 -0
- package/lib/services/custom-field/types.js +10 -0
- package/lib/services/custom-field/types.js.map +1 -0
- package/lib/services/customer-account/customer-account.service.d.ts +387 -0
- package/lib/services/customer-account/customer-account.service.d.ts.map +1 -0
- package/lib/services/customer-account/customer-account.service.js +579 -0
- package/lib/services/customer-account/customer-account.service.js.map +1 -0
- package/lib/services/customer-account/definitions.d.ts +164 -0
- package/lib/services/customer-account/definitions.d.ts.map +1 -0
- package/lib/services/customer-account/definitions.js +3 -0
- package/lib/services/customer-account/definitions.js.map +1 -0
- package/lib/services/customer-account/endpoints.d.ts +25 -0
- package/lib/services/customer-account/endpoints.d.ts.map +1 -0
- package/lib/services/customer-account/endpoints.js +33 -0
- package/lib/services/customer-account/endpoints.js.map +1 -0
- package/lib/services/customer-account/index.d.ts +656 -0
- package/lib/services/customer-account/index.d.ts.map +1 -0
- package/lib/services/customer-account/index.js +929 -0
- package/lib/services/customer-account/index.js.map +1 -0
- package/lib/services/customer-account/module.d.ts +11 -0
- package/lib/services/customer-account/module.d.ts.map +1 -0
- package/lib/services/customer-account/module.js +15 -0
- package/lib/services/customer-account/module.js.map +1 -0
- package/lib/services/customer-account/types.d.ts +253 -0
- package/lib/services/customer-account/types.d.ts.map +1 -0
- package/lib/services/customer-account/types.js +10 -0
- package/lib/services/customer-account/types.js.map +1 -0
- package/lib/services/customer-user/customer-user.service.d.ts +280 -0
- package/lib/services/customer-user/customer-user.service.d.ts.map +1 -0
- package/lib/services/customer-user/customer-user.service.js +402 -0
- package/lib/services/customer-user/customer-user.service.js.map +1 -0
- package/lib/services/customer-user/definitions.d.ts +84 -0
- package/lib/services/customer-user/definitions.d.ts.map +1 -0
- package/lib/services/customer-user/definitions.js +3 -0
- package/lib/services/customer-user/definitions.js.map +1 -0
- package/lib/services/customer-user/endpoints.d.ts +19 -0
- package/lib/services/customer-user/endpoints.d.ts.map +1 -0
- package/lib/services/customer-user/endpoints.js +21 -0
- package/lib/services/customer-user/endpoints.js.map +1 -0
- package/lib/services/customer-user/index.d.ts +394 -0
- package/lib/services/customer-user/index.d.ts.map +1 -0
- package/lib/services/customer-user/index.js +528 -0
- package/lib/services/customer-user/index.js.map +1 -0
- package/lib/services/customer-user/module.d.ts +11 -0
- package/lib/services/customer-user/module.d.ts.map +1 -0
- package/lib/services/customer-user/module.js +15 -0
- package/lib/services/customer-user/module.js.map +1 -0
- package/lib/services/customer-user/types.d.ts +118 -0
- package/lib/services/customer-user/types.d.ts.map +1 -0
- package/lib/services/customer-user/types.js +10 -0
- package/lib/services/customer-user/types.js.map +1 -0
- package/lib/services/factory.d.ts +104 -0
- package/lib/services/factory.d.ts.map +1 -0
- package/lib/services/factory.js +89 -0
- package/lib/services/factory.js.map +1 -0
- package/lib/services/incident/definitions.d.ts +85 -0
- package/lib/services/incident/definitions.d.ts.map +1 -0
- package/lib/services/incident/definitions.js +3 -0
- package/lib/services/incident/definitions.js.map +1 -0
- package/lib/services/incident/endpoints.d.ts +17 -0
- package/lib/services/incident/endpoints.d.ts.map +1 -0
- package/lib/services/incident/endpoints.js +19 -0
- package/lib/services/incident/endpoints.js.map +1 -0
- package/lib/services/incident/incident.service.d.ts +24 -0
- package/lib/services/incident/incident.service.d.ts.map +1 -0
- package/lib/services/incident/incident.service.js +141 -0
- package/lib/services/incident/incident.service.js.map +1 -0
- package/lib/services/incident/index.d.ts +270 -0
- package/lib/services/incident/index.d.ts.map +1 -0
- package/lib/services/incident/index.js +389 -0
- package/lib/services/incident/index.js.map +1 -0
- package/lib/services/incident/module.d.ts +11 -0
- package/lib/services/incident/module.d.ts.map +1 -0
- package/lib/services/incident/module.js +15 -0
- package/lib/services/incident/module.js.map +1 -0
- package/lib/services/incident/types.d.ts +116 -0
- package/lib/services/incident/types.d.ts.map +1 -0
- package/lib/services/incident/types.js +10 -0
- package/lib/services/incident/types.js.map +1 -0
- package/lib/services/logistic-order/definitions.d.ts +315 -0
- package/lib/services/logistic-order/definitions.d.ts.map +1 -0
- package/lib/services/logistic-order/definitions.js +3 -0
- package/lib/services/logistic-order/definitions.js.map +1 -0
- package/lib/services/logistic-order/endpoints.d.ts +44 -0
- package/lib/services/logistic-order/endpoints.d.ts.map +1 -0
- package/lib/services/logistic-order/endpoints.js +57 -0
- package/lib/services/logistic-order/endpoints.js.map +1 -0
- package/lib/services/logistic-order/index.d.ts +1376 -0
- package/lib/services/logistic-order/index.d.ts.map +1 -0
- package/lib/services/logistic-order/index.js +1823 -0
- package/lib/services/logistic-order/index.js.map +1 -0
- package/lib/services/logistic-order/logistic-order.service.d.ts +62 -0
- package/lib/services/logistic-order/logistic-order.service.d.ts.map +1 -0
- package/lib/services/logistic-order/logistic-order.service.js +499 -0
- package/lib/services/logistic-order/logistic-order.service.js.map +1 -0
- package/lib/services/logistic-order/module.d.ts +11 -0
- package/lib/services/logistic-order/module.d.ts.map +1 -0
- package/lib/services/logistic-order/module.js +15 -0
- package/lib/services/logistic-order/module.js.map +1 -0
- package/lib/services/logistic-order/types.d.ts +411 -0
- package/lib/services/logistic-order/types.d.ts.map +1 -0
- package/lib/services/logistic-order/types.js +10 -0
- package/lib/services/logistic-order/types.js.map +1 -0
- package/lib/services/module.d.ts +64 -0
- package/lib/services/module.d.ts.map +1 -0
- package/lib/services/module.js +147 -0
- package/lib/services/module.js.map +1 -0
- package/lib/services/navigation-category/definitions.d.ts +31 -0
- package/lib/services/navigation-category/definitions.d.ts.map +1 -0
- package/lib/services/navigation-category/definitions.js +3 -0
- package/lib/services/navigation-category/definitions.js.map +1 -0
- package/lib/services/navigation-category/endpoints.d.ts +15 -0
- package/lib/services/navigation-category/endpoints.d.ts.map +1 -0
- package/lib/services/navigation-category/endpoints.js +17 -0
- package/lib/services/navigation-category/endpoints.js.map +1 -0
- package/lib/services/navigation-category/index.d.ts +114 -0
- package/lib/services/navigation-category/index.d.ts.map +1 -0
- package/lib/services/navigation-category/index.js +160 -0
- package/lib/services/navigation-category/index.js.map +1 -0
- package/lib/services/navigation-category/module.d.ts +11 -0
- package/lib/services/navigation-category/module.d.ts.map +1 -0
- package/lib/services/navigation-category/module.js +15 -0
- package/lib/services/navigation-category/module.js.map +1 -0
- package/lib/services/navigation-category/navigation-category.service.d.ts +148 -0
- package/lib/services/navigation-category/navigation-category.service.d.ts.map +1 -0
- package/lib/services/navigation-category/navigation-category.service.js +191 -0
- package/lib/services/navigation-category/navigation-category.service.js.map +1 -0
- package/lib/services/navigation-category/types.d.ts +51 -0
- package/lib/services/navigation-category/types.d.ts.map +1 -0
- package/lib/services/navigation-category/types.js +10 -0
- package/lib/services/navigation-category/types.js.map +1 -0
- package/lib/services/offer-inventories/definitions.d.ts +73 -0
- package/lib/services/offer-inventories/definitions.d.ts.map +1 -0
- package/lib/services/offer-inventories/definitions.js +3 -0
- package/lib/services/offer-inventories/definitions.js.map +1 -0
- package/lib/services/offer-inventories/endpoints.d.ts +16 -0
- package/lib/services/offer-inventories/endpoints.d.ts.map +1 -0
- package/lib/services/offer-inventories/endpoints.js +18 -0
- package/lib/services/offer-inventories/endpoints.js.map +1 -0
- package/lib/services/offer-inventories/index.d.ts +120 -0
- package/lib/services/offer-inventories/index.d.ts.map +1 -0
- package/lib/services/offer-inventories/index.js +175 -0
- package/lib/services/offer-inventories/index.js.map +1 -0
- package/lib/services/offer-inventories/module.d.ts +11 -0
- package/lib/services/offer-inventories/module.d.ts.map +1 -0
- package/lib/services/offer-inventories/module.js +15 -0
- package/lib/services/offer-inventories/module.js.map +1 -0
- package/lib/services/offer-inventories/offer-inventories.service.d.ts +26 -0
- package/lib/services/offer-inventories/offer-inventories.service.d.ts.map +1 -0
- package/lib/services/offer-inventories/offer-inventories.service.js +80 -0
- package/lib/services/offer-inventories/offer-inventories.service.js.map +1 -0
- package/lib/services/offer-inventories/types.d.ts +85 -0
- package/lib/services/offer-inventories/types.d.ts.map +1 -0
- package/lib/services/offer-inventories/types.js +10 -0
- package/lib/services/offer-inventories/types.js.map +1 -0
- package/lib/services/offer-prices/__mocks__/offer-prices.mocks.d.ts +109 -0
- package/lib/services/offer-prices/__mocks__/offer-prices.mocks.d.ts.map +1 -0
- package/lib/services/offer-prices/__mocks__/offer-prices.mocks.js +201 -0
- package/lib/services/offer-prices/__mocks__/offer-prices.mocks.js.map +1 -0
- package/lib/services/offer-prices/definitions.d.ts +24 -0
- package/lib/services/offer-prices/definitions.d.ts.map +1 -0
- package/lib/services/offer-prices/definitions.js +3 -0
- package/lib/services/offer-prices/definitions.js.map +1 -0
- package/lib/services/offer-prices/endpoints.d.ts +12 -0
- package/lib/services/offer-prices/endpoints.d.ts.map +1 -0
- package/lib/services/offer-prices/endpoints.js +14 -0
- package/lib/services/offer-prices/endpoints.js.map +1 -0
- package/lib/services/offer-prices/index.d.ts +36 -0
- package/lib/services/offer-prices/index.d.ts.map +1 -0
- package/lib/services/offer-prices/index.js +53 -0
- package/lib/services/offer-prices/index.js.map +1 -0
- package/lib/services/offer-prices/module.d.ts +11 -0
- package/lib/services/offer-prices/module.d.ts.map +1 -0
- package/lib/services/offer-prices/module.js +15 -0
- package/lib/services/offer-prices/module.js.map +1 -0
- package/lib/services/offer-prices/offer-prices.service.d.ts +18 -0
- package/lib/services/offer-prices/offer-prices.service.d.ts.map +1 -0
- package/lib/services/offer-prices/offer-prices.service.js +36 -0
- package/lib/services/offer-prices/offer-prices.service.js.map +1 -0
- package/lib/services/offer-prices/types.d.ts +33 -0
- package/lib/services/offer-prices/types.d.ts.map +1 -0
- package/lib/services/offer-prices/types.js +10 -0
- package/lib/services/offer-prices/types.js.map +1 -0
- package/lib/services/operation/definitions.d.ts +263 -0
- package/lib/services/operation/definitions.d.ts.map +1 -0
- package/lib/services/operation/definitions.js +18 -0
- package/lib/services/operation/definitions.js.map +1 -0
- package/lib/services/operation/endpoints.d.ts +18 -0
- package/lib/services/operation/endpoints.d.ts.map +1 -0
- package/lib/services/operation/endpoints.js +22 -0
- package/lib/services/operation/endpoints.js.map +1 -0
- package/lib/services/operation/index.d.ts +520 -0
- package/lib/services/operation/index.d.ts.map +1 -0
- package/lib/services/operation/index.js +704 -0
- package/lib/services/operation/index.js.map +1 -0
- package/lib/services/operation/module.d.ts +11 -0
- package/lib/services/operation/module.d.ts.map +1 -0
- package/lib/services/operation/module.js +15 -0
- package/lib/services/operation/module.js.map +1 -0
- package/lib/services/operation/operation.service.d.ts +32 -0
- package/lib/services/operation/operation.service.d.ts.map +1 -0
- package/lib/services/operation/operation.service.js +206 -0
- package/lib/services/operation/operation.service.js.map +1 -0
- package/lib/services/operation/types.d.ts +174 -0
- package/lib/services/operation/types.d.ts.map +1 -0
- package/lib/services/operation/types.js +10 -0
- package/lib/services/operation/types.js.map +1 -0
- package/lib/services/payment/definitions.d.ts +69 -0
- package/lib/services/payment/definitions.d.ts.map +1 -0
- package/lib/services/payment/definitions.js +3 -0
- package/lib/services/payment/definitions.js.map +1 -0
- package/lib/services/payment/endpoints.d.ts +16 -0
- package/lib/services/payment/endpoints.d.ts.map +1 -0
- package/lib/services/payment/endpoints.js +18 -0
- package/lib/services/payment/endpoints.js.map +1 -0
- package/lib/services/payment/index.d.ts +150 -0
- package/lib/services/payment/index.d.ts.map +1 -0
- package/lib/services/payment/index.js +220 -0
- package/lib/services/payment/index.js.map +1 -0
- package/lib/services/payment/module.d.ts +11 -0
- package/lib/services/payment/module.d.ts.map +1 -0
- package/lib/services/payment/module.js +15 -0
- package/lib/services/payment/module.js.map +1 -0
- package/lib/services/payment/payment.service.d.ts +224 -0
- package/lib/services/payment/payment.service.d.ts.map +1 -0
- package/lib/services/payment/payment.service.js +288 -0
- package/lib/services/payment/payment.service.js.map +1 -0
- package/lib/services/payment/types.d.ts +93 -0
- package/lib/services/payment/types.d.ts.map +1 -0
- package/lib/services/payment/types.js +10 -0
- package/lib/services/payment/types.js.map +1 -0
- package/lib/services/product/definitions.d.ts +150 -0
- package/lib/services/product/definitions.d.ts.map +1 -0
- package/lib/services/product/definitions.js +9 -0
- package/lib/services/product/definitions.js.map +1 -0
- package/lib/services/product/endpoints.d.ts +40 -0
- package/lib/services/product/endpoints.d.ts.map +1 -0
- package/lib/services/product/endpoints.js +42 -0
- package/lib/services/product/endpoints.js.map +1 -0
- package/lib/services/product/index.d.ts +388 -0
- package/lib/services/product/index.d.ts.map +1 -0
- package/lib/services/product/index.js +564 -0
- package/lib/services/product/index.js.map +1 -0
- package/lib/services/product/module.d.ts +11 -0
- package/lib/services/product/module.d.ts.map +1 -0
- package/lib/services/product/module.js +17 -0
- package/lib/services/product/module.js.map +1 -0
- package/lib/services/product/product.service.d.ts +452 -0
- package/lib/services/product/product.service.d.ts.map +1 -0
- package/lib/services/product/product.service.js +624 -0
- package/lib/services/product/product.service.js.map +1 -0
- package/lib/services/product/types.d.ts +344 -0
- package/lib/services/product/types.d.ts.map +1 -0
- package/lib/services/product/types.js +10 -0
- package/lib/services/product/types.js.map +1 -0
- package/lib/services/product-variant/definitions.d.ts +33 -0
- package/lib/services/product-variant/definitions.d.ts.map +1 -0
- package/lib/services/product-variant/definitions.js +7 -0
- package/lib/services/product-variant/definitions.js.map +1 -0
- package/lib/services/product-variant/endpoints.d.ts +15 -0
- package/lib/services/product-variant/endpoints.d.ts.map +1 -0
- package/lib/services/product-variant/endpoints.js +17 -0
- package/lib/services/product-variant/endpoints.js.map +1 -0
- package/lib/services/product-variant/index.d.ts +123 -0
- package/lib/services/product-variant/index.d.ts.map +1 -0
- package/lib/services/product-variant/index.js +172 -0
- package/lib/services/product-variant/index.js.map +1 -0
- package/lib/services/product-variant/module.d.ts +11 -0
- package/lib/services/product-variant/module.d.ts.map +1 -0
- package/lib/services/product-variant/module.js +15 -0
- package/lib/services/product-variant/module.js.map +1 -0
- package/lib/services/product-variant/product-variant.service.d.ts +21 -0
- package/lib/services/product-variant/product-variant.service.d.ts.map +1 -0
- package/lib/services/product-variant/product-variant.service.js +69 -0
- package/lib/services/product-variant/product-variant.service.js.map +1 -0
- package/lib/services/product-variant/types.d.ts +73 -0
- package/lib/services/product-variant/types.d.ts.map +1 -0
- package/lib/services/product-variant/types.js +10 -0
- package/lib/services/product-variant/types.js.map +1 -0
- package/lib/services/quote/definitions.d.ts +102 -0
- package/lib/services/quote/definitions.d.ts.map +1 -0
- package/lib/services/quote/definitions.js +3 -0
- package/lib/services/quote/definitions.js.map +1 -0
- package/lib/services/quote/endpoints.d.ts +20 -0
- package/lib/services/quote/endpoints.d.ts.map +1 -0
- package/lib/services/quote/endpoints.js +24 -0
- package/lib/services/quote/endpoints.js.map +1 -0
- package/lib/services/quote/index.d.ts +378 -0
- package/lib/services/quote/index.d.ts.map +1 -0
- package/lib/services/quote/index.js +506 -0
- package/lib/services/quote/index.js.map +1 -0
- package/lib/services/quote/module.d.ts +11 -0
- package/lib/services/quote/module.d.ts.map +1 -0
- package/lib/services/quote/module.js +15 -0
- package/lib/services/quote/module.js.map +1 -0
- package/lib/services/quote/quote.service.d.ts +346 -0
- package/lib/services/quote/quote.service.d.ts.map +1 -0
- package/lib/services/quote/quote.service.js +479 -0
- package/lib/services/quote/quote.service.js.map +1 -0
- package/lib/services/quote/types.d.ts +160 -0
- package/lib/services/quote/types.d.ts.map +1 -0
- package/lib/services/quote/types.js +10 -0
- package/lib/services/quote/types.js.map +1 -0
- package/lib/services/supplier/__mocks__/supplier-mocks.d.ts +49 -0
- package/lib/services/supplier/__mocks__/supplier-mocks.d.ts.map +1 -0
- package/lib/services/supplier/__mocks__/supplier-mocks.js +168 -0
- package/lib/services/supplier/__mocks__/supplier-mocks.js.map +1 -0
- package/lib/services/supplier/definitions.d.ts +30 -0
- package/lib/services/supplier/definitions.d.ts.map +1 -0
- package/lib/services/supplier/definitions.js +3 -0
- package/lib/services/supplier/definitions.js.map +1 -0
- package/lib/services/supplier/endpoints.d.ts +14 -0
- package/lib/services/supplier/endpoints.d.ts.map +1 -0
- package/lib/services/supplier/endpoints.js +16 -0
- package/lib/services/supplier/endpoints.js.map +1 -0
- package/lib/services/supplier/index.d.ts +102 -0
- package/lib/services/supplier/index.d.ts.map +1 -0
- package/lib/services/supplier/index.js +146 -0
- package/lib/services/supplier/index.js.map +1 -0
- package/lib/services/supplier/module.d.ts +11 -0
- package/lib/services/supplier/module.d.ts.map +1 -0
- package/lib/services/supplier/module.js +15 -0
- package/lib/services/supplier/module.js.map +1 -0
- package/lib/services/supplier/supplier.service.d.ts +20 -0
- package/lib/services/supplier/supplier.service.d.ts.map +1 -0
- package/lib/services/supplier/supplier.service.js +63 -0
- package/lib/services/supplier/supplier.service.js.map +1 -0
- package/lib/services/supplier/types.d.ts +58 -0
- package/lib/services/supplier/types.d.ts.map +1 -0
- package/lib/services/supplier/types.js +10 -0
- package/lib/services/supplier/types.js.map +1 -0
- package/lib/services/types.d.ts +81 -0
- package/lib/services/types.d.ts.map +1 -0
- package/lib/services/types.js +10 -0
- package/lib/services/types.js.map +1 -0
- package/lib/settings/fetch-instance.d.ts +30 -0
- package/lib/settings/fetch-instance.d.ts.map +1 -0
- package/lib/settings/fetch-instance.js +223 -0
- package/lib/settings/fetch-instance.js.map +1 -0
- package/lib/settings/sdk-version.d.ts +3 -0
- package/lib/settings/sdk-version.d.ts.map +1 -0
- package/lib/settings/sdk-version.js +6 -0
- package/lib/settings/sdk-version.js.map +1 -0
- package/package.json +27 -8
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* # Cart Service
|
|
3
|
+
*
|
|
4
|
+
* This module provides all functionalities related to shopping cart management.
|
|
5
|
+
*
|
|
6
|
+
* ## Features:
|
|
7
|
+
* - 🛒 Create, retrieve, update, and delete carts
|
|
8
|
+
* - 📦 Manage cart lines (add, update, remove items)
|
|
9
|
+
* - 💳 Initialize orders from carts (checkout)
|
|
10
|
+
* - 📋 Support for buying lists
|
|
11
|
+
*
|
|
12
|
+
* Each method is described with its input parameters, output responses, and example usages.
|
|
13
|
+
*
|
|
14
|
+
* @module services/cart
|
|
15
|
+
* @since 2.17.0
|
|
16
|
+
*/
|
|
17
|
+
import { BaseService } from "../base.service";
|
|
18
|
+
import type { RequestContext } from "../../client/transport";
|
|
19
|
+
import type { GetCartsParams, CreateCartParams, DeleteCartParams, GetCartParams, UpdateCartParams, InitializeOrdersParams, GetCartLinesParams, UpdateCartLinesParams, UpdateCartLinesByVariantParams, DeleteCartLinesParams, GetCartsResponse, CreateCartResponse, GetCartResponse, DeleteCartsResponse, GetCartLinesResponse, UpdateCartLinesResponse, UpdateCartLinesByVariantResponse, DeleteCartLinesResponse } from "./types";
|
|
20
|
+
/**
|
|
21
|
+
* Service for shopping cart operations.
|
|
22
|
+
*
|
|
23
|
+
* Provides comprehensive cart management capabilities:
|
|
24
|
+
* - 🛒 Cart CRUD operations
|
|
25
|
+
* - 📦 Cart line management
|
|
26
|
+
* - 💳 Checkout functionality
|
|
27
|
+
* - 📋 Buying list support
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* ```typescript
|
|
31
|
+
* import { createDjustClient } from '@djust-b2b/djust-front-sdk';
|
|
32
|
+
*
|
|
33
|
+
* const client = createDjustClient({
|
|
34
|
+
* baseUrl: 'https://api.djust.io',
|
|
35
|
+
* clientId: 'your-client-id',
|
|
36
|
+
* apiKey: 'your-api-key',
|
|
37
|
+
* });
|
|
38
|
+
*
|
|
39
|
+
* // Create a cart
|
|
40
|
+
* const cart = await client.cart.createCart({ name: 'My Cart' });
|
|
41
|
+
*
|
|
42
|
+
* // Add items
|
|
43
|
+
* await client.cart.updateCartLines({
|
|
44
|
+
* cartId: cart.id,
|
|
45
|
+
* linesToUpdate: [{ offerPriceId: 'offer-1', quantity: 2, updateAction: 'add' }],
|
|
46
|
+
* });
|
|
47
|
+
*
|
|
48
|
+
* // Checkout
|
|
49
|
+
* const orderId = await client.cart.initializeOrders({ cartId: cart.id });
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
export declare class CartService extends BaseService {
|
|
53
|
+
readonly serviceName = "cart";
|
|
54
|
+
/**
|
|
55
|
+
* 🗑️ Deletes all carts associated with the user.
|
|
56
|
+
*
|
|
57
|
+
* This method sends a request to delete all carts of the logged-in user.
|
|
58
|
+
*
|
|
59
|
+
* 🛠 **Endpoint**: `DELETE /v2/shop/carts [CART-135]`
|
|
60
|
+
*
|
|
61
|
+
* | Parameter | Type | Required | Description |
|
|
62
|
+
* |-----------|------|----------|-------------|
|
|
63
|
+
* | *(none)* | - | - | This method does not require any parameters. |
|
|
64
|
+
*
|
|
65
|
+
* 📤 **Returns**:
|
|
66
|
+
* A `Promise<DeleteCartsResponse>` containing the details of the deleted carts.
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* ```typescript
|
|
70
|
+
* const deletedCarts = await client.cart.deleteCarts();
|
|
71
|
+
* console.log(`Deleted ${deletedCarts.length} carts`);
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param context - Optional request context for SSR.
|
|
75
|
+
* @returns An array of objects containing the details of the deleted carts.
|
|
76
|
+
*/
|
|
77
|
+
deleteCarts(context?: RequestContext): Promise<DeleteCartsResponse>;
|
|
78
|
+
/**
|
|
79
|
+
* 🛒 Retrieves all active carts of the logged-in user.
|
|
80
|
+
*
|
|
81
|
+
* This method allows fetching the list of active carts based on the provided parameters.
|
|
82
|
+
*
|
|
83
|
+
* 🛠 **Endpoint**: `GET /v2/shop/carts [CART-550]`
|
|
84
|
+
*
|
|
85
|
+
* | Parameter | Type | Required | Description |
|
|
86
|
+
* |-------------|-------------------|----------|--------------------------------------------------|
|
|
87
|
+
* | `currency` | `string` | ✅ | The currency in which to display the carts. |
|
|
88
|
+
* | `pageable` | `PageableParams` | ✅ | The pagination parameters (page, size, sort). |
|
|
89
|
+
* | `status` | `CartStatus[]` | ❌ | Filter by cart status. |
|
|
90
|
+
* | `type` | `CartType[]` | ❌ | Filter by cart type (CART, BUYING_LIST). |
|
|
91
|
+
*
|
|
92
|
+
* 📤 **Returns**:
|
|
93
|
+
* A `Promise<GetCartsResponse>` containing the paginated list of carts.
|
|
94
|
+
*
|
|
95
|
+
* @example
|
|
96
|
+
* ```typescript
|
|
97
|
+
* const { content: carts, totalElements } = await client.cart.getCarts({
|
|
98
|
+
* currency: 'EUR',
|
|
99
|
+
* pageable: { page: 0, size: 10 },
|
|
100
|
+
* });
|
|
101
|
+
*
|
|
102
|
+
* console.log(`Found ${totalElements} carts`);
|
|
103
|
+
* carts.forEach(cart => console.log(cart.name));
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* @param params - The parameters for retrieving the carts.
|
|
107
|
+
* @param context - Optional request context for SSR.
|
|
108
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
109
|
+
* @returns A paginated response containing the list of carts.
|
|
110
|
+
*/
|
|
111
|
+
getCarts(params: GetCartsParams, context?: RequestContext): Promise<GetCartsResponse>;
|
|
112
|
+
/**
|
|
113
|
+
* 🛒 Creates a new cart.
|
|
114
|
+
*
|
|
115
|
+
* This method creates a new shopping cart or buying list with the specified name.
|
|
116
|
+
*
|
|
117
|
+
* 🛠 **Endpoint**: `POST /v2/shop/carts [CART-100]`
|
|
118
|
+
*
|
|
119
|
+
* | Parameter | Type | Required | Description |
|
|
120
|
+
* |-----------|-------------|----------|-------------------------------------------------------|
|
|
121
|
+
* | `name` | `string` | ✅ | The name of the cart to create. |
|
|
122
|
+
* | `type` | `CartType` | ❌ | The type: `CART` (default) or `BUYING_LIST`. |
|
|
123
|
+
*
|
|
124
|
+
* 📤 **Returns**:
|
|
125
|
+
* A `Promise<CreateCartResponse>` containing the created cart details.
|
|
126
|
+
*
|
|
127
|
+
* @example
|
|
128
|
+
* ```typescript
|
|
129
|
+
* // Create a standard cart
|
|
130
|
+
* const cart = await client.cart.createCart({
|
|
131
|
+
* name: 'My Shopping Cart',
|
|
132
|
+
* });
|
|
133
|
+
*
|
|
134
|
+
* // Create a buying list
|
|
135
|
+
* const buyingList = await client.cart.createCart({
|
|
136
|
+
* name: 'Weekly Supplies',
|
|
137
|
+
* type: 'BUYING_LIST',
|
|
138
|
+
* });
|
|
139
|
+
* ```
|
|
140
|
+
*
|
|
141
|
+
* @param params - The parameters for creating the cart.
|
|
142
|
+
* @param context - Optional request context for SSR.
|
|
143
|
+
* @throws {ValidationError} If the `name` parameter is missing.
|
|
144
|
+
* @returns The created cart object.
|
|
145
|
+
*/
|
|
146
|
+
createCart(params: CreateCartParams, context?: RequestContext): Promise<CreateCartResponse>;
|
|
147
|
+
/**
|
|
148
|
+
* 🗑️ Deletes a specific cart.
|
|
149
|
+
*
|
|
150
|
+
* This method deletes the cart identified by its ID.
|
|
151
|
+
*
|
|
152
|
+
* 🛠 **Endpoint**: `DELETE /v2/shop/carts/{cartId} [CART-136]`
|
|
153
|
+
*
|
|
154
|
+
* | Parameter | Type | Required | Description |
|
|
155
|
+
* |-----------|----------|----------|--------------------------------|
|
|
156
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart to delete. |
|
|
157
|
+
*
|
|
158
|
+
* 📤 **Returns**:
|
|
159
|
+
* A `Promise<void>` that resolves when the cart is successfully deleted.
|
|
160
|
+
*
|
|
161
|
+
* @example
|
|
162
|
+
* ```typescript
|
|
163
|
+
* await client.cart.deleteCart({
|
|
164
|
+
* cartId: '123e4567-e89b-12d3-a456-426614174000',
|
|
165
|
+
* });
|
|
166
|
+
* console.log('Cart deleted successfully');
|
|
167
|
+
* ```
|
|
168
|
+
*
|
|
169
|
+
* @param params - The parameters for deleting the cart.
|
|
170
|
+
* @param context - Optional request context for SSR.
|
|
171
|
+
* @throws {ValidationError} If the `cartId` parameter is missing.
|
|
172
|
+
* @throws {NotFoundError} If the cart is not found.
|
|
173
|
+
*/
|
|
174
|
+
deleteCart(params: DeleteCartParams, context?: RequestContext): Promise<void>;
|
|
175
|
+
/**
|
|
176
|
+
* 🛒 Retrieves a specific cart with its details.
|
|
177
|
+
*
|
|
178
|
+
* This method fetches detailed information about a cart, including its lines and pricing.
|
|
179
|
+
*
|
|
180
|
+
* 🛠 **Endpoint**: `GET /v2/shop/carts/{cartId} [CART-551]`
|
|
181
|
+
*
|
|
182
|
+
* | Parameter | Type | Required | Description |
|
|
183
|
+
* |----------------|----------|----------|--------------------------------------------------|
|
|
184
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
185
|
+
* | `currency` | `string` | ✅ | The currency in which to display prices. |
|
|
186
|
+
* | `nbFirstLines` | `number` | ❌ | Number of first lines to include in response. |
|
|
187
|
+
*
|
|
188
|
+
* 📤 **Returns**:
|
|
189
|
+
* A `Promise<GetCartResponse>` containing the cart details with lines and pricing.
|
|
190
|
+
*
|
|
191
|
+
* @example
|
|
192
|
+
* ```typescript
|
|
193
|
+
* const cart = await client.cart.getCart({
|
|
194
|
+
* cartId: '123e4567-e89b-12d3-a456-426614174000',
|
|
195
|
+
* currency: 'EUR',
|
|
196
|
+
* nbFirstLines: 5,
|
|
197
|
+
* });
|
|
198
|
+
*
|
|
199
|
+
* console.log(`Cart: ${cart.name}`);
|
|
200
|
+
* console.log(`Total: ${cart.totalPrice} ${cart.currency}`);
|
|
201
|
+
* console.log(`Items: ${cart.lines.length}`);
|
|
202
|
+
* ```
|
|
203
|
+
*
|
|
204
|
+
* @param params - The parameters for retrieving the cart.
|
|
205
|
+
* @param context - Optional request context for SSR.
|
|
206
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
207
|
+
* @throws {NotFoundError} If the cart is not found.
|
|
208
|
+
* @returns The cart details with lines and pricing.
|
|
209
|
+
*/
|
|
210
|
+
getCart(params: GetCartParams, context?: RequestContext): Promise<GetCartResponse>;
|
|
211
|
+
/**
|
|
212
|
+
* ✏️ Updates a cart's name or type.
|
|
213
|
+
*
|
|
214
|
+
* This method allows updating the name and/or type of an existing cart.
|
|
215
|
+
*
|
|
216
|
+
* 🛠 **Endpoint**: `PUT /v2/shop/carts/{cartId} [CART-101]`
|
|
217
|
+
*
|
|
218
|
+
* | Parameter | Type | Required | Description |
|
|
219
|
+
* |-----------|------------|----------|------------------------------------------|
|
|
220
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
221
|
+
* | `name` | `string` | ✅ | The new name for the cart. |
|
|
222
|
+
* | `type` | `CartType` | ❌ | The new type (CART or BUYING_LIST). |
|
|
223
|
+
*
|
|
224
|
+
* 📤 **Returns**:
|
|
225
|
+
* A `Promise<void>` that resolves when the cart is successfully updated.
|
|
226
|
+
*
|
|
227
|
+
* @example
|
|
228
|
+
* ```typescript
|
|
229
|
+
* await client.cart.updateCart({
|
|
230
|
+
* cartId: '123e4567-e89b-12d3-a456-426614174000',
|
|
231
|
+
* name: 'Updated Cart Name',
|
|
232
|
+
* });
|
|
233
|
+
* ```
|
|
234
|
+
*
|
|
235
|
+
* @param params - The parameters for updating the cart.
|
|
236
|
+
* @param context - Optional request context for SSR.
|
|
237
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
238
|
+
* @throws {NotFoundError} If the cart is not found.
|
|
239
|
+
*/
|
|
240
|
+
updateCart(params: UpdateCartParams, context?: RequestContext): Promise<void>;
|
|
241
|
+
/**
|
|
242
|
+
* 💳 Initializes orders from a cart (checkout).
|
|
243
|
+
*
|
|
244
|
+
* This method converts a cart into one or more commercial orders.
|
|
245
|
+
* This is the main checkout operation that triggers order creation.
|
|
246
|
+
*
|
|
247
|
+
* 🛠 **Endpoint**: `POST /v2/shop/carts/{cartId}/initialize-orders [CART-110]`
|
|
248
|
+
*
|
|
249
|
+
* | Parameter | Type | Required | Description |
|
|
250
|
+
* |-----------|----------|----------|------------------------------------------|
|
|
251
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
252
|
+
*
|
|
253
|
+
* 📤 **Returns**:
|
|
254
|
+
* A `Promise<string>` containing the created order's business ID.
|
|
255
|
+
*
|
|
256
|
+
* ⚠️ **Important**:
|
|
257
|
+
* - The cart must have valid shipping and billing addresses configured.
|
|
258
|
+
* - All cart lines must have valid offers.
|
|
259
|
+
* - Payment method must be set if required.
|
|
260
|
+
*
|
|
261
|
+
* @example
|
|
262
|
+
* ```typescript
|
|
263
|
+
* try {
|
|
264
|
+
* const orderId = await client.cart.initializeOrders({
|
|
265
|
+
* cartId: '123e4567-e89b-12d3-a456-426614174000',
|
|
266
|
+
* });
|
|
267
|
+
* console.log(`Order created: ${orderId}`);
|
|
268
|
+
* // Redirect to order confirmation page
|
|
269
|
+
* } catch (error) {
|
|
270
|
+
* console.error('Checkout failed:', error.message);
|
|
271
|
+
* }
|
|
272
|
+
* ```
|
|
273
|
+
*
|
|
274
|
+
* @param params - The parameters for initializing orders.
|
|
275
|
+
* @param context - Optional request context for SSR.
|
|
276
|
+
* @throws {ValidationError} If the `cartId` parameter is missing.
|
|
277
|
+
* @throws {NotFoundError} If the cart is not found.
|
|
278
|
+
* @throws {SDKError} If checkout fails (missing address, invalid offers, etc.).
|
|
279
|
+
* @returns The created order's business ID.
|
|
280
|
+
*/
|
|
281
|
+
initializeOrders(params: InitializeOrdersParams, context?: RequestContext): Promise<string>;
|
|
282
|
+
/**
|
|
283
|
+
* 📦 Retrieves cart lines with pagination.
|
|
284
|
+
*
|
|
285
|
+
* This method fetches the items in a cart with optional filtering and pagination.
|
|
286
|
+
*
|
|
287
|
+
* 🛠 **Endpoint**: `GET /v2/shop/carts/{cartId}/lines [CART-552]`
|
|
288
|
+
*
|
|
289
|
+
* | Parameter | Type | Required | Description |
|
|
290
|
+
* |--------------------|------------------|----------|--------------------------------------------|
|
|
291
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
292
|
+
* | `currency` | `string` | ✅ | The currency for price display. |
|
|
293
|
+
* | `pageable` | `PageableParams` | ✅ | Pagination parameters. |
|
|
294
|
+
* | `supplierId` | `string` | ❌ | Filter by supplier. |
|
|
295
|
+
* | `productVariantId` | `string` | ❌ | Filter by product variant. |
|
|
296
|
+
* | `offerPriceId` | `string` | ❌ | Filter by offer price. |
|
|
297
|
+
*
|
|
298
|
+
* 📤 **Returns**:
|
|
299
|
+
* A `Promise<GetCartLinesResponse>` containing the paginated list of cart lines.
|
|
300
|
+
*
|
|
301
|
+
* @example
|
|
302
|
+
* ```typescript
|
|
303
|
+
* const { content: lines, totalElements } = await client.cart.getCartLines({
|
|
304
|
+
* cartId: '123e4567-e89b-12d3-a456-426614174000',
|
|
305
|
+
* currency: 'EUR',
|
|
306
|
+
* pageable: { page: 0, size: 20 },
|
|
307
|
+
* });
|
|
308
|
+
*
|
|
309
|
+
* lines.forEach(line => {
|
|
310
|
+
* console.log(`${line.productName}: ${line.quantity} x ${line.unitPrice}`);
|
|
311
|
+
* });
|
|
312
|
+
* ```
|
|
313
|
+
*
|
|
314
|
+
* @param params - The parameters for retrieving cart lines.
|
|
315
|
+
* @param context - Optional request context for SSR.
|
|
316
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
317
|
+
* @returns A paginated response containing the cart lines.
|
|
318
|
+
*/
|
|
319
|
+
getCartLines(params: GetCartLinesParams, context?: RequestContext): Promise<GetCartLinesResponse>;
|
|
320
|
+
/**
|
|
321
|
+
* ✏️ Updates cart lines (add, update, or remove items).
|
|
322
|
+
*
|
|
323
|
+
* This method allows batch operations on cart lines: adding new items,
|
|
324
|
+
* updating quantities, or removing items.
|
|
325
|
+
*
|
|
326
|
+
* 🛠 **Endpoint**: `PUT /v2/shop/carts/{cartId}/lines [CART-102]`
|
|
327
|
+
*
|
|
328
|
+
* | Parameter | Type | Required | Description |
|
|
329
|
+
* |-----------------|---------------------|----------|---------------------------------------|
|
|
330
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
331
|
+
* | `linesToUpdate` | `CartLineToAdd[]` | ✅ | Array of line updates to apply. |
|
|
332
|
+
*
|
|
333
|
+
* **Line Update Structure**:
|
|
334
|
+
* | Field | Type | Required | Description |
|
|
335
|
+
* |----------------|----------|----------|-----------------------------------------|
|
|
336
|
+
* | `offerPriceId` | `string` | ✅ | The offer price identifier. |
|
|
337
|
+
* | `quantity` | `number` | ✅ | The quantity to set (0 to remove). |
|
|
338
|
+
* | `updateAction` | `string` | ❌ | Action: `add`, `update`, or `delete`. |
|
|
339
|
+
*
|
|
340
|
+
* 📤 **Returns**:
|
|
341
|
+
* A `Promise<UpdateCartLinesResponse>` with the updated cart lines.
|
|
342
|
+
*
|
|
343
|
+
* @example
|
|
344
|
+
* ```typescript
|
|
345
|
+
* // Add items to cart
|
|
346
|
+
* await client.cart.updateCartLines({
|
|
347
|
+
* cartId: 'cart-123',
|
|
348
|
+
* linesToUpdate: [
|
|
349
|
+
* { offerPriceId: 'offer-1', quantity: 2, updateAction: 'add' },
|
|
350
|
+
* { offerPriceId: 'offer-2', quantity: 5, updateAction: 'add' },
|
|
351
|
+
* ],
|
|
352
|
+
* });
|
|
353
|
+
*
|
|
354
|
+
* // Update quantity
|
|
355
|
+
* await client.cart.updateCartLines({
|
|
356
|
+
* cartId: 'cart-123',
|
|
357
|
+
* linesToUpdate: [
|
|
358
|
+
* { offerPriceId: 'offer-1', quantity: 10, updateAction: 'update' },
|
|
359
|
+
* ],
|
|
360
|
+
* });
|
|
361
|
+
*
|
|
362
|
+
* // Remove item
|
|
363
|
+
* await client.cart.updateCartLines({
|
|
364
|
+
* cartId: 'cart-123',
|
|
365
|
+
* linesToUpdate: [
|
|
366
|
+
* { offerPriceId: 'offer-2', quantity: 0, updateAction: 'delete' },
|
|
367
|
+
* ],
|
|
368
|
+
* });
|
|
369
|
+
* ```
|
|
370
|
+
*
|
|
371
|
+
* @param params - The parameters for updating cart lines.
|
|
372
|
+
* @param context - Optional request context for SSR.
|
|
373
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
374
|
+
* @throws {NotFoundError} If the cart or offer is not found.
|
|
375
|
+
* @returns The updated cart lines information.
|
|
376
|
+
*/
|
|
377
|
+
updateCartLines(params: UpdateCartLinesParams, context?: RequestContext): Promise<UpdateCartLinesResponse>;
|
|
378
|
+
/**
|
|
379
|
+
* ✏️ Updates cart lines by product variant.
|
|
380
|
+
*
|
|
381
|
+
* This method allows updating cart lines using product variant identifiers
|
|
382
|
+
* instead of offer price IDs.
|
|
383
|
+
*
|
|
384
|
+
* 🛠 **Endpoint**: `PUT /v2/shop/carts/{cartId}/lines-by-variant [CART-103]`
|
|
385
|
+
*
|
|
386
|
+
* | Parameter | Type | Required | Description |
|
|
387
|
+
* |-----------------|---------------------------|----------|------------------------------------|
|
|
388
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
389
|
+
* | `linesToUpdate` | `CartLineToAddByVariant[]`| ✅ | Array of line updates by variant. |
|
|
390
|
+
*
|
|
391
|
+
* 📤 **Returns**:
|
|
392
|
+
* A `Promise<UpdateCartLinesByVariantResponse>` with the updated cart lines.
|
|
393
|
+
*
|
|
394
|
+
* @example
|
|
395
|
+
* ```typescript
|
|
396
|
+
* await client.cart.updateCartLinesByVariant({
|
|
397
|
+
* cartId: 'cart-123',
|
|
398
|
+
* linesToUpdate: [
|
|
399
|
+
* { productVariantId: 'variant-1', quantity: 3 },
|
|
400
|
+
* { productVariantId: 'variant-2', quantity: 1 },
|
|
401
|
+
* ],
|
|
402
|
+
* });
|
|
403
|
+
* ```
|
|
404
|
+
*
|
|
405
|
+
* @param params - The parameters for updating cart lines by variant.
|
|
406
|
+
* @param context - Optional request context for SSR.
|
|
407
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
408
|
+
* @returns The updated cart lines information.
|
|
409
|
+
*/
|
|
410
|
+
updateCartLinesByVariant(params: UpdateCartLinesByVariantParams, context?: RequestContext): Promise<UpdateCartLinesByVariantResponse>;
|
|
411
|
+
/**
|
|
412
|
+
* 🗑️ Deletes specific lines from a cart.
|
|
413
|
+
*
|
|
414
|
+
* This method removes specific items from a cart by their offer price IDs.
|
|
415
|
+
*
|
|
416
|
+
* 🛠 **Endpoint**: `DELETE /v2/shop/carts/{cartId}/lines [CART-137]`
|
|
417
|
+
*
|
|
418
|
+
* | Parameter | Type | Required | Description |
|
|
419
|
+
* |-------------------|------------|----------|----------------------------------------|
|
|
420
|
+
* | `cartId` | `string` | ✅ | The unique identifier of the cart. |
|
|
421
|
+
* | `lineIdsToDelete` | `string[]` | ✅ | Array of offer price IDs to remove. |
|
|
422
|
+
*
|
|
423
|
+
* 📤 **Returns**:
|
|
424
|
+
* A `Promise<DeleteCartLinesResponse>` with information about deleted lines.
|
|
425
|
+
*
|
|
426
|
+
* @example
|
|
427
|
+
* ```typescript
|
|
428
|
+
* const result = await client.cart.deleteCartLines({
|
|
429
|
+
* cartId: 'cart-123',
|
|
430
|
+
* lineIdsToDelete: ['offer-1', 'offer-2', 'offer-3'],
|
|
431
|
+
* });
|
|
432
|
+
* console.log(`Deleted ${result.deletedCount} lines`);
|
|
433
|
+
* ```
|
|
434
|
+
*
|
|
435
|
+
* @param params - The parameters for deleting cart lines.
|
|
436
|
+
* @param context - Optional request context for SSR.
|
|
437
|
+
* @throws {ValidationError} If required parameters are missing.
|
|
438
|
+
* @throws {NotFoundError} If the cart is not found.
|
|
439
|
+
* @returns Information about the deleted lines.
|
|
440
|
+
*/
|
|
441
|
+
deleteCartLines(params: DeleteCartLinesParams, context?: RequestContext): Promise<DeleteCartLinesResponse>;
|
|
442
|
+
}
|
|
443
|
+
//# sourceMappingURL=cart.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cart.service.d.ts","sourceRoot":"","sources":["../../../src/services/cart/cart.service.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE7D,OAAO,KAAK,EACV,cAAc,EACd,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,EACb,gBAAgB,EAChB,sBAAsB,EACtB,kBAAkB,EAClB,qBAAqB,EACrB,8BAA8B,EAC9B,qBAAqB,EACrB,gBAAgB,EAChB,kBAAkB,EAClB,eAAe,EACf,mBAAmB,EACnB,oBAAoB,EACpB,uBAAuB,EACvB,gCAAgC,EAChC,uBAAuB,EACxB,MAAM,SAAS,CAAC;AAEjB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,WAAY,SAAQ,WAAW;IAC1C,QAAQ,CAAC,WAAW,UAAU;IAE9B;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACG,WAAW,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAUzE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACG,QAAQ,CACZ,MAAM,EAAE,cAAc,EACtB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,gBAAgB,CAAC;IAoB5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAiCG;IACG,UAAU,CACd,MAAM,EAAE,gBAAgB,EACxB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,kBAAkB,CAAC;IAgB9B;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACG,UAAU,CACd,MAAM,EAAE,gBAAgB,EACxB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAYhB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkCG;IACG,OAAO,CACX,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,eAAe,CAAC;IAgB3B;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IACG,UAAU,CACd,MAAM,EAAE,gBAAgB,EACxB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAgBhB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAuCG;IACG,gBAAgB,CACpB,MAAM,EAAE,sBAAsB,EAC9B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,MAAM,CAAC;IAclB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoCG;IACG,YAAY,CAChB,MAAM,EAAE,kBAAkB,EAC1B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,oBAAoB,CAAC;IAqBhC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAwDG;IACG,eAAe,CACnB,MAAM,EAAE,qBAAqB,EAC7B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,uBAAuB,CAAC;IAanC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;IACG,wBAAwB,CAC5B,MAAM,EAAE,8BAA8B,EACtC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,gCAAgC,CAAC;IAe5C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACG,eAAe,CACnB,MAAM,EAAE,qBAAqB,EAC7B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,uBAAuB,CAAC;CAcpC"}
|