@djust-b2b/djust-front-sdk 3.0.0-beta.9 → 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 +42 -40
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +269 -63
- 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/index.d.ts +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,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DJUST SDK Logistic Order Module
|
|
3
|
+
* Re-exports all logistic order-related types and service.
|
|
4
|
+
*
|
|
5
|
+
* @module services/logistic-order
|
|
6
|
+
* @since 2.17.0
|
|
7
|
+
*/
|
|
8
|
+
export type { OrderLogisticStatusType, PaymentOption, IdType, UpdateAction, CustomFieldValueObject, OrderLogisticLineUpdate, GetLogisticOrdersParams, GetPaginatedLogisticOrdersParams, GetLogisticOrderParams, GetLogisticOrderCustomFieldsParams, GetLogisticOrderLineCustomFieldsParams, UpdateLogisticOrderCustomFieldsParams, UpdateLogisticOrderDataParams, GetLogisticOrderAccountingDocumentsParams, GetLogisticOrderDocumentUrlParams, ApproveLogisticOrderParams, DisapproveLogisticOrderParams, CancelLogisticOrderParams, ConfirmReceptionParams, CreateLogisticOrderParams, GetLogisticOrderApproversParams, UpdateBillingInformationParams, GetLogisticOrderDocumentsParams, GetLogisticOrderLinesParams, UpdateOnHoldLogisticOrderLinesParams, UpdateLogisticOrderLineCustomFieldsParams, UpdateOnHoldLogisticOrderLineParams, UpdateShippingAddressParams, GetShippingInformationParams, UpdateShippingInformationParams, UpdateShippingTypeParams, CreateThreadParams, CreateThreadV2Params, GetLogisticOrderThreadsParams, GetLogisticOrderThreadParams, CreateThreadMessagesParams, UpdateThreadMessageParams, CreateIncidentThreadsParams, GetIncidentThreadParams, CreateIncidentThreadMessagesParams, UpdateIncidentThreadMessageParams, GetLogisticOrderReviewParams, AddLogisticOrderReviewParams, GetThreadSubReasonsParams, LogisticOrderLine, LogisticOrder, AccountingDocument, Approver, OrderDocument, ShippingInformation, Thread, ThreadMessage, ReasonType, SubReason, OrderReview, GetLogisticOrdersResponse, GetPaginatedLogisticOrdersResponse, GetLogisticOrderResponse, GetLogisticOrderCustomFieldsResponse, GetLogisticOrderLineCustomFieldsResponse, UpdateLogisticOrderCustomFieldsResponse, GetLogisticOrderAccountingDocumentsResponse, ApproveLogisticOrderResponse, DisapproveLogisticOrderResponse, CancelLogisticOrderResponse, ConfirmReceptionResponse, GetLogisticOrderApproversResponse, GetLogisticOrderDocumentsResponse, GetLogisticOrderLinesResponse, UpdateOnHoldLogisticOrderLinesResponse, UpdateLogisticOrderLineCustomFieldsResponse, GetShippingInformationResponse, CreateThreadResponse, CreateThreadV2Response, GetLogisticOrderThreadsResponse, GetLogisticOrderThreadResponse, CreateThreadMessagesResponse, CreateIncidentThreadsResponse, GetIncidentThreadResponse, CreateIncidentThreadMessagesResponse, GetLogisticOrderReviewResponse, AddLogisticOrderReviewResponse, GetThreadReasonTypesResponse, GetThreadSubReasonsResponse, } from "./types";
|
|
9
|
+
export { LogisticOrderEndpoints, type LogisticOrderEndpoint, } from "./endpoints";
|
|
10
|
+
export { LogisticOrderService } from "./logistic-order.service";
|
|
11
|
+
//# sourceMappingURL=module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/services/logistic-order/module.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,YAAY,EACV,uBAAuB,EACvB,aAAa,EACb,MAAM,EACN,YAAY,EACZ,sBAAsB,EACtB,uBAAuB,EACvB,uBAAuB,EACvB,gCAAgC,EAChC,sBAAsB,EACtB,kCAAkC,EAClC,sCAAsC,EACtC,qCAAqC,EACrC,6BAA6B,EAC7B,yCAAyC,EACzC,iCAAiC,EACjC,0BAA0B,EAC1B,6BAA6B,EAC7B,yBAAyB,EACzB,sBAAsB,EACtB,yBAAyB,EACzB,+BAA+B,EAC/B,8BAA8B,EAC9B,+BAA+B,EAC/B,2BAA2B,EAC3B,oCAAoC,EACpC,yCAAyC,EACzC,mCAAmC,EACnC,2BAA2B,EAC3B,4BAA4B,EAC5B,+BAA+B,EAC/B,wBAAwB,EACxB,kBAAkB,EAClB,oBAAoB,EACpB,6BAA6B,EAC7B,4BAA4B,EAC5B,0BAA0B,EAC1B,yBAAyB,EACzB,2BAA2B,EAC3B,uBAAuB,EACvB,kCAAkC,EAClC,iCAAiC,EACjC,4BAA4B,EAC5B,4BAA4B,EAC5B,yBAAyB,EACzB,iBAAiB,EACjB,aAAa,EACb,kBAAkB,EAClB,QAAQ,EACR,aAAa,EACb,mBAAmB,EACnB,MAAM,EACN,aAAa,EACb,UAAU,EACV,SAAS,EACT,WAAW,EACX,yBAAyB,EACzB,kCAAkC,EAClC,wBAAwB,EACxB,oCAAoC,EACpC,wCAAwC,EACxC,uCAAuC,EACvC,2CAA2C,EAC3C,4BAA4B,EAC5B,+BAA+B,EAC/B,2BAA2B,EAC3B,wBAAwB,EACxB,iCAAiC,EACjC,iCAAiC,EACjC,6BAA6B,EAC7B,sCAAsC,EACtC,2CAA2C,EAC3C,8BAA8B,EAC9B,oBAAoB,EACpB,sBAAsB,EACtB,+BAA+B,EAC/B,8BAA8B,EAC9B,4BAA4B,EAC5B,6BAA6B,EAC7B,yBAAyB,EACzB,oCAAoC,EACpC,8BAA8B,EAC9B,8BAA8B,EAC9B,4BAA4B,EAC5B,2BAA2B,GAC5B,MAAM,SAAS,CAAC;AAEjB,OAAO,EACL,sBAAsB,EACtB,KAAK,qBAAqB,GAC3B,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DJUST SDK Logistic Order Module
|
|
4
|
+
* Re-exports all logistic order-related types and service.
|
|
5
|
+
*
|
|
6
|
+
* @module services/logistic-order
|
|
7
|
+
* @since 2.17.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.LogisticOrderService = exports.LogisticOrderEndpoints = void 0;
|
|
11
|
+
var endpoints_1 = require("./endpoints");
|
|
12
|
+
Object.defineProperty(exports, "LogisticOrderEndpoints", { enumerable: true, get: function () { return endpoints_1.LogisticOrderEndpoints; } });
|
|
13
|
+
var logistic_order_service_1 = require("./logistic-order.service");
|
|
14
|
+
Object.defineProperty(exports, "LogisticOrderService", { enumerable: true, get: function () { return logistic_order_service_1.LogisticOrderService; } });
|
|
15
|
+
//# sourceMappingURL=module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../../src/services/logistic-order/module.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAyFH,yCAGqB;AAFnB,mHAAA,sBAAsB,OAAA;AAGxB,mEAAgE;AAAvD,8HAAA,oBAAoB,OAAA"}
|
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DJUST SDK Logistic Order Service - Types
|
|
3
|
+
* Type definitions for logistic order operations.
|
|
4
|
+
*
|
|
5
|
+
* @module services/logistic-order/types
|
|
6
|
+
* @since 2.17.0
|
|
7
|
+
*/
|
|
8
|
+
import type { Pageable, PaginatedResponse } from "../types";
|
|
9
|
+
export type OrderLogisticStatusType = "CREATING" | "ORDER_CREATED" | "WAITING_CUSTOMER_APPROVAL" | "WAITING_PAYMENT" | "WAITING_SHIPMENT" | "SHIPPED" | "DELIVERED" | "CANCELLED" | "DRAFT_ORDER_ON_HOLD";
|
|
10
|
+
export type PaymentOption = "BANK_WIRE" | "CREDIT_CARD" | "DIRECT_PAYMENT";
|
|
11
|
+
export type IdType = "DJUST_ID" | "EXTERNAL_ID" | "REFERENCE";
|
|
12
|
+
export type UpdateAction = "ADD_QUANTITY" | "SET_QUANTITY" | "REMOVE";
|
|
13
|
+
export interface CustomFieldValueObject {
|
|
14
|
+
customFieldId: string;
|
|
15
|
+
customFieldValue?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface OrderLogisticLineUpdate {
|
|
18
|
+
id: string;
|
|
19
|
+
quantity?: number;
|
|
20
|
+
updateAction?: UpdateAction;
|
|
21
|
+
customFields?: CustomFieldValueObject[];
|
|
22
|
+
}
|
|
23
|
+
export interface GetLogisticOrdersParams {
|
|
24
|
+
locale: string;
|
|
25
|
+
approvalIds?: string[];
|
|
26
|
+
logisticStatus?: OrderLogisticStatusType[];
|
|
27
|
+
incident?: boolean;
|
|
28
|
+
paymentOptions?: PaymentOption[];
|
|
29
|
+
connectedUserOnly?: boolean;
|
|
30
|
+
nbPreviewLines?: number;
|
|
31
|
+
page?: number;
|
|
32
|
+
size?: number;
|
|
33
|
+
sort?: string;
|
|
34
|
+
suppliersIds?: string[];
|
|
35
|
+
creationDateFrom?: string;
|
|
36
|
+
creationDateTo?: string;
|
|
37
|
+
updateDateFrom?: string;
|
|
38
|
+
updateDateTo?: string;
|
|
39
|
+
}
|
|
40
|
+
export interface GetPaginatedLogisticOrdersParams {
|
|
41
|
+
locale: string;
|
|
42
|
+
page?: number;
|
|
43
|
+
size?: number;
|
|
44
|
+
sort?: string;
|
|
45
|
+
nbPreviewLines?: number;
|
|
46
|
+
accountCustomFieldValueCriteria?: CustomFieldValueObject[];
|
|
47
|
+
approvalIds?: string[];
|
|
48
|
+
connectedUserOnly?: boolean;
|
|
49
|
+
creationDateFrom?: string;
|
|
50
|
+
creationDateTo?: string;
|
|
51
|
+
customerAccountIds?: string[];
|
|
52
|
+
incident?: boolean;
|
|
53
|
+
logisticStatus?: string[];
|
|
54
|
+
offerCustomFieldValueCriteria?: CustomFieldValueObject[];
|
|
55
|
+
orderLogisticCustomFieldValueCriteria?: CustomFieldValueObject[];
|
|
56
|
+
paymentOptions?: string[];
|
|
57
|
+
supplierIds?: string[];
|
|
58
|
+
updateDateFrom?: string;
|
|
59
|
+
updateDateTo?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface GetLogisticOrderParams {
|
|
62
|
+
orderId: string;
|
|
63
|
+
locale: string;
|
|
64
|
+
nbPreviewLines?: number;
|
|
65
|
+
}
|
|
66
|
+
export interface GetLogisticOrderCustomFieldsParams {
|
|
67
|
+
customFieldIds?: string[];
|
|
68
|
+
page?: number;
|
|
69
|
+
size?: number;
|
|
70
|
+
sort?: string;
|
|
71
|
+
idType?: IdType;
|
|
72
|
+
}
|
|
73
|
+
export interface GetLogisticOrderLineCustomFieldsParams {
|
|
74
|
+
customFieldIds?: string[];
|
|
75
|
+
page?: number;
|
|
76
|
+
size?: number;
|
|
77
|
+
sort?: string;
|
|
78
|
+
idType?: IdType;
|
|
79
|
+
}
|
|
80
|
+
export interface UpdateLogisticOrderCustomFieldsParams {
|
|
81
|
+
orderId: string;
|
|
82
|
+
customFields: CustomFieldValueObject[];
|
|
83
|
+
locale?: string;
|
|
84
|
+
nbPreviewLines?: number;
|
|
85
|
+
}
|
|
86
|
+
/** Params for PATCH order with body { customFieldValueRequest, externalId? }. */
|
|
87
|
+
export interface UpdateLogisticOrderDataParams {
|
|
88
|
+
orderId: string;
|
|
89
|
+
/** Defaults to [] when omitted (e.g. when only updating externalId). */
|
|
90
|
+
customFields?: CustomFieldValueObject[];
|
|
91
|
+
locale?: string;
|
|
92
|
+
nbPreviewLines?: number;
|
|
93
|
+
externalId?: string;
|
|
94
|
+
}
|
|
95
|
+
export interface GetLogisticOrderAccountingDocumentsParams {
|
|
96
|
+
orderId: string;
|
|
97
|
+
}
|
|
98
|
+
export interface GetLogisticOrderDocumentUrlParams {
|
|
99
|
+
orderId: string;
|
|
100
|
+
documentId: string;
|
|
101
|
+
}
|
|
102
|
+
export interface ApproveLogisticOrderParams {
|
|
103
|
+
orderId: string;
|
|
104
|
+
locale: string;
|
|
105
|
+
nbPreviewLines?: number;
|
|
106
|
+
}
|
|
107
|
+
export interface DisapproveLogisticOrderParams {
|
|
108
|
+
orderId: string;
|
|
109
|
+
locale: string;
|
|
110
|
+
nbPreviewLines?: number;
|
|
111
|
+
}
|
|
112
|
+
export interface CancelLogisticOrderParams {
|
|
113
|
+
orderId: string;
|
|
114
|
+
locale: string;
|
|
115
|
+
nbPreviewLines?: number;
|
|
116
|
+
}
|
|
117
|
+
export interface ConfirmReceptionParams {
|
|
118
|
+
orderId: string;
|
|
119
|
+
locale: string;
|
|
120
|
+
nbPreviewLines?: number;
|
|
121
|
+
}
|
|
122
|
+
export interface CreateLogisticOrderParams {
|
|
123
|
+
orderId: string;
|
|
124
|
+
}
|
|
125
|
+
export interface GetLogisticOrderApproversParams {
|
|
126
|
+
orderId: string;
|
|
127
|
+
}
|
|
128
|
+
export interface UpdateBillingInformationParams {
|
|
129
|
+
orderId: string;
|
|
130
|
+
billingAddressId: string;
|
|
131
|
+
}
|
|
132
|
+
export interface GetLogisticOrderDocumentsParams {
|
|
133
|
+
orderId: string;
|
|
134
|
+
idType?: IdType;
|
|
135
|
+
}
|
|
136
|
+
export interface GetLogisticOrderLinesParams {
|
|
137
|
+
orderId: string;
|
|
138
|
+
page?: number;
|
|
139
|
+
size?: number;
|
|
140
|
+
sort?: string;
|
|
141
|
+
locale?: string;
|
|
142
|
+
}
|
|
143
|
+
export interface UpdateOnHoldLogisticOrderLinesParams {
|
|
144
|
+
orderId: string;
|
|
145
|
+
lines: OrderLogisticLineUpdate[];
|
|
146
|
+
}
|
|
147
|
+
export interface UpdateLogisticOrderLineCustomFieldsParams {
|
|
148
|
+
orderId: string;
|
|
149
|
+
lineId: string;
|
|
150
|
+
customFields: CustomFieldValueObject[];
|
|
151
|
+
locale?: string;
|
|
152
|
+
}
|
|
153
|
+
export interface UpdateOnHoldLogisticOrderLineParams {
|
|
154
|
+
orderId: string;
|
|
155
|
+
orderLineId: string;
|
|
156
|
+
quantity: number;
|
|
157
|
+
}
|
|
158
|
+
export interface UpdateShippingAddressParams {
|
|
159
|
+
orderId: string;
|
|
160
|
+
shippingAddressId: string;
|
|
161
|
+
}
|
|
162
|
+
export interface GetShippingInformationParams {
|
|
163
|
+
orderId: string;
|
|
164
|
+
}
|
|
165
|
+
export interface UpdateShippingInformationParams {
|
|
166
|
+
orderId: string;
|
|
167
|
+
shippingAddressId: string;
|
|
168
|
+
shippingType: string;
|
|
169
|
+
}
|
|
170
|
+
export interface UpdateShippingTypeParams {
|
|
171
|
+
orderId: string;
|
|
172
|
+
shippingType: string;
|
|
173
|
+
}
|
|
174
|
+
export interface CreateThreadParams {
|
|
175
|
+
orderId: string;
|
|
176
|
+
lineId?: string;
|
|
177
|
+
message?: string;
|
|
178
|
+
reasonCode?: string;
|
|
179
|
+
}
|
|
180
|
+
export interface CreateThreadV2Params {
|
|
181
|
+
logisticOrderId: string;
|
|
182
|
+
reasonCode: string;
|
|
183
|
+
idType?: IdType;
|
|
184
|
+
message?: string;
|
|
185
|
+
name?: string;
|
|
186
|
+
}
|
|
187
|
+
export interface GetLogisticOrderThreadsParams {
|
|
188
|
+
logisticOrderId: string;
|
|
189
|
+
pageable?: Pageable;
|
|
190
|
+
idType?: IdType;
|
|
191
|
+
}
|
|
192
|
+
export interface GetLogisticOrderThreadParams {
|
|
193
|
+
logisticOrderId: string;
|
|
194
|
+
threadId: string;
|
|
195
|
+
idType?: IdType;
|
|
196
|
+
}
|
|
197
|
+
export interface CreateThreadMessagesParams {
|
|
198
|
+
logisticOrderId: string;
|
|
199
|
+
threadId: string;
|
|
200
|
+
body?: string;
|
|
201
|
+
customField?: {
|
|
202
|
+
customFieldValues: CustomFieldValueObject[];
|
|
203
|
+
idType?: IdType;
|
|
204
|
+
};
|
|
205
|
+
idType?: IdType;
|
|
206
|
+
}
|
|
207
|
+
export interface UpdateThreadMessageParams {
|
|
208
|
+
logisticOrderId: string;
|
|
209
|
+
threadId: string;
|
|
210
|
+
messageId: string;
|
|
211
|
+
customFieldValues?: CustomFieldValueObject[];
|
|
212
|
+
idType?: IdType;
|
|
213
|
+
}
|
|
214
|
+
export interface CreateIncidentThreadsParams {
|
|
215
|
+
logisticOrderId: string;
|
|
216
|
+
incidentId: string;
|
|
217
|
+
reasonCode: string;
|
|
218
|
+
customField?: {
|
|
219
|
+
customFieldValues: CustomFieldValueObject[];
|
|
220
|
+
idType?: IdType;
|
|
221
|
+
};
|
|
222
|
+
message?: string;
|
|
223
|
+
name?: string;
|
|
224
|
+
idType?: IdType;
|
|
225
|
+
}
|
|
226
|
+
export interface GetIncidentThreadParams {
|
|
227
|
+
logisticOrderId: string;
|
|
228
|
+
incidentId: string;
|
|
229
|
+
threadId: string;
|
|
230
|
+
idType?: IdType;
|
|
231
|
+
}
|
|
232
|
+
export interface CreateIncidentThreadMessagesParams {
|
|
233
|
+
logisticOrderId: string;
|
|
234
|
+
incidentId: string;
|
|
235
|
+
threadId: string;
|
|
236
|
+
body?: string;
|
|
237
|
+
customField?: {
|
|
238
|
+
customFieldValues: CustomFieldValueObject[];
|
|
239
|
+
idType?: IdType;
|
|
240
|
+
};
|
|
241
|
+
idType?: IdType;
|
|
242
|
+
}
|
|
243
|
+
export interface UpdateIncidentThreadMessageParams {
|
|
244
|
+
logisticOrderId: string;
|
|
245
|
+
incidentId: string;
|
|
246
|
+
threadId: string;
|
|
247
|
+
messageId: string;
|
|
248
|
+
customFieldValues?: CustomFieldValueObject[];
|
|
249
|
+
idType?: IdType;
|
|
250
|
+
}
|
|
251
|
+
export interface GetLogisticOrderReviewParams {
|
|
252
|
+
orderId: string;
|
|
253
|
+
}
|
|
254
|
+
export interface AddLogisticOrderReviewParams {
|
|
255
|
+
orderId: string;
|
|
256
|
+
comment: string;
|
|
257
|
+
grade: number;
|
|
258
|
+
}
|
|
259
|
+
export interface GetThreadSubReasonsParams {
|
|
260
|
+
reasonType: string;
|
|
261
|
+
}
|
|
262
|
+
export interface LogisticOrderLine {
|
|
263
|
+
id: string;
|
|
264
|
+
productVariantId: string;
|
|
265
|
+
quantity: number;
|
|
266
|
+
confirmedQuantity?: number;
|
|
267
|
+
unitPrice: number;
|
|
268
|
+
totalPrice: number;
|
|
269
|
+
productName?: string;
|
|
270
|
+
sku?: string;
|
|
271
|
+
supplierId?: string;
|
|
272
|
+
customFieldValues?: CustomFieldValueObject[];
|
|
273
|
+
}
|
|
274
|
+
export interface LogisticOrder {
|
|
275
|
+
id: string;
|
|
276
|
+
businessId: string;
|
|
277
|
+
reference?: string;
|
|
278
|
+
status: OrderLogisticStatusType;
|
|
279
|
+
lines: LogisticOrderLine[];
|
|
280
|
+
totalPrice: number;
|
|
281
|
+
currency: string;
|
|
282
|
+
billingAddressId?: string;
|
|
283
|
+
shippingAddressId?: string;
|
|
284
|
+
supplierId?: string;
|
|
285
|
+
supplierName?: string;
|
|
286
|
+
customFieldValues: CustomFieldValueObject[];
|
|
287
|
+
createdAt: string;
|
|
288
|
+
updatedAt: string;
|
|
289
|
+
}
|
|
290
|
+
export interface AccountingDocument {
|
|
291
|
+
id: string;
|
|
292
|
+
type: string;
|
|
293
|
+
name: string;
|
|
294
|
+
url?: string;
|
|
295
|
+
}
|
|
296
|
+
export interface Approver {
|
|
297
|
+
userId: string;
|
|
298
|
+
userName: string;
|
|
299
|
+
status: string;
|
|
300
|
+
}
|
|
301
|
+
export interface OrderDocument {
|
|
302
|
+
id: string;
|
|
303
|
+
type: string;
|
|
304
|
+
name: string;
|
|
305
|
+
}
|
|
306
|
+
export interface ShippingInformation {
|
|
307
|
+
shippingAddressId: string;
|
|
308
|
+
shippingType: string;
|
|
309
|
+
trackingNumber?: string;
|
|
310
|
+
trackingUrl?: string;
|
|
311
|
+
}
|
|
312
|
+
export interface Thread {
|
|
313
|
+
id: string;
|
|
314
|
+
name?: string;
|
|
315
|
+
reasonCode: string;
|
|
316
|
+
status: string;
|
|
317
|
+
messages: ThreadMessage[];
|
|
318
|
+
createdAt: string;
|
|
319
|
+
}
|
|
320
|
+
export interface ThreadMessage {
|
|
321
|
+
id: string;
|
|
322
|
+
body: string;
|
|
323
|
+
author: string;
|
|
324
|
+
createdAt: string;
|
|
325
|
+
customFieldValues?: CustomFieldValueObject[];
|
|
326
|
+
}
|
|
327
|
+
export interface ReasonType {
|
|
328
|
+
code: string;
|
|
329
|
+
label: string;
|
|
330
|
+
}
|
|
331
|
+
export interface SubReason {
|
|
332
|
+
code: string;
|
|
333
|
+
label: string;
|
|
334
|
+
parentCode: string;
|
|
335
|
+
}
|
|
336
|
+
export interface OrderReview {
|
|
337
|
+
id: string;
|
|
338
|
+
orderId: string;
|
|
339
|
+
comment: string;
|
|
340
|
+
grade: number;
|
|
341
|
+
createdAt: string;
|
|
342
|
+
}
|
|
343
|
+
export interface GetLogisticOrdersResponse extends PaginatedResponse<LogisticOrder> {
|
|
344
|
+
}
|
|
345
|
+
export interface GetPaginatedLogisticOrdersResponse extends PaginatedResponse<LogisticOrder> {
|
|
346
|
+
}
|
|
347
|
+
export interface GetLogisticOrderResponse extends LogisticOrder {
|
|
348
|
+
}
|
|
349
|
+
export interface GetLogisticOrderCustomFieldsResponse extends PaginatedResponse<CustomFieldValueObject> {
|
|
350
|
+
}
|
|
351
|
+
export interface GetLogisticOrderLineCustomFieldsResponse extends PaginatedResponse<CustomFieldValueObject> {
|
|
352
|
+
}
|
|
353
|
+
export interface UpdateLogisticOrderCustomFieldsResponse extends LogisticOrder {
|
|
354
|
+
}
|
|
355
|
+
export interface GetLogisticOrderAccountingDocumentsResponse {
|
|
356
|
+
documents: AccountingDocument[];
|
|
357
|
+
}
|
|
358
|
+
export interface ApproveLogisticOrderResponse extends LogisticOrder {
|
|
359
|
+
}
|
|
360
|
+
export interface DisapproveLogisticOrderResponse extends LogisticOrder {
|
|
361
|
+
}
|
|
362
|
+
export interface CancelLogisticOrderResponse extends LogisticOrder {
|
|
363
|
+
}
|
|
364
|
+
export interface ConfirmReceptionResponse extends LogisticOrder {
|
|
365
|
+
}
|
|
366
|
+
export interface GetLogisticOrderApproversResponse {
|
|
367
|
+
approvers: Approver[];
|
|
368
|
+
}
|
|
369
|
+
export interface GetLogisticOrderDocumentsResponse {
|
|
370
|
+
documents: OrderDocument[];
|
|
371
|
+
}
|
|
372
|
+
export interface GetLogisticOrderLinesResponse extends PaginatedResponse<LogisticOrderLine> {
|
|
373
|
+
}
|
|
374
|
+
export interface UpdateOnHoldLogisticOrderLinesResponse {
|
|
375
|
+
errors?: Array<{
|
|
376
|
+
lineId: string;
|
|
377
|
+
error: string;
|
|
378
|
+
}>;
|
|
379
|
+
}
|
|
380
|
+
export interface UpdateLogisticOrderLineCustomFieldsResponse extends LogisticOrderLine {
|
|
381
|
+
}
|
|
382
|
+
export interface GetShippingInformationResponse {
|
|
383
|
+
shippingInformation: ShippingInformation[];
|
|
384
|
+
}
|
|
385
|
+
export interface CreateThreadResponse extends Thread {
|
|
386
|
+
}
|
|
387
|
+
export interface CreateThreadV2Response extends Thread {
|
|
388
|
+
}
|
|
389
|
+
export interface GetLogisticOrderThreadsResponse extends PaginatedResponse<Thread> {
|
|
390
|
+
}
|
|
391
|
+
export interface GetLogisticOrderThreadResponse extends Thread {
|
|
392
|
+
}
|
|
393
|
+
export interface CreateThreadMessagesResponse extends ThreadMessage {
|
|
394
|
+
}
|
|
395
|
+
export interface CreateIncidentThreadsResponse extends Thread {
|
|
396
|
+
}
|
|
397
|
+
export interface GetIncidentThreadResponse extends Thread {
|
|
398
|
+
}
|
|
399
|
+
export interface CreateIncidentThreadMessagesResponse extends ThreadMessage {
|
|
400
|
+
}
|
|
401
|
+
export interface GetLogisticOrderReviewResponse extends OrderReview {
|
|
402
|
+
}
|
|
403
|
+
export interface AddLogisticOrderReviewResponse extends OrderReview {
|
|
404
|
+
}
|
|
405
|
+
export interface GetThreadReasonTypesResponse {
|
|
406
|
+
reasonTypes: ReasonType[];
|
|
407
|
+
}
|
|
408
|
+
export interface GetThreadSubReasonsResponse {
|
|
409
|
+
subReasons: SubReason[];
|
|
410
|
+
}
|
|
411
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/services/logistic-order/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DJUST SDK Logistic Order Service - Types
|
|
4
|
+
* Type definitions for logistic order operations.
|
|
5
|
+
*
|
|
6
|
+
* @module services/logistic-order/types
|
|
7
|
+
* @since 2.17.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/services/logistic-order/types.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DJUST SDK Services Module
|
|
3
|
+
* Main entry point for all SDK services.
|
|
4
|
+
*
|
|
5
|
+
* Architecture:
|
|
6
|
+
* - types.ts - Shared service types (Pageable, etc.)
|
|
7
|
+
* - base.service.ts - Abstract base service class
|
|
8
|
+
* - factory.ts - Service factory
|
|
9
|
+
* - auth/ - Authentication service
|
|
10
|
+
* - cart/ - Shopping cart service
|
|
11
|
+
* - product/ - Product catalog service
|
|
12
|
+
* - quote/ - Quote management service
|
|
13
|
+
* - commercial-order/ - Commercial order service
|
|
14
|
+
* - logistic-order/ - Logistic order service
|
|
15
|
+
* - customer-account/ - Customer account service
|
|
16
|
+
* - customer-user/ - Customer user service
|
|
17
|
+
* - supplier/ - Supplier service
|
|
18
|
+
* - payment/ - Payment service
|
|
19
|
+
* - navigation-category/ - Navigation category service
|
|
20
|
+
* - operation/ - Operation management service
|
|
21
|
+
*
|
|
22
|
+
* @module services
|
|
23
|
+
* @since 2.17.0
|
|
24
|
+
*/
|
|
25
|
+
export type { Pageable, PaginatedResponse, ProductIdType, IdentifierParam, ServiceContext, ServiceOptions, } from "./types";
|
|
26
|
+
export { BaseService } from "./base.service";
|
|
27
|
+
export { createServices, createService, type SDKServices } from "./factory";
|
|
28
|
+
export { AuthService, AuthEndpoints, type AuthEndpoint } from "./auth/module";
|
|
29
|
+
export type { IsTokenValidParams, RefreshTokenParams, ResetPasswordParams, SendResetPasswordEmailParams, LoginParams, GetStoreParams, RefreshTokenResponse, LoginResponse, SettingsResponse, StoreLocale, CustomField, CustomFieldValue, Store, } from "./auth/module";
|
|
30
|
+
export { CartService, CartEndpoints, type CartEndpoint } from "./cart/module";
|
|
31
|
+
export type { CartStatus, CartType, UpdateAction, GetCartsParams, CreateCartParams, DeleteCartParams, GetCartParams, UpdateCartParams, InitializeOrdersParams, GetCartLinesParams, CartLineToAdd, CartLineToAddByVariant, UpdateCartLinesParams, UpdateCartLinesByVariantParams, OfferToDelete, DeleteCartLinesParams, CartLine, CartSummary, Cart, GetCartsResponse, CreateCartResponse, GetCartResponse, DeleteCartsResponse, GetCartLinesResponse, UpdateCartLinesResponse, UpdateCartLinesByVariantResponse, DeleteCartLinesResponse, } from "./cart/module";
|
|
32
|
+
export { ProductService, ProductEndpoints, type ProductEndpoint, } from "./product/module";
|
|
33
|
+
export type { AutoCompleteSearchParams, GetProductsListParams, GetProductParams, GetProductVariantOffersParams, GetProductVariantSuppliersParams, GetProductOffersParams, GetProductPaginatedOffersParams, GetRelatedProductsParams, GetProductReviewsParams, GetProductStatReviewsParams, GetProductVariantAttributesParams, CreateProductReviewParams, UpdateProductReviewParams, ProductImage, ProductAttribute, ProductOffer, ProductVariant, ProductSummary, Product, Supplier, ProductReview, ReviewStatistics, SearchAggregation, SearchProductsResponse, GetProductsListResponse, GetProductVariantOffersResponse, GetProductVariantSuppliersResponse, GetProductOffersResponse, GetProductPaginatedOffersResponse, GetRelatedProductsResponse, GetProductReviewsResponse, GetProductStatReviewsResponse, GetProductVariantAttributesResponse, CreateProductReviewResponse, UpdateProductReviewResponse, } from "./product/module";
|
|
34
|
+
export { QuoteService, QuoteEndpoints, type QuoteEndpoint, } from "./quote/module";
|
|
35
|
+
export type { QuoteStatus, GetMasterQuotesParams, CreateMasterQuoteParams, GetMasterQuoteParams, DeleteMasterQuoteParams, CreateSupplierQuotesParams, GetSupplierQuoteParams, AcceptSupplierQuoteParams, DeclineSupplierQuoteParams, GetMasterQuotesResponse, CreateMasterQuoteResponse, GetMasterQuoteResponse, CreateSupplierQuotesResponse, GetSupplierQuoteResponse, } from "./quote/module";
|
|
36
|
+
export { CommercialOrderService, CommercialOrderEndpoints, type CommercialOrderEndpoint, } from "./commercial-order/module";
|
|
37
|
+
export type { OrderOrigin, GetCommercialOrdersParams, CreateCommercialOrderParams, CreateCommercialOrderV2Params, GetCommercialOrderParams, DeleteCommercialOrderParams, GetCommercialOrderLinesParams, UpdateShippingAddressParams, GetCommercialOrdersResponse, CreateCommercialOrderResponse, GetCommercialOrderResponse, GetCommercialOrderLinesResponse, } from "./commercial-order/module";
|
|
38
|
+
export { LogisticOrderService, LogisticOrderEndpoints, type LogisticOrderEndpoint, } from "./logistic-order/module";
|
|
39
|
+
export type { OrderLogisticStatusType, GetLogisticOrdersParams, GetPaginatedLogisticOrdersParams, GetLogisticOrderParams, ApproveLogisticOrderParams, CancelLogisticOrderParams, GetLogisticOrderLinesParams, GetLogisticOrderThreadsParams, GetLogisticOrderThreadParams, GetLogisticOrderReviewParams, GetLogisticOrdersResponse, GetPaginatedLogisticOrdersResponse, GetLogisticOrderResponse, GetLogisticOrderLinesResponse, GetLogisticOrderThreadsResponse, GetLogisticOrderThreadResponse, } from "./logistic-order/module";
|
|
40
|
+
export { CustomerAccountService, CustomerAccountEndpoints, type CustomerAccountEndpoint, } from "./customer-account/module";
|
|
41
|
+
export type { Civility as CustomerAccountCivility, CreateCustomerAccountParams, GetCustomerAccountParams, UpdateCustomerAccountParams, GetCustomerAccountAddressesParams, CreateCustomerAccountAddressParams, UpdateCustomerAccountAddressParams, DeleteCustomerAccountAddressParams, GetCustomerAccountOrdersParams, GetCustomerAccountUsersParams, CreateOrganisationParams, GetOrganisationUsersParams, GetCustomerAccountResponse, GetCustomerAccountAddressesResponse, CreateCustomerAccountAddressResponse, GetCustomerAccountOrdersResponse, GetCustomerAccountUsersResponse, CreateOrganisationResponse, GetOrganisationUsersResponse, } from "./customer-account/module";
|
|
42
|
+
export { CustomerUserService, CustomerUserEndpoints, type CustomerUserEndpoint, } from "./customer-user/module";
|
|
43
|
+
export type { Civility as CustomerUserCivility, UserStatus, CreateCustomerUserParams, UpdateCustomerUserParams, ActivateCustomerUserParams, GetCustomerUserAddressesParams, SendActivationRequestParams, UpdateSpecificCustomerUserParams, RemoveAccountsFromUserParams, AddUserToAccountsParams, AuthenticatedUser, UserAddress, UserOrganisation, GetAuthenticatedUserResponse, CreateCustomerUserResponse, UpdateCustomerUserResponse, GetCustomerUserAddressesResponse, GetCustomerUserOrganisationsResponse, } from "./customer-user/module";
|
|
44
|
+
export { SupplierService, SupplierEndpoints, type SupplierEndpoint, } from "./supplier/module";
|
|
45
|
+
export type { SupplierStatus, GetSuppliersParams, GetSupplierParams, GetSupplierEvaluationsParams, Supplier as SupplierDetails, SupplierEvaluation, GetSuppliersResponse, GetSupplierResponse, GetSupplierEvaluationsResponse, } from "./supplier/module";
|
|
46
|
+
export { PaymentService, PaymentEndpoints, type PaymentEndpoint, } from "./payment/module";
|
|
47
|
+
export type { BrowserInfo, PaymentMethodData, InitPaymentParams, GetPaymentDetailsParams, GetPaymentMethodsParams, DeleteStoredPaymentMethodParams, PrecheckPurchaseCardL3Params, PaymentAction, InitPaymentResponse, GetPaymentDetailsResponse, PaymentMethod, StoredPaymentMethod, GetPaymentMethodsResponse, PrecheckPurchaseCardL3Response, } from "./payment/module";
|
|
48
|
+
export { NavigationCategoryService, NavigationCategoryEndpoints, type NavigationCategoryEndpoint, } from "./navigation-category/module";
|
|
49
|
+
export type { IdType as NavigationCategoryIdType, GetNavigationCategoriesParams, GetNavigationCategoryParams, GetNavigationCategoryBreadcrumbsParams, GetNavigationCategoryByOptionsParams, NavigationCategory, NavigationCategoryBreadcrumb, GetNavigationCategoriesResponse, GetNavigationCategoryResponse, GetNavigationCategoryBreadcrumbsResponse, } from "./navigation-category/module";
|
|
50
|
+
export { OperationService, OperationEndpoints, type OperationEndpoint, } from "./operation/module";
|
|
51
|
+
export type { OperationType, OperationStatus, IdType as OperationIdType, CustomFieldValueRequest as OperationCustomFieldValueRequest, OperationLineRequest, GetShopOperationsParams, GetOperationsParams, GetShopOperationParams, GetOperationParams, CreateOperationParams, UpdateOperationParams, UpdateOperationDetailsParams, DeleteOperationParams, GetOperationAccountsParams, AddOperationAccountsParams, RemoveOperationAccountsParams, GetShopOperationLinesParams, GetOperationLinesParams, AddOperationLinesParams, RemoveOperationLinesParams, Operation, OperationAccount, OperationLine, GetShopOperationsResponse, GetOperationsResponse, GetShopOperationResponse, GetOperationResponse, CreateOperationResponse, UpdateOperationDetailsResponse, GetOperationAccountsResponse, GetShopOperationLinesResponse, GetOperationLinesResponse, } from "./operation/module";
|
|
52
|
+
export { AttributesService, AttributesEndpoints, type AttributesEndpoint, } from "./attributes/module";
|
|
53
|
+
export type { GetAttributesParams, Attribute, AttributeValue, GetAttributesResponse, } from "./attributes/module";
|
|
54
|
+
export { IncidentService, IncidentEndpoints, type IncidentEndpoint, } from "./incident/module";
|
|
55
|
+
export type { IncidentStatus, IncidentLinkedType, IncidentIdType, CustomFieldValueRequest as IncidentCustomFieldValueRequest, CustomFieldRequest as IncidentCustomFieldRequest, OrderLineIncident, GetIncidentsParams, GetIncidentsV2Params, GetIncidentParams, CreateIncidentParams, CreateOrderLogisticIncidentParams, CreateOrderLogisticLineIncidentParams, CreateOrderLogisticIncidentThreadParams, Incident, IncidentThread, GetIncidentsResponse, GetIncidentResponse, CreateIncidentResponse, CreateOrderLogisticIncidentResponse, CreateOrderLogisticLineIncidentResponse, CreateOrderLogisticIncidentThreadResponse, } from "./incident/module";
|
|
56
|
+
export { OfferInventoriesService, OfferInventoriesEndpoints, type OfferInventoriesEndpoint, } from "./offer-inventories/module";
|
|
57
|
+
export type { OfferInventoryStatus, ProductStatus as OfferInventoryProductStatus, VariantStatus as OfferInventoryVariantStatus, OfferPriceStatus as OfferInventoryPriceStatus, IdType as OfferInventoryIdType, GetPaginatedOfferInventoriesParams, GetPaginatedOfferInventoriesV2Params, GetOfferInventoryCustomFieldsParams, OfferInventory, OfferInventoryV2, CustomFieldValue as OfferInventoryCustomFieldValue, GetOfferInventoriesResponse, GetOfferInventoriesV2Response, GetOfferInventoryCustomFieldsResponse, } from "./offer-inventories/module";
|
|
58
|
+
export { OfferPricesService, OfferPricesEndpoints, type OfferPricesEndpoint, } from "./offer-prices/module";
|
|
59
|
+
export type { GetPaginatedOfferPricesParams, OfferPrice, GetOfferPricesResponse, } from "./offer-prices/module";
|
|
60
|
+
export { ProductVariantService, ProductVariantEndpoints, type ProductVariantEndpoint, } from "./product-variant/module";
|
|
61
|
+
export type { ProductIdType as ProductVariantIdType, GetProductVariantsListParams, GetProductVariantParams, GetProductVariantSuppliersParams as GetVariantSuppliersParams, GetProductVariantAttributesParams as GetVariantAttributesParams, ProductVariant as ProductVariantDetails, ProductVariantAttribute, ProductVariantImage, ProductVariantPrice, ProductVariantSupplier, GetProductVariantsListResponse, GetProductVariantResponse, GetProductVariantSuppliersResponse as GetVariantSuppliersResponse, GetProductVariantAttributesResponse as GetVariantAttributesResponse, } from "./product-variant/module";
|
|
62
|
+
export { CustomFieldService, CustomFieldEndpoints, type CustomFieldEndpoint, } from "./custom-field/module";
|
|
63
|
+
export type { CustomFieldIdType, CustomFieldType, GetCustomFieldsParams, PostMediaCustomFieldParams, GetMediaUrlParams, CustomField as CustomFieldDefinition, CustomFieldOption, GetCustomFieldsResponse, } from "./custom-field/module";
|
|
64
|
+
//# sourceMappingURL=module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/services/module.ts"],"names":[],"mappings":"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"}
|