@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 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/services/customer-user/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DJUST SDK Customer User Service - Types
|
|
4
|
+
* Type definitions for customer user operations.
|
|
5
|
+
*
|
|
6
|
+
* @module services/customer-user/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/customer-user/types.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DJUST SDK Service Factory
|
|
3
|
+
* Factory for creating service instances.
|
|
4
|
+
*
|
|
5
|
+
* @module services/factory
|
|
6
|
+
* @since 2.17.0
|
|
7
|
+
*/
|
|
8
|
+
import type { Transport } from "../client/transport";
|
|
9
|
+
import { AuthService } from "./auth/auth.service";
|
|
10
|
+
import { CartService } from "./cart/cart.service";
|
|
11
|
+
import { ProductService } from "./product/product.service";
|
|
12
|
+
import { QuoteService } from "./quote/quote.service";
|
|
13
|
+
import { CommercialOrderService } from "./commercial-order/commercial-order.service";
|
|
14
|
+
import { LogisticOrderService } from "./logistic-order/logistic-order.service";
|
|
15
|
+
import { CustomerAccountService } from "./customer-account/customer-account.service";
|
|
16
|
+
import { CustomerUserService } from "./customer-user/customer-user.service";
|
|
17
|
+
import { SupplierService } from "./supplier/supplier.service";
|
|
18
|
+
import { PaymentService } from "./payment/payment.service";
|
|
19
|
+
import { NavigationCategoryService } from "./navigation-category/navigation-category.service";
|
|
20
|
+
import { OperationService } from "./operation/operation.service";
|
|
21
|
+
import { AttributesService } from "./attributes/attributes.service";
|
|
22
|
+
import { IncidentService } from "./incident/incident.service";
|
|
23
|
+
import { OfferInventoriesService } from "./offer-inventories/offer-inventories.service";
|
|
24
|
+
import { OfferPricesService } from "./offer-prices/offer-prices.service";
|
|
25
|
+
import { ProductVariantService } from "./product-variant/product-variant.service";
|
|
26
|
+
import { CustomFieldService } from "./custom-field/custom-field.service";
|
|
27
|
+
/**
|
|
28
|
+
* All available SDK services.
|
|
29
|
+
*/
|
|
30
|
+
export interface SDKServices {
|
|
31
|
+
/** Authentication service */
|
|
32
|
+
auth: AuthService;
|
|
33
|
+
/** Shopping cart service */
|
|
34
|
+
cart: CartService;
|
|
35
|
+
/** Product catalog service */
|
|
36
|
+
product: ProductService;
|
|
37
|
+
/** Quote management service */
|
|
38
|
+
quote: QuoteService;
|
|
39
|
+
/** Commercial order service */
|
|
40
|
+
commercialOrder: CommercialOrderService;
|
|
41
|
+
/** Logistic order service */
|
|
42
|
+
logisticOrder: LogisticOrderService;
|
|
43
|
+
/** Customer account service */
|
|
44
|
+
customerAccount: CustomerAccountService;
|
|
45
|
+
/** Customer user service */
|
|
46
|
+
customerUser: CustomerUserService;
|
|
47
|
+
/** Supplier service */
|
|
48
|
+
supplier: SupplierService;
|
|
49
|
+
/** Payment service */
|
|
50
|
+
payment: PaymentService;
|
|
51
|
+
/** Navigation category service */
|
|
52
|
+
navigationCategory: NavigationCategoryService;
|
|
53
|
+
/** Operation management service */
|
|
54
|
+
operation: OperationService;
|
|
55
|
+
/** Attributes service */
|
|
56
|
+
attributes: AttributesService;
|
|
57
|
+
/** Incident service */
|
|
58
|
+
incident: IncidentService;
|
|
59
|
+
/** Offer inventories service */
|
|
60
|
+
offerInventories: OfferInventoriesService;
|
|
61
|
+
/** Offer prices service */
|
|
62
|
+
offerPrices: OfferPricesService;
|
|
63
|
+
/** Product variant service */
|
|
64
|
+
productVariant: ProductVariantService;
|
|
65
|
+
/** Custom field service */
|
|
66
|
+
customField: CustomFieldService;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Creates all SDK service instances.
|
|
70
|
+
*
|
|
71
|
+
* This factory creates instances of all services using the provided
|
|
72
|
+
* transport layer, ensuring consistent configuration across all services.
|
|
73
|
+
*
|
|
74
|
+
* @param transport - The transport instance to use for HTTP requests
|
|
75
|
+
* @returns Object containing all service instances
|
|
76
|
+
*
|
|
77
|
+
* @example
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import { createDjustClient } from '@djust-b2b/djust-front-sdk';
|
|
80
|
+
* import { createServices } from '@djust-b2b/djust-front-sdk/services';
|
|
81
|
+
*
|
|
82
|
+
* const client = createDjustClient({ baseUrl, clientId, apiKey });
|
|
83
|
+
* const services = createServices(client.transport);
|
|
84
|
+
*
|
|
85
|
+
* // Use services
|
|
86
|
+
* const cart = await services.cart.getCart({ cartId: '123', currency: 'USD' });
|
|
87
|
+
* const orders = await services.commercialOrder.getCommercialOrders({ locale: 'fr-FR' });
|
|
88
|
+
* ```
|
|
89
|
+
*/
|
|
90
|
+
export declare function createServices(transport: Transport): SDKServices;
|
|
91
|
+
/**
|
|
92
|
+
* Creates a single service instance.
|
|
93
|
+
*
|
|
94
|
+
* Use this when you only need one specific service to reduce bundle size.
|
|
95
|
+
*
|
|
96
|
+
* @example
|
|
97
|
+
* ```typescript
|
|
98
|
+
* import { createService, CartService } from '@djust-b2b/djust-front-sdk/services';
|
|
99
|
+
*
|
|
100
|
+
* const cartService = createService(CartService, transport);
|
|
101
|
+
* ```
|
|
102
|
+
*/
|
|
103
|
+
export declare function createService<T>(ServiceClass: new (transport: Transport) => T, transport: Transport): T;
|
|
104
|
+
//# sourceMappingURL=factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"factory.d.ts","sourceRoot":"","sources":["../../src/services/factory.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AACrF,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAC/E,OAAO,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AACrF,OAAO,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;AAC5E,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,mDAAmD,CAAC;AAC9F,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;AACxF,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AACzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAEzE;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,6BAA6B;IAC7B,IAAI,EAAE,WAAW,CAAC;IAClB,4BAA4B;IAC5B,IAAI,EAAE,WAAW,CAAC;IAClB,8BAA8B;IAC9B,OAAO,EAAE,cAAc,CAAC;IACxB,+BAA+B;IAC/B,KAAK,EAAE,YAAY,CAAC;IACpB,+BAA+B;IAC/B,eAAe,EAAE,sBAAsB,CAAC;IACxC,6BAA6B;IAC7B,aAAa,EAAE,oBAAoB,CAAC;IACpC,+BAA+B;IAC/B,eAAe,EAAE,sBAAsB,CAAC;IACxC,4BAA4B;IAC5B,YAAY,EAAE,mBAAmB,CAAC;IAClC,uBAAuB;IACvB,QAAQ,EAAE,eAAe,CAAC;IAC1B,sBAAsB;IACtB,OAAO,EAAE,cAAc,CAAC;IACxB,kCAAkC;IAClC,kBAAkB,EAAE,yBAAyB,CAAC;IAC9C,mCAAmC;IACnC,SAAS,EAAE,gBAAgB,CAAC;IAC5B,yBAAyB;IACzB,UAAU,EAAE,iBAAiB,CAAC;IAC9B,uBAAuB;IACvB,QAAQ,EAAE,eAAe,CAAC;IAC1B,gCAAgC;IAChC,gBAAgB,EAAE,uBAAuB,CAAC;IAC1C,2BAA2B;IAC3B,WAAW,EAAE,kBAAkB,CAAC;IAChC,8BAA8B;IAC9B,cAAc,EAAE,qBAAqB,CAAC;IACtC,2BAA2B;IAC3B,WAAW,EAAE,kBAAkB,CAAC;CACjC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,cAAc,CAAC,SAAS,EAAE,SAAS,GAAG,WAAW,CAqBhE;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,aAAa,CAAC,CAAC,EAC7B,YAAY,EAAE,KAAK,SAAS,EAAE,SAAS,KAAK,CAAC,EAC7C,SAAS,EAAE,SAAS,GACnB,CAAC,CAEH"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DJUST SDK Service Factory
|
|
4
|
+
* Factory for creating service instances.
|
|
5
|
+
*
|
|
6
|
+
* @module services/factory
|
|
7
|
+
* @since 2.17.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.createServices = createServices;
|
|
11
|
+
exports.createService = createService;
|
|
12
|
+
const auth_service_1 = require("./auth/auth.service");
|
|
13
|
+
const cart_service_1 = require("./cart/cart.service");
|
|
14
|
+
const product_service_1 = require("./product/product.service");
|
|
15
|
+
const quote_service_1 = require("./quote/quote.service");
|
|
16
|
+
const commercial_order_service_1 = require("./commercial-order/commercial-order.service");
|
|
17
|
+
const logistic_order_service_1 = require("./logistic-order/logistic-order.service");
|
|
18
|
+
const customer_account_service_1 = require("./customer-account/customer-account.service");
|
|
19
|
+
const customer_user_service_1 = require("./customer-user/customer-user.service");
|
|
20
|
+
const supplier_service_1 = require("./supplier/supplier.service");
|
|
21
|
+
const payment_service_1 = require("./payment/payment.service");
|
|
22
|
+
const navigation_category_service_1 = require("./navigation-category/navigation-category.service");
|
|
23
|
+
const operation_service_1 = require("./operation/operation.service");
|
|
24
|
+
const attributes_service_1 = require("./attributes/attributes.service");
|
|
25
|
+
const incident_service_1 = require("./incident/incident.service");
|
|
26
|
+
const offer_inventories_service_1 = require("./offer-inventories/offer-inventories.service");
|
|
27
|
+
const offer_prices_service_1 = require("./offer-prices/offer-prices.service");
|
|
28
|
+
const product_variant_service_1 = require("./product-variant/product-variant.service");
|
|
29
|
+
const custom_field_service_1 = require("./custom-field/custom-field.service");
|
|
30
|
+
/**
|
|
31
|
+
* Creates all SDK service instances.
|
|
32
|
+
*
|
|
33
|
+
* This factory creates instances of all services using the provided
|
|
34
|
+
* transport layer, ensuring consistent configuration across all services.
|
|
35
|
+
*
|
|
36
|
+
* @param transport - The transport instance to use for HTTP requests
|
|
37
|
+
* @returns Object containing all service instances
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import { createDjustClient } from '@djust-b2b/djust-front-sdk';
|
|
42
|
+
* import { createServices } from '@djust-b2b/djust-front-sdk/services';
|
|
43
|
+
*
|
|
44
|
+
* const client = createDjustClient({ baseUrl, clientId, apiKey });
|
|
45
|
+
* const services = createServices(client.transport);
|
|
46
|
+
*
|
|
47
|
+
* // Use services
|
|
48
|
+
* const cart = await services.cart.getCart({ cartId: '123', currency: 'USD' });
|
|
49
|
+
* const orders = await services.commercialOrder.getCommercialOrders({ locale: 'fr-FR' });
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function createServices(transport) {
|
|
53
|
+
return {
|
|
54
|
+
auth: new auth_service_1.AuthService(transport),
|
|
55
|
+
cart: new cart_service_1.CartService(transport),
|
|
56
|
+
product: new product_service_1.ProductService(transport),
|
|
57
|
+
quote: new quote_service_1.QuoteService(transport),
|
|
58
|
+
commercialOrder: new commercial_order_service_1.CommercialOrderService(transport),
|
|
59
|
+
logisticOrder: new logistic_order_service_1.LogisticOrderService(transport),
|
|
60
|
+
customerAccount: new customer_account_service_1.CustomerAccountService(transport),
|
|
61
|
+
customerUser: new customer_user_service_1.CustomerUserService(transport),
|
|
62
|
+
supplier: new supplier_service_1.SupplierService(transport),
|
|
63
|
+
payment: new payment_service_1.PaymentService(transport),
|
|
64
|
+
navigationCategory: new navigation_category_service_1.NavigationCategoryService(transport),
|
|
65
|
+
operation: new operation_service_1.OperationService(transport),
|
|
66
|
+
attributes: new attributes_service_1.AttributesService(transport),
|
|
67
|
+
incident: new incident_service_1.IncidentService(transport),
|
|
68
|
+
offerInventories: new offer_inventories_service_1.OfferInventoriesService(transport),
|
|
69
|
+
offerPrices: new offer_prices_service_1.OfferPricesService(transport),
|
|
70
|
+
productVariant: new product_variant_service_1.ProductVariantService(transport),
|
|
71
|
+
customField: new custom_field_service_1.CustomFieldService(transport),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Creates a single service instance.
|
|
76
|
+
*
|
|
77
|
+
* Use this when you only need one specific service to reduce bundle size.
|
|
78
|
+
*
|
|
79
|
+
* @example
|
|
80
|
+
* ```typescript
|
|
81
|
+
* import { createService, CartService } from '@djust-b2b/djust-front-sdk/services';
|
|
82
|
+
*
|
|
83
|
+
* const cartService = createService(CartService, transport);
|
|
84
|
+
* ```
|
|
85
|
+
*/
|
|
86
|
+
function createService(ServiceClass, transport) {
|
|
87
|
+
return new ServiceClass(transport);
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"factory.js","sourceRoot":"","sources":["../../src/services/factory.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;AAsFH,wCAqBC;AAcD,sCAKC;AA3HD,sDAAkD;AAClD,sDAAkD;AAClD,+DAA2D;AAC3D,yDAAqD;AACrD,0FAAqF;AACrF,oFAA+E;AAC/E,0FAAqF;AACrF,iFAA4E;AAC5E,kEAA8D;AAC9D,+DAA2D;AAC3D,mGAA8F;AAC9F,qEAAiE;AACjE,wEAAoE;AACpE,kEAA8D;AAC9D,6FAAwF;AACxF,8EAAyE;AACzE,uFAAkF;AAClF,8EAAyE;AA4CzE;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,cAAc,CAAC,SAAoB;IACjD,OAAO;QACL,IAAI,EAAE,IAAI,0BAAW,CAAC,SAAS,CAAC;QAChC,IAAI,EAAE,IAAI,0BAAW,CAAC,SAAS,CAAC;QAChC,OAAO,EAAE,IAAI,gCAAc,CAAC,SAAS,CAAC;QACtC,KAAK,EAAE,IAAI,4BAAY,CAAC,SAAS,CAAC;QAClC,eAAe,EAAE,IAAI,iDAAsB,CAAC,SAAS,CAAC;QACtD,aAAa,EAAE,IAAI,6CAAoB,CAAC,SAAS,CAAC;QAClD,eAAe,EAAE,IAAI,iDAAsB,CAAC,SAAS,CAAC;QACtD,YAAY,EAAE,IAAI,2CAAmB,CAAC,SAAS,CAAC;QAChD,QAAQ,EAAE,IAAI,kCAAe,CAAC,SAAS,CAAC;QACxC,OAAO,EAAE,IAAI,gCAAc,CAAC,SAAS,CAAC;QACtC,kBAAkB,EAAE,IAAI,uDAAyB,CAAC,SAAS,CAAC;QAC5D,SAAS,EAAE,IAAI,oCAAgB,CAAC,SAAS,CAAC;QAC1C,UAAU,EAAE,IAAI,sCAAiB,CAAC,SAAS,CAAC;QAC5C,QAAQ,EAAE,IAAI,kCAAe,CAAC,SAAS,CAAC;QACxC,gBAAgB,EAAE,IAAI,mDAAuB,CAAC,SAAS,CAAC;QACxD,WAAW,EAAE,IAAI,yCAAkB,CAAC,SAAS,CAAC;QAC9C,cAAc,EAAE,IAAI,+CAAqB,CAAC,SAAS,CAAC;QACpD,WAAW,EAAE,IAAI,yCAAkB,CAAC,SAAS,CAAC;KAC/C,CAAC;AACJ,CAAC;AAED;;;;;;;;;;;GAWG;AACH,SAAgB,aAAa,CAC3B,YAA6C,EAC7C,SAAoB;IAEpB,OAAO,IAAI,YAAY,CAAC,SAAS,CAAC,CAAC;AACrC,CAAC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { IncidentDto, IncidentStatus, IncidentIdType, IncidentLogisticOrder, IncidentCreatedDto, IncidentThreadDto } from "../../interfaces/models/incident";
|
|
2
|
+
import { CustomFieldValueRequest } from "../../interfaces/models/custom-field";
|
|
3
|
+
/**
|
|
4
|
+
* Request parameters type definitions
|
|
5
|
+
*/
|
|
6
|
+
export interface getIncidentsParameters {
|
|
7
|
+
linkedType: IncidentLogisticOrder;
|
|
8
|
+
ids?: String[];
|
|
9
|
+
status?: IncidentStatus[];
|
|
10
|
+
customerAccountIds?: String[];
|
|
11
|
+
supplierIds?: String[];
|
|
12
|
+
reasonCodes?: String[];
|
|
13
|
+
customFields?: {
|
|
14
|
+
customFieldId: string;
|
|
15
|
+
customFieldValue: string;
|
|
16
|
+
}[];
|
|
17
|
+
idType: IncidentIdType;
|
|
18
|
+
page: number;
|
|
19
|
+
size: number;
|
|
20
|
+
sort: String[];
|
|
21
|
+
}
|
|
22
|
+
export interface getIncidentParameters {
|
|
23
|
+
incidentId: string;
|
|
24
|
+
idType: IncidentIdType;
|
|
25
|
+
}
|
|
26
|
+
export interface createOrderLogisticIncidentParameters {
|
|
27
|
+
logisticOrderId: string;
|
|
28
|
+
idType: IncidentIdType;
|
|
29
|
+
customField: {
|
|
30
|
+
customFieldValues: CustomFieldValueRequest[];
|
|
31
|
+
idType: IncidentIdType;
|
|
32
|
+
};
|
|
33
|
+
reasonCode: string[];
|
|
34
|
+
}
|
|
35
|
+
export interface createOrderLogisticLineIncidentParameters {
|
|
36
|
+
logisticOrderId: string;
|
|
37
|
+
idType: IncidentIdType;
|
|
38
|
+
customFieldIdType: IncidentIdType;
|
|
39
|
+
orderLines: {
|
|
40
|
+
customFieldValues: CustomFieldValueRequest[];
|
|
41
|
+
lineId: string;
|
|
42
|
+
quantity: number;
|
|
43
|
+
}[];
|
|
44
|
+
reasonCode: string[];
|
|
45
|
+
}
|
|
46
|
+
export interface createOrderLogisticIncidentThreadParameters {
|
|
47
|
+
logisticOrderId: string;
|
|
48
|
+
incidentId: string;
|
|
49
|
+
idType: IncidentIdType;
|
|
50
|
+
customField?: {
|
|
51
|
+
customFieldValues: CustomFieldValueRequest[];
|
|
52
|
+
idType: IncidentIdType;
|
|
53
|
+
};
|
|
54
|
+
name: string;
|
|
55
|
+
message: string;
|
|
56
|
+
reasonCode: string;
|
|
57
|
+
}
|
|
58
|
+
export interface createIncidentParameters {
|
|
59
|
+
customField?: {
|
|
60
|
+
customFieldValues: CustomFieldValueRequest[];
|
|
61
|
+
idType: IncidentIdType;
|
|
62
|
+
};
|
|
63
|
+
externalId?: string;
|
|
64
|
+
logisticOrderId?: string;
|
|
65
|
+
reasonCodes: string[];
|
|
66
|
+
idType?: IncidentIdType;
|
|
67
|
+
}
|
|
68
|
+
export interface createIncidentResponse {
|
|
69
|
+
externalId: string;
|
|
70
|
+
incidentId: string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Request response type definitions
|
|
74
|
+
*/
|
|
75
|
+
export interface getIncidentsResponse extends Array<IncidentDto> {
|
|
76
|
+
}
|
|
77
|
+
export interface getIncidentResponse extends IncidentDto {
|
|
78
|
+
}
|
|
79
|
+
export interface createOrderLogisticIncidentResponse extends IncidentCreatedDto {
|
|
80
|
+
}
|
|
81
|
+
export interface createOrderLogisticLineIncidentResponse extends IncidentCreatedDto {
|
|
82
|
+
}
|
|
83
|
+
export interface createOrderLogisticIncidentThreadResponse extends IncidentThreadDto {
|
|
84
|
+
}
|
|
85
|
+
//# sourceMappingURL=definitions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../../../src/services/incident/definitions.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,cAAc,EACd,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAE/E;;GAEG;AAEH,MAAM,WAAW,sBAAsB;IACrC,UAAU,EAAE,qBAAqB,CAAC;IAClC,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;IACf,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,CAAC,EAAE;QAAE,aAAa,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACrE,MAAM,EAAE,cAAc,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB;AAED,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,cAAc,CAAC;CACxB;AAED,MAAM,WAAW,qCAAqC;IACpD,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,cAAc,CAAC;IACvB,WAAW,EAAE;QACX,iBAAiB,EAAE,uBAAuB,EAAE,CAAC;QAC7C,MAAM,EAAE,cAAc,CAAC;KACxB,CAAC;IACF,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,yCAAyC;IACxD,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,cAAc,CAAC;IACvB,iBAAiB,EAAE,cAAc,CAAC;IAClC,UAAU,EAAE;QACV,iBAAiB,EAAE,uBAAuB,EAAE,CAAC;QAC7C,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,CAAC;KAClB,EAAE,CAAC;IACJ,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,2CAA2C;IAC1D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,cAAc,CAAC;IACvB,WAAW,CAAC,EAAE;QACZ,iBAAiB,EAAE,uBAAuB,EAAE,CAAC;QAC7C,MAAM,EAAE,cAAc,CAAC;KACxB,CAAC;IACF,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,wBAAwB;IACvC,WAAW,CAAC,EAAE;QACZ,iBAAiB,EAAE,uBAAuB,EAAE,CAAC;QAC7C,MAAM,EAAE,cAAc,CAAC;KACxB,CAAC;IACF,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE,cAAc,CAAC;CACzB;AACD,MAAM,WAAW,sBAAsB;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AAEH,MAAM,WAAW,oBAAqB,SAAQ,KAAK,CAAC,WAAW,CAAC;CAAG;AAEnE,MAAM,WAAW,mBAAoB,SAAQ,WAAW;CAAG;AAE3D,MAAM,WAAW,mCACf,SAAQ,kBAAkB;CAAG;AAE/B,MAAM,WAAW,uCACf,SAAQ,kBAAkB;CAAG;AAE/B,MAAM,WAAW,yCACf,SAAQ,iBAAiB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../../src/services/incident/definitions.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DJUST SDK Incident Service - Endpoints
|
|
3
|
+
* API endpoint constants for incident operations.
|
|
4
|
+
*
|
|
5
|
+
* @module services/incident/endpoints
|
|
6
|
+
* @since 2.17.0
|
|
7
|
+
*/
|
|
8
|
+
export declare const IncidentEndpoints: {
|
|
9
|
+
readonly INCIDENTS: "/v1/shop/incidents";
|
|
10
|
+
readonly INCIDENTS_V2: "/v2/shop/incidents";
|
|
11
|
+
readonly INCIDENT: "/v1/shop/incidents/{incidentId}";
|
|
12
|
+
readonly ORDER_INCIDENTS: "/v1/shop/logistic-orders/{logisticOrderId}/incidents";
|
|
13
|
+
readonly ORDER_LINE_INCIDENTS: "/v1/shop/logistic-orders/{logisticOrderId}/lines/incidents";
|
|
14
|
+
readonly ORDER_INCIDENT_THREADS: "/v2/shop/logistic-orders/{logisticOrderId}/incidents/{incidentId}/threads";
|
|
15
|
+
};
|
|
16
|
+
export type IncidentEndpoint = (typeof IncidentEndpoints)[keyof typeof IncidentEndpoints];
|
|
17
|
+
//# sourceMappingURL=endpoints.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"endpoints.d.ts","sourceRoot":"","sources":["../../../src/services/incident/endpoints.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,eAAO,MAAM,iBAAiB;;;;;;;CASpB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAC1B,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DJUST SDK Incident Service - Endpoints
|
|
4
|
+
* API endpoint constants for incident operations.
|
|
5
|
+
*
|
|
6
|
+
* @module services/incident/endpoints
|
|
7
|
+
* @since 2.17.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.IncidentEndpoints = void 0;
|
|
11
|
+
exports.IncidentEndpoints = {
|
|
12
|
+
INCIDENTS: "/v1/shop/incidents",
|
|
13
|
+
INCIDENTS_V2: "/v2/shop/incidents",
|
|
14
|
+
INCIDENT: "/v1/shop/incidents/{incidentId}",
|
|
15
|
+
ORDER_INCIDENTS: "/v1/shop/logistic-orders/{logisticOrderId}/incidents",
|
|
16
|
+
ORDER_LINE_INCIDENTS: "/v1/shop/logistic-orders/{logisticOrderId}/lines/incidents",
|
|
17
|
+
ORDER_INCIDENT_THREADS: "/v2/shop/logistic-orders/{logisticOrderId}/incidents/{incidentId}/threads",
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=endpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"endpoints.js","sourceRoot":"","sources":["../../../src/services/incident/endpoints.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,SAAS,EAAE,oBAAoB;IAC/B,YAAY,EAAE,oBAAoB;IAClC,QAAQ,EAAE,iCAAiC;IAC3C,eAAe,EAAE,sDAAsD;IACvE,oBAAoB,EAClB,4DAA4D;IAC9D,sBAAsB,EACpB,2EAA2E;CACrE,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DJUST SDK Incident Service
|
|
3
|
+
* Service class for incident operations.
|
|
4
|
+
*
|
|
5
|
+
* @module services/incident/service
|
|
6
|
+
* @since 2.17.0
|
|
7
|
+
*/
|
|
8
|
+
import { BaseService } from "../base.service";
|
|
9
|
+
import type { RequestContext } from "../../client/transport";
|
|
10
|
+
import type { GetIncidentsParams, GetIncidentsV2Params, GetIncidentParams, CreateIncidentParams, CreateOrderLogisticIncidentParams, CreateOrderLogisticLineIncidentParams, CreateOrderLogisticIncidentThreadParams, GetIncidentsResponse, GetIncidentResponse, CreateIncidentResponse, CreateOrderLogisticIncidentResponse, CreateOrderLogisticLineIncidentResponse, CreateOrderLogisticIncidentThreadResponse } from "./types";
|
|
11
|
+
/**
|
|
12
|
+
* Service for incident operations.
|
|
13
|
+
*/
|
|
14
|
+
export declare class IncidentService extends BaseService {
|
|
15
|
+
readonly serviceName = "incident";
|
|
16
|
+
getIncidents(params: GetIncidentsParams, context?: RequestContext): Promise<GetIncidentsResponse>;
|
|
17
|
+
getIncidentsV2(params: GetIncidentsV2Params, context?: RequestContext): Promise<GetIncidentsResponse>;
|
|
18
|
+
getIncident(params: GetIncidentParams, context?: RequestContext): Promise<GetIncidentResponse>;
|
|
19
|
+
createIncident(params: CreateIncidentParams, context?: RequestContext): Promise<CreateIncidentResponse>;
|
|
20
|
+
createOrderLogisticIncident(params: CreateOrderLogisticIncidentParams, context?: RequestContext): Promise<CreateOrderLogisticIncidentResponse>;
|
|
21
|
+
createOrderLogisticLineIncident(params: CreateOrderLogisticLineIncidentParams, context?: RequestContext): Promise<CreateOrderLogisticLineIncidentResponse>;
|
|
22
|
+
createOrderLogisticIncidentThread(params: CreateOrderLogisticIncidentThreadParams, context?: RequestContext): Promise<CreateOrderLogisticIncidentThreadResponse>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=incident.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incident.service.d.ts","sourceRoot":"","sources":["../../../src/services/incident/incident.service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE7D,OAAO,KAAK,EACV,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,oBAAoB,EACpB,iCAAiC,EACjC,qCAAqC,EACrC,uCAAuC,EACvC,oBAAoB,EACpB,mBAAmB,EACnB,sBAAsB,EACtB,mCAAmC,EACnC,uCAAuC,EACvC,yCAAyC,EAC1C,MAAM,SAAS,CAAC;AAEjB;;GAEG;AACH,qBAAa,eAAgB,SAAQ,WAAW;IAC9C,QAAQ,CAAC,WAAW,cAAc;IAE5B,YAAY,CAChB,MAAM,EAAE,kBAAkB,EAC1B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,oBAAoB,CAAC;IAsB1B,cAAc,CAClB,MAAM,EAAE,oBAAoB,EAC5B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,oBAAoB,CAAC;IAuC1B,WAAW,CACf,MAAM,EAAE,iBAAiB,EACzB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,mBAAmB,CAAC;IAezB,cAAc,CAClB,MAAM,EAAE,oBAAoB,EAC5B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,sBAAsB,CAAC;IAmB5B,2BAA2B,CAC/B,MAAM,EAAE,iCAAiC,EACzC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,mCAAmC,CAAC;IAmBzC,+BAA+B,CACnC,MAAM,EAAE,qCAAqC,EAC7C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,uCAAuC,CAAC;IAoB7C,iCAAiC,CACrC,MAAM,EAAE,uCAAuC,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,yCAAyC,CAAC;CA0BtD"}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DJUST SDK Incident Service
|
|
4
|
+
* Service class for incident operations.
|
|
5
|
+
*
|
|
6
|
+
* @module services/incident/service
|
|
7
|
+
* @since 2.17.0
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.IncidentService = void 0;
|
|
11
|
+
const base_service_1 = require("../base.service");
|
|
12
|
+
const endpoints_1 = require("./endpoints");
|
|
13
|
+
/**
|
|
14
|
+
* Service for incident operations.
|
|
15
|
+
*/
|
|
16
|
+
class IncidentService extends base_service_1.BaseService {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
this.serviceName = "incident";
|
|
20
|
+
}
|
|
21
|
+
async getIncidents(params, context) {
|
|
22
|
+
this.required(params, ["linkedType"]);
|
|
23
|
+
return this.request({
|
|
24
|
+
method: "GET",
|
|
25
|
+
path: endpoints_1.IncidentEndpoints.INCIDENTS,
|
|
26
|
+
params: this.buildParams({
|
|
27
|
+
customerAccountIds: params.customerAccountIds,
|
|
28
|
+
linkedType: params.linkedType,
|
|
29
|
+
ids: params.ids,
|
|
30
|
+
status: params.status,
|
|
31
|
+
idType: params.idType,
|
|
32
|
+
page: params.page,
|
|
33
|
+
size: params.size,
|
|
34
|
+
sort: params.sort,
|
|
35
|
+
}),
|
|
36
|
+
}, context);
|
|
37
|
+
}
|
|
38
|
+
async getIncidentsV2(params, context) {
|
|
39
|
+
this.required(params, ["linkedType"]);
|
|
40
|
+
// Build custom fields query string
|
|
41
|
+
const customFieldsQuery = params.customFields
|
|
42
|
+
?.map((cf) => `${cf.customFieldId}${encodeURIComponent("|")}${cf.customFieldValue}`)
|
|
43
|
+
.join("&customFields=") ?? "";
|
|
44
|
+
const path = customFieldsQuery
|
|
45
|
+
? `${endpoints_1.IncidentEndpoints.INCIDENTS_V2}?customFields=${customFieldsQuery}`
|
|
46
|
+
: endpoints_1.IncidentEndpoints.INCIDENTS_V2;
|
|
47
|
+
return this.request({
|
|
48
|
+
method: "GET",
|
|
49
|
+
path,
|
|
50
|
+
params: this.buildParams({
|
|
51
|
+
linkedType: params.linkedType,
|
|
52
|
+
ids: params.ids,
|
|
53
|
+
status: params.status,
|
|
54
|
+
idType: params.idType,
|
|
55
|
+
reasonCodes: params.reasonCodes,
|
|
56
|
+
supplierIds: params.supplierIds,
|
|
57
|
+
customerAccountIds: params.customerAccountIds,
|
|
58
|
+
page: params.page,
|
|
59
|
+
size: params.size,
|
|
60
|
+
sort: params.sort,
|
|
61
|
+
}),
|
|
62
|
+
}, context);
|
|
63
|
+
}
|
|
64
|
+
async getIncident(params, context) {
|
|
65
|
+
this.required(params, ["incidentId"]);
|
|
66
|
+
return this.request({
|
|
67
|
+
method: "GET",
|
|
68
|
+
path: this.buildPath(endpoints_1.IncidentEndpoints.INCIDENT, {
|
|
69
|
+
incidentId: params.incidentId,
|
|
70
|
+
}),
|
|
71
|
+
params: this.buildParams({ idType: params.idType }),
|
|
72
|
+
}, context);
|
|
73
|
+
}
|
|
74
|
+
async createIncident(params, context) {
|
|
75
|
+
this.required(params, ["reasonCodes"]);
|
|
76
|
+
return this.request({
|
|
77
|
+
method: "POST",
|
|
78
|
+
path: endpoints_1.IncidentEndpoints.INCIDENTS,
|
|
79
|
+
params: this.buildParams({ idType: params.idType }),
|
|
80
|
+
body: {
|
|
81
|
+
customField: params.customField,
|
|
82
|
+
externalId: params.externalId,
|
|
83
|
+
logisticOrderId: params.logisticOrderId,
|
|
84
|
+
reasonCodes: params.reasonCodes,
|
|
85
|
+
},
|
|
86
|
+
}, context);
|
|
87
|
+
}
|
|
88
|
+
async createOrderLogisticIncident(params, context) {
|
|
89
|
+
this.required(params, ["logisticOrderId", "reasonCode"]);
|
|
90
|
+
return this.request({
|
|
91
|
+
method: "POST",
|
|
92
|
+
path: this.buildPath(endpoints_1.IncidentEndpoints.ORDER_INCIDENTS, {
|
|
93
|
+
logisticOrderId: params.logisticOrderId,
|
|
94
|
+
}),
|
|
95
|
+
params: this.buildParams({ idType: params.idType }),
|
|
96
|
+
body: {
|
|
97
|
+
customField: params.customField,
|
|
98
|
+
reasonCode: params.reasonCode,
|
|
99
|
+
},
|
|
100
|
+
}, context);
|
|
101
|
+
}
|
|
102
|
+
async createOrderLogisticLineIncident(params, context) {
|
|
103
|
+
this.required(params, ["logisticOrderId", "reasonCode", "orderLines"]);
|
|
104
|
+
return this.request({
|
|
105
|
+
method: "POST",
|
|
106
|
+
path: this.buildPath(endpoints_1.IncidentEndpoints.ORDER_LINE_INCIDENTS, {
|
|
107
|
+
logisticOrderId: params.logisticOrderId,
|
|
108
|
+
}),
|
|
109
|
+
params: this.buildParams({ idType: params.idType }),
|
|
110
|
+
body: {
|
|
111
|
+
customFieldIdType: params.customFieldIdType,
|
|
112
|
+
orderLines: params.orderLines,
|
|
113
|
+
reasonCodes: params.reasonCode,
|
|
114
|
+
},
|
|
115
|
+
}, context);
|
|
116
|
+
}
|
|
117
|
+
async createOrderLogisticIncidentThread(params, context) {
|
|
118
|
+
this.required(params, [
|
|
119
|
+
"logisticOrderId",
|
|
120
|
+
"incidentId",
|
|
121
|
+
"reasonCode",
|
|
122
|
+
"message",
|
|
123
|
+
]);
|
|
124
|
+
return this.request({
|
|
125
|
+
method: "POST",
|
|
126
|
+
path: this.buildPath(endpoints_1.IncidentEndpoints.ORDER_INCIDENT_THREADS, {
|
|
127
|
+
logisticOrderId: params.logisticOrderId,
|
|
128
|
+
incidentId: params.incidentId,
|
|
129
|
+
}),
|
|
130
|
+
params: this.buildParams({ idType: params.idType }),
|
|
131
|
+
body: {
|
|
132
|
+
customField: params.customField,
|
|
133
|
+
message: params.message,
|
|
134
|
+
name: params.name,
|
|
135
|
+
reasonCode: params.reasonCode,
|
|
136
|
+
},
|
|
137
|
+
}, context);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
exports.IncidentService = IncidentService;
|
|
141
|
+
//# sourceMappingURL=incident.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"incident.service.js","sourceRoot":"","sources":["../../../src/services/incident/incident.service.ts"],"names":[],"mappings":"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"}
|