@esolve/ng-esolve-connect 0.40.0 → 0.42.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/esm2022/esolve-ng-esolve-connect.mjs +5 -0
- package/esm2022/index.mjs +67 -0
- package/esm2022/lib/account/address/esolve-address-record.interface.mjs +2 -0
- package/esm2022/lib/account/address/esolve-address-response.interface.mjs +2 -0
- package/esm2022/lib/account/address/esolve-address-result.model.mjs +11 -0
- package/esm2022/lib/account/address/esolve-address-set-data.interface.mjs +2 -0
- package/esm2022/lib/account/address/esolve-address-type.type.mjs +2 -0
- package/esm2022/lib/account/address/esolve-address.model.mjs +19 -0
- package/esm2022/lib/account/address/index.mjs +7 -0
- package/esm2022/lib/account/confirmation/esolve-account-confirmation-post-response-item.interface.mjs +2 -0
- package/esm2022/lib/account/confirmation/esolve-account-confirmation-result.model.mjs +10 -0
- package/esm2022/lib/account/confirmation/index.mjs +3 -0
- package/esm2022/lib/account/esolve-account.service.mjs +429 -0
- package/esm2022/lib/account/esolve-geocode-result.interface.mjs +2 -0
- package/esm2022/lib/account/index.mjs +8 -0
- package/esm2022/lib/account/location/classes/esolve-location-update-result.model.mjs +11 -0
- package/esm2022/lib/account/location/classes/index.mjs +2 -0
- package/esm2022/lib/account/location/index.mjs +3 -0
- package/esm2022/lib/account/location/interfaces/esolve-location-options.interface.mjs +2 -0
- package/esm2022/lib/account/location/interfaces/index.mjs +2 -0
- package/esm2022/lib/account/password/esolve-change-password-result.model.mjs +8 -0
- package/esm2022/lib/account/password/esolve-forgot-password-get-result.interface.mjs +2 -0
- package/esm2022/lib/account/password/esolve-forgot-password-response.interface.mjs +2 -0
- package/esm2022/lib/account/password/esolve-reset-password-result.model.mjs +11 -0
- package/esm2022/lib/account/password/index.mjs +5 -0
- package/esm2022/lib/account/registration/esolve-registration-data.interface.mjs +2 -0
- package/esm2022/lib/account/registration/esolve-registration-post-response-item.interface.mjs +2 -0
- package/esm2022/lib/account/registration/esolve-registration-result.model.mjs +12 -0
- package/esm2022/lib/account/registration/index.mjs +4 -0
- package/esm2022/lib/account/user-account/classes/esolve-statement-ageing.model.mjs +9 -0
- package/esm2022/lib/account/user-account/classes/esolve-statement-balances.model.mjs +11 -0
- package/esm2022/lib/account/user-account/classes/esolve-statement-transaction.model.mjs +15 -0
- package/esm2022/lib/account/user-account/classes/esolve-statement.model.mjs +12 -0
- package/esm2022/lib/account/user-account/classes/esolve-user-account-business.model.mjs +11 -0
- package/esm2022/lib/account/user-account/classes/esolve-user-account-contact.model.mjs +10 -0
- package/esm2022/lib/account/user-account/classes/esolve-user-account-result.model.mjs +9 -0
- package/esm2022/lib/account/user-account/classes/esolve-user-account.model.mjs +24 -0
- package/esm2022/lib/account/user-account/classes/esolve-user-client-account-balances.model.mjs +13 -0
- package/esm2022/lib/account/user-account/classes/esolve-user-client-account.model.mjs +48 -0
- package/esm2022/lib/account/user-account/classes/index.mjs +11 -0
- package/esm2022/lib/account/user-account/index.mjs +3 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-statement-ageing-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-statement-balances-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-statement-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-statement-transaction-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-user-account-data.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-user-account-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-user-client-account-balances-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/esolve-user-client-account-record.interface.mjs +2 -0
- package/esm2022/lib/account/user-account/interfaces/index.mjs +9 -0
- package/esm2022/lib/auth/esolve-auth-interceptor.service.mjs +45 -0
- package/esm2022/lib/auth/esolve-auth.service.mjs +236 -0
- package/esm2022/lib/auth/index.mjs +6 -0
- package/esm2022/lib/auth/interfaces/esolve-auth-check-data.interface.mjs +2 -0
- package/esm2022/lib/auth/interfaces/esolve-auth-data.interface.mjs +2 -0
- package/esm2022/lib/auth/interfaces/esolve-auth-get-data.interface.mjs +2 -0
- package/esm2022/lib/auth/interfaces/esolve-auth-response.interface.mjs +2 -0
- package/esm2022/lib/auth/interfaces/esolve-login-post-response-item.interface.mjs +2 -0
- package/esm2022/lib/auth/interfaces/index.mjs +6 -0
- package/esm2022/lib/auth/providers/esolve-eurus-auto-login.provider.mjs +12 -0
- package/esm2022/lib/auth/providers/index.mjs +2 -0
- package/esm2022/lib/auth/types/esolve-auth-check-response.type.mjs +2 -0
- package/esm2022/lib/auth/types/esolve-auth-get-response.type.mjs +2 -0
- package/esm2022/lib/auth/types/esolve-auth-response-data.type.mjs +2 -0
- package/esm2022/lib/auth/types/esolve-auth-result.type.mjs +2 -0
- package/esm2022/lib/auth/types/index.mjs +5 -0
- package/esm2022/lib/banners/esolve-banner-image-hotspot-coords.interface.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-image-hotspot-record.interface.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-image-hotspot.model.mjs +9 -0
- package/esm2022/lib/banners/esolve-banner-image-record.interface.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-image-set.interface.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-image-type.type.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-image.model.mjs +14 -0
- package/esm2022/lib/banners/esolve-banner-link.interface.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-record.interface.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner-type.type.mjs +2 -0
- package/esm2022/lib/banners/esolve-banner.model.mjs +25 -0
- package/esm2022/lib/banners/esolve-banner.service.mjs +102 -0
- package/esm2022/lib/banners/index.mjs +14 -0
- package/esm2022/lib/cart/classes/esolve-cart-item.model.mjs +27 -0
- package/esm2022/lib/cart/classes/esolve-cart-stock-item.model.mjs +51 -0
- package/esm2022/lib/cart/classes/esolve-cart-totals.model.mjs +39 -0
- package/esm2022/lib/cart/classes/esolve-checkout-result.model.mjs +10 -0
- package/esm2022/lib/cart/classes/esolve-empty-cart-result.model.mjs +4 -0
- package/esm2022/lib/cart/classes/esolve-transaction-analytics-data.model.mjs +14 -0
- package/esm2022/lib/cart/classes/index.mjs +7 -0
- package/esm2022/lib/cart/esolve-cart.service.mjs +234 -0
- package/esm2022/lib/cart/index.mjs +5 -0
- package/esm2022/lib/cart/interfaces/esolve-cart-additional-where.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-cart-item-record.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-cart-item-response.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-cart-set-item.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-cart-totals-record.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-checkout-response.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-time-slot-checkout.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-tracking-code.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/esolve-transaction-analytics-data-record.interface.mjs +2 -0
- package/esm2022/lib/cart/interfaces/index.mjs +10 -0
- package/esm2022/lib/cart/types/esolve-cart-empty-response.type.mjs +2 -0
- package/esm2022/lib/cart/types/esolve-cart-set-action.type.mjs +2 -0
- package/esm2022/lib/cart/types/esolve-cart.type.mjs +2 -0
- package/esm2022/lib/cart/types/index.mjs +4 -0
- package/esm2022/lib/category-tree/esolve-category-identifier.interface.mjs +2 -0
- package/esm2022/lib/category-tree/esolve-category-record.interface.mjs +2 -0
- package/esm2022/lib/category-tree/esolve-category-tree-item-options.interface.mjs +2 -0
- package/esm2022/lib/category-tree/esolve-category-tree-item-record.interface.mjs +2 -0
- package/esm2022/lib/category-tree/esolve-category-tree-item.model.mjs +48 -0
- package/esm2022/lib/category-tree/esolve-category-tree.service.mjs +154 -0
- package/esm2022/lib/category-tree/esolve-subcategory-record.interface.mjs +2 -0
- package/esm2022/lib/category-tree/index.mjs +7 -0
- package/esm2022/lib/core/esolve-config.service.mjs +52 -0
- package/esm2022/lib/core/esolve-connect-config.constant.mjs +3 -0
- package/esm2022/lib/core/esolve-connect.config.mjs +2 -0
- package/esm2022/lib/core/index.mjs +4 -0
- package/esm2022/lib/coupons/classes/esolve-coupon.model.mjs +29 -0
- package/esm2022/lib/coupons/classes/index.mjs +2 -0
- package/esm2022/lib/coupons/esolve-coupons.service.mjs +231 -0
- package/esm2022/lib/coupons/index.mjs +9 -0
- package/esm2022/lib/coupons/interfaces/esolve-coupon-record.interface.mjs +2 -0
- package/esm2022/lib/coupons/interfaces/esolve-coupon-validation-error.interface.mjs +2 -0
- package/esm2022/lib/coupons/interfaces/esolve-coupon-validation-result.interface.mjs +2 -0
- package/esm2022/lib/coupons/interfaces/esolve-coupon-validation.interface.mjs +2 -0
- package/esm2022/lib/coupons/interfaces/index.mjs +5 -0
- package/esm2022/lib/coupons/types/esolve-coupons-cache.type.mjs +2 -0
- package/esm2022/lib/coupons/types/index.mjs +2 -0
- package/esm2022/lib/enquiry/esolve-enquiry-response.type.mjs +2 -0
- package/esm2022/lib/enquiry/esolve-enquiry-result.model.mjs +9 -0
- package/esm2022/lib/enquiry/esolve-enquiry.service.mjs +43 -0
- package/esm2022/lib/enquiry/index.mjs +4 -0
- package/esm2022/lib/images/directives/cdn-src.directive.mjs +73 -0
- package/esm2022/lib/images/directives/index.mjs +2 -0
- package/esm2022/lib/images/esolve-image-loader.provider.mjs +13 -0
- package/esm2022/lib/images/functions/index.mjs +4 -0
- package/esm2022/lib/images/functions/is-esolve-cdn-path.function.mjs +5 -0
- package/esm2022/lib/images/functions/is-legacy-esolve-cdn-path.function.mjs +5 -0
- package/esm2022/lib/images/functions/process-image-src.function.mjs +33 -0
- package/esm2022/lib/images/index.mjs +4 -0
- package/esm2022/lib/locations/classes/esolve-location-address.model.mjs +13 -0
- package/esm2022/lib/locations/classes/esolve-location-contact-info.model.mjs +9 -0
- package/esm2022/lib/locations/classes/esolve-location-geo.model.mjs +8 -0
- package/esm2022/lib/locations/classes/esolve-location-pobox-address.model.mjs +8 -0
- package/esm2022/lib/locations/classes/esolve-location-trading-day.model.mjs +7 -0
- package/esm2022/lib/locations/classes/esolve-location-trading-times.model.mjs +14 -0
- package/esm2022/lib/locations/classes/esolve-location.model.mjs +49 -0
- package/esm2022/lib/locations/classes/index.mjs +9 -0
- package/esm2022/lib/locations/esolve-locations.service.mjs +83 -0
- package/esm2022/lib/locations/index.mjs +4 -0
- package/esm2022/lib/locations/interfaces/esolve-location-record.interface.mjs +2 -0
- package/esm2022/lib/locations/interfaces/index.mjs +2 -0
- package/esm2022/lib/manufacturers/esolve-manufacturer-image-size.type.mjs +2 -0
- package/esm2022/lib/manufacturers/esolve-manufacturer-options.interface.mjs +2 -0
- package/esm2022/lib/manufacturers/esolve-manufacturer-record.interface.mjs +2 -0
- package/esm2022/lib/manufacturers/esolve-manufacturer.model.mjs +61 -0
- package/esm2022/lib/manufacturers/esolve-manufacturers.service.mjs +72 -0
- package/esm2022/lib/manufacturers/index.mjs +10 -0
- package/esm2022/lib/menu/classes/esolve-menu-item.model.mjs +31 -0
- package/esm2022/lib/menu/classes/index.mjs +2 -0
- package/esm2022/lib/menu/esolve-menu.service.mjs +46 -0
- package/esm2022/lib/menu/index.mjs +5 -0
- package/esm2022/lib/menu/interfaces/esolve-menu-tree-record.interface.mjs +2 -0
- package/esm2022/lib/menu/interfaces/index.mjs +2 -0
- package/esm2022/lib/menu/types/esolve-menu.type.mjs +2 -0
- package/esm2022/lib/menu/types/index.mjs +2 -0
- package/esm2022/lib/news/esolve-news-article-author-record.interface.mjs +2 -0
- package/esm2022/lib/news/esolve-news-article-author.model.mjs +9 -0
- package/esm2022/lib/news/esolve-news-article-list.model.mjs +8 -0
- package/esm2022/lib/news/esolve-news-article-options.interface.mjs +2 -0
- package/esm2022/lib/news/esolve-news-article-record.interface.mjs +2 -0
- package/esm2022/lib/news/esolve-news-article.model.mjs +73 -0
- package/esm2022/lib/news/esolve-news-group-record.interface.mjs +2 -0
- package/esm2022/lib/news/esolve-news-group.model.mjs +25 -0
- package/esm2022/lib/news/esolve-news.service.mjs +118 -0
- package/esm2022/lib/news/index.mjs +10 -0
- package/esm2022/lib/ng-esolve-connect.module.mjs +43 -0
- package/esm2022/lib/payment/classes/esolve-banking-details.model.mjs +11 -0
- package/esm2022/lib/payment/classes/esolve-payment-method.model.mjs +37 -0
- package/esm2022/lib/payment/classes/esolve-payment-result.model.mjs +37 -0
- package/esm2022/lib/payment/classes/esolve-vault-item-result.model.mjs +20 -0
- package/esm2022/lib/payment/classes/esolve-vault-item.model.mjs +20 -0
- package/esm2022/lib/payment/classes/index.mjs +6 -0
- package/esm2022/lib/payment/esolve-payment.service.mjs +235 -0
- package/esm2022/lib/payment/index.mjs +5 -0
- package/esm2022/lib/payment/interfaces/esolve-card-data.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-form-input.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-method-options.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-method-record.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-redirect-links.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-response.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-set-body.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-payment-status.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-vault-record.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/esolve-vault-response.interface.mjs +2 -0
- package/esm2022/lib/payment/interfaces/index.mjs +10 -0
- package/esm2022/lib/payment/types/esolve-integration-type.type.mjs +2 -0
- package/esm2022/lib/payment/types/esolve-service-provider.type.mjs +2 -0
- package/esm2022/lib/payment/types/index.mjs +3 -0
- package/esm2022/lib/ranges/esolve-range-options.interface.mjs +2 -0
- package/esm2022/lib/ranges/esolve-range-record.interface.mjs +2 -0
- package/esm2022/lib/ranges/esolve-range.model.mjs +54 -0
- package/esm2022/lib/ranges/esolve-ranges.service.mjs +77 -0
- package/esm2022/lib/ranges/index.mjs +5 -0
- package/esm2022/lib/session/esolve-session-metadata.service.mjs +76 -0
- package/esm2022/lib/session/esolve-session.service.mjs +182 -0
- package/esm2022/lib/session/index.mjs +4 -0
- package/esm2022/lib/session/interfaces/esolve-session-data.interface.mjs +2 -0
- package/esm2022/lib/session/interfaces/esolve-session.interface.mjs +2 -0
- package/esm2022/lib/session/interfaces/index.mjs +3 -0
- package/esm2022/lib/shared/assets/esolve-asset-list.type.mjs +2 -0
- package/esm2022/lib/shared/assets/esolve-asset-options.interface.mjs +2 -0
- package/esm2022/lib/shared/assets/esolve-asset-record.interface.mjs +2 -0
- package/esm2022/lib/shared/assets/esolve-asset-type.type.mjs +2 -0
- package/esm2022/lib/shared/assets/esolve-asset.model.mjs +77 -0
- package/esm2022/lib/shared/assets/esolve-assets.service.mjs +103 -0
- package/esm2022/lib/shared/assets/esolve-linked-asset-record.interface.mjs +2 -0
- package/esm2022/lib/shared/assets/esolve-linked-asset.model.mjs +10 -0
- package/esm2022/lib/shared/assets/index.mjs +13 -0
- package/esm2022/lib/shared/cookie/esolve-cookie.service.mjs +31 -0
- package/esm2022/lib/shared/custom-fields/esolve-custom-fields.interface.mjs +2 -0
- package/esm2022/lib/shared/custom-fields/index.mjs +2 -0
- package/esm2022/lib/shared/errors/esolve-error-handler.service.mjs +95 -0
- package/esm2022/lib/shared/errors/esolve-http-error.model.mjs +15 -0
- package/esm2022/lib/shared/errors/index.mjs +3 -0
- package/esm2022/lib/shared/esolve-hex-hash.function.mjs +26 -0
- package/esm2022/lib/shared/esolve-list.model.mjs +9 -0
- package/esm2022/lib/shared/esolve-result.model.mjs +8 -0
- package/esm2022/lib/shared/esolve-url-target.type.mjs +2 -0
- package/esm2022/lib/shared/filters/classes/esolve-multiple-select-filter.model.mjs +30 -0
- package/esm2022/lib/shared/filters/classes/esolve-range-filter.model.mjs +45 -0
- package/esm2022/lib/shared/filters/classes/esolve-single-select-filter.model.mjs +33 -0
- package/esm2022/lib/shared/filters/classes/esolve-toggle-filter.model.mjs +21 -0
- package/esm2022/lib/shared/filters/classes/index.mjs +6 -0
- package/esm2022/lib/shared/filters/esolve-filter-factory.mjs +59 -0
- package/esm2022/lib/shared/filters/index.mjs +5 -0
- package/esm2022/lib/shared/filters/interfaces/esolve-filter-definitions.interface.mjs +2 -0
- package/esm2022/lib/shared/filters/interfaces/esolve-filter-record.interface.mjs +2 -0
- package/esm2022/lib/shared/filters/interfaces/esolve-filter.interface.mjs +2 -0
- package/esm2022/lib/shared/filters/interfaces/esolve-range-filter-record.interface.mjs +2 -0
- package/esm2022/lib/shared/filters/interfaces/esolve-select-filter-record.interface.mjs +2 -0
- package/esm2022/lib/shared/filters/interfaces/esolve-select-filter.interface.mjs +2 -0
- package/esm2022/lib/shared/filters/interfaces/index.mjs +8 -0
- package/esm2022/lib/shared/filters/types/esolve-filter-list.type.mjs +2 -0
- package/esm2022/lib/shared/filters/types/esolve-filter-record-list.type.mjs +2 -0
- package/esm2022/lib/shared/filters/types/esolve-filter-toggle.type.mjs +2 -0
- package/esm2022/lib/shared/filters/types/esolve-filter-type.type.mjs +2 -0
- package/esm2022/lib/shared/filters/types/esolve-range-filter-type.type.mjs +2 -0
- package/esm2022/lib/shared/filters/types/esolve-select-filter-type.type.mjs +2 -0
- package/esm2022/lib/shared/filters/types/index.mjs +7 -0
- package/esm2022/lib/shared/geocoder/esolve-geocode-address-record.interface.mjs +2 -0
- package/esm2022/lib/shared/geocoder/esolve-geocode-address-result.model.mjs +12 -0
- package/esm2022/lib/shared/geocoder/esolve-geocode-coords-result.model.mjs +7 -0
- package/esm2022/lib/shared/geocoder/esolve-geocode-result-record.interface.mjs +2 -0
- package/esm2022/lib/shared/geocoder/esolve-geocode-result.model.mjs +11 -0
- package/esm2022/lib/shared/geocoder/esolve-geocoder.service.mjs +73 -0
- package/esm2022/lib/shared/geocoder/index.mjs +7 -0
- package/esm2022/lib/shared/response/esolve-delete-response.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-delete-result.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-get-response.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-post-response-item.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-post-response-status.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-response-handler.service.mjs +34 -0
- package/esm2022/lib/shared/response/esolve-response-log-item.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-response-result.model.mjs +9 -0
- package/esm2022/lib/shared/response/esolve-response.interface.mjs +2 -0
- package/esm2022/lib/shared/response/esolve-set-response.interface.mjs +2 -0
- package/esm2022/lib/shared/response/index.mjs +11 -0
- package/esm2022/lib/shared/seo/esolve-seo-details.interface.mjs +2 -0
- package/esm2022/lib/shared/seo/esolve-seo-info.model.mjs +11 -0
- package/esm2022/lib/shared/seo/esolve-seo.service.mjs +107 -0
- package/esm2022/lib/shared/seo/index.mjs +4 -0
- package/esm2022/lib/shared/sort/esolve-sort-order.type.mjs +2 -0
- package/esm2022/lib/shared/sort/esolve-sort.interface.mjs +2 -0
- package/esm2022/lib/shared/sort/index.mjs +5 -0
- package/esm2022/lib/shipping/classes/esolve-shipping-cost.model.mjs +12 -0
- package/esm2022/lib/shipping/classes/esolve-shipping-method.model.mjs +33 -0
- package/esm2022/lib/shipping/classes/esolve-shipping-totals.model.mjs +8 -0
- package/esm2022/lib/shipping/classes/esolve-time-slot-config.model.mjs +17 -0
- package/esm2022/lib/shipping/classes/esolve-time-slot-date.model.mjs +14 -0
- package/esm2022/lib/shipping/classes/esolve-time-slot-days.model.mjs +21 -0
- package/esm2022/lib/shipping/classes/esolve-time-slot-times.model.mjs +11 -0
- package/esm2022/lib/shipping/classes/esolve-time-slot.model.mjs +19 -0
- package/esm2022/lib/shipping/classes/index.mjs +9 -0
- package/esm2022/lib/shipping/esolve-shipping.service.mjs +151 -0
- package/esm2022/lib/shipping/index.mjs +5 -0
- package/esm2022/lib/shipping/interfaces/esolve-shipping-cost-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-shipping-method-options.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-shipping-method-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-time-slot-config-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-time-slot-date-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-time-slot-days-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-time-slot-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/esolve-time-slot-times-record.interface.mjs +2 -0
- package/esm2022/lib/shipping/interfaces/index.mjs +9 -0
- package/esm2022/lib/shipping/types/esolve-insurance-calculation-method.type.mjs +2 -0
- package/esm2022/lib/shipping/types/esolve-shipping-calculation-method.type.mjs +2 -0
- package/esm2022/lib/shipping/types/esolve-shipping-location.type.mjs +2 -0
- package/esm2022/lib/shipping/types/index.mjs +4 -0
- package/esm2022/lib/specials/esolve-special-dates.model.mjs +7 -0
- package/esm2022/lib/specials/esolve-special-image-collection-record.interface.mjs +2 -0
- package/esm2022/lib/specials/esolve-special-image-collection.model.mjs +25 -0
- package/esm2022/lib/specials/esolve-special-image-record.interface.mjs +2 -0
- package/esm2022/lib/specials/esolve-special-image.model.mjs +9 -0
- package/esm2022/lib/specials/esolve-special-options.interface.mjs +2 -0
- package/esm2022/lib/specials/esolve-special-record.interface.mjs +2 -0
- package/esm2022/lib/specials/esolve-special.model.mjs +40 -0
- package/esm2022/lib/specials/esolve-specials.service.mjs +83 -0
- package/esm2022/lib/specials/index.mjs +10 -0
- package/esm2022/lib/stock/classes/esolve-additional-stock-image.model.mjs +21 -0
- package/esm2022/lib/stock/classes/esolve-colour.model.mjs +8 -0
- package/esm2022/lib/stock/classes/esolve-dependant-item.model.mjs +11 -0
- package/esm2022/lib/stock/classes/esolve-linked-stock-item.model.mjs +9 -0
- package/esm2022/lib/stock/classes/esolve-media-stock-item.model.mjs +7 -0
- package/esm2022/lib/stock/classes/esolve-recipe-stock-item.model.mjs +9 -0
- package/esm2022/lib/stock/classes/esolve-stock-badge.model.mjs +11 -0
- package/esm2022/lib/stock/classes/esolve-stock-group-item.model.mjs +7 -0
- package/esm2022/lib/stock/classes/esolve-stock-group.model.mjs +13 -0
- package/esm2022/lib/stock/classes/esolve-stock-image-collection.model.mjs +25 -0
- package/esm2022/lib/stock/classes/esolve-stock-image.model.mjs +50 -0
- package/esm2022/lib/stock/classes/esolve-stock-item-base.model.mjs +312 -0
- package/esm2022/lib/stock/classes/esolve-stock-item-list.model.mjs +11 -0
- package/esm2022/lib/stock/classes/esolve-stock-item.model.mjs +24 -0
- package/esm2022/lib/stock/classes/esolve-stock-lead-times.model.mjs +9 -0
- package/esm2022/lib/stock/classes/esolve-stock-price.model.mjs +52 -0
- package/esm2022/lib/stock/classes/esolve-stock-transaction-history.model.mjs +7 -0
- package/esm2022/lib/stock/classes/index.mjs +18 -0
- package/esm2022/lib/stock/esolve-stock.service.mjs +419 -0
- package/esm2022/lib/stock/index.mjs +6 -0
- package/esm2022/lib/stock/interfaces/esolve-additional-stock-image-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-colour-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-dependant-item-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-linked-stock-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-media-stock-item-options.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-recipe-item-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-recipe-stock-options.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-badge-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-base-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-filter-options.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-image-collection-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-item-options.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-lead-times-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-linked-category-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/esolve-stock-record.interface.mjs +2 -0
- package/esm2022/lib/stock/interfaces/index.mjs +17 -0
- package/esm2022/lib/stock/types/esolve-media-stock-item-list.type.mjs +2 -0
- package/esm2022/lib/stock/types/esolve-media-stock-item-record.type.mjs +2 -0
- package/esm2022/lib/stock/types/esolve-media-stock-sort-field.type.mjs +2 -0
- package/esm2022/lib/stock/types/esolve-stock-group-item-record.type.mjs +2 -0
- package/esm2022/lib/stock/types/esolve-stock-image-size.type.mjs +2 -0
- package/esm2022/lib/stock/types/esolve-stock-sort-field.type.mjs +2 -0
- package/esm2022/lib/stock/types/esolve-stock-unit-of-measure.type.mjs +2 -0
- package/esm2022/lib/stock/types/index.mjs +9 -0
- package/esm2022/lib/suppliers/classes/esolve-supplier.model.mjs +27 -0
- package/esm2022/lib/suppliers/classes/index.mjs +2 -0
- package/esm2022/lib/suppliers/esolve-suppliers.service.mjs +59 -0
- package/esm2022/lib/suppliers/index.mjs +5 -0
- package/esm2022/lib/suppliers/interfaces/esolve-supplier-options.interface.mjs +2 -0
- package/esm2022/lib/suppliers/interfaces/esolve-supplier-record.interface.mjs +2 -0
- package/esm2022/lib/suppliers/interfaces/index.mjs +3 -0
- package/esm2022/lib/tags/esolve-tag-options.interface.mjs +2 -0
- package/esm2022/lib/tags/esolve-tag-phrase-match-mode.type.mjs +2 -0
- package/esm2022/lib/tags/esolve-tag-record.interface.mjs +2 -0
- package/esm2022/lib/tags/esolve-tag.model.mjs +35 -0
- package/esm2022/lib/tags/esolve-tags.service.mjs +79 -0
- package/esm2022/lib/tags/index.mjs +10 -0
- package/esm2022/lib/topics/esolve-topic-record.interface.mjs +2 -0
- package/esm2022/lib/topics/esolve-topic.model.mjs +15 -0
- package/esm2022/lib/topics/esolve-topic.service.mjs +56 -0
- package/esm2022/lib/topics/index.mjs +4 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-address.model.mjs +16 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-client.model.mjs +13 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-item-price.model.mjs +25 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-item.model.mjs +72 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-list.model.mjs +4 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-location.model.mjs +4 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-payment-method.model.mjs +10 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-shipping-method.model.mjs +12 -0
- package/esm2022/lib/transactions/classes/esolve-transaction-user.model.mjs +11 -0
- package/esm2022/lib/transactions/classes/esolve-transaction.model.mjs +55 -0
- package/esm2022/lib/transactions/classes/index.mjs +11 -0
- package/esm2022/lib/transactions/esolve-transactions.service.mjs +133 -0
- package/esm2022/lib/transactions/index.mjs +5 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-client-record.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-item-record.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-options.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-payment-method-record.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-record.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-shipping-method-record.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/esolve-transaction-user-record.interface.mjs +2 -0
- package/esm2022/lib/transactions/interfaces/index.mjs +8 -0
- package/esm2022/lib/transactions/types/esolve-transaction-location-record.type.mjs +2 -0
- package/esm2022/lib/transactions/types/esolve-transaction-type.type.mjs +2 -0
- package/esm2022/lib/transactions/types/index.mjs +3 -0
- package/esm2022/lib/wishlist/classes/esolve-empty-wishlist-result.model.mjs +4 -0
- package/esm2022/lib/wishlist/classes/esolve-wishlist-item.model.mjs +14 -0
- package/esm2022/lib/wishlist/classes/index.mjs +3 -0
- package/esm2022/lib/wishlist/esolve-wishlist.service.mjs +120 -0
- package/esm2022/lib/wishlist/index.mjs +6 -0
- package/esm2022/lib/wishlist/interfaces/esolve-wishlist-item-record.interface.mjs +2 -0
- package/esm2022/lib/wishlist/interfaces/esolve-wishlist-item-response.interface.mjs +2 -0
- package/esm2022/lib/wishlist/interfaces/esolve-wishlist-set-item.interface.mjs +2 -0
- package/esm2022/lib/wishlist/interfaces/index.mjs +4 -0
- package/esm2022/lib/wishlist/types/esolve-wishlist-set-action.type.mjs +2 -0
- package/esm2022/lib/wishlist/types/esolve-wishlist.type.mjs +2 -0
- package/esm2022/lib/wishlist/types/index.mjs +3 -0
- package/esm2022/media/esolve-ng-esolve-connect-media.mjs +5 -0
- package/esm2022/media/index.mjs +9 -0
- package/esm2022/media/lib/classes/esolve-heading.model.mjs +7 -0
- package/esm2022/media/lib/classes/esolve-media-article.model.mjs +72 -0
- package/esm2022/media/lib/classes/esolve-media-group.model.mjs +15 -0
- package/esm2022/media/lib/classes/esolve-media-layout-section.model.mjs +18 -0
- package/esm2022/media/lib/classes/esolve-media-link.model.mjs +8 -0
- package/esm2022/media/lib/classes/index.mjs +6 -0
- package/esm2022/media/lib/components/index.mjs +3 -0
- package/esm2022/media/lib/components/media-layout/esolve-media-layout.component.mjs +35 -0
- package/esm2022/media/lib/components/media-section/esolve-media-section.component.mjs +47 -0
- package/esm2022/media/lib/esolve-connect-media-config.token.mjs +3 -0
- package/esm2022/media/lib/esolve-connect-media.config.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-heading-record.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-layout-config.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-layout-section-config.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-media-group-record.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-media-layout-section-record.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-media-link-record.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/esolve-media-record.interface.mjs +2 -0
- package/esm2022/media/lib/interfaces/index.mjs +8 -0
- package/esm2022/media/lib/ng-esolve-connect-media.module.mjs +45 -0
- package/esm2022/media/lib/services/esolve-media-layout.service.mjs +146 -0
- package/esm2022/media/lib/services/esolve-media.service.mjs +115 -0
- package/esm2022/media/lib/services/index.mjs +3 -0
- package/esm2022/media/lib/types/esolve-media-layout-section-type.type.mjs +2 -0
- package/esm2022/media/lib/types/index.mjs +2 -0
- package/esm2022/notifications/esolve-ng-esolve-connect-notifications.mjs +5 -0
- package/esm2022/notifications/index.mjs +6 -0
- package/esm2022/notifications/lib/classes/esolve-notification-button-action.model.mjs +15 -0
- package/esm2022/notifications/lib/classes/esolve-notification-dates.model.mjs +7 -0
- package/esm2022/notifications/lib/classes/esolve-system-notification-type.model.mjs +16 -0
- package/esm2022/notifications/lib/classes/esolve-system-notification.model.mjs +28 -0
- package/esm2022/notifications/lib/classes/index.mjs +5 -0
- package/esm2022/notifications/lib/interfaces/esolve-notification-button-action-record.interface.mjs +2 -0
- package/esm2022/notifications/lib/interfaces/esolve-notification-date-record.interface.mjs +2 -0
- package/esm2022/notifications/lib/interfaces/esolve-notification-dates-record.interface.mjs +2 -0
- package/esm2022/notifications/lib/interfaces/esolve-system-notification-options.interface.mjs +2 -0
- package/esm2022/notifications/lib/interfaces/esolve-system-notification-record.interface.mjs +2 -0
- package/esm2022/notifications/lib/interfaces/esolve-system-notification-type-record.interface.mjs +2 -0
- package/esm2022/notifications/lib/interfaces/index.mjs +7 -0
- package/esm2022/notifications/lib/ng-esolve-connect-notifications.module.mjs +16 -0
- package/esm2022/notifications/lib/services/esolve-notifications.service.mjs +50 -0
- package/esm2022/notifications/lib/services/index.mjs +2 -0
- package/esm2022/notifications/lib/types/esolve-notification-position.type.mjs +2 -0
- package/esm2022/notifications/lib/types/esolve-notification-size.type.mjs +2 -0
- package/esm2022/notifications/lib/types/esolve-notification-type.type.mjs +2 -0
- package/esm2022/notifications/lib/types/index.mjs +4 -0
- package/esm2022/survey/esolve-ng-esolve-connect-survey.mjs +5 -0
- package/esm2022/survey/index.mjs +6 -0
- package/esm2022/survey/lib/classes/esolve-survey-answer-result.model.mjs +11 -0
- package/esm2022/survey/lib/classes/esolve-survey-check-question.model.mjs +11 -0
- package/esm2022/survey/lib/classes/esolve-survey-input-question.model.mjs +11 -0
- package/esm2022/survey/lib/classes/esolve-survey-options-question.model.mjs +24 -0
- package/esm2022/survey/lib/classes/esolve-survey-question.model.mjs +10 -0
- package/esm2022/survey/lib/classes/esolve-survey-radio-question.model.mjs +11 -0
- package/esm2022/survey/lib/classes/esolve-survey-rating-question.model.mjs +17 -0
- package/esm2022/survey/lib/classes/esolve-survey-select-question.model.mjs +27 -0
- package/esm2022/survey/lib/classes/esolve-survey-text-question.model.mjs +10 -0
- package/esm2022/survey/lib/classes/esolve-survey-textarea-question.model.mjs +11 -0
- package/esm2022/survey/lib/classes/esolve-survey-values-question.model.mjs +11 -0
- package/esm2022/survey/lib/classes/esolve-survey.model.mjs +60 -0
- package/esm2022/survey/lib/classes/index.mjs +13 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-answer-response.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-option.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-options-question-record.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-options.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-question-record.type.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-record.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-text-question-record.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/esolve-survey-values-question-record.interface.mjs +2 -0
- package/esm2022/survey/lib/interfaces/index.mjs +9 -0
- package/esm2022/survey/lib/ng-esolve-connect-survey.module.mjs +16 -0
- package/esm2022/survey/lib/services/esolve-survey.service.mjs +106 -0
- package/esm2022/survey/lib/services/index.mjs +2 -0
- package/esm2022/survey/lib/types/esolve-survey-options-question-type.type.mjs +2 -0
- package/esm2022/survey/lib/types/esolve-survey-question-record-list.type.mjs +2 -0
- package/esm2022/survey/lib/types/esolve-survey-question-type.type.mjs +2 -0
- package/esm2022/survey/lib/types/esolve-survey-text-question-type.type.mjs +2 -0
- package/esm2022/survey/lib/types/esolve-survey-type.type.mjs +2 -0
- package/esm2022/survey/lib/types/esolve-survey-values-question-type.type.mjs +2 -0
- package/esm2022/survey/lib/types/index.mjs +7 -0
- package/fesm2022/esolve-ng-esolve-connect-media.mjs +485 -0
- package/fesm2022/esolve-ng-esolve-connect-media.mjs.map +1 -0
- package/fesm2022/esolve-ng-esolve-connect-notifications.mjs +131 -0
- package/fesm2022/esolve-ng-esolve-connect-notifications.mjs.map +1 -0
- package/fesm2022/esolve-ng-esolve-connect-survey.mjs +321 -0
- package/fesm2022/esolve-ng-esolve-connect-survey.mjs.map +1 -0
- package/fesm2022/esolve-ng-esolve-connect.mjs +6301 -0
- package/fesm2022/esolve-ng-esolve-connect.mjs.map +1 -0
- package/index.d.ts +38 -38
- package/lib/account/address/esolve-address-record.interface.d.ts +18 -18
- package/lib/account/address/esolve-address-response.interface.d.ts +8 -8
- package/lib/account/address/esolve-address-result.model.d.ts +10 -10
- package/lib/account/address/esolve-address-set-data.interface.d.ts +17 -17
- package/lib/account/address/esolve-address-type.type.d.ts +1 -1
- package/lib/account/address/esolve-address.model.d.ts +18 -18
- package/lib/account/address/index.d.ts +6 -6
- package/lib/account/confirmation/esolve-account-confirmation-post-response-item.interface.d.ts +7 -7
- package/lib/account/confirmation/esolve-account-confirmation-result.model.d.ts +8 -8
- package/lib/account/confirmation/index.d.ts +2 -2
- package/lib/account/esolve-account.service.d.ts +64 -64
- package/lib/account/esolve-geocode-result.interface.d.ts +16 -16
- package/lib/account/index.d.ts +7 -7
- package/lib/account/location/classes/esolve-location-update-result.model.d.ts +5 -5
- package/lib/account/location/classes/index.d.ts +1 -1
- package/lib/account/location/index.d.ts +2 -2
- package/lib/account/location/interfaces/esolve-location-options.interface.d.ts +4 -4
- package/lib/account/location/interfaces/index.d.ts +1 -1
- package/lib/account/password/esolve-change-password-result.model.d.ts +5 -5
- package/lib/account/password/esolve-forgot-password-get-result.interface.d.ts +3 -3
- package/lib/account/password/esolve-forgot-password-response.interface.d.ts +9 -9
- package/lib/account/password/esolve-reset-password-result.model.d.ts +9 -9
- package/lib/account/password/index.d.ts +4 -4
- package/lib/account/registration/esolve-registration-data.interface.d.ts +15 -15
- package/lib/account/registration/esolve-registration-post-response-item.interface.d.ts +9 -9
- package/lib/account/registration/esolve-registration-result.model.d.ts +10 -10
- package/lib/account/registration/index.d.ts +3 -3
- package/lib/account/user-account/classes/esolve-statement-ageing.model.d.ts +6 -6
- package/lib/account/user-account/classes/esolve-statement-balances.model.d.ts +7 -7
- package/lib/account/user-account/classes/esolve-statement-transaction.model.d.ts +12 -12
- package/lib/account/user-account/classes/esolve-statement.model.d.ts +8 -8
- package/lib/account/user-account/classes/esolve-user-account-business.model.d.ts +8 -8
- package/lib/account/user-account/classes/esolve-user-account-contact.model.d.ts +7 -7
- package/lib/account/user-account/classes/esolve-user-account-result.model.d.ts +5 -5
- package/lib/account/user-account/classes/esolve-user-account.model.d.ts +21 -21
- package/lib/account/user-account/classes/esolve-user-client-account-balances.model.d.ts +12 -12
- package/lib/account/user-account/classes/esolve-user-client-account.model.d.ts +43 -43
- package/lib/account/user-account/classes/index.d.ts +10 -10
- package/lib/account/user-account/index.d.ts +2 -2
- package/lib/account/user-account/interfaces/esolve-statement-ageing-record.interface.d.ts +4 -4
- package/lib/account/user-account/interfaces/esolve-statement-balances-record.interface.d.ts +5 -5
- package/lib/account/user-account/interfaces/esolve-statement-record.interface.d.ts +6 -6
- package/lib/account/user-account/interfaces/esolve-statement-transaction-record.interface.d.ts +10 -10
- package/lib/account/user-account/interfaces/esolve-user-account-data.interface.d.ts +17 -17
- package/lib/account/user-account/interfaces/esolve-user-account-record.interface.d.ts +23 -23
- package/lib/account/user-account/interfaces/esolve-user-client-account-balances-record.interface.d.ts +11 -11
- package/lib/account/user-account/interfaces/esolve-user-client-account-record.interface.d.ts +41 -41
- package/lib/account/user-account/interfaces/index.d.ts +8 -8
- package/lib/auth/esolve-auth-interceptor.service.d.ts +13 -13
- package/lib/auth/esolve-auth.service.d.ts +26 -26
- package/lib/auth/index.d.ts +5 -5
- package/lib/auth/interfaces/esolve-auth-check-data.interface.d.ts +4 -4
- package/lib/auth/interfaces/esolve-auth-data.interface.d.ts +7 -7
- package/lib/auth/interfaces/esolve-auth-get-data.interface.d.ts +3 -3
- package/lib/auth/interfaces/esolve-auth-response.interface.d.ts +7 -7
- package/lib/auth/interfaces/esolve-login-post-response-item.interface.d.ts +6 -6
- package/lib/auth/interfaces/index.d.ts +5 -5
- package/lib/auth/providers/esolve-eurus-auto-login.provider.d.ts +2 -2
- package/lib/auth/providers/index.d.ts +1 -1
- package/lib/auth/types/esolve-auth-check-response.type.d.ts +2 -2
- package/lib/auth/types/esolve-auth-get-response.type.d.ts +2 -2
- package/lib/auth/types/esolve-auth-response-data.type.d.ts +2 -2
- package/lib/auth/types/esolve-auth-result.type.d.ts +3 -3
- package/lib/auth/types/index.d.ts +4 -4
- package/lib/banners/esolve-banner-image-hotspot-coords.interface.d.ts +4 -4
- package/lib/banners/esolve-banner-image-hotspot-record.interface.d.ts +8 -8
- package/lib/banners/esolve-banner-image-hotspot.model.d.ts +9 -9
- package/lib/banners/esolve-banner-image-record.interface.d.ts +10 -10
- package/lib/banners/esolve-banner-image-set.interface.d.ts +6 -6
- package/lib/banners/esolve-banner-image-type.type.d.ts +1 -1
- package/lib/banners/esolve-banner-image.model.d.ts +12 -12
- package/lib/banners/esolve-banner-link.interface.d.ts +5 -5
- package/lib/banners/esolve-banner-record.interface.d.ts +18 -18
- package/lib/banners/esolve-banner-type.type.d.ts +1 -1
- package/lib/banners/esolve-banner.model.d.ts +18 -18
- package/lib/banners/esolve-banner.service.d.ts +26 -26
- package/lib/banners/index.d.ts +9 -9
- package/lib/cart/classes/esolve-cart-item.model.d.ts +26 -25
- package/lib/cart/classes/esolve-cart-stock-item.model.d.ts +35 -35
- package/lib/cart/classes/esolve-cart-totals.model.d.ts +50 -50
- package/lib/cart/classes/esolve-checkout-result.model.d.ts +7 -7
- package/lib/cart/classes/esolve-empty-cart-result.model.d.ts +3 -3
- package/lib/cart/classes/esolve-transaction-analytics-data.model.d.ts +11 -11
- package/lib/cart/classes/index.d.ts +6 -6
- package/lib/cart/esolve-cart.service.d.ts +85 -85
- package/lib/cart/index.d.ts +4 -4
- package/lib/cart/interfaces/esolve-cart-additional-where.interface.d.ts +6 -6
- package/lib/cart/interfaces/esolve-cart-item-record.interface.d.ts +40 -39
- package/lib/cart/interfaces/esolve-cart-item-response.interface.d.ts +5 -5
- package/lib/cart/interfaces/esolve-cart-set-item.interface.d.ts +7 -7
- package/lib/cart/interfaces/esolve-cart-totals-record.interface.d.ts +7 -7
- package/lib/cart/interfaces/esolve-checkout-response.interface.d.ts +5 -5
- package/lib/cart/interfaces/esolve-time-slot-checkout.interface.d.ts +5 -5
- package/lib/cart/interfaces/esolve-tracking-code.interface.d.ts +3 -3
- package/lib/cart/interfaces/esolve-transaction-analytics-data-record.interface.d.ts +6 -6
- package/lib/cart/interfaces/index.d.ts +9 -9
- package/lib/cart/types/esolve-cart-empty-response.type.d.ts +2 -2
- package/lib/cart/types/esolve-cart-set-action.type.d.ts +1 -1
- package/lib/cart/types/esolve-cart.type.d.ts +2 -2
- package/lib/cart/types/index.d.ts +3 -3
- package/lib/category-tree/esolve-category-identifier.interface.d.ts +4 -4
- package/lib/category-tree/esolve-category-record.interface.d.ts +18 -18
- package/lib/category-tree/esolve-category-tree-item-options.interface.d.ts +18 -18
- package/lib/category-tree/esolve-category-tree-item-record.interface.d.ts +17 -17
- package/lib/category-tree/esolve-category-tree-item.model.d.ts +24 -24
- package/lib/category-tree/esolve-category-tree.service.d.ts +41 -41
- package/lib/category-tree/esolve-subcategory-record.interface.d.ts +18 -18
- package/lib/category-tree/index.d.ts +6 -6
- package/lib/core/esolve-config.service.d.ts +22 -22
- package/lib/core/esolve-connect-config.constant.d.ts +3 -3
- package/lib/core/esolve-connect.config.d.ts +73 -73
- package/lib/core/index.d.ts +3 -3
- package/lib/coupons/classes/esolve-coupon.model.d.ts +20 -20
- package/lib/coupons/classes/index.d.ts +1 -1
- package/lib/coupons/esolve-coupons.service.d.ts +40 -40
- package/lib/coupons/index.d.ts +4 -4
- package/lib/coupons/interfaces/esolve-coupon-record.interface.d.ts +8 -8
- package/lib/coupons/interfaces/esolve-coupon-validation-error.interface.d.ts +4 -4
- package/lib/coupons/interfaces/esolve-coupon-validation-result.interface.d.ts +4 -4
- package/lib/coupons/interfaces/esolve-coupon-validation.interface.d.ts +6 -6
- package/lib/coupons/interfaces/index.d.ts +4 -4
- package/lib/coupons/types/esolve-coupons-cache.type.d.ts +1 -1
- package/lib/coupons/types/index.d.ts +1 -1
- package/lib/enquiry/esolve-enquiry-response.type.d.ts +2 -2
- package/lib/enquiry/esolve-enquiry-result.model.d.ts +6 -6
- package/lib/enquiry/esolve-enquiry.service.d.ts +17 -17
- package/lib/enquiry/index.d.ts +3 -3
- package/lib/images/directives/cdn-src.directive.d.ts +22 -22
- package/lib/images/directives/index.d.ts +1 -1
- package/lib/images/esolve-image-loader.provider.d.ts +2 -2
- package/lib/images/functions/index.d.ts +3 -3
- package/lib/images/functions/is-esolve-cdn-path.function.d.ts +1 -1
- package/lib/images/functions/is-legacy-esolve-cdn-path.function.d.ts +1 -1
- package/lib/images/functions/process-image-src.function.d.ts +1 -1
- package/lib/images/index.d.ts +3 -3
- package/lib/locations/classes/esolve-location-address.model.d.ts +11 -11
- package/lib/locations/classes/esolve-location-contact-info.model.d.ts +7 -7
- package/lib/locations/classes/esolve-location-geo.model.d.ts +6 -6
- package/lib/locations/classes/esolve-location-pobox-address.model.d.ts +6 -6
- package/lib/locations/classes/esolve-location-trading-day.model.d.ts +5 -5
- package/lib/locations/classes/esolve-location-trading-times.model.d.ts +13 -13
- package/lib/locations/classes/esolve-location.model.d.ts +28 -28
- package/lib/locations/classes/index.d.ts +7 -7
- package/lib/locations/esolve-locations.service.d.ts +37 -37
- package/lib/locations/index.d.ts +3 -3
- package/lib/locations/interfaces/esolve-location-record.interface.d.ts +53 -53
- package/lib/locations/interfaces/index.d.ts +1 -1
- package/lib/manufacturers/esolve-manufacturer-image-size.type.d.ts +1 -1
- package/lib/manufacturers/esolve-manufacturer-options.interface.d.ts +3 -3
- package/lib/manufacturers/esolve-manufacturer-record.interface.d.ts +16 -16
- package/lib/manufacturers/esolve-manufacturer.model.d.ts +22 -22
- package/lib/manufacturers/esolve-manufacturers.service.d.ts +19 -19
- package/lib/manufacturers/index.d.ts +5 -5
- package/lib/menu/classes/esolve-menu-item.model.d.ts +13 -13
- package/lib/menu/classes/index.d.ts +1 -1
- package/lib/menu/esolve-menu.service.d.ts +14 -14
- package/lib/menu/index.d.ts +4 -4
- package/lib/menu/interfaces/esolve-menu-tree-record.interface.d.ts +20 -20
- package/lib/menu/interfaces/index.d.ts +1 -1
- package/lib/menu/types/esolve-menu.type.d.ts +2 -2
- package/lib/menu/types/index.d.ts +1 -1
- package/lib/news/esolve-news-article-author-record.interface.d.ts +9 -9
- package/lib/news/esolve-news-article-author.model.d.ts +7 -7
- package/lib/news/esolve-news-article-list.model.d.ts +7 -7
- package/lib/news/esolve-news-article-options.interface.d.ts +12 -12
- package/lib/news/esolve-news-article-record.interface.d.ts +31 -31
- package/lib/news/esolve-news-article.model.d.ts +28 -28
- package/lib/news/esolve-news-group-record.interface.d.ts +7 -7
- package/lib/news/esolve-news-group.model.d.ts +11 -11
- package/lib/news/esolve-news.service.d.ts +21 -21
- package/lib/news/index.d.ts +9 -9
- package/lib/ng-esolve-connect.module.d.ts +11 -11
- package/lib/payment/classes/esolve-banking-details.model.d.ts +9 -9
- package/lib/payment/classes/esolve-payment-method.model.d.ts +36 -36
- package/lib/payment/classes/esolve-payment-result.model.d.ts +28 -28
- package/lib/payment/classes/esolve-vault-item-result.model.d.ts +10 -10
- package/lib/payment/classes/esolve-vault-item.model.d.ts +11 -11
- package/lib/payment/classes/index.d.ts +5 -5
- package/lib/payment/esolve-payment.service.d.ts +94 -94
- package/lib/payment/index.d.ts +4 -4
- package/lib/payment/interfaces/esolve-card-data.interface.d.ts +7 -7
- package/lib/payment/interfaces/esolve-payment-form-input.interface.d.ts +4 -4
- package/lib/payment/interfaces/esolve-payment-method-options.interface.d.ts +5 -5
- package/lib/payment/interfaces/esolve-payment-method-record.interface.d.ts +38 -38
- package/lib/payment/interfaces/esolve-payment-redirect-links.interface.d.ts +4 -4
- package/lib/payment/interfaces/esolve-payment-response.interface.d.ts +28 -28
- package/lib/payment/interfaces/esolve-payment-set-body.interface.d.ts +15 -15
- package/lib/payment/interfaces/esolve-payment-status.interface.d.ts +3 -3
- package/lib/payment/interfaces/esolve-vault-record.interface.d.ts +11 -11
- package/lib/payment/interfaces/esolve-vault-response.interface.d.ts +9 -9
- package/lib/payment/interfaces/index.d.ts +8 -8
- package/lib/payment/types/esolve-integration-type.type.d.ts +1 -1
- package/lib/payment/types/esolve-service-provider.type.d.ts +1 -1
- package/lib/payment/types/index.d.ts +2 -2
- package/lib/ranges/esolve-range-options.interface.d.ts +4 -4
- package/lib/ranges/esolve-range-record.interface.d.ts +17 -17
- package/lib/ranges/esolve-range.model.d.ts +19 -19
- package/lib/ranges/esolve-ranges.service.d.ts +19 -19
- package/lib/ranges/index.d.ts +4 -4
- package/lib/session/esolve-session-metadata.service.d.ts +19 -19
- package/lib/session/esolve-session.service.d.ts +56 -56
- package/lib/session/index.d.ts +3 -3
- package/lib/session/interfaces/esolve-session-data.interface.d.ts +3 -3
- package/lib/session/interfaces/esolve-session.interface.d.ts +5 -5
- package/lib/session/interfaces/index.d.ts +2 -2
- package/lib/shared/assets/esolve-asset-list.type.d.ts +3 -3
- package/lib/shared/assets/esolve-asset-options.interface.d.ts +15 -15
- package/lib/shared/assets/esolve-asset-record.interface.d.ts +27 -27
- package/lib/shared/assets/esolve-asset-type.type.d.ts +1 -1
- package/lib/shared/assets/esolve-asset.model.d.ts +39 -39
- package/lib/shared/assets/esolve-assets.service.d.ts +19 -19
- package/lib/shared/assets/esolve-linked-asset-record.interface.d.ts +8 -8
- package/lib/shared/assets/esolve-linked-asset.model.d.ts +10 -10
- package/lib/shared/assets/index.d.ts +8 -8
- package/lib/shared/cookie/esolve-cookie.service.d.ts +12 -12
- package/lib/shared/custom-fields/esolve-custom-fields.interface.d.ts +3 -3
- package/lib/shared/custom-fields/index.d.ts +1 -1
- package/lib/shared/errors/esolve-error-handler.service.d.ts +17 -17
- package/lib/shared/errors/esolve-http-error.model.d.ts +6 -6
- package/lib/shared/errors/index.d.ts +2 -2
- package/lib/shared/esolve-hex-hash.function.d.ts +13 -13
- package/lib/shared/esolve-list.model.d.ts +7 -7
- package/lib/shared/esolve-result.model.d.ts +6 -6
- package/lib/shared/esolve-url-target.type.d.ts +1 -1
- package/lib/shared/filters/classes/esolve-multiple-select-filter.model.d.ts +14 -14
- package/lib/shared/filters/classes/esolve-range-filter.model.d.ts +18 -18
- package/lib/shared/filters/classes/esolve-single-select-filter.model.d.ts +15 -15
- package/lib/shared/filters/classes/esolve-toggle-filter.model.d.ts +12 -12
- package/lib/shared/filters/classes/index.d.ts +4 -4
- package/lib/shared/filters/esolve-filter-factory.d.ts +12 -12
- package/lib/shared/filters/index.d.ts +4 -4
- package/lib/shared/filters/interfaces/esolve-filter-definitions.interface.d.ts +6 -6
- package/lib/shared/filters/interfaces/esolve-filter-record.interface.d.ts +5 -5
- package/lib/shared/filters/interfaces/esolve-filter.interface.d.ts +10 -10
- package/lib/shared/filters/interfaces/esolve-range-filter-record.interface.d.ts +7 -7
- package/lib/shared/filters/interfaces/esolve-select-filter-record.interface.d.ts +6 -6
- package/lib/shared/filters/interfaces/esolve-select-filter.interface.d.ts +4 -4
- package/lib/shared/filters/interfaces/index.d.ts +6 -6
- package/lib/shared/filters/types/esolve-filter-list.type.d.ts +2 -2
- package/lib/shared/filters/types/esolve-filter-record-list.type.d.ts +2 -2
- package/lib/shared/filters/types/esolve-filter-toggle.type.d.ts +1 -1
- package/lib/shared/filters/types/esolve-filter-type.type.d.ts +4 -4
- package/lib/shared/filters/types/esolve-range-filter-type.type.d.ts +1 -1
- package/lib/shared/filters/types/esolve-select-filter-type.type.d.ts +1 -1
- package/lib/shared/filters/types/index.d.ts +5 -5
- package/lib/shared/geocoder/esolve-geocode-address-record.interface.d.ts +9 -9
- package/lib/shared/geocoder/esolve-geocode-address-result.model.d.ts +10 -10
- package/lib/shared/geocoder/esolve-geocode-coords-result.model.d.ts +5 -5
- package/lib/shared/geocoder/esolve-geocode-result-record.interface.d.ts +10 -10
- package/lib/shared/geocoder/esolve-geocode-result.model.d.ts +11 -11
- package/lib/shared/geocoder/esolve-geocoder.service.d.ts +15 -15
- package/lib/shared/geocoder/index.d.ts +6 -6
- package/lib/shared/response/esolve-delete-response.interface.d.ts +5 -5
- package/lib/shared/response/esolve-delete-result.interface.d.ts +6 -6
- package/lib/shared/response/esolve-get-response.interface.d.ts +4 -4
- package/lib/shared/response/esolve-post-response-item.interface.d.ts +9 -9
- package/lib/shared/response/esolve-post-response-status.interface.d.ts +5 -5
- package/lib/shared/response/esolve-response-handler.service.d.ts +17 -17
- package/lib/shared/response/esolve-response-log-item.interface.d.ts +5 -5
- package/lib/shared/response/esolve-response-result.model.d.ts +7 -7
- package/lib/shared/response/esolve-response.interface.d.ts +8 -8
- package/lib/shared/response/esolve-set-response.interface.d.ts +5 -5
- package/lib/shared/response/index.d.ts +10 -10
- package/lib/shared/seo/esolve-seo-details.interface.d.ts +4 -4
- package/lib/shared/seo/esolve-seo-info.model.d.ts +9 -9
- package/lib/shared/seo/esolve-seo.service.d.ts +28 -28
- package/lib/shared/seo/index.d.ts +3 -3
- package/lib/shared/sort/esolve-sort-order.type.d.ts +1 -1
- package/lib/shared/sort/esolve-sort.interface.d.ts +5 -5
- package/lib/shared/sort/index.d.ts +2 -2
- package/lib/shipping/classes/esolve-shipping-cost.model.d.ts +6 -6
- package/lib/shipping/classes/esolve-shipping-method.model.d.ts +32 -32
- package/lib/shipping/classes/esolve-shipping-totals.model.d.ts +6 -6
- package/lib/shipping/classes/esolve-time-slot-config.model.d.ts +8 -8
- package/lib/shipping/classes/esolve-time-slot-date.model.d.ts +7 -7
- package/lib/shipping/classes/esolve-time-slot-days.model.d.ts +11 -11
- package/lib/shipping/classes/esolve-time-slot-times.model.d.ts +6 -6
- package/lib/shipping/classes/esolve-time-slot.model.d.ts +12 -12
- package/lib/shipping/classes/index.d.ts +8 -8
- package/lib/shipping/esolve-shipping.service.d.ts +55 -55
- package/lib/shipping/index.d.ts +4 -4
- package/lib/shipping/interfaces/esolve-shipping-cost-record.interface.d.ts +9 -9
- package/lib/shipping/interfaces/esolve-shipping-method-options.interface.d.ts +4 -4
- package/lib/shipping/interfaces/esolve-shipping-method-record.interface.d.ts +31 -31
- package/lib/shipping/interfaces/esolve-time-slot-config-record.interface.d.ts +6 -6
- package/lib/shipping/interfaces/esolve-time-slot-date-record.interface.d.ts +6 -6
- package/lib/shipping/interfaces/esolve-time-slot-days-record.interface.d.ts +9 -9
- package/lib/shipping/interfaces/esolve-time-slot-record.interface.d.ts +10 -10
- package/lib/shipping/interfaces/esolve-time-slot-times-record.interface.d.ts +4 -4
- package/lib/shipping/interfaces/index.d.ts +8 -8
- package/lib/shipping/types/esolve-insurance-calculation-method.type.d.ts +1 -1
- package/lib/shipping/types/esolve-shipping-calculation-method.type.d.ts +1 -1
- package/lib/shipping/types/esolve-shipping-location.type.d.ts +1 -1
- package/lib/shipping/types/index.d.ts +3 -3
- package/lib/specials/esolve-special-dates.model.d.ts +5 -5
- package/lib/specials/esolve-special-image-collection-record.interface.d.ts +6 -6
- package/lib/specials/esolve-special-image-collection.model.d.ts +9 -9
- package/lib/specials/esolve-special-image-record.interface.d.ts +6 -6
- package/lib/specials/esolve-special-image.model.d.ts +8 -8
- package/lib/specials/esolve-special-options.interface.d.ts +6 -6
- package/lib/specials/esolve-special-record.interface.d.ts +26 -26
- package/lib/specials/esolve-special.model.d.ts +23 -23
- package/lib/specials/esolve-specials.service.d.ts +19 -19
- package/lib/specials/index.d.ts +9 -9
- package/lib/stock/classes/esolve-additional-stock-image.model.d.ts +10 -10
- package/lib/stock/classes/esolve-colour.model.d.ts +7 -7
- package/lib/stock/classes/esolve-dependant-item.model.d.ts +8 -8
- package/lib/stock/classes/esolve-linked-stock-item.model.d.ts +7 -7
- package/lib/stock/classes/esolve-media-stock-item.model.d.ts +6 -6
- package/lib/stock/classes/esolve-recipe-stock-item.model.d.ts +7 -7
- package/lib/stock/classes/esolve-stock-badge.model.d.ts +9 -9
- package/lib/stock/classes/esolve-stock-group-item.model.d.ts +6 -6
- package/lib/stock/classes/esolve-stock-group.model.d.ts +8 -8
- package/lib/stock/classes/esolve-stock-image-collection.model.d.ts +9 -9
- package/lib/stock/classes/esolve-stock-image.model.d.ts +27 -27
- package/lib/stock/classes/esolve-stock-item-base.model.d.ts +231 -231
- package/lib/stock/classes/esolve-stock-item-list.model.d.ts +11 -11
- package/lib/stock/classes/esolve-stock-item.model.d.ts +16 -16
- package/lib/stock/classes/esolve-stock-lead-times.model.d.ts +6 -6
- package/lib/stock/classes/esolve-stock-price.model.d.ts +57 -57
- package/lib/stock/classes/esolve-stock-transaction-history.model.d.ts +5 -5
- package/lib/stock/classes/index.d.ts +16 -16
- package/lib/stock/esolve-stock.service.d.ts +99 -99
- package/lib/stock/index.d.ts +4 -4
- package/lib/stock/interfaces/esolve-additional-stock-image-record.interface.d.ts +8 -8
- package/lib/stock/interfaces/esolve-colour-record.interface.d.ts +5 -5
- package/lib/stock/interfaces/esolve-dependant-item-record.interface.d.ts +6 -6
- package/lib/stock/interfaces/esolve-linked-stock-record.interface.d.ts +7 -7
- package/lib/stock/interfaces/esolve-media-stock-item-options.interface.d.ts +13 -13
- package/lib/stock/interfaces/esolve-recipe-item-record.interface.d.ts +7 -7
- package/lib/stock/interfaces/esolve-recipe-stock-options.interface.d.ts +7 -7
- package/lib/stock/interfaces/esolve-stock-badge-record.interface.d.ts +8 -8
- package/lib/stock/interfaces/esolve-stock-base-record.interface.d.ts +73 -73
- package/lib/stock/interfaces/esolve-stock-filter-options.interface.d.ts +8 -8
- package/lib/stock/interfaces/esolve-stock-image-collection-record.interface.d.ts +7 -7
- package/lib/stock/interfaces/esolve-stock-item-options.interface.d.ts +22 -22
- package/lib/stock/interfaces/esolve-stock-lead-times-record.interface.d.ts +4 -4
- package/lib/stock/interfaces/esolve-stock-linked-category-record.interface.d.ts +5 -5
- package/lib/stock/interfaces/esolve-stock-record.interface.d.ts +11 -11
- package/lib/stock/interfaces/index.d.ts +15 -15
- package/lib/stock/types/esolve-media-stock-item-list.type.d.ts +7 -7
- package/lib/stock/types/esolve-media-stock-item-record.type.d.ts +3 -3
- package/lib/stock/types/esolve-media-stock-sort-field.type.d.ts +2 -2
- package/lib/stock/types/esolve-stock-group-item-record.type.d.ts +3 -3
- package/lib/stock/types/esolve-stock-image-size.type.d.ts +1 -1
- package/lib/stock/types/esolve-stock-sort-field.type.d.ts +1 -1
- package/lib/stock/types/esolve-stock-unit-of-measure.type.d.ts +1 -1
- package/lib/stock/types/index.d.ts +7 -7
- package/lib/suppliers/classes/esolve-supplier.model.d.ts +26 -26
- package/lib/suppliers/classes/index.d.ts +1 -1
- package/lib/suppliers/esolve-suppliers.service.d.ts +16 -16
- package/lib/suppliers/index.d.ts +3 -3
- package/lib/suppliers/interfaces/esolve-supplier-options.interface.d.ts +4 -4
- package/lib/suppliers/interfaces/esolve-supplier-record.interface.d.ts +24 -24
- package/lib/suppliers/interfaces/index.d.ts +2 -2
- package/lib/tags/esolve-tag-options.interface.d.ts +6 -6
- package/lib/tags/esolve-tag-phrase-match-mode.type.d.ts +1 -1
- package/lib/tags/esolve-tag-record.interface.d.ts +7 -7
- package/lib/tags/esolve-tag.model.d.ts +18 -18
- package/lib/tags/esolve-tags.service.d.ts +22 -22
- package/lib/tags/index.d.ts +5 -5
- package/lib/topics/esolve-topic-record.interface.d.ts +6 -6
- package/lib/topics/esolve-topic.model.d.ts +7 -7
- package/lib/topics/esolve-topic.service.d.ts +20 -20
- package/lib/topics/index.d.ts +3 -3
- package/lib/transactions/classes/esolve-transaction-address.model.d.ts +15 -15
- package/lib/transactions/classes/esolve-transaction-client.model.d.ts +11 -11
- package/lib/transactions/classes/esolve-transaction-item-price.model.d.ts +35 -35
- package/lib/transactions/classes/esolve-transaction-item.model.d.ts +39 -39
- package/lib/transactions/classes/esolve-transaction-list.model.d.ts +4 -4
- package/lib/transactions/classes/esolve-transaction-location.model.d.ts +3 -3
- package/lib/transactions/classes/esolve-transaction-payment-method.model.d.ts +8 -8
- package/lib/transactions/classes/esolve-transaction-shipping-method.model.d.ts +10 -10
- package/lib/transactions/classes/esolve-transaction-user.model.d.ts +9 -9
- package/lib/transactions/classes/esolve-transaction.model.d.ts +39 -39
- package/lib/transactions/classes/index.d.ts +10 -10
- package/lib/transactions/esolve-transactions.service.d.ts +24 -24
- package/lib/transactions/index.d.ts +4 -4
- package/lib/transactions/interfaces/esolve-transaction-client-record.interface.d.ts +10 -10
- package/lib/transactions/interfaces/esolve-transaction-item-record.interface.d.ts +21 -21
- package/lib/transactions/interfaces/esolve-transaction-options.interface.d.ts +11 -11
- package/lib/transactions/interfaces/esolve-transaction-payment-method-record.interface.d.ts +7 -7
- package/lib/transactions/interfaces/esolve-transaction-record.interface.d.ts +51 -51
- package/lib/transactions/interfaces/esolve-transaction-shipping-method-record.interface.d.ts +9 -9
- package/lib/transactions/interfaces/esolve-transaction-user-record.interface.d.ts +8 -8
- package/lib/transactions/interfaces/index.d.ts +7 -7
- package/lib/transactions/types/esolve-transaction-location-record.type.d.ts +2 -2
- package/lib/transactions/types/esolve-transaction-type.type.d.ts +1 -1
- package/lib/transactions/types/index.d.ts +2 -2
- package/lib/wishlist/classes/esolve-empty-wishlist-result.model.d.ts +3 -3
- package/lib/wishlist/classes/esolve-wishlist-item.model.d.ts +13 -13
- package/lib/wishlist/classes/index.d.ts +2 -2
- package/lib/wishlist/esolve-wishlist.service.d.ts +53 -53
- package/lib/wishlist/index.d.ts +4 -4
- package/lib/wishlist/interfaces/esolve-wishlist-item-record.interface.d.ts +13 -13
- package/lib/wishlist/interfaces/esolve-wishlist-item-response.interface.d.ts +6 -6
- package/lib/wishlist/interfaces/esolve-wishlist-set-item.interface.d.ts +7 -7
- package/lib/wishlist/interfaces/index.d.ts +3 -3
- package/lib/wishlist/types/esolve-wishlist-set-action.type.d.ts +1 -1
- package/lib/wishlist/types/esolve-wishlist.type.d.ts +2 -2
- package/lib/wishlist/types/index.d.ts +2 -2
- package/media/index.d.ts +8 -8
- package/media/lib/classes/esolve-heading.model.d.ts +5 -5
- package/media/lib/classes/esolve-media-article.model.d.ts +23 -23
- package/media/lib/classes/esolve-media-group.model.d.ts +8 -8
- package/media/lib/classes/esolve-media-layout-section.model.d.ts +10 -10
- package/media/lib/classes/esolve-media-link.model.d.ts +8 -8
- package/media/lib/classes/index.d.ts +5 -5
- package/media/lib/components/index.d.ts +2 -2
- package/media/lib/components/media-layout/esolve-media-layout.component.d.ts +14 -14
- package/media/lib/components/media-section/esolve-media-section.component.d.ts +14 -14
- package/media/lib/esolve-connect-media-config.token.d.ts +3 -3
- package/media/lib/esolve-connect-media.config.d.ts +6 -6
- package/media/lib/interfaces/esolve-heading-record.interface.d.ts +5 -5
- package/media/lib/interfaces/esolve-layout-config.interface.d.ts +9 -9
- package/media/lib/interfaces/esolve-layout-section-config.interface.d.ts +7 -7
- package/media/lib/interfaces/esolve-media-group-record.interface.d.ts +6 -6
- package/media/lib/interfaces/esolve-media-layout-section-record.interface.d.ts +7 -7
- package/media/lib/interfaces/esolve-media-link-record.interface.d.ts +6 -6
- package/media/lib/interfaces/esolve-media-record.interface.d.ts +41 -41
- package/media/lib/interfaces/index.d.ts +7 -7
- package/media/lib/ng-esolve-connect-media.module.d.ts +15 -15
- package/media/lib/services/esolve-media-layout.service.d.ts +23 -23
- package/media/lib/services/esolve-media.service.d.ts +48 -48
- package/media/lib/services/index.d.ts +2 -2
- package/media/lib/types/esolve-media-layout-section-type.type.d.ts +1 -1
- package/media/lib/types/index.d.ts +1 -1
- package/notifications/index.d.ts +5 -5
- package/notifications/lib/classes/esolve-notification-button-action.model.d.ts +9 -9
- package/notifications/lib/classes/esolve-notification-dates.model.d.ts +6 -6
- package/notifications/lib/classes/esolve-system-notification-type.model.d.ts +12 -12
- package/notifications/lib/classes/esolve-system-notification.model.d.ts +16 -16
- package/notifications/lib/classes/index.d.ts +4 -4
- package/notifications/lib/interfaces/esolve-notification-button-action-record.interface.d.ts +7 -7
- package/notifications/lib/interfaces/esolve-notification-date-record.interface.d.ts +4 -4
- package/notifications/lib/interfaces/esolve-notification-dates-record.interface.d.ts +5 -5
- package/notifications/lib/interfaces/esolve-system-notification-options.interface.d.ts +3 -3
- package/notifications/lib/interfaces/esolve-system-notification-record.interface.d.ts +14 -14
- package/notifications/lib/interfaces/esolve-system-notification-type-record.interface.d.ts +10 -10
- package/notifications/lib/interfaces/index.d.ts +6 -6
- package/notifications/lib/ng-esolve-connect-notifications.module.d.ts +7 -7
- package/notifications/lib/services/esolve-notifications.service.d.ts +15 -15
- package/notifications/lib/services/index.d.ts +1 -1
- package/notifications/lib/types/esolve-notification-position.type.d.ts +1 -1
- package/notifications/lib/types/esolve-notification-size.type.d.ts +1 -1
- package/notifications/lib/types/esolve-notification-type.type.d.ts +1 -1
- package/notifications/lib/types/index.d.ts +3 -3
- package/package.json +14 -26
- package/survey/index.d.ts +5 -5
- package/survey/lib/classes/esolve-survey-answer-result.model.d.ts +6 -6
- package/survey/lib/classes/esolve-survey-check-question.model.d.ts +6 -6
- package/survey/lib/classes/esolve-survey-input-question.model.d.ts +6 -6
- package/survey/lib/classes/esolve-survey-options-question.model.d.ts +8 -8
- package/survey/lib/classes/esolve-survey-question.model.d.ts +11 -11
- package/survey/lib/classes/esolve-survey-radio-question.model.d.ts +6 -6
- package/survey/lib/classes/esolve-survey-rating-question.model.d.ts +7 -7
- package/survey/lib/classes/esolve-survey-select-question.model.d.ts +9 -9
- package/survey/lib/classes/esolve-survey-text-question.model.d.ts +7 -7
- package/survey/lib/classes/esolve-survey-textarea-question.model.d.ts +6 -6
- package/survey/lib/classes/esolve-survey-values-question.model.d.ts +6 -6
- package/survey/lib/classes/esolve-survey.model.d.ts +15 -15
- package/survey/lib/classes/index.d.ts +12 -12
- package/survey/lib/interfaces/esolve-survey-answer-response.interface.d.ts +4 -4
- package/survey/lib/interfaces/esolve-survey-option.interface.d.ts +4 -4
- package/survey/lib/interfaces/esolve-survey-options-question-record.interface.d.ts +7 -7
- package/survey/lib/interfaces/esolve-survey-options.interface.d.ts +5 -5
- package/survey/lib/interfaces/esolve-survey-question-record.type.d.ts +9 -9
- package/survey/lib/interfaces/esolve-survey-record.interface.d.ts +9 -9
- package/survey/lib/interfaces/esolve-survey-text-question-record.interface.d.ts +7 -7
- package/survey/lib/interfaces/esolve-survey-values-question-record.interface.d.ts +6 -6
- package/survey/lib/interfaces/index.d.ts +8 -8
- package/survey/lib/ng-esolve-connect-survey.module.d.ts +7 -7
- package/survey/lib/services/esolve-survey.service.d.ts +84 -84
- package/survey/lib/services/index.d.ts +1 -1
- package/survey/lib/types/esolve-survey-options-question-type.type.d.ts +1 -1
- package/survey/lib/types/esolve-survey-question-record-list.type.d.ts +2 -2
- package/survey/lib/types/esolve-survey-question-type.type.d.ts +4 -4
- package/survey/lib/types/esolve-survey-text-question-type.type.d.ts +1 -1
- package/survey/lib/types/esolve-survey-type.type.d.ts +1 -1
- package/survey/lib/types/esolve-survey-values-question-type.type.d.ts +1 -1
- package/survey/lib/types/index.d.ts +6 -6
- package/esm2020/esolve-ng-esolve-connect.mjs +0 -5
- package/esm2020/index.mjs +0 -67
- package/esm2020/lib/account/address/esolve-address-record.interface.mjs +0 -2
- package/esm2020/lib/account/address/esolve-address-response.interface.mjs +0 -2
- package/esm2020/lib/account/address/esolve-address-result.model.mjs +0 -11
- package/esm2020/lib/account/address/esolve-address-set-data.interface.mjs +0 -2
- package/esm2020/lib/account/address/esolve-address-type.type.mjs +0 -2
- package/esm2020/lib/account/address/esolve-address.model.mjs +0 -19
- package/esm2020/lib/account/address/index.mjs +0 -7
- package/esm2020/lib/account/confirmation/esolve-account-confirmation-post-response-item.interface.mjs +0 -2
- package/esm2020/lib/account/confirmation/esolve-account-confirmation-result.model.mjs +0 -10
- package/esm2020/lib/account/confirmation/index.mjs +0 -3
- package/esm2020/lib/account/esolve-account.service.mjs +0 -428
- package/esm2020/lib/account/esolve-geocode-result.interface.mjs +0 -2
- package/esm2020/lib/account/index.mjs +0 -8
- package/esm2020/lib/account/location/classes/esolve-location-update-result.model.mjs +0 -11
- package/esm2020/lib/account/location/classes/index.mjs +0 -2
- package/esm2020/lib/account/location/index.mjs +0 -3
- package/esm2020/lib/account/location/interfaces/esolve-location-options.interface.mjs +0 -2
- package/esm2020/lib/account/location/interfaces/index.mjs +0 -2
- package/esm2020/lib/account/password/esolve-change-password-result.model.mjs +0 -8
- package/esm2020/lib/account/password/esolve-forgot-password-get-result.interface.mjs +0 -2
- package/esm2020/lib/account/password/esolve-forgot-password-response.interface.mjs +0 -2
- package/esm2020/lib/account/password/esolve-reset-password-result.model.mjs +0 -11
- package/esm2020/lib/account/password/index.mjs +0 -5
- package/esm2020/lib/account/registration/esolve-registration-data.interface.mjs +0 -2
- package/esm2020/lib/account/registration/esolve-registration-post-response-item.interface.mjs +0 -2
- package/esm2020/lib/account/registration/esolve-registration-result.model.mjs +0 -12
- package/esm2020/lib/account/registration/index.mjs +0 -4
- package/esm2020/lib/account/user-account/classes/esolve-statement-ageing.model.mjs +0 -9
- package/esm2020/lib/account/user-account/classes/esolve-statement-balances.model.mjs +0 -11
- package/esm2020/lib/account/user-account/classes/esolve-statement-transaction.model.mjs +0 -15
- package/esm2020/lib/account/user-account/classes/esolve-statement.model.mjs +0 -12
- package/esm2020/lib/account/user-account/classes/esolve-user-account-business.model.mjs +0 -11
- package/esm2020/lib/account/user-account/classes/esolve-user-account-contact.model.mjs +0 -10
- package/esm2020/lib/account/user-account/classes/esolve-user-account-result.model.mjs +0 -9
- package/esm2020/lib/account/user-account/classes/esolve-user-account.model.mjs +0 -24
- package/esm2020/lib/account/user-account/classes/esolve-user-client-account-balances.model.mjs +0 -13
- package/esm2020/lib/account/user-account/classes/esolve-user-client-account.model.mjs +0 -48
- package/esm2020/lib/account/user-account/classes/index.mjs +0 -11
- package/esm2020/lib/account/user-account/index.mjs +0 -3
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-ageing-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-balances-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-transaction-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-user-account-data.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-user-account-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-user-client-account-balances-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/esolve-user-client-account-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/interfaces/index.mjs +0 -9
- package/esm2020/lib/auth/esolve-auth-interceptor.service.mjs +0 -44
- package/esm2020/lib/auth/esolve-auth.service.mjs +0 -236
- package/esm2020/lib/auth/index.mjs +0 -6
- package/esm2020/lib/auth/interfaces/esolve-auth-check-data.interface.mjs +0 -2
- package/esm2020/lib/auth/interfaces/esolve-auth-data.interface.mjs +0 -2
- package/esm2020/lib/auth/interfaces/esolve-auth-get-data.interface.mjs +0 -2
- package/esm2020/lib/auth/interfaces/esolve-auth-response.interface.mjs +0 -2
- package/esm2020/lib/auth/interfaces/esolve-login-post-response-item.interface.mjs +0 -2
- package/esm2020/lib/auth/interfaces/index.mjs +0 -6
- package/esm2020/lib/auth/providers/esolve-eurus-auto-login.provider.mjs +0 -12
- package/esm2020/lib/auth/providers/index.mjs +0 -2
- package/esm2020/lib/auth/types/esolve-auth-check-response.type.mjs +0 -2
- package/esm2020/lib/auth/types/esolve-auth-get-response.type.mjs +0 -2
- package/esm2020/lib/auth/types/esolve-auth-response-data.type.mjs +0 -2
- package/esm2020/lib/auth/types/esolve-auth-result.type.mjs +0 -2
- package/esm2020/lib/auth/types/index.mjs +0 -5
- package/esm2020/lib/banners/esolve-banner-image-hotspot-coords.interface.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-image-hotspot-record.interface.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-image-hotspot.model.mjs +0 -9
- package/esm2020/lib/banners/esolve-banner-image-record.interface.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-image-set.interface.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-image-type.type.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-image.model.mjs +0 -14
- package/esm2020/lib/banners/esolve-banner-link.interface.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-record.interface.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner-type.type.mjs +0 -2
- package/esm2020/lib/banners/esolve-banner.model.mjs +0 -25
- package/esm2020/lib/banners/esolve-banner.service.mjs +0 -101
- package/esm2020/lib/banners/index.mjs +0 -14
- package/esm2020/lib/cart/classes/esolve-cart-item.model.mjs +0 -26
- package/esm2020/lib/cart/classes/esolve-cart-stock-item.model.mjs +0 -51
- package/esm2020/lib/cart/classes/esolve-cart-totals.model.mjs +0 -39
- package/esm2020/lib/cart/classes/esolve-checkout-result.model.mjs +0 -10
- package/esm2020/lib/cart/classes/esolve-empty-cart-result.model.mjs +0 -4
- package/esm2020/lib/cart/classes/esolve-transaction-analytics-data.model.mjs +0 -14
- package/esm2020/lib/cart/classes/index.mjs +0 -7
- package/esm2020/lib/cart/esolve-cart.service.mjs +0 -233
- package/esm2020/lib/cart/index.mjs +0 -5
- package/esm2020/lib/cart/interfaces/esolve-cart-additional-where.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-cart-item-record.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-cart-item-response.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-cart-set-item.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-cart-totals-record.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-checkout-response.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-time-slot-checkout.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-tracking-code.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/esolve-transaction-analytics-data-record.interface.mjs +0 -2
- package/esm2020/lib/cart/interfaces/index.mjs +0 -10
- package/esm2020/lib/cart/types/esolve-cart-empty-response.type.mjs +0 -2
- package/esm2020/lib/cart/types/esolve-cart-set-action.type.mjs +0 -2
- package/esm2020/lib/cart/types/esolve-cart.type.mjs +0 -2
- package/esm2020/lib/cart/types/index.mjs +0 -4
- package/esm2020/lib/category-tree/esolve-category-identifier.interface.mjs +0 -2
- package/esm2020/lib/category-tree/esolve-category-record.interface.mjs +0 -2
- package/esm2020/lib/category-tree/esolve-category-tree-item-options.interface.mjs +0 -2
- package/esm2020/lib/category-tree/esolve-category-tree-item-record.interface.mjs +0 -2
- package/esm2020/lib/category-tree/esolve-category-tree-item.model.mjs +0 -48
- package/esm2020/lib/category-tree/esolve-category-tree.service.mjs +0 -153
- package/esm2020/lib/category-tree/esolve-subcategory-record.interface.mjs +0 -2
- package/esm2020/lib/category-tree/index.mjs +0 -7
- package/esm2020/lib/core/esolve-config.service.mjs +0 -51
- package/esm2020/lib/core/esolve-connect-config.constant.mjs +0 -3
- package/esm2020/lib/core/esolve-connect.config.mjs +0 -2
- package/esm2020/lib/core/index.mjs +0 -4
- package/esm2020/lib/coupons/classes/esolve-coupon.model.mjs +0 -29
- package/esm2020/lib/coupons/classes/index.mjs +0 -2
- package/esm2020/lib/coupons/esolve-coupons.service.mjs +0 -230
- package/esm2020/lib/coupons/index.mjs +0 -9
- package/esm2020/lib/coupons/interfaces/esolve-coupon-record.interface.mjs +0 -2
- package/esm2020/lib/coupons/interfaces/esolve-coupon-validation-error.interface.mjs +0 -2
- package/esm2020/lib/coupons/interfaces/esolve-coupon-validation-result.interface.mjs +0 -2
- package/esm2020/lib/coupons/interfaces/esolve-coupon-validation.interface.mjs +0 -2
- package/esm2020/lib/coupons/interfaces/index.mjs +0 -5
- package/esm2020/lib/coupons/types/esolve-coupons-cache.type.mjs +0 -2
- package/esm2020/lib/coupons/types/index.mjs +0 -2
- package/esm2020/lib/enquiry/esolve-enquiry-response.type.mjs +0 -2
- package/esm2020/lib/enquiry/esolve-enquiry-result.model.mjs +0 -9
- package/esm2020/lib/enquiry/esolve-enquiry.service.mjs +0 -42
- package/esm2020/lib/enquiry/index.mjs +0 -4
- package/esm2020/lib/images/directives/cdn-src.directive.mjs +0 -72
- package/esm2020/lib/images/directives/index.mjs +0 -2
- package/esm2020/lib/images/esolve-image-loader.provider.mjs +0 -13
- package/esm2020/lib/images/functions/index.mjs +0 -4
- package/esm2020/lib/images/functions/is-esolve-cdn-path.function.mjs +0 -5
- package/esm2020/lib/images/functions/is-legacy-esolve-cdn-path.function.mjs +0 -5
- package/esm2020/lib/images/functions/process-image-src.function.mjs +0 -33
- package/esm2020/lib/images/index.mjs +0 -4
- package/esm2020/lib/locations/classes/esolve-location-address.model.mjs +0 -13
- package/esm2020/lib/locations/classes/esolve-location-contact-info.model.mjs +0 -9
- package/esm2020/lib/locations/classes/esolve-location-geo.model.mjs +0 -8
- package/esm2020/lib/locations/classes/esolve-location-pobox-address.model.mjs +0 -8
- package/esm2020/lib/locations/classes/esolve-location-trading-day.model.mjs +0 -7
- package/esm2020/lib/locations/classes/esolve-location-trading-times.model.mjs +0 -14
- package/esm2020/lib/locations/classes/esolve-location.model.mjs +0 -49
- package/esm2020/lib/locations/classes/index.mjs +0 -9
- package/esm2020/lib/locations/esolve-locations.service.mjs +0 -82
- package/esm2020/lib/locations/index.mjs +0 -4
- package/esm2020/lib/locations/interfaces/esolve-location-record.interface.mjs +0 -2
- package/esm2020/lib/locations/interfaces/index.mjs +0 -2
- package/esm2020/lib/manufacturers/esolve-manufacturer-image-size.type.mjs +0 -2
- package/esm2020/lib/manufacturers/esolve-manufacturer-options.interface.mjs +0 -2
- package/esm2020/lib/manufacturers/esolve-manufacturer-record.interface.mjs +0 -2
- package/esm2020/lib/manufacturers/esolve-manufacturer.model.mjs +0 -61
- package/esm2020/lib/manufacturers/esolve-manufacturers.service.mjs +0 -71
- package/esm2020/lib/manufacturers/index.mjs +0 -10
- package/esm2020/lib/menu/classes/esolve-menu-item.model.mjs +0 -31
- package/esm2020/lib/menu/classes/index.mjs +0 -2
- package/esm2020/lib/menu/esolve-menu.service.mjs +0 -45
- package/esm2020/lib/menu/index.mjs +0 -5
- package/esm2020/lib/menu/interfaces/esolve-menu-tree-record.interface.mjs +0 -2
- package/esm2020/lib/menu/interfaces/index.mjs +0 -2
- package/esm2020/lib/menu/types/esolve-menu.type.mjs +0 -2
- package/esm2020/lib/menu/types/index.mjs +0 -2
- package/esm2020/lib/news/esolve-news-article-author-record.interface.mjs +0 -2
- package/esm2020/lib/news/esolve-news-article-author.model.mjs +0 -9
- package/esm2020/lib/news/esolve-news-article-list.model.mjs +0 -8
- package/esm2020/lib/news/esolve-news-article-options.interface.mjs +0 -2
- package/esm2020/lib/news/esolve-news-article-record.interface.mjs +0 -2
- package/esm2020/lib/news/esolve-news-article.model.mjs +0 -73
- package/esm2020/lib/news/esolve-news-group-record.interface.mjs +0 -2
- package/esm2020/lib/news/esolve-news-group.model.mjs +0 -25
- package/esm2020/lib/news/esolve-news.service.mjs +0 -117
- package/esm2020/lib/news/index.mjs +0 -10
- package/esm2020/lib/ng-esolve-connect.module.mjs +0 -42
- package/esm2020/lib/payment/classes/esolve-banking-details.model.mjs +0 -11
- package/esm2020/lib/payment/classes/esolve-payment-method.model.mjs +0 -37
- package/esm2020/lib/payment/classes/esolve-payment-result.model.mjs +0 -37
- package/esm2020/lib/payment/classes/esolve-vault-item-result.model.mjs +0 -20
- package/esm2020/lib/payment/classes/esolve-vault-item.model.mjs +0 -20
- package/esm2020/lib/payment/classes/index.mjs +0 -6
- package/esm2020/lib/payment/esolve-payment.service.mjs +0 -234
- package/esm2020/lib/payment/index.mjs +0 -5
- package/esm2020/lib/payment/interfaces/esolve-card-data.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-form-input.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-method-options.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-method-record.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-redirect-links.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-response.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-set-body.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-payment-status.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-vault-record.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/esolve-vault-response.interface.mjs +0 -2
- package/esm2020/lib/payment/interfaces/index.mjs +0 -10
- package/esm2020/lib/payment/types/esolve-integration-type.type.mjs +0 -2
- package/esm2020/lib/payment/types/esolve-service-provider.type.mjs +0 -2
- package/esm2020/lib/payment/types/index.mjs +0 -3
- package/esm2020/lib/ranges/esolve-range-options.interface.mjs +0 -2
- package/esm2020/lib/ranges/esolve-range-record.interface.mjs +0 -2
- package/esm2020/lib/ranges/esolve-range.model.mjs +0 -54
- package/esm2020/lib/ranges/esolve-ranges.service.mjs +0 -76
- package/esm2020/lib/ranges/index.mjs +0 -5
- package/esm2020/lib/session/esolve-session-metadata.service.mjs +0 -75
- package/esm2020/lib/session/esolve-session.service.mjs +0 -181
- package/esm2020/lib/session/index.mjs +0 -4
- package/esm2020/lib/session/interfaces/esolve-session-data.interface.mjs +0 -2
- package/esm2020/lib/session/interfaces/esolve-session.interface.mjs +0 -2
- package/esm2020/lib/session/interfaces/index.mjs +0 -3
- package/esm2020/lib/shared/assets/esolve-asset-list.type.mjs +0 -2
- package/esm2020/lib/shared/assets/esolve-asset-options.interface.mjs +0 -2
- package/esm2020/lib/shared/assets/esolve-asset-record.interface.mjs +0 -2
- package/esm2020/lib/shared/assets/esolve-asset-type.type.mjs +0 -2
- package/esm2020/lib/shared/assets/esolve-asset.model.mjs +0 -77
- package/esm2020/lib/shared/assets/esolve-assets.service.mjs +0 -102
- package/esm2020/lib/shared/assets/esolve-linked-asset-record.interface.mjs +0 -2
- package/esm2020/lib/shared/assets/esolve-linked-asset.model.mjs +0 -10
- package/esm2020/lib/shared/assets/index.mjs +0 -13
- package/esm2020/lib/shared/cookie/esolve-cookie.service.mjs +0 -30
- package/esm2020/lib/shared/custom-fields/esolve-custom-fields.interface.mjs +0 -2
- package/esm2020/lib/shared/custom-fields/index.mjs +0 -2
- package/esm2020/lib/shared/errors/esolve-error-handler.service.mjs +0 -94
- package/esm2020/lib/shared/errors/esolve-http-error.model.mjs +0 -15
- package/esm2020/lib/shared/errors/index.mjs +0 -3
- package/esm2020/lib/shared/esolve-hex-hash.function.mjs +0 -26
- package/esm2020/lib/shared/esolve-list.model.mjs +0 -9
- package/esm2020/lib/shared/esolve-result.model.mjs +0 -8
- package/esm2020/lib/shared/esolve-url-target.type.mjs +0 -2
- package/esm2020/lib/shared/filters/classes/esolve-multiple-select-filter.model.mjs +0 -30
- package/esm2020/lib/shared/filters/classes/esolve-range-filter.model.mjs +0 -45
- package/esm2020/lib/shared/filters/classes/esolve-single-select-filter.model.mjs +0 -33
- package/esm2020/lib/shared/filters/classes/esolve-toggle-filter.model.mjs +0 -21
- package/esm2020/lib/shared/filters/classes/index.mjs +0 -6
- package/esm2020/lib/shared/filters/esolve-filter-factory.mjs +0 -59
- package/esm2020/lib/shared/filters/index.mjs +0 -5
- package/esm2020/lib/shared/filters/interfaces/esolve-filter-definitions.interface.mjs +0 -2
- package/esm2020/lib/shared/filters/interfaces/esolve-filter-record.interface.mjs +0 -2
- package/esm2020/lib/shared/filters/interfaces/esolve-filter.interface.mjs +0 -2
- package/esm2020/lib/shared/filters/interfaces/esolve-range-filter-record.interface.mjs +0 -2
- package/esm2020/lib/shared/filters/interfaces/esolve-select-filter-record.interface.mjs +0 -2
- package/esm2020/lib/shared/filters/interfaces/esolve-select-filter.interface.mjs +0 -2
- package/esm2020/lib/shared/filters/interfaces/index.mjs +0 -8
- package/esm2020/lib/shared/filters/types/esolve-filter-list.type.mjs +0 -2
- package/esm2020/lib/shared/filters/types/esolve-filter-record-list.type.mjs +0 -2
- package/esm2020/lib/shared/filters/types/esolve-filter-toggle.type.mjs +0 -2
- package/esm2020/lib/shared/filters/types/esolve-filter-type.type.mjs +0 -2
- package/esm2020/lib/shared/filters/types/esolve-range-filter-type.type.mjs +0 -2
- package/esm2020/lib/shared/filters/types/esolve-select-filter-type.type.mjs +0 -2
- package/esm2020/lib/shared/filters/types/index.mjs +0 -7
- package/esm2020/lib/shared/geocoder/esolve-geocode-address-record.interface.mjs +0 -2
- package/esm2020/lib/shared/geocoder/esolve-geocode-address-result.model.mjs +0 -12
- package/esm2020/lib/shared/geocoder/esolve-geocode-coords-result.model.mjs +0 -7
- package/esm2020/lib/shared/geocoder/esolve-geocode-result-record.interface.mjs +0 -2
- package/esm2020/lib/shared/geocoder/esolve-geocode-result.model.mjs +0 -11
- package/esm2020/lib/shared/geocoder/esolve-geocoder.service.mjs +0 -72
- package/esm2020/lib/shared/geocoder/index.mjs +0 -7
- package/esm2020/lib/shared/response/esolve-delete-response.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-delete-result.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-get-response.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-post-response-item.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-post-response-status.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-response-handler.service.mjs +0 -33
- package/esm2020/lib/shared/response/esolve-response-log-item.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-response-result.model.mjs +0 -9
- package/esm2020/lib/shared/response/esolve-response.interface.mjs +0 -2
- package/esm2020/lib/shared/response/esolve-set-response.interface.mjs +0 -2
- package/esm2020/lib/shared/response/index.mjs +0 -11
- package/esm2020/lib/shared/seo/esolve-seo-details.interface.mjs +0 -2
- package/esm2020/lib/shared/seo/esolve-seo-info.model.mjs +0 -11
- package/esm2020/lib/shared/seo/esolve-seo.service.mjs +0 -106
- package/esm2020/lib/shared/seo/index.mjs +0 -4
- package/esm2020/lib/shared/sort/esolve-sort-order.type.mjs +0 -2
- package/esm2020/lib/shared/sort/esolve-sort.interface.mjs +0 -2
- package/esm2020/lib/shared/sort/index.mjs +0 -5
- package/esm2020/lib/shipping/classes/esolve-shipping-cost.model.mjs +0 -12
- package/esm2020/lib/shipping/classes/esolve-shipping-method.model.mjs +0 -33
- package/esm2020/lib/shipping/classes/esolve-shipping-totals.model.mjs +0 -8
- package/esm2020/lib/shipping/classes/esolve-time-slot-config.model.mjs +0 -17
- package/esm2020/lib/shipping/classes/esolve-time-slot-date.model.mjs +0 -14
- package/esm2020/lib/shipping/classes/esolve-time-slot-days.model.mjs +0 -21
- package/esm2020/lib/shipping/classes/esolve-time-slot-times.model.mjs +0 -11
- package/esm2020/lib/shipping/classes/esolve-time-slot.model.mjs +0 -19
- package/esm2020/lib/shipping/classes/index.mjs +0 -9
- package/esm2020/lib/shipping/esolve-shipping.service.mjs +0 -150
- package/esm2020/lib/shipping/index.mjs +0 -5
- package/esm2020/lib/shipping/interfaces/esolve-shipping-cost-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-shipping-method-options.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-shipping-method-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-time-slot-config-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-time-slot-date-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-time-slot-days-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-time-slot-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/esolve-time-slot-times-record.interface.mjs +0 -2
- package/esm2020/lib/shipping/interfaces/index.mjs +0 -9
- package/esm2020/lib/shipping/types/esolve-insurance-calculation-method.type.mjs +0 -2
- package/esm2020/lib/shipping/types/esolve-shipping-calculation-method.type.mjs +0 -2
- package/esm2020/lib/shipping/types/esolve-shipping-location.type.mjs +0 -2
- package/esm2020/lib/shipping/types/index.mjs +0 -4
- package/esm2020/lib/specials/esolve-special-dates.model.mjs +0 -7
- package/esm2020/lib/specials/esolve-special-image-collection-record.interface.mjs +0 -2
- package/esm2020/lib/specials/esolve-special-image-collection.model.mjs +0 -25
- package/esm2020/lib/specials/esolve-special-image-record.interface.mjs +0 -2
- package/esm2020/lib/specials/esolve-special-image.model.mjs +0 -9
- package/esm2020/lib/specials/esolve-special-options.interface.mjs +0 -2
- package/esm2020/lib/specials/esolve-special-record.interface.mjs +0 -2
- package/esm2020/lib/specials/esolve-special.model.mjs +0 -40
- package/esm2020/lib/specials/esolve-specials.service.mjs +0 -82
- package/esm2020/lib/specials/index.mjs +0 -10
- package/esm2020/lib/stock/classes/esolve-additional-stock-image.model.mjs +0 -21
- package/esm2020/lib/stock/classes/esolve-colour.model.mjs +0 -8
- package/esm2020/lib/stock/classes/esolve-dependant-item.model.mjs +0 -11
- package/esm2020/lib/stock/classes/esolve-linked-stock-item.model.mjs +0 -9
- package/esm2020/lib/stock/classes/esolve-media-stock-item.model.mjs +0 -7
- package/esm2020/lib/stock/classes/esolve-recipe-stock-item.model.mjs +0 -9
- package/esm2020/lib/stock/classes/esolve-stock-badge.model.mjs +0 -11
- package/esm2020/lib/stock/classes/esolve-stock-group-item.model.mjs +0 -7
- package/esm2020/lib/stock/classes/esolve-stock-group.model.mjs +0 -13
- package/esm2020/lib/stock/classes/esolve-stock-image-collection.model.mjs +0 -25
- package/esm2020/lib/stock/classes/esolve-stock-image.model.mjs +0 -50
- package/esm2020/lib/stock/classes/esolve-stock-item-base.model.mjs +0 -312
- package/esm2020/lib/stock/classes/esolve-stock-item-list.model.mjs +0 -11
- package/esm2020/lib/stock/classes/esolve-stock-item.model.mjs +0 -24
- package/esm2020/lib/stock/classes/esolve-stock-lead-times.model.mjs +0 -9
- package/esm2020/lib/stock/classes/esolve-stock-price.model.mjs +0 -52
- package/esm2020/lib/stock/classes/esolve-stock-transaction-history.model.mjs +0 -7
- package/esm2020/lib/stock/classes/index.mjs +0 -18
- package/esm2020/lib/stock/esolve-stock.service.mjs +0 -418
- package/esm2020/lib/stock/index.mjs +0 -6
- package/esm2020/lib/stock/interfaces/esolve-additional-stock-image-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-colour-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-dependant-item-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-linked-stock-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-media-stock-item-options.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-recipe-item-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-recipe-stock-options.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-badge-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-base-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-filter-options.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-image-collection-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-item-options.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-lead-times-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-linked-category-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-record.interface.mjs +0 -2
- package/esm2020/lib/stock/interfaces/index.mjs +0 -17
- package/esm2020/lib/stock/types/esolve-media-stock-item-list.type.mjs +0 -2
- package/esm2020/lib/stock/types/esolve-media-stock-item-record.type.mjs +0 -2
- package/esm2020/lib/stock/types/esolve-media-stock-sort-field.type.mjs +0 -2
- package/esm2020/lib/stock/types/esolve-stock-group-item-record.type.mjs +0 -2
- package/esm2020/lib/stock/types/esolve-stock-image-size.type.mjs +0 -2
- package/esm2020/lib/stock/types/esolve-stock-sort-field.type.mjs +0 -2
- package/esm2020/lib/stock/types/esolve-stock-unit-of-measure.type.mjs +0 -2
- package/esm2020/lib/stock/types/index.mjs +0 -9
- package/esm2020/lib/suppliers/classes/esolve-supplier.model.mjs +0 -27
- package/esm2020/lib/suppliers/classes/index.mjs +0 -2
- package/esm2020/lib/suppliers/esolve-suppliers.service.mjs +0 -58
- package/esm2020/lib/suppliers/index.mjs +0 -5
- package/esm2020/lib/suppliers/interfaces/esolve-supplier-options.interface.mjs +0 -2
- package/esm2020/lib/suppliers/interfaces/esolve-supplier-record.interface.mjs +0 -2
- package/esm2020/lib/suppliers/interfaces/index.mjs +0 -3
- package/esm2020/lib/tags/esolve-tag-options.interface.mjs +0 -2
- package/esm2020/lib/tags/esolve-tag-phrase-match-mode.type.mjs +0 -2
- package/esm2020/lib/tags/esolve-tag-record.interface.mjs +0 -2
- package/esm2020/lib/tags/esolve-tag.model.mjs +0 -35
- package/esm2020/lib/tags/esolve-tags.service.mjs +0 -78
- package/esm2020/lib/tags/index.mjs +0 -10
- package/esm2020/lib/topics/esolve-topic-record.interface.mjs +0 -2
- package/esm2020/lib/topics/esolve-topic.model.mjs +0 -15
- package/esm2020/lib/topics/esolve-topic.service.mjs +0 -55
- package/esm2020/lib/topics/index.mjs +0 -4
- package/esm2020/lib/transactions/classes/esolve-transaction-address.model.mjs +0 -16
- package/esm2020/lib/transactions/classes/esolve-transaction-client.model.mjs +0 -13
- package/esm2020/lib/transactions/classes/esolve-transaction-item-price.model.mjs +0 -25
- package/esm2020/lib/transactions/classes/esolve-transaction-item.model.mjs +0 -72
- package/esm2020/lib/transactions/classes/esolve-transaction-list.model.mjs +0 -4
- package/esm2020/lib/transactions/classes/esolve-transaction-location.model.mjs +0 -4
- package/esm2020/lib/transactions/classes/esolve-transaction-payment-method.model.mjs +0 -10
- package/esm2020/lib/transactions/classes/esolve-transaction-shipping-method.model.mjs +0 -12
- package/esm2020/lib/transactions/classes/esolve-transaction-user.model.mjs +0 -11
- package/esm2020/lib/transactions/classes/esolve-transaction.model.mjs +0 -55
- package/esm2020/lib/transactions/classes/index.mjs +0 -11
- package/esm2020/lib/transactions/esolve-transactions.service.mjs +0 -132
- package/esm2020/lib/transactions/index.mjs +0 -5
- package/esm2020/lib/transactions/interfaces/esolve-transaction-client-record.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/esolve-transaction-item-record.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/esolve-transaction-options.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/esolve-transaction-payment-method-record.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/esolve-transaction-record.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/esolve-transaction-shipping-method-record.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/esolve-transaction-user-record.interface.mjs +0 -2
- package/esm2020/lib/transactions/interfaces/index.mjs +0 -8
- package/esm2020/lib/transactions/types/esolve-transaction-location-record.type.mjs +0 -2
- package/esm2020/lib/transactions/types/esolve-transaction-type.type.mjs +0 -2
- package/esm2020/lib/transactions/types/index.mjs +0 -3
- package/esm2020/lib/wishlist/classes/esolve-empty-wishlist-result.model.mjs +0 -4
- package/esm2020/lib/wishlist/classes/esolve-wishlist-item.model.mjs +0 -14
- package/esm2020/lib/wishlist/classes/index.mjs +0 -3
- package/esm2020/lib/wishlist/esolve-wishlist.service.mjs +0 -119
- package/esm2020/lib/wishlist/index.mjs +0 -6
- package/esm2020/lib/wishlist/interfaces/esolve-wishlist-item-record.interface.mjs +0 -2
- package/esm2020/lib/wishlist/interfaces/esolve-wishlist-item-response.interface.mjs +0 -2
- package/esm2020/lib/wishlist/interfaces/esolve-wishlist-set-item.interface.mjs +0 -2
- package/esm2020/lib/wishlist/interfaces/index.mjs +0 -4
- package/esm2020/lib/wishlist/types/esolve-wishlist-set-action.type.mjs +0 -2
- package/esm2020/lib/wishlist/types/esolve-wishlist.type.mjs +0 -2
- package/esm2020/lib/wishlist/types/index.mjs +0 -3
- package/esm2020/media/esolve-ng-esolve-connect-media.mjs +0 -5
- package/esm2020/media/index.mjs +0 -9
- package/esm2020/media/lib/classes/esolve-heading.model.mjs +0 -7
- package/esm2020/media/lib/classes/esolve-media-article.model.mjs +0 -72
- package/esm2020/media/lib/classes/esolve-media-group.model.mjs +0 -15
- package/esm2020/media/lib/classes/esolve-media-layout-section.model.mjs +0 -18
- package/esm2020/media/lib/classes/esolve-media-link.model.mjs +0 -8
- package/esm2020/media/lib/classes/index.mjs +0 -6
- package/esm2020/media/lib/components/index.mjs +0 -3
- package/esm2020/media/lib/components/media-layout/esolve-media-layout.component.mjs +0 -34
- package/esm2020/media/lib/components/media-section/esolve-media-section.component.mjs +0 -46
- package/esm2020/media/lib/esolve-connect-media-config.token.mjs +0 -3
- package/esm2020/media/lib/esolve-connect-media.config.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-heading-record.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-layout-config.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-layout-section-config.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-media-group-record.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-media-layout-section-record.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-media-link-record.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/esolve-media-record.interface.mjs +0 -2
- package/esm2020/media/lib/interfaces/index.mjs +0 -8
- package/esm2020/media/lib/ng-esolve-connect-media.module.mjs +0 -44
- package/esm2020/media/lib/services/esolve-media-layout.service.mjs +0 -145
- package/esm2020/media/lib/services/esolve-media.service.mjs +0 -114
- package/esm2020/media/lib/services/index.mjs +0 -3
- package/esm2020/media/lib/types/esolve-media-layout-section-type.type.mjs +0 -2
- package/esm2020/media/lib/types/index.mjs +0 -2
- package/esm2020/notifications/esolve-ng-esolve-connect-notifications.mjs +0 -5
- package/esm2020/notifications/index.mjs +0 -6
- package/esm2020/notifications/lib/classes/esolve-notification-button-action.model.mjs +0 -15
- package/esm2020/notifications/lib/classes/esolve-notification-dates.model.mjs +0 -7
- package/esm2020/notifications/lib/classes/esolve-system-notification-type.model.mjs +0 -16
- package/esm2020/notifications/lib/classes/esolve-system-notification.model.mjs +0 -28
- package/esm2020/notifications/lib/classes/index.mjs +0 -5
- package/esm2020/notifications/lib/interfaces/esolve-notification-button-action-record.interface.mjs +0 -2
- package/esm2020/notifications/lib/interfaces/esolve-notification-date-record.interface.mjs +0 -2
- package/esm2020/notifications/lib/interfaces/esolve-notification-dates-record.interface.mjs +0 -2
- package/esm2020/notifications/lib/interfaces/esolve-system-notification-options.interface.mjs +0 -2
- package/esm2020/notifications/lib/interfaces/esolve-system-notification-record.interface.mjs +0 -2
- package/esm2020/notifications/lib/interfaces/esolve-system-notification-type-record.interface.mjs +0 -2
- package/esm2020/notifications/lib/interfaces/index.mjs +0 -7
- package/esm2020/notifications/lib/ng-esolve-connect-notifications.module.mjs +0 -15
- package/esm2020/notifications/lib/services/esolve-notifications.service.mjs +0 -49
- package/esm2020/notifications/lib/services/index.mjs +0 -2
- package/esm2020/notifications/lib/types/esolve-notification-position.type.mjs +0 -2
- package/esm2020/notifications/lib/types/esolve-notification-size.type.mjs +0 -2
- package/esm2020/notifications/lib/types/esolve-notification-type.type.mjs +0 -2
- package/esm2020/notifications/lib/types/index.mjs +0 -4
- package/esm2020/survey/esolve-ng-esolve-connect-survey.mjs +0 -5
- package/esm2020/survey/index.mjs +0 -6
- package/esm2020/survey/lib/classes/esolve-survey-answer-result.model.mjs +0 -11
- package/esm2020/survey/lib/classes/esolve-survey-check-question.model.mjs +0 -11
- package/esm2020/survey/lib/classes/esolve-survey-input-question.model.mjs +0 -11
- package/esm2020/survey/lib/classes/esolve-survey-options-question.model.mjs +0 -24
- package/esm2020/survey/lib/classes/esolve-survey-question.model.mjs +0 -10
- package/esm2020/survey/lib/classes/esolve-survey-radio-question.model.mjs +0 -11
- package/esm2020/survey/lib/classes/esolve-survey-rating-question.model.mjs +0 -17
- package/esm2020/survey/lib/classes/esolve-survey-select-question.model.mjs +0 -27
- package/esm2020/survey/lib/classes/esolve-survey-text-question.model.mjs +0 -10
- package/esm2020/survey/lib/classes/esolve-survey-textarea-question.model.mjs +0 -11
- package/esm2020/survey/lib/classes/esolve-survey-values-question.model.mjs +0 -11
- package/esm2020/survey/lib/classes/esolve-survey.model.mjs +0 -60
- package/esm2020/survey/lib/classes/index.mjs +0 -13
- package/esm2020/survey/lib/interfaces/esolve-survey-answer-response.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-option.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-options-question-record.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-options.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-question-record.type.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-record.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-text-question-record.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/esolve-survey-values-question-record.interface.mjs +0 -2
- package/esm2020/survey/lib/interfaces/index.mjs +0 -9
- package/esm2020/survey/lib/ng-esolve-connect-survey.module.mjs +0 -15
- package/esm2020/survey/lib/services/esolve-survey.service.mjs +0 -105
- package/esm2020/survey/lib/services/index.mjs +0 -2
- package/esm2020/survey/lib/types/esolve-survey-options-question-type.type.mjs +0 -2
- package/esm2020/survey/lib/types/esolve-survey-question-record-list.type.mjs +0 -2
- package/esm2020/survey/lib/types/esolve-survey-question-type.type.mjs +0 -2
- package/esm2020/survey/lib/types/esolve-survey-text-question-type.type.mjs +0 -2
- package/esm2020/survey/lib/types/esolve-survey-type.type.mjs +0 -2
- package/esm2020/survey/lib/types/esolve-survey-values-question-type.type.mjs +0 -2
- package/esm2020/survey/lib/types/index.mjs +0 -7
- package/fesm2015/esolve-ng-esolve-connect-media.mjs +0 -493
- package/fesm2015/esolve-ng-esolve-connect-media.mjs.map +0 -1
- package/fesm2015/esolve-ng-esolve-connect-notifications.mjs +0 -133
- package/fesm2015/esolve-ng-esolve-connect-notifications.mjs.map +0 -1
- package/fesm2015/esolve-ng-esolve-connect-survey.mjs +0 -323
- package/fesm2015/esolve-ng-esolve-connect-survey.mjs.map +0 -1
- package/fesm2015/esolve-ng-esolve-connect.mjs +0 -6382
- package/fesm2015/esolve-ng-esolve-connect.mjs.map +0 -1
- package/fesm2020/esolve-ng-esolve-connect-media.mjs +0 -485
- package/fesm2020/esolve-ng-esolve-connect-media.mjs.map +0 -1
- package/fesm2020/esolve-ng-esolve-connect-notifications.mjs +0 -131
- package/fesm2020/esolve-ng-esolve-connect-notifications.mjs.map +0 -1
- package/fesm2020/esolve-ng-esolve-connect-survey.mjs +0 -321
- package/fesm2020/esolve-ng-esolve-connect-survey.mjs.map +0 -1
- package/fesm2020/esolve-ng-esolve-connect.mjs +0 -6301
- package/fesm2020/esolve-ng-esolve-connect.mjs.map +0 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EsolveSeoInfo } from '../shared/seo/esolve-seo-info.model';
|
|
2
|
+
export class EsolveCategoryTreeItem {
|
|
3
|
+
get small_image_src() {
|
|
4
|
+
return this.getImagePath('small');
|
|
5
|
+
}
|
|
6
|
+
get thumbnail_image_src() {
|
|
7
|
+
return this.getImagePath('thumb');
|
|
8
|
+
}
|
|
9
|
+
get tiny_image_src() {
|
|
10
|
+
return this.getImagePath('tiny');
|
|
11
|
+
}
|
|
12
|
+
constructor(type, esolve_id, parent_id, description, sef_description, short_description, sort_priority, active, display_only, image_name, seo_title, seo_keywords, seo_description, children) {
|
|
13
|
+
this.type = type;
|
|
14
|
+
this.esolve_id = esolve_id;
|
|
15
|
+
this.parent_id = parent_id;
|
|
16
|
+
this.description = description;
|
|
17
|
+
this.sef_description = sef_description;
|
|
18
|
+
this.short_description = short_description;
|
|
19
|
+
this.sort_priority = sort_priority;
|
|
20
|
+
this.active = active;
|
|
21
|
+
this.display_only = display_only;
|
|
22
|
+
this.image_name = image_name;
|
|
23
|
+
this.id = '';
|
|
24
|
+
this.image_path = '';
|
|
25
|
+
if (this.type === 'category') {
|
|
26
|
+
this.id = `<<CAT>>${this.esolve_id}`;
|
|
27
|
+
if (children != null) {
|
|
28
|
+
this.children = children;
|
|
29
|
+
}
|
|
30
|
+
this.image_path = '/images/categories/';
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
this.id = `<<SUB>>${this.esolve_id}`;
|
|
34
|
+
this.image_path = '/images/subcategories/';
|
|
35
|
+
}
|
|
36
|
+
if (seo_title.trim() === '') {
|
|
37
|
+
seo_title = this.description;
|
|
38
|
+
}
|
|
39
|
+
this.seo_details = new EsolveSeoInfo(seo_title, seo_description, seo_keywords);
|
|
40
|
+
}
|
|
41
|
+
getImagePath(image_size) {
|
|
42
|
+
if (this.image_name !== '') {
|
|
43
|
+
return `${this.image_path}${image_size}/${this.image_name}`;
|
|
44
|
+
}
|
|
45
|
+
return '';
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNhdGVnb3J5LXRyZWUtaXRlbS5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9jYXRlZ29yeS10cmVlL2Vzb2x2ZS1jYXRlZ29yeS10cmVlLWl0ZW0ubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBR3BFLE1BQU0sT0FBTyxzQkFBc0I7SUFRL0IsSUFBVyxlQUFlO1FBQ3RCLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN0QyxDQUFDO0lBRUQsSUFBVyxtQkFBbUI7UUFDMUIsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3RDLENBQUM7SUFFRCxJQUFXLGNBQWM7UUFDckIsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ3JDLENBQUM7SUFFRCxZQUNXLElBQWdDLEVBQ2hDLFNBQTBCLEVBQzFCLFNBQWlCLEVBQ2pCLFdBQW1CLEVBQ25CLGVBQXVCLEVBQ3ZCLGlCQUF5QixFQUN6QixhQUFxQixFQUNyQixNQUFlLEVBQ2YsWUFBcUIsRUFDcEIsVUFBa0IsRUFDMUIsU0FBaUIsRUFDakIsWUFBb0IsRUFDcEIsZUFBdUIsRUFDdkIsUUFBbUM7UUFiNUIsU0FBSSxHQUFKLElBQUksQ0FBNEI7UUFDaEMsY0FBUyxHQUFULFNBQVMsQ0FBaUI7UUFDMUIsY0FBUyxHQUFULFNBQVMsQ0FBUTtRQUNqQixnQkFBVyxHQUFYLFdBQVcsQ0FBUTtRQUNuQixvQkFBZSxHQUFmLGVBQWUsQ0FBUTtRQUN2QixzQkFBaUIsR0FBakIsaUJBQWlCLENBQVE7UUFDekIsa0JBQWEsR0FBYixhQUFhLENBQVE7UUFDckIsV0FBTSxHQUFOLE1BQU0sQ0FBUztRQUNmLGlCQUFZLEdBQVosWUFBWSxDQUFTO1FBQ3BCLGVBQVUsR0FBVixVQUFVLENBQVE7UUE3QnZCLE9BQUUsR0FBRyxFQUFFLENBQUM7UUFLUCxlQUFVLEdBQUcsRUFBRSxDQUFDO1FBOEJwQixJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssVUFBVSxFQUFFO1lBQzFCLElBQUksQ0FBQyxFQUFFLEdBQUcsVUFBVSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7WUFFckMsSUFBSSxRQUFRLElBQUksSUFBSSxFQUFFO2dCQUNsQixJQUFJLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQzthQUM1QjtZQUVELElBQUksQ0FBQyxVQUFVLEdBQUcscUJBQXFCLENBQUM7U0FDM0M7YUFBTTtZQUNILElBQUksQ0FBQyxFQUFFLEdBQUcsVUFBVSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7WUFDckMsSUFBSSxDQUFDLFVBQVUsR0FBRyx3QkFBd0IsQ0FBQztTQUM5QztRQUVELElBQUksU0FBUyxDQUFDLElBQUksRUFBRSxLQUFLLEVBQUUsRUFBRTtZQUN6QixTQUFTLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQztTQUNoQztRQUVELElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxhQUFhLENBQ2hDLFNBQVMsRUFDVCxlQUFlLEVBQ2YsWUFBWSxDQUNmLENBQUM7SUFDTixDQUFDO0lBRU0sWUFBWSxDQUFDLFVBQXNDO1FBQ3RELElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxFQUFFLEVBQUU7WUFDeEIsT0FBTyxHQUFHLElBQUksQ0FBQyxVQUFVLEdBQUcsVUFBVSxJQUFJLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztTQUMvRDtRQUVELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlU2VvSW5mbyB9IGZyb20gJy4uL3NoYXJlZC9zZW8vZXNvbHZlLXNlby1pbmZvLm1vZGVsJztcbmltcG9ydCB7IEVzb2x2ZVNlb0RldGFpbHMgfSBmcm9tICcuLi9zaGFyZWQvc2VvL2Vzb2x2ZS1zZW8tZGV0YWlscy5pbnRlcmZhY2UnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbSBpbXBsZW1lbnRzIEVzb2x2ZVNlb0RldGFpbHMge1xuICAgIHB1YmxpYyBpZCA9ICcnO1xuICAgIHB1YmxpYyBzZW9fZGV0YWlsczogRXNvbHZlU2VvSW5mbztcbiAgICBwdWJsaWMgdG90YWxfc3RvY2s/OiBudW1iZXI7XG4gICAgcHVibGljIGNoaWxkcmVuPzogRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbVtdO1xuXG4gICAgcHJpdmF0ZSBpbWFnZV9wYXRoID0gJyc7XG5cbiAgICBwdWJsaWMgZ2V0IHNtYWxsX2ltYWdlX3NyYygpOiBzdHJpbmcge1xuICAgICAgICByZXR1cm4gdGhpcy5nZXRJbWFnZVBhdGgoJ3NtYWxsJyk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCB0aHVtYm5haWxfaW1hZ2Vfc3JjKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmdldEltYWdlUGF0aCgndGh1bWInKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0IHRpbnlfaW1hZ2Vfc3JjKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmdldEltYWdlUGF0aCgndGlueScpO1xuICAgIH1cblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwdWJsaWMgdHlwZTogJ2NhdGVnb3J5JyB8ICdzdWJjYXRlZ29yeScsXG4gICAgICAgIHB1YmxpYyBlc29sdmVfaWQ6IHN0cmluZyB8IG51bWJlcixcbiAgICAgICAgcHVibGljIHBhcmVudF9pZDogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgZGVzY3JpcHRpb246IHN0cmluZyxcbiAgICAgICAgcHVibGljIHNlZl9kZXNjcmlwdGlvbjogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgc2hvcnRfZGVzY3JpcHRpb246IHN0cmluZyxcbiAgICAgICAgcHVibGljIHNvcnRfcHJpb3JpdHk6IG51bWJlcixcbiAgICAgICAgcHVibGljIGFjdGl2ZTogYm9vbGVhbixcbiAgICAgICAgcHVibGljIGRpc3BsYXlfb25seTogYm9vbGVhbixcbiAgICAgICAgcHJpdmF0ZSBpbWFnZV9uYW1lOiBzdHJpbmcsXG4gICAgICAgIHNlb190aXRsZTogc3RyaW5nLFxuICAgICAgICBzZW9fa2V5d29yZHM6IHN0cmluZyxcbiAgICAgICAgc2VvX2Rlc2NyaXB0aW9uOiBzdHJpbmcsXG4gICAgICAgIGNoaWxkcmVuPzogRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbVtdLFxuICAgICkge1xuICAgICAgICBpZiAodGhpcy50eXBlID09PSAnY2F0ZWdvcnknKSB7XG4gICAgICAgICAgICB0aGlzLmlkID0gYDw8Q0FUPj4ke3RoaXMuZXNvbHZlX2lkfWA7XG5cbiAgICAgICAgICAgIGlmIChjaGlsZHJlbiAhPSBudWxsKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5jaGlsZHJlbiA9IGNoaWxkcmVuO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICB0aGlzLmltYWdlX3BhdGggPSAnL2ltYWdlcy9jYXRlZ29yaWVzLyc7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLmlkID0gYDw8U1VCPj4ke3RoaXMuZXNvbHZlX2lkfWA7XG4gICAgICAgICAgICB0aGlzLmltYWdlX3BhdGggPSAnL2ltYWdlcy9zdWJjYXRlZ29yaWVzLyc7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAoc2VvX3RpdGxlLnRyaW0oKSA9PT0gJycpIHtcbiAgICAgICAgICAgIHNlb190aXRsZSA9IHRoaXMuZGVzY3JpcHRpb247XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLnNlb19kZXRhaWxzID0gbmV3IEVzb2x2ZVNlb0luZm8oXG4gICAgICAgICAgICBzZW9fdGl0bGUsXG4gICAgICAgICAgICBzZW9fZGVzY3JpcHRpb24sXG4gICAgICAgICAgICBzZW9fa2V5d29yZHMsXG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldEltYWdlUGF0aChpbWFnZV9zaXplOiAnc21hbGwnIHwgJ3RodW1iJyB8ICd0aW55Jyk6IHN0cmluZyB7XG4gICAgICAgIGlmICh0aGlzLmltYWdlX25hbWUgIT09ICcnKSB7XG4gICAgICAgICAgICByZXR1cm4gYCR7dGhpcy5pbWFnZV9wYXRofSR7aW1hZ2Vfc2l6ZX0vJHt0aGlzLmltYWdlX25hbWV9YDtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiAnJztcbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { HttpClient, HttpParams } from '@angular/common/http';
|
|
3
|
+
import { throwError } from 'rxjs';
|
|
4
|
+
import { map } from 'rxjs/operators';
|
|
5
|
+
import { EsolveConfigService } from '../core';
|
|
6
|
+
import { EsolveCategoryTreeItem } from './esolve-category-tree-item.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "../core";
|
|
9
|
+
import * as i2 from "@angular/common/http";
|
|
10
|
+
class EsolveCategoryTreeService {
|
|
11
|
+
constructor(config, http) {
|
|
12
|
+
this.config = config;
|
|
13
|
+
this.http = http;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Retrieves the category tree from eSolve instance and coverts it to the correct format.
|
|
17
|
+
*/
|
|
18
|
+
getCategoryTree(identifier) {
|
|
19
|
+
let params = new HttpParams();
|
|
20
|
+
if (identifier) {
|
|
21
|
+
params = params.set('identifier', identifier);
|
|
22
|
+
}
|
|
23
|
+
return this.http
|
|
24
|
+
.get(`${this.config.api_url}/get-tree.php`, { params })
|
|
25
|
+
.pipe(map((response) => {
|
|
26
|
+
if (response.records === undefined) {
|
|
27
|
+
throw response;
|
|
28
|
+
}
|
|
29
|
+
return this.processTree(response.records);
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Retrieve the special tree structure for a specific special from the eSolve
|
|
34
|
+
* instance and converts it into the correct format
|
|
35
|
+
*
|
|
36
|
+
* @param special_id Id of to special to get tree for
|
|
37
|
+
*
|
|
38
|
+
* @returns Observable containing special tree data
|
|
39
|
+
*/
|
|
40
|
+
getSpecialTree(special_id) {
|
|
41
|
+
let params = new HttpParams();
|
|
42
|
+
params = params.set('special_id', special_id);
|
|
43
|
+
return this.http
|
|
44
|
+
.get(`${this.config.api_url}/get-special-tree.php`, { params })
|
|
45
|
+
.pipe(map((response) => {
|
|
46
|
+
if (response.records === undefined) {
|
|
47
|
+
throw response;
|
|
48
|
+
}
|
|
49
|
+
return this.processTree(response.records);
|
|
50
|
+
}));
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Retrieve the details of a category tree item from the eSolve instance and
|
|
54
|
+
* converts it to the correct format.
|
|
55
|
+
*
|
|
56
|
+
* @param options Filter options
|
|
57
|
+
*/
|
|
58
|
+
getCategoryTreeItem(options) {
|
|
59
|
+
let type;
|
|
60
|
+
let esolve_id;
|
|
61
|
+
let sef_description;
|
|
62
|
+
if (options.id) {
|
|
63
|
+
const categoryIdentifier = this.processID(options.id);
|
|
64
|
+
if (categoryIdentifier) {
|
|
65
|
+
type = categoryIdentifier.type;
|
|
66
|
+
esolve_id = categoryIdentifier.esolve_id;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
else if (options.type) {
|
|
70
|
+
type = options.type;
|
|
71
|
+
if (options.esolve_id) {
|
|
72
|
+
esolve_id = options.esolve_id;
|
|
73
|
+
}
|
|
74
|
+
else if (options.sef_description) {
|
|
75
|
+
sef_description = options.sef_description;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
if (type && (esolve_id || sef_description)) {
|
|
79
|
+
let params = new HttpParams();
|
|
80
|
+
params = params.set('type', type);
|
|
81
|
+
if (esolve_id) {
|
|
82
|
+
params = params.set('id', esolve_id);
|
|
83
|
+
}
|
|
84
|
+
if (sef_description) {
|
|
85
|
+
params = params.set('sef_description', sef_description);
|
|
86
|
+
}
|
|
87
|
+
return this.http
|
|
88
|
+
.get(`${this.config.api_url}/get-tree-item.php`, { params })
|
|
89
|
+
.pipe(map((response) => {
|
|
90
|
+
if (response.records === undefined ||
|
|
91
|
+
response.records.length <= 0) {
|
|
92
|
+
throw response;
|
|
93
|
+
}
|
|
94
|
+
return this.processTreeItem(response.records[0]);
|
|
95
|
+
}));
|
|
96
|
+
}
|
|
97
|
+
return throwError(() => 'Invalid options');
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Processes the eSolve tree records and converts them into the correct format.
|
|
101
|
+
*
|
|
102
|
+
* @param tree_records Records to process
|
|
103
|
+
*/
|
|
104
|
+
processTree(tree_records) {
|
|
105
|
+
const tree_items = [];
|
|
106
|
+
if (tree_records) {
|
|
107
|
+
for (const tree_record of tree_records) {
|
|
108
|
+
let esolve_id = '';
|
|
109
|
+
let parent_id = '';
|
|
110
|
+
let children = [];
|
|
111
|
+
if (tree_record.type === 'category') {
|
|
112
|
+
children = this.processTree(tree_record.children);
|
|
113
|
+
esolve_id = tree_record.menu_id;
|
|
114
|
+
parent_id = tree_record.owner_menu_id;
|
|
115
|
+
}
|
|
116
|
+
else {
|
|
117
|
+
esolve_id = tree_record.id;
|
|
118
|
+
parent_id = tree_record.menu_id;
|
|
119
|
+
}
|
|
120
|
+
tree_items.push(new EsolveCategoryTreeItem(tree_record.type, esolve_id, parent_id, tree_record.description, tree_record.sef_description, tree_record.seo_description, tree_record.sort_priority, tree_record.active, tree_record.display_only, tree_record.image, tree_record.seo_page_title, tree_record.seo_keywords, tree_record.short_description, children));
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
return tree_items;
|
|
124
|
+
}
|
|
125
|
+
processTreeItem(record) {
|
|
126
|
+
return new EsolveCategoryTreeItem(record.type, record.id, record.parent_id, record.description, record.sef_description, record.short_description, record.sort_priority, record.active, record.display_only, record.image, record.seo_page_title, record.seo_keywords, record.seo_description);
|
|
127
|
+
}
|
|
128
|
+
processID(id) {
|
|
129
|
+
let type;
|
|
130
|
+
let esolve_id;
|
|
131
|
+
const type_code_regex = /^<<(CAT|SUB)>>/g;
|
|
132
|
+
const match_results = id.match(type_code_regex);
|
|
133
|
+
if (match_results) {
|
|
134
|
+
const type_code = match_results[0];
|
|
135
|
+
type = type_code === '<<CAT>>' ? 'category' : 'subcategory';
|
|
136
|
+
esolve_id = id.replace(type_code_regex, '');
|
|
137
|
+
return {
|
|
138
|
+
type,
|
|
139
|
+
esolve_id,
|
|
140
|
+
};
|
|
141
|
+
}
|
|
142
|
+
return null;
|
|
143
|
+
}
|
|
144
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveCategoryTreeService, deps: [{ token: i1.EsolveConfigService }, { token: i2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
145
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveCategoryTreeService, providedIn: 'root' }); }
|
|
146
|
+
}
|
|
147
|
+
export { EsolveCategoryTreeService };
|
|
148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveCategoryTreeService, decorators: [{
|
|
149
|
+
type: Injectable,
|
|
150
|
+
args: [{
|
|
151
|
+
providedIn: 'root',
|
|
152
|
+
}]
|
|
153
|
+
}], ctorParameters: function () { return [{ type: i1.EsolveConfigService }, { type: i2.HttpClient }]; } });
|
|
154
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNhdGVnb3J5LXRyZWUuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9jYXRlZ29yeS10cmVlL2Vzb2x2ZS1jYXRlZ29yeS10cmVlLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBRTlELE9BQU8sRUFBYyxVQUFVLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDOUMsT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBR3JDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLFNBQVMsQ0FBQztBQUk5QyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7OztBQUszRSxNQUdhLHlCQUF5QjtJQUNsQyxZQUNZLE1BQTJCLEVBQzNCLElBQWdCO1FBRGhCLFdBQU0sR0FBTixNQUFNLENBQXFCO1FBQzNCLFNBQUksR0FBSixJQUFJLENBQVk7SUFDekIsQ0FBQztJQUVKOztPQUVHO0lBQ0ksZUFBZSxDQUNsQixVQUFtQjtRQUVuQixJQUFJLE1BQU0sR0FBRyxJQUFJLFVBQVUsRUFBRSxDQUFDO1FBRTlCLElBQUksVUFBVSxFQUFFO1lBQ1osTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsWUFBWSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1NBQ2pEO1FBRUQsT0FBTyxJQUFJLENBQUMsSUFBSTthQUNYLEdBQUcsQ0FJRixHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxlQUFlLEVBQUUsRUFBRSxNQUFNLEVBQUUsQ0FBQzthQUNuRCxJQUFJLENBQ0QsR0FBRyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUU7WUFDYixJQUFJLFFBQVEsQ0FBQyxPQUFPLEtBQUssU0FBUyxFQUFFO2dCQUNoQyxNQUFNLFFBQVEsQ0FBQzthQUNsQjtZQUVELE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDOUMsQ0FBQyxDQUFDLENBQ0wsQ0FBQztJQUNWLENBQUM7SUFFRDs7Ozs7OztPQU9HO0lBQ0ksY0FBYyxDQUNqQixVQUFrQjtRQUVsQixJQUFJLE1BQU0sR0FBRyxJQUFJLFVBQVUsRUFBRSxDQUFDO1FBRTlCLE1BQU0sR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxVQUFVLENBQUMsQ0FBQztRQUU5QyxPQUFPLElBQUksQ0FBQyxJQUFJO2FBQ1gsR0FBRyxDQUlGLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLHVCQUF1QixFQUFFLEVBQUUsTUFBTSxFQUFFLENBQUM7YUFDM0QsSUFBSSxDQUNELEdBQUcsQ0FBQyxDQUFDLFFBQVEsRUFBRSxFQUFFO1lBQ2IsSUFBSSxRQUFRLENBQUMsT0FBTyxLQUFLLFNBQVMsRUFBRTtnQkFDaEMsTUFBTSxRQUFRLENBQUM7YUFDbEI7WUFFRCxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQzlDLENBQUMsQ0FBQyxDQUNMLENBQUM7SUFDVixDQUFDO0lBRUQ7Ozs7O09BS0c7SUFDSSxtQkFBbUIsQ0FDdEIsT0FBc0M7UUFFdEMsSUFBSSxJQUFpQyxDQUFDO1FBQ3RDLElBQUksU0FBMkIsQ0FBQztRQUNoQyxJQUFJLGVBQWUsQ0FBQztRQUVwQixJQUFJLE9BQU8sQ0FBQyxFQUFFLEVBQUU7WUFDWixNQUFNLGtCQUFrQixHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1lBRXRELElBQUksa0JBQWtCLEVBQUU7Z0JBQ3BCLElBQUksR0FBRyxrQkFBa0IsQ0FBQyxJQUFJLENBQUM7Z0JBQy9CLFNBQVMsR0FBRyxrQkFBa0IsQ0FBQyxTQUFTLENBQUM7YUFDNUM7U0FDSjthQUFNLElBQUksT0FBTyxDQUFDLElBQUksRUFBRTtZQUNyQixJQUFJLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQztZQUVwQixJQUFJLE9BQU8sQ0FBQyxTQUFTLEVBQUU7Z0JBQ25CLFNBQVMsR0FBRyxPQUFPLENBQUMsU0FBUyxDQUFDO2FBQ2pDO2lCQUFNLElBQUksT0FBTyxDQUFDLGVBQWUsRUFBRTtnQkFDaEMsZUFBZSxHQUFHLE9BQU8sQ0FBQyxlQUFlLENBQUM7YUFDN0M7U0FDSjtRQUVELElBQUksSUFBSSxJQUFJLENBQUMsU0FBUyxJQUFJLGVBQWUsQ0FBQyxFQUFFO1lBQ3hDLElBQUksTUFBTSxHQUFHLElBQUksVUFBVSxFQUFFLENBQUM7WUFFOUIsTUFBTSxHQUFHLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLElBQUksQ0FBQyxDQUFDO1lBRWxDLElBQUksU0FBUyxFQUFFO2dCQUNYLE1BQU0sR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLElBQUksRUFBRSxTQUFTLENBQUMsQ0FBQzthQUN4QztZQUVELElBQUksZUFBZSxFQUFFO2dCQUNqQixNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxpQkFBaUIsRUFBRSxlQUFlLENBQUMsQ0FBQzthQUMzRDtZQUVELE9BQU8sSUFBSSxDQUFDLElBQUk7aUJBQ1gsR0FBRyxDQUNBLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLG9CQUFvQixFQUMxQyxFQUFFLE1BQU0sRUFBRSxDQUNiO2lCQUNBLElBQUksQ0FDRCxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRTtnQkFDYixJQUNJLFFBQVEsQ0FBQyxPQUFPLEtBQUssU0FBUztvQkFDOUIsUUFBUSxDQUFDLE9BQU8sQ0FBQyxNQUFNLElBQUksQ0FBQyxFQUM5QjtvQkFDRSxNQUFNLFFBQVEsQ0FBQztpQkFDbEI7Z0JBRUQsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUNyRCxDQUFDLENBQUMsQ0FDTCxDQUFDO1NBQ1Q7UUFFRCxPQUFPLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0lBQy9DLENBQUM7SUFFRDs7OztPQUlHO0lBQ0ssV0FBVyxDQUNmLFlBQWdFO1FBRWhFLE1BQU0sVUFBVSxHQUE2QixFQUFFLENBQUM7UUFFaEQsSUFBSSxZQUFZLEVBQUU7WUFDZCxLQUFLLE1BQU0sV0FBVyxJQUFJLFlBQVksRUFBRTtnQkFDcEMsSUFBSSxTQUFTLEdBQW9CLEVBQUUsQ0FBQztnQkFDcEMsSUFBSSxTQUFTLEdBQUcsRUFBRSxDQUFDO2dCQUNuQixJQUFJLFFBQVEsR0FBNkIsRUFBRSxDQUFDO2dCQUU1QyxJQUFJLFdBQVcsQ0FBQyxJQUFJLEtBQUssVUFBVSxFQUFFO29CQUNqQyxRQUFRLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLENBQUM7b0JBQ2xELFNBQVMsR0FBRyxXQUFXLENBQUMsT0FBTyxDQUFDO29CQUNoQyxTQUFTLEdBQUcsV0FBVyxDQUFDLGFBQWEsQ0FBQztpQkFDekM7cUJBQU07b0JBQ0gsU0FBUyxHQUFHLFdBQVcsQ0FBQyxFQUFFLENBQUM7b0JBQzNCLFNBQVMsR0FBRyxXQUFXLENBQUMsT0FBTyxDQUFDO2lCQUNuQztnQkFFRCxVQUFVLENBQUMsSUFBSSxDQUNYLElBQUksc0JBQXNCLENBQ3RCLFdBQVcsQ0FBQyxJQUFJLEVBQ2hCLFNBQVMsRUFDVCxTQUFTLEVBQ1QsV0FBVyxDQUFDLFdBQVcsRUFDdkIsV0FBVyxDQUFDLGVBQWUsRUFDM0IsV0FBVyxDQUFDLGVBQWUsRUFDM0IsV0FBVyxDQUFDLGFBQWEsRUFDekIsV0FBVyxDQUFDLE1BQU0sRUFDbEIsV0FBVyxDQUFDLFlBQVksRUFDeEIsV0FBVyxDQUFDLEtBQUssRUFDakIsV0FBVyxDQUFDLGNBQWMsRUFDMUIsV0FBVyxDQUFDLFlBQVksRUFDeEIsV0FBVyxDQUFDLGlCQUFpQixFQUM3QixRQUFRLENBQ1gsQ0FDSixDQUFDO2FBQ0w7U0FDSjtRQUVELE9BQU8sVUFBVSxDQUFDO0lBQ3RCLENBQUM7SUFFTyxlQUFlLENBQ25CLE1BQW9DO1FBRXBDLE9BQU8sSUFBSSxzQkFBc0IsQ0FDN0IsTUFBTSxDQUFDLElBQUksRUFDWCxNQUFNLENBQUMsRUFBRSxFQUNULE1BQU0sQ0FBQyxTQUFTLEVBQ2hCLE1BQU0sQ0FBQyxXQUFXLEVBQ2xCLE1BQU0sQ0FBQyxlQUFlLEVBQ3RCLE1BQU0sQ0FBQyxpQkFBaUIsRUFDeEIsTUFBTSxDQUFDLGFBQWEsRUFDcEIsTUFBTSxDQUFDLE1BQU0sRUFDYixNQUFNLENBQUMsWUFBWSxFQUNuQixNQUFNLENBQUMsS0FBSyxFQUNaLE1BQU0sQ0FBQyxjQUFjLEVBQ3JCLE1BQU0sQ0FBQyxZQUFZLEVBQ25CLE1BQU0sQ0FBQyxlQUFlLENBQ3pCLENBQUM7SUFDTixDQUFDO0lBRU8sU0FBUyxDQUFDLEVBQVU7UUFDeEIsSUFBSSxJQUFnQyxDQUFDO1FBQ3JDLElBQUksU0FBMEIsQ0FBQztRQUUvQixNQUFNLGVBQWUsR0FBRyxpQkFBaUIsQ0FBQztRQUMxQyxNQUFNLGFBQWEsR0FBRyxFQUFFLENBQUMsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBRWhELElBQUksYUFBYSxFQUFFO1lBQ2YsTUFBTSxTQUFTLEdBQUcsYUFBYSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBRW5DLElBQUksR0FBRyxTQUFTLEtBQUssU0FBUyxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQztZQUM1RCxTQUFTLEdBQUcsRUFBRSxDQUFDLE9BQU8sQ0FBQyxlQUFlLEVBQUUsRUFBRSxDQUFDLENBQUM7WUFFNUMsT0FBTztnQkFDSCxJQUFJO2dCQUNKLFNBQVM7YUFDWixDQUFDO1NBQ0w7UUFFRCxPQUFPLElBQUksQ0FBQztJQUNoQixDQUFDOzhHQTdOUSx5QkFBeUI7a0hBQXpCLHlCQUF5QixjQUZ0QixNQUFNOztTQUVULHlCQUF5QjsyRkFBekIseUJBQXlCO2tCQUhyQyxVQUFVO21CQUFDO29CQUNSLFVBQVUsRUFBRSxNQUFNO2lCQUNyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEh0dHBDbGllbnQsIEh0dHBQYXJhbXMgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5cbmltcG9ydCB7IE9ic2VydmFibGUsIHRocm93RXJyb3IgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IG1hcCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuaW1wb3J0IHsgRXNvbHZlR2V0UmVzcG9uc2UgfSBmcm9tICcuLi9zaGFyZWQvcmVzcG9uc2UnO1xuaW1wb3J0IHsgRXNvbHZlQ29uZmlnU2VydmljZSB9IGZyb20gJy4uL2NvcmUnO1xuXG5pbXBvcnQgeyBFc29sdmVDYXRlZ29yeVJlY29yZCB9IGZyb20gJy4vZXNvbHZlLWNhdGVnb3J5LXJlY29yZC5pbnRlcmZhY2UnO1xuaW1wb3J0IHsgRXNvbHZlU3ViY2F0ZWdvcnlSZWNvcmQgfSBmcm9tICcuL2Vzb2x2ZS1zdWJjYXRlZ29yeS1yZWNvcmQuaW50ZXJmYWNlJztcbmltcG9ydCB7IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW0gfSBmcm9tICcuL2Vzb2x2ZS1jYXRlZ29yeS10cmVlLWl0ZW0ubW9kZWwnO1xuaW1wb3J0IHsgRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbVJlY29yZCB9IGZyb20gJy4vZXNvbHZlLWNhdGVnb3J5LXRyZWUtaXRlbS1yZWNvcmQuaW50ZXJmYWNlJztcbmltcG9ydCB7IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW1PcHRpb25zIH0gZnJvbSAnLi9lc29sdmUtY2F0ZWdvcnktdHJlZS1pdGVtLW9wdGlvbnMuaW50ZXJmYWNlJztcbmltcG9ydCB7IEVzb2x2ZUNhdGVnb3J5SWRlbnRpZmllciB9IGZyb20gJy4vZXNvbHZlLWNhdGVnb3J5LWlkZW50aWZpZXIuaW50ZXJmYWNlJztcblxuQEluamVjdGFibGUoe1xuICAgIHByb3ZpZGVkSW46ICdyb290Jyxcbn0pXG5leHBvcnQgY2xhc3MgRXNvbHZlQ2F0ZWdvcnlUcmVlU2VydmljZSB7XG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgY29uZmlnOiBFc29sdmVDb25maWdTZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQsXG4gICAgKSB7fVxuXG4gICAgLyoqXG4gICAgICogUmV0cmlldmVzIHRoZSBjYXRlZ29yeSB0cmVlIGZyb20gZVNvbHZlIGluc3RhbmNlIGFuZCBjb3ZlcnRzIGl0IHRvIHRoZSBjb3JyZWN0IGZvcm1hdC5cbiAgICAgKi9cbiAgICBwdWJsaWMgZ2V0Q2F0ZWdvcnlUcmVlKFxuICAgICAgICBpZGVudGlmaWVyPzogc3RyaW5nLFxuICAgICk6IE9ic2VydmFibGU8RXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbVtdPiB7XG4gICAgICAgIGxldCBwYXJhbXMgPSBuZXcgSHR0cFBhcmFtcygpO1xuXG4gICAgICAgIGlmIChpZGVudGlmaWVyKSB7XG4gICAgICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCdpZGVudGlmaWVyJywgaWRlbnRpZmllcik7XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gdGhpcy5odHRwXG4gICAgICAgICAgICAuZ2V0PFxuICAgICAgICAgICAgICAgIEVzb2x2ZUdldFJlc3BvbnNlPFxuICAgICAgICAgICAgICAgICAgICAoRXNvbHZlQ2F0ZWdvcnlSZWNvcmQgfCBFc29sdmVTdWJjYXRlZ29yeVJlY29yZClbXVxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgID4oYCR7dGhpcy5jb25maWcuYXBpX3VybH0vZ2V0LXRyZWUucGhwYCwgeyBwYXJhbXMgfSlcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIG1hcCgocmVzcG9uc2UpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgaWYgKHJlc3BvbnNlLnJlY29yZHMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhyb3cgcmVzcG9uc2U7XG4gICAgICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5wcm9jZXNzVHJlZShyZXNwb25zZS5yZWNvcmRzKTtcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogUmV0cmlldmUgdGhlIHNwZWNpYWwgdHJlZSBzdHJ1Y3R1cmUgZm9yIGEgc3BlY2lmaWMgc3BlY2lhbCBmcm9tIHRoZSBlU29sdmVcbiAgICAgKiBpbnN0YW5jZSBhbmQgY29udmVydHMgaXQgaW50byB0aGUgY29ycmVjdCBmb3JtYXRcbiAgICAgKlxuICAgICAqIEBwYXJhbSBzcGVjaWFsX2lkIElkIG9mIHRvIHNwZWNpYWwgdG8gZ2V0IHRyZWUgZm9yXG4gICAgICpcbiAgICAgKiBAcmV0dXJucyBPYnNlcnZhYmxlIGNvbnRhaW5pbmcgc3BlY2lhbCB0cmVlIGRhdGFcbiAgICAgKi9cbiAgICBwdWJsaWMgZ2V0U3BlY2lhbFRyZWUoXG4gICAgICAgIHNwZWNpYWxfaWQ6IG51bWJlcixcbiAgICApOiBPYnNlcnZhYmxlPEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW1bXT4ge1xuICAgICAgICBsZXQgcGFyYW1zID0gbmV3IEh0dHBQYXJhbXMoKTtcblxuICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCdzcGVjaWFsX2lkJywgc3BlY2lhbF9pZCk7XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuaHR0cFxuICAgICAgICAgICAgLmdldDxcbiAgICAgICAgICAgICAgICBFc29sdmVHZXRSZXNwb25zZTxcbiAgICAgICAgICAgICAgICAgICAgKEVzb2x2ZUNhdGVnb3J5UmVjb3JkIHwgRXNvbHZlU3ViY2F0ZWdvcnlSZWNvcmQpW11cbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICA+KGAke3RoaXMuY29uZmlnLmFwaV91cmx9L2dldC1zcGVjaWFsLXRyZWUucGhwYCwgeyBwYXJhbXMgfSlcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIG1hcCgocmVzcG9uc2UpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgaWYgKHJlc3BvbnNlLnJlY29yZHMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhyb3cgcmVzcG9uc2U7XG4gICAgICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5wcm9jZXNzVHJlZShyZXNwb25zZS5yZWNvcmRzKTtcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogUmV0cmlldmUgdGhlIGRldGFpbHMgb2YgYSBjYXRlZ29yeSB0cmVlIGl0ZW0gZnJvbSB0aGUgZVNvbHZlIGluc3RhbmNlIGFuZFxuICAgICAqIGNvbnZlcnRzIGl0IHRvIHRoZSBjb3JyZWN0IGZvcm1hdC5cbiAgICAgKlxuICAgICAqIEBwYXJhbSBvcHRpb25zIEZpbHRlciBvcHRpb25zXG4gICAgICovXG4gICAgcHVibGljIGdldENhdGVnb3J5VHJlZUl0ZW0oXG4gICAgICAgIG9wdGlvbnM6IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW1PcHRpb25zLFxuICAgICk6IE9ic2VydmFibGU8RXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbT4ge1xuICAgICAgICBsZXQgdHlwZSE6ICdjYXRlZ29yeScgfCAnc3ViY2F0ZWdvcnknO1xuICAgICAgICBsZXQgZXNvbHZlX2lkITogbnVtYmVyIHwgc3RyaW5nO1xuICAgICAgICBsZXQgc2VmX2Rlc2NyaXB0aW9uO1xuXG4gICAgICAgIGlmIChvcHRpb25zLmlkKSB7XG4gICAgICAgICAgICBjb25zdCBjYXRlZ29yeUlkZW50aWZpZXIgPSB0aGlzLnByb2Nlc3NJRChvcHRpb25zLmlkKTtcblxuICAgICAgICAgICAgaWYgKGNhdGVnb3J5SWRlbnRpZmllcikge1xuICAgICAgICAgICAgICAgIHR5cGUgPSBjYXRlZ29yeUlkZW50aWZpZXIudHlwZTtcbiAgICAgICAgICAgICAgICBlc29sdmVfaWQgPSBjYXRlZ29yeUlkZW50aWZpZXIuZXNvbHZlX2lkO1xuICAgICAgICAgICAgfVxuICAgICAgICB9IGVsc2UgaWYgKG9wdGlvbnMudHlwZSkge1xuICAgICAgICAgICAgdHlwZSA9IG9wdGlvbnMudHlwZTtcblxuICAgICAgICAgICAgaWYgKG9wdGlvbnMuZXNvbHZlX2lkKSB7XG4gICAgICAgICAgICAgICAgZXNvbHZlX2lkID0gb3B0aW9ucy5lc29sdmVfaWQ7XG4gICAgICAgICAgICB9IGVsc2UgaWYgKG9wdGlvbnMuc2VmX2Rlc2NyaXB0aW9uKSB7XG4gICAgICAgICAgICAgICAgc2VmX2Rlc2NyaXB0aW9uID0gb3B0aW9ucy5zZWZfZGVzY3JpcHRpb247XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICBpZiAodHlwZSAmJiAoZXNvbHZlX2lkIHx8IHNlZl9kZXNjcmlwdGlvbikpIHtcbiAgICAgICAgICAgIGxldCBwYXJhbXMgPSBuZXcgSHR0cFBhcmFtcygpO1xuXG4gICAgICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCd0eXBlJywgdHlwZSk7XG5cbiAgICAgICAgICAgIGlmIChlc29sdmVfaWQpIHtcbiAgICAgICAgICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCdpZCcsIGVzb2x2ZV9pZCk7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIGlmIChzZWZfZGVzY3JpcHRpb24pIHtcbiAgICAgICAgICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCdzZWZfZGVzY3JpcHRpb24nLCBzZWZfZGVzY3JpcHRpb24pO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICByZXR1cm4gdGhpcy5odHRwXG4gICAgICAgICAgICAgICAgLmdldDxFc29sdmVHZXRSZXNwb25zZTxFc29sdmVDYXRlZ29yeVRyZWVJdGVtUmVjb3JkW10+PihcbiAgICAgICAgICAgICAgICAgICAgYCR7dGhpcy5jb25maWcuYXBpX3VybH0vZ2V0LXRyZWUtaXRlbS5waHBgLFxuICAgICAgICAgICAgICAgICAgICB7IHBhcmFtcyB9LFxuICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAucGlwZShcbiAgICAgICAgICAgICAgICAgICAgbWFwKChyZXNwb25zZSkgPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgaWYgKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJlc3BvbnNlLnJlY29yZHMgPT09IHVuZGVmaW5lZCB8fFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJlc3BvbnNlLnJlY29yZHMubGVuZ3RoIDw9IDBcbiAgICAgICAgICAgICAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRocm93IHJlc3BvbnNlO1xuICAgICAgICAgICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5wcm9jZXNzVHJlZUl0ZW0ocmVzcG9uc2UucmVjb3Jkc1swXSk7XG4gICAgICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgICk7XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gdGhyb3dFcnJvcigoKSA9PiAnSW52YWxpZCBvcHRpb25zJyk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogUHJvY2Vzc2VzIHRoZSBlU29sdmUgdHJlZSByZWNvcmRzIGFuZCBjb252ZXJ0cyB0aGVtIGludG8gdGhlIGNvcnJlY3QgZm9ybWF0LlxuICAgICAqXG4gICAgICogQHBhcmFtIHRyZWVfcmVjb3JkcyBSZWNvcmRzIHRvIHByb2Nlc3NcbiAgICAgKi9cbiAgICBwcml2YXRlIHByb2Nlc3NUcmVlKFxuICAgICAgICB0cmVlX3JlY29yZHM6IChFc29sdmVDYXRlZ29yeVJlY29yZCB8IEVzb2x2ZVN1YmNhdGVnb3J5UmVjb3JkKVtdLFxuICAgICk6IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW1bXSB7XG4gICAgICAgIGNvbnN0IHRyZWVfaXRlbXM6IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW1bXSA9IFtdO1xuXG4gICAgICAgIGlmICh0cmVlX3JlY29yZHMpIHtcbiAgICAgICAgICAgIGZvciAoY29uc3QgdHJlZV9yZWNvcmQgb2YgdHJlZV9yZWNvcmRzKSB7XG4gICAgICAgICAgICAgICAgbGV0IGVzb2x2ZV9pZDogc3RyaW5nIHwgbnVtYmVyID0gJyc7XG4gICAgICAgICAgICAgICAgbGV0IHBhcmVudF9pZCA9ICcnO1xuICAgICAgICAgICAgICAgIGxldCBjaGlsZHJlbjogRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbVtdID0gW107XG5cbiAgICAgICAgICAgICAgICBpZiAodHJlZV9yZWNvcmQudHlwZSA9PT0gJ2NhdGVnb3J5Jykge1xuICAgICAgICAgICAgICAgICAgICBjaGlsZHJlbiA9IHRoaXMucHJvY2Vzc1RyZWUodHJlZV9yZWNvcmQuY2hpbGRyZW4pO1xuICAgICAgICAgICAgICAgICAgICBlc29sdmVfaWQgPSB0cmVlX3JlY29yZC5tZW51X2lkO1xuICAgICAgICAgICAgICAgICAgICBwYXJlbnRfaWQgPSB0cmVlX3JlY29yZC5vd25lcl9tZW51X2lkO1xuICAgICAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgICAgIGVzb2x2ZV9pZCA9IHRyZWVfcmVjb3JkLmlkO1xuICAgICAgICAgICAgICAgICAgICBwYXJlbnRfaWQgPSB0cmVlX3JlY29yZC5tZW51X2lkO1xuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIHRyZWVfaXRlbXMucHVzaChcbiAgICAgICAgICAgICAgICAgICAgbmV3IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW0oXG4gICAgICAgICAgICAgICAgICAgICAgICB0cmVlX3JlY29yZC50eXBlLFxuICAgICAgICAgICAgICAgICAgICAgICAgZXNvbHZlX2lkLFxuICAgICAgICAgICAgICAgICAgICAgICAgcGFyZW50X2lkLFxuICAgICAgICAgICAgICAgICAgICAgICAgdHJlZV9yZWNvcmQuZGVzY3JpcHRpb24sXG4gICAgICAgICAgICAgICAgICAgICAgICB0cmVlX3JlY29yZC5zZWZfZGVzY3JpcHRpb24sXG4gICAgICAgICAgICAgICAgICAgICAgICB0cmVlX3JlY29yZC5zZW9fZGVzY3JpcHRpb24sXG4gICAgICAgICAgICAgICAgICAgICAgICB0cmVlX3JlY29yZC5zb3J0X3ByaW9yaXR5LFxuICAgICAgICAgICAgICAgICAgICAgICAgdHJlZV9yZWNvcmQuYWN0aXZlLFxuICAgICAgICAgICAgICAgICAgICAgICAgdHJlZV9yZWNvcmQuZGlzcGxheV9vbmx5LFxuICAgICAgICAgICAgICAgICAgICAgICAgdHJlZV9yZWNvcmQuaW1hZ2UsXG4gICAgICAgICAgICAgICAgICAgICAgICB0cmVlX3JlY29yZC5zZW9fcGFnZV90aXRsZSxcbiAgICAgICAgICAgICAgICAgICAgICAgIHRyZWVfcmVjb3JkLnNlb19rZXl3b3JkcyxcbiAgICAgICAgICAgICAgICAgICAgICAgIHRyZWVfcmVjb3JkLnNob3J0X2Rlc2NyaXB0aW9uLFxuICAgICAgICAgICAgICAgICAgICAgICAgY2hpbGRyZW4sXG4gICAgICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiB0cmVlX2l0ZW1zO1xuICAgIH1cblxuICAgIHByaXZhdGUgcHJvY2Vzc1RyZWVJdGVtKFxuICAgICAgICByZWNvcmQ6IEVzb2x2ZUNhdGVnb3J5VHJlZUl0ZW1SZWNvcmQsXG4gICAgKTogRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbSB7XG4gICAgICAgIHJldHVybiBuZXcgRXNvbHZlQ2F0ZWdvcnlUcmVlSXRlbShcbiAgICAgICAgICAgIHJlY29yZC50eXBlLFxuICAgICAgICAgICAgcmVjb3JkLmlkLFxuICAgICAgICAgICAgcmVjb3JkLnBhcmVudF9pZCxcbiAgICAgICAgICAgIHJlY29yZC5kZXNjcmlwdGlvbixcbiAgICAgICAgICAgIHJlY29yZC5zZWZfZGVzY3JpcHRpb24sXG4gICAgICAgICAgICByZWNvcmQuc2hvcnRfZGVzY3JpcHRpb24sXG4gICAgICAgICAgICByZWNvcmQuc29ydF9wcmlvcml0eSxcbiAgICAgICAgICAgIHJlY29yZC5hY3RpdmUsXG4gICAgICAgICAgICByZWNvcmQuZGlzcGxheV9vbmx5LFxuICAgICAgICAgICAgcmVjb3JkLmltYWdlLFxuICAgICAgICAgICAgcmVjb3JkLnNlb19wYWdlX3RpdGxlLFxuICAgICAgICAgICAgcmVjb3JkLnNlb19rZXl3b3JkcyxcbiAgICAgICAgICAgIHJlY29yZC5zZW9fZGVzY3JpcHRpb24sXG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBwcm9jZXNzSUQoaWQ6IHN0cmluZyk6IEVzb2x2ZUNhdGVnb3J5SWRlbnRpZmllciB8IG51bGwge1xuICAgICAgICBsZXQgdHlwZTogJ2NhdGVnb3J5JyB8ICdzdWJjYXRlZ29yeSc7XG4gICAgICAgIGxldCBlc29sdmVfaWQ6IG51bWJlciB8IHN0cmluZztcblxuICAgICAgICBjb25zdCB0eXBlX2NvZGVfcmVnZXggPSAvXjw8KENBVHxTVUIpPj4vZztcbiAgICAgICAgY29uc3QgbWF0Y2hfcmVzdWx0cyA9IGlkLm1hdGNoKHR5cGVfY29kZV9yZWdleCk7XG5cbiAgICAgICAgaWYgKG1hdGNoX3Jlc3VsdHMpIHtcbiAgICAgICAgICAgIGNvbnN0IHR5cGVfY29kZSA9IG1hdGNoX3Jlc3VsdHNbMF07XG5cbiAgICAgICAgICAgIHR5cGUgPSB0eXBlX2NvZGUgPT09ICc8PENBVD4+JyA/ICdjYXRlZ29yeScgOiAnc3ViY2F0ZWdvcnknO1xuICAgICAgICAgICAgZXNvbHZlX2lkID0gaWQucmVwbGFjZSh0eXBlX2NvZGVfcmVnZXgsICcnKTtcblxuICAgICAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgICAgICB0eXBlLFxuICAgICAgICAgICAgICAgIGVzb2x2ZV9pZCxcbiAgICAgICAgICAgIH07XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gbnVsbDtcbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXN1YmNhdGVnb3J5LXJlY29yZC5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvY2F0ZWdvcnktdHJlZS9lc29sdmUtc3ViY2F0ZWdvcnktcmVjb3JkLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBFc29sdmVTdWJjYXRlZ29yeVJlY29yZCB7XG4gICAgdHlwZTogJ3N1YmNhdGVnb3J5JztcblxuICAgIGlkOiBudW1iZXI7XG4gICAgbWVudV9pZDogc3RyaW5nO1xuICAgIGV4dGVybmFsX3N5c3RlbV9jb2RlOiBzdHJpbmc7XG4gICAgbG9jYXRpb25faWQ6IG51bWJlcjtcblxuICAgIGRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gICAgc2VmX2Rlc2NyaXB0aW9uOiBzdHJpbmc7XG4gICAgc2VvX2Rlc2NyaXB0aW9uOiBzdHJpbmc7XG4gICAgc29ydF9wcmlvcml0eTogbnVtYmVyO1xuICAgIGFjdGl2ZTogYm9vbGVhbjtcbiAgICBkaXNwbGF5X29ubHk6IGJvb2xlYW47XG4gICAgc2VvX3BhZ2VfdGl0bGU6IHN0cmluZztcbiAgICBzZW9fa2V5d29yZHM6IHN0cmluZztcbiAgICBzaG9ydF9kZXNjcmlwdGlvbjogc3RyaW5nO1xuICAgIGltYWdlOiBzdHJpbmc7XG5cbiAgICB0b3RhbF9zdG9jaz86IG51bWJlcjtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './esolve-subcategory-record.interface';
|
|
2
|
+
export * from './esolve-category-record.interface';
|
|
3
|
+
export * from './esolve-category-tree-item.model';
|
|
4
|
+
export * from './esolve-category-tree-item-record.interface';
|
|
5
|
+
export * from './esolve-category-tree-item-options.interface';
|
|
6
|
+
export * from './esolve-category-tree.service';
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvY2F0ZWdvcnktdHJlZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsK0NBQStDLENBQUM7QUFDOUQsY0FBYyxnQ0FBZ0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLXN1YmNhdGVnb3J5LXJlY29yZC5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtY2F0ZWdvcnktcmVjb3JkLmludGVyZmFjZSc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1jYXRlZ29yeS10cmVlLWl0ZW0ubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtY2F0ZWdvcnktdHJlZS1pdGVtLXJlY29yZC5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtY2F0ZWdvcnktdHJlZS1pdGVtLW9wdGlvbnMuaW50ZXJmYWNlJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWNhdGVnb3J5LXRyZWUuc2VydmljZSc7XG4iXX0=
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Injectable, Inject } from '@angular/core';
|
|
2
|
+
import { ESOLVE_CONNECT_CONFIG } from './esolve-connect-config.constant';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
class EsolveConfigService {
|
|
5
|
+
constructor(config) {
|
|
6
|
+
this.api_url = '';
|
|
7
|
+
this.wsid = '';
|
|
8
|
+
this.title_separator = '|';
|
|
9
|
+
this.session_storage_key = '_ng_eslv_token';
|
|
10
|
+
this.coupon_storage_key = '_ng_eslv_coupons';
|
|
11
|
+
this.device_designation = 'web';
|
|
12
|
+
if (config.api_url === '' || config.wsid === '') {
|
|
13
|
+
throw new Error('Invalid eSolve Eurus config');
|
|
14
|
+
}
|
|
15
|
+
this.api_url = config.api_url;
|
|
16
|
+
this.wsid = config.wsid;
|
|
17
|
+
this.title_prefix = config.title_prefix ?? '';
|
|
18
|
+
this.title_suffix = config.title_suffix ?? '';
|
|
19
|
+
this.default_seo_title = config.default_seo_title ?? '';
|
|
20
|
+
this.default_seo_description = config.default_seo_description ?? '';
|
|
21
|
+
this.default_seo_keywords = config.default_seo_keywords ?? '';
|
|
22
|
+
this.native = config.native ?? false;
|
|
23
|
+
if (config.session_storage_key) {
|
|
24
|
+
this.session_storage_key = config.session_storage_key;
|
|
25
|
+
}
|
|
26
|
+
if (config.title_separator) {
|
|
27
|
+
this.title_separator = config.title_separator;
|
|
28
|
+
}
|
|
29
|
+
if (config.coupon_storage_key) {
|
|
30
|
+
this.coupon_storage_key = config.coupon_storage_key;
|
|
31
|
+
}
|
|
32
|
+
if (this.native && config.device_designation) {
|
|
33
|
+
this.device_designation = config.device_designation;
|
|
34
|
+
}
|
|
35
|
+
this.legacy_cdn = config.legacy_cdn;
|
|
36
|
+
this.cdn = config.cdn;
|
|
37
|
+
this.error_image_path = config.error_image_path;
|
|
38
|
+
}
|
|
39
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveConfigService, deps: [{ token: ESOLVE_CONNECT_CONFIG }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
40
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveConfigService, providedIn: 'root' }); }
|
|
41
|
+
}
|
|
42
|
+
export { EsolveConfigService };
|
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveConfigService, decorators: [{
|
|
44
|
+
type: Injectable,
|
|
45
|
+
args: [{
|
|
46
|
+
providedIn: 'root',
|
|
47
|
+
}]
|
|
48
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
49
|
+
type: Inject,
|
|
50
|
+
args: [ESOLVE_CONNECT_CONFIG]
|
|
51
|
+
}] }]; } });
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvbmZpZy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2NvcmUvZXNvbHZlLWNvbmZpZy5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRW5ELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLGtDQUFrQyxDQUFDOztBQUV6RSxNQUdhLG1CQUFtQjtJQWtCNUIsWUFBMkMsTUFBMkI7UUFqQi9ELFlBQU8sR0FBRyxFQUFFLENBQUM7UUFDYixTQUFJLEdBQUcsRUFBRSxDQUFDO1FBR1Ysb0JBQWUsR0FBRyxHQUFHLENBQUM7UUFLdEIsd0JBQW1CLEdBQUcsZ0JBQWdCLENBQUM7UUFDdkMsdUJBQWtCLEdBQUcsa0JBQWtCLENBQUM7UUFDeEMsdUJBQWtCLEdBQUcsS0FBSyxDQUFDO1FBTzlCLElBQUksTUFBTSxDQUFDLE9BQU8sS0FBSyxFQUFFLElBQUksTUFBTSxDQUFDLElBQUksS0FBSyxFQUFFLEVBQUU7WUFDN0MsTUFBTSxJQUFJLEtBQUssQ0FBQyw2QkFBNkIsQ0FBQyxDQUFDO1NBQ2xEO1FBRUQsSUFBSSxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUMsT0FBTyxDQUFDO1FBQzlCLElBQUksQ0FBQyxJQUFJLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQztRQUV4QixJQUFJLENBQUMsWUFBWSxHQUFHLE1BQU0sQ0FBQyxZQUFZLElBQUksRUFBRSxDQUFDO1FBQzlDLElBQUksQ0FBQyxZQUFZLEdBQUcsTUFBTSxDQUFDLFlBQVksSUFBSSxFQUFFLENBQUM7UUFDOUMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLE1BQU0sQ0FBQyxpQkFBaUIsSUFBSSxFQUFFLENBQUM7UUFDeEQsSUFBSSxDQUFDLHVCQUF1QixHQUFHLE1BQU0sQ0FBQyx1QkFBdUIsSUFBSSxFQUFFLENBQUM7UUFDcEUsSUFBSSxDQUFDLG9CQUFvQixHQUFHLE1BQU0sQ0FBQyxvQkFBb0IsSUFBSSxFQUFFLENBQUM7UUFFOUQsSUFBSSxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUMsTUFBTSxJQUFJLEtBQUssQ0FBQztRQUVyQyxJQUFJLE1BQU0sQ0FBQyxtQkFBbUIsRUFBRTtZQUM1QixJQUFJLENBQUMsbUJBQW1CLEdBQUcsTUFBTSxDQUFDLG1CQUFtQixDQUFDO1NBQ3pEO1FBRUQsSUFBSSxNQUFNLENBQUMsZUFBZSxFQUFFO1lBQ3hCLElBQUksQ0FBQyxlQUFlLEdBQUcsTUFBTSxDQUFDLGVBQWUsQ0FBQztTQUNqRDtRQUVELElBQUksTUFBTSxDQUFDLGtCQUFrQixFQUFFO1lBQzNCLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxNQUFNLENBQUMsa0JBQWtCLENBQUM7U0FDdkQ7UUFFRCxJQUFJLElBQUksQ0FBQyxNQUFNLElBQUksTUFBTSxDQUFDLGtCQUFrQixFQUFFO1lBQzFDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxNQUFNLENBQUMsa0JBQWtCLENBQUM7U0FDdkQ7UUFFRCxJQUFJLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUM7UUFDcEMsSUFBSSxDQUFDLEdBQUcsR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDO1FBQ3RCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxNQUFNLENBQUMsZ0JBQWdCLENBQUM7SUFDcEQsQ0FBQzs4R0FyRFEsbUJBQW1CLGtCQWtCUixxQkFBcUI7a0hBbEJoQyxtQkFBbUIsY0FGaEIsTUFBTTs7U0FFVCxtQkFBbUI7MkZBQW5CLG1CQUFtQjtrQkFIL0IsVUFBVTttQkFBQztvQkFDUixVQUFVLEVBQUUsTUFBTTtpQkFDckI7OzBCQW1CZ0IsTUFBTTsyQkFBQyxxQkFBcUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlLCBJbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEVzb2x2ZUNvbm5lY3RDb25maWcgfSBmcm9tICcuL2Vzb2x2ZS1jb25uZWN0LmNvbmZpZyc7XG5pbXBvcnQgeyBFU09MVkVfQ09OTkVDVF9DT05GSUcgfSBmcm9tICcuL2Vzb2x2ZS1jb25uZWN0LWNvbmZpZy5jb25zdGFudCc7XG5cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIEVzb2x2ZUNvbmZpZ1NlcnZpY2UgaW1wbGVtZW50cyBFc29sdmVDb25uZWN0Q29uZmlnIHtcbiAgICBwdWJsaWMgYXBpX3VybCA9ICcnO1xuICAgIHB1YmxpYyB3c2lkID0gJyc7XG4gICAgcHVibGljIHRpdGxlX3ByZWZpeDogc3RyaW5nO1xuICAgIHB1YmxpYyB0aXRsZV9zdWZmaXg6IHN0cmluZztcbiAgICBwdWJsaWMgdGl0bGVfc2VwYXJhdG9yID0gJ3wnO1xuICAgIHB1YmxpYyBkZWZhdWx0X3Nlb190aXRsZTogc3RyaW5nO1xuICAgIHB1YmxpYyBkZWZhdWx0X3Nlb19kZXNjcmlwdGlvbjogc3RyaW5nO1xuICAgIHB1YmxpYyBkZWZhdWx0X3Nlb19rZXl3b3Jkczogc3RyaW5nO1xuICAgIHB1YmxpYyBuYXRpdmU6IGJvb2xlYW47XG4gICAgcHVibGljIHNlc3Npb25fc3RvcmFnZV9rZXkgPSAnX25nX2VzbHZfdG9rZW4nO1xuICAgIHB1YmxpYyBjb3Vwb25fc3RvcmFnZV9rZXkgPSAnX25nX2VzbHZfY291cG9ucyc7XG4gICAgcHVibGljIGRldmljZV9kZXNpZ25hdGlvbiA9ICd3ZWInO1xuXG4gICAgcHVibGljIGxlZ2FjeV9jZG4/OiBzdHJpbmc7XG4gICAgcHVibGljIGNkbj86IHN0cmluZztcbiAgICBwdWJsaWMgZXJyb3JfaW1hZ2VfcGF0aD86IHN0cmluZztcblxuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRVNPTFZFX0NPTk5FQ1RfQ09ORklHKSBjb25maWc6IEVzb2x2ZUNvbm5lY3RDb25maWcpIHtcbiAgICAgICAgaWYgKGNvbmZpZy5hcGlfdXJsID09PSAnJyB8fCBjb25maWcud3NpZCA9PT0gJycpIHtcbiAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcignSW52YWxpZCBlU29sdmUgRXVydXMgY29uZmlnJyk7XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLmFwaV91cmwgPSBjb25maWcuYXBpX3VybDtcbiAgICAgICAgdGhpcy53c2lkID0gY29uZmlnLndzaWQ7XG5cbiAgICAgICAgdGhpcy50aXRsZV9wcmVmaXggPSBjb25maWcudGl0bGVfcHJlZml4ID8/ICcnO1xuICAgICAgICB0aGlzLnRpdGxlX3N1ZmZpeCA9IGNvbmZpZy50aXRsZV9zdWZmaXggPz8gJyc7XG4gICAgICAgIHRoaXMuZGVmYXVsdF9zZW9fdGl0bGUgPSBjb25maWcuZGVmYXVsdF9zZW9fdGl0bGUgPz8gJyc7XG4gICAgICAgIHRoaXMuZGVmYXVsdF9zZW9fZGVzY3JpcHRpb24gPSBjb25maWcuZGVmYXVsdF9zZW9fZGVzY3JpcHRpb24gPz8gJyc7XG4gICAgICAgIHRoaXMuZGVmYXVsdF9zZW9fa2V5d29yZHMgPSBjb25maWcuZGVmYXVsdF9zZW9fa2V5d29yZHMgPz8gJyc7XG5cbiAgICAgICAgdGhpcy5uYXRpdmUgPSBjb25maWcubmF0aXZlID8/IGZhbHNlO1xuXG4gICAgICAgIGlmIChjb25maWcuc2Vzc2lvbl9zdG9yYWdlX2tleSkge1xuICAgICAgICAgICAgdGhpcy5zZXNzaW9uX3N0b3JhZ2Vfa2V5ID0gY29uZmlnLnNlc3Npb25fc3RvcmFnZV9rZXk7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAoY29uZmlnLnRpdGxlX3NlcGFyYXRvcikge1xuICAgICAgICAgICAgdGhpcy50aXRsZV9zZXBhcmF0b3IgPSBjb25maWcudGl0bGVfc2VwYXJhdG9yO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKGNvbmZpZy5jb3Vwb25fc3RvcmFnZV9rZXkpIHtcbiAgICAgICAgICAgIHRoaXMuY291cG9uX3N0b3JhZ2Vfa2V5ID0gY29uZmlnLmNvdXBvbl9zdG9yYWdlX2tleTtcbiAgICAgICAgfVxuXG4gICAgICAgIGlmICh0aGlzLm5hdGl2ZSAmJiBjb25maWcuZGV2aWNlX2Rlc2lnbmF0aW9uKSB7XG4gICAgICAgICAgICB0aGlzLmRldmljZV9kZXNpZ25hdGlvbiA9IGNvbmZpZy5kZXZpY2VfZGVzaWduYXRpb247XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLmxlZ2FjeV9jZG4gPSBjb25maWcubGVnYWN5X2NkbjtcbiAgICAgICAgdGhpcy5jZG4gPSBjb25maWcuY2RuO1xuICAgICAgICB0aGlzLmVycm9yX2ltYWdlX3BhdGggPSBjb25maWcuZXJyb3JfaW1hZ2VfcGF0aDtcbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
export const ESOLVE_CONNECT_CONFIG = new InjectionToken('esolve.connect.config');
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvbm5lY3QtY29uZmlnLmNvbnN0YW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2NvcmUvZXNvbHZlLWNvbm5lY3QtY29uZmlnLmNvbnN0YW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFJL0MsTUFBTSxDQUFDLE1BQU0scUJBQXFCLEdBQUcsSUFBSSxjQUFjLENBQ25ELHVCQUF1QixDQUMxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgRXNvbHZlQ29ubmVjdENvbmZpZyB9IGZyb20gJy4vZXNvbHZlLWNvbm5lY3QuY29uZmlnJztcblxuZXhwb3J0IGNvbnN0IEVTT0xWRV9DT05ORUNUX0NPTkZJRyA9IG5ldyBJbmplY3Rpb25Ub2tlbjxFc29sdmVDb25uZWN0Q29uZmlnPihcbiAgICAnZXNvbHZlLmNvbm5lY3QuY29uZmlnJyxcbik7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvbm5lY3QuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2NvcmUvZXNvbHZlLWNvbm5lY3QuY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIENvbmZpZ3VyYXRpb24gc2V0dGluZ3MgdG8gZVNvbHZlIENvbm5lY3QgTW9kdWxlXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgRXNvbHZlQ29ubmVjdENvbmZpZyB7XG4gICAgLyoqXG4gICAgICogVVJMIHRvIHRoZSBlU29sdmUgaW5zdGFuY2VcbiAgICAgKi9cbiAgICBhcGlfdXJsOiBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBlU29sdmUgV2ViIFNlcnZpY2UgSUQuIFRoaXMgY29kZSBpbiByZXF1aXJlZCB0byBhdXRoZW50aWNhdGUgeW91ciBpbnN0YW5jZVxuICAgICAqL1xuICAgIHdzaWQ6IHN0cmluZztcblxuICAgIC8qKlxuICAgICAqIFRleHQgdG8gYmUgcHJlZml4ZWQgdG8gdGhlIHBhZ2UgdGl0bGVcbiAgICAgKi9cbiAgICB0aXRsZV9wcmVmaXg/OiBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBUZXh0IHRvIGJlIHN1ZmZpeGVkIHRvIHRoZSBwYWdlIHRpdGxlXG4gICAgICovXG4gICAgdGl0bGVfc3VmZml4Pzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogU3RyaW5nIHRvIHNlcGFyYXRlIHRoZSB0aXRsZSBmcm9tIHByZWZpeCBhbmQgc3VmZml4LiBEZWZhdWx0IGlzIHRoZSBgfGAgY2hhcmFjdGVyXG4gICAgICovXG4gICAgdGl0bGVfc2VwYXJhdG9yPzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogRGVmYXVsdCBTRU8gcGFnZSB0aXRsZVxuICAgICAqL1xuICAgIGRlZmF1bHRfc2VvX3RpdGxlPzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogRGVmYXVsdCBTRU8gcGFnZSBkZXNjcmlwdGlvblxuICAgICAqL1xuICAgIGRlZmF1bHRfc2VvX2Rlc2NyaXB0aW9uPzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogRGVmYXVsdCBTRU8ga2V5d29yZHNcbiAgICAgKi9cbiAgICBkZWZhdWx0X3Nlb19rZXl3b3Jkcz86IHN0cmluZztcblxuICAgIC8qKlxuICAgICAqIEtleSBmb3IgdXNlciBzZXNzaW9uIGxvY2FsIHN0b3JhZ2UgKERlZmF1bHQgaXMgYF9uZ19lc2x2X3Rva2VuYClcbiAgICAgKi9cbiAgICBzZXNzaW9uX3N0b3JhZ2Vfa2V5Pzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogS2V5IGZvciBjb3Vwb24gbG9jYWwgc3RvcmFnZSAoRGVmYXVsdCBpcyBgX25nX2VzbHZfY291cG9uc2ApXG4gICAgICovXG4gICAgY291cG9uX3N0b3JhZ2Vfa2V5Pzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogSW5kaWNhdGVzIHdoZXRoZXIgdGhlIGltcGxlbWVudGF0aW9uIGlzIGEgbmF0aXZlIGFwcCBvciBhIHdlYnNpdGUuIElmIGl0IGlzIGEgbmF0aXZlXG4gICAgICogYXBwLCB0aGUgYGRldmljZV9kZXNpZ25hdGlvbmAgaXMgcmVxdWlyZWQgZm9yIG5hdGl2ZSBhcHAgZmVhdHVyZXMgdG8gYmUgZW5hYmxlZFxuICAgICAqL1xuICAgIG5hdGl2ZT86IGJvb2xlYW47XG5cbiAgICAvKipcbiAgICAgKiBJbmRpY2F0ZXMgdGhlIHBsYXRmb3JtIHVzZWQuIFBvc3NpYmxlIHZhbHVlcyBpbmNsdWRlIGBhbmRyb2lkYCwgYGlvc2AgYW5kXG4gICAgICogYHdlYmAuIElmIG5vbmUgaXMgcHJvdmlkZWQsIHRoZW4gdGhlIHZhbHVlIGlzIGFzc3VtZWQgdG8gYmUgYHdlYmBcbiAgICAgKi9cbiAgICBkZXZpY2VfZGVzaWduYXRpb24/OiBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBJdCBpcyB1c2VkIHRvIHNwZWNpZnkgdGhlIFVSTCBvZiBhIGxlZ2FjeSBjb250ZW50IGRlbGl2ZXJ5IG5ldHdvcmsgKENETikgdGhhdCBtYXkgYmVcbiAgICAgKiB1c2VkIGZvciBzZXJ2aW5nIHN0YXRpYyBhc3NldHMgc3VjaCBhcyBpbWFnZXMsIHZpZGVvcywgYW5kIG90aGVyIG1lZGlhIGZpbGVzLiBUaGlzIHByb3BlcnR5IGlzXG4gICAgICogb3B0aW9uYWwgYW5kIG1heSBub3QgYmUgdXNlZCBpZiB0aGUgYXBwbGljYXRpb24gZG9lcyBub3QgcmVxdWlyZSBhIGxlZ2FjeSBDRE4uXG4gICAgICogQGRlcHJlY2F0ZWRcbiAgICAgKi9cbiAgICBsZWdhY3lfY2RuPzogc3RyaW5nO1xuXG4gICAgLyoqXG4gICAgICogVGhpcyBwcm9wZXJ0eSBpcyB1c2VkIHRvIHNwZWNpZnkgdGhlIFVSTCBvZiBhIGNvbnRlbnQgZGVsaXZlcnkgbmV0d29yayAoQ0ROKVxuICAgICAqIHRoYXQgbWF5IGJlIHVzZWQgZm9yIHNlcnZpbmcgc3RhdGljIGFzc2V0cyBzdWNoIGFzIGltYWdlcywgdmlkZW9zLCBhbmQgb3RoZXIgbWVkaWFcbiAgICAgKiBmaWxlcy4gSWYgdGhpcyBwcm9wZXJ0eSBpcyBub3QgcHJvdmlkZWQsIHRoZSBhcHBsaWNhdGlvbiBtYXkgbm90IHVzZSBhIENETi5cbiAgICAgKi9cbiAgICBjZG4/OiBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBTcGVjaWZpZXMgdGhlIHBhdGggdG8gYW4gZXJyb3IgaW1hZ2UgdGhhdCBjYW4gYmUgZGlzcGxheWVkIGluIGNhc2Ugb2YgZXJyb3JzIG9yIGZhaWx1cmVzIGluXG4gICAgICogdGhlIGFwcGxpY2F0aW9uLiBJZiB0aGlzIHByb3BlcnR5IGlzIG5vdCBwcm92aWRlZCwgYC9hc3NldHMvbm9faW1hZ2UuanBnYCBpcyB1c2VkIGluc3RlYWQuXG4gICAgICovXG4gICAgZXJyb3JfaW1hZ2VfcGF0aD86IHN0cmluZztcbn1cbiJdfQ==
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './esolve-config.service';
|
|
2
|
+
export * from './esolve-connect-config.constant';
|
|
3
|
+
export * from './esolve-connect.config';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvY29yZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWNvbmZpZy5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWNvbm5lY3QtY29uZmlnLmNvbnN0YW50JztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWNvbm5lY3QuY29uZmlnJztcbiJdfQ==
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export class EsolveCoupon {
|
|
2
|
+
constructor(record) {
|
|
3
|
+
this.id = 0;
|
|
4
|
+
this.identifier = '';
|
|
5
|
+
this.discount = 0;
|
|
6
|
+
/**
|
|
7
|
+
* Shows either the short code or the coupon key (if short code is not set)
|
|
8
|
+
*/
|
|
9
|
+
this.coupon_code = '';
|
|
10
|
+
/**
|
|
11
|
+
* Limit of the number of items it can apply to
|
|
12
|
+
*/
|
|
13
|
+
this.apply_on = 0;
|
|
14
|
+
/**
|
|
15
|
+
* Indicates if the discount does not apply to specified products, meaning
|
|
16
|
+
* all items get the discount
|
|
17
|
+
*/
|
|
18
|
+
this.apply_to_full_cart = false;
|
|
19
|
+
if (record) {
|
|
20
|
+
this.id = +record.id;
|
|
21
|
+
this.identifier = record.identifier;
|
|
22
|
+
this.discount = +record.discount;
|
|
23
|
+
this.coupon_code = record.coupon_code;
|
|
24
|
+
this.apply_on = +record.apply_on;
|
|
25
|
+
this.apply_to_full_cart = record.apply_to_full_cart;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvdXBvbi5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9jb3Vwb25zL2NsYXNzZXMvZXNvbHZlLWNvdXBvbi5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLE9BQU8sWUFBWTtJQWtCckIsWUFBWSxNQUEyQjtRQWpCaEMsT0FBRSxHQUFHLENBQUMsQ0FBQztRQUNQLGVBQVUsR0FBRyxFQUFFLENBQUM7UUFDaEIsYUFBUSxHQUFHLENBQUMsQ0FBQztRQUNwQjs7V0FFRztRQUNJLGdCQUFXLEdBQUcsRUFBRSxDQUFDO1FBQ3hCOztXQUVHO1FBQ0ksYUFBUSxHQUFHLENBQUMsQ0FBQztRQUNwQjs7O1dBR0c7UUFDSSx1QkFBa0IsR0FBRyxLQUFLLENBQUM7UUFHOUIsSUFBSSxNQUFNLEVBQUU7WUFDUixJQUFJLENBQUMsRUFBRSxHQUFHLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztZQUNyQixJQUFJLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUM7WUFDcEMsSUFBSSxDQUFDLFFBQVEsR0FBRyxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUM7WUFDakMsSUFBSSxDQUFDLFdBQVcsR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDO1lBQ3RDLElBQUksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDO1lBQ2pDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxNQUFNLENBQUMsa0JBQWtCLENBQUM7U0FDdkQ7SUFDTCxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFc29sdmVDb3Vwb25SZWNvcmQgfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZUNvdXBvbiB7XG4gICAgcHVibGljIGlkID0gMDtcbiAgICBwdWJsaWMgaWRlbnRpZmllciA9ICcnO1xuICAgIHB1YmxpYyBkaXNjb3VudCA9IDA7XG4gICAgLyoqXG4gICAgICogU2hvd3MgZWl0aGVyIHRoZSBzaG9ydCBjb2RlIG9yIHRoZSBjb3Vwb24ga2V5IChpZiBzaG9ydCBjb2RlIGlzIG5vdCBzZXQpXG4gICAgICovXG4gICAgcHVibGljIGNvdXBvbl9jb2RlID0gJyc7XG4gICAgLyoqXG4gICAgICogTGltaXQgb2YgdGhlIG51bWJlciBvZiBpdGVtcyBpdCBjYW4gYXBwbHkgdG9cbiAgICAgKi9cbiAgICBwdWJsaWMgYXBwbHlfb24gPSAwO1xuICAgIC8qKlxuICAgICAqIEluZGljYXRlcyBpZiB0aGUgZGlzY291bnQgZG9lcyBub3QgYXBwbHkgdG8gc3BlY2lmaWVkIHByb2R1Y3RzLCBtZWFuaW5nXG4gICAgICogYWxsIGl0ZW1zIGdldCB0aGUgZGlzY291bnRcbiAgICAgKi9cbiAgICBwdWJsaWMgYXBwbHlfdG9fZnVsbF9jYXJ0ID0gZmFsc2U7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBFc29sdmVDb3Vwb25SZWNvcmQpIHtcbiAgICAgICAgaWYgKHJlY29yZCkge1xuICAgICAgICAgICAgdGhpcy5pZCA9ICtyZWNvcmQuaWQ7XG4gICAgICAgICAgICB0aGlzLmlkZW50aWZpZXIgPSByZWNvcmQuaWRlbnRpZmllcjtcbiAgICAgICAgICAgIHRoaXMuZGlzY291bnQgPSArcmVjb3JkLmRpc2NvdW50O1xuICAgICAgICAgICAgdGhpcy5jb3Vwb25fY29kZSA9IHJlY29yZC5jb3Vwb25fY29kZTtcbiAgICAgICAgICAgIHRoaXMuYXBwbHlfb24gPSArcmVjb3JkLmFwcGx5X29uO1xuICAgICAgICAgICAgdGhpcy5hcHBseV90b19mdWxsX2NhcnQgPSByZWNvcmQuYXBwbHlfdG9fZnVsbF9jYXJ0O1xuICAgICAgICB9XG4gICAgfVxufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './esolve-coupon.model';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvY291cG9ucy9jbGFzc2VzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1jb3Vwb24ubW9kZWwnO1xuIl19
|