@esolve/ng-esolve-connect 0.39.0 → 0.41.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 +26 -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 +6300 -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 -28
- package/lib/auth/index.d.ts +5 -3
- package/lib/auth/interfaces/esolve-auth-check-data.interface.d.ts +4 -0
- package/lib/auth/interfaces/esolve-auth-data.interface.d.ts +7 -0
- package/lib/auth/interfaces/esolve-auth-get-data.interface.d.ts +3 -0
- package/lib/auth/interfaces/esolve-auth-response.interface.d.ts +7 -0
- package/lib/auth/interfaces/esolve-login-post-response-item.interface.d.ts +6 -0
- package/lib/auth/interfaces/index.d.ts +5 -0
- package/lib/auth/providers/esolve-eurus-auto-login.provider.d.ts +2 -0
- package/lib/auth/providers/index.d.ts +1 -0
- package/lib/auth/types/esolve-auth-check-response.type.d.ts +2 -0
- package/lib/auth/types/esolve-auth-get-response.type.d.ts +2 -0
- package/lib/auth/types/esolve-auth-response-data.type.d.ts +2 -0
- package/lib/auth/types/esolve-auth-result.type.d.ts +3 -0
- package/lib/auth/types/index.d.ts +4 -0
- 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 +25 -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 +39 -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 -35
- package/lib/session/index.d.ts +3 -5
- package/lib/session/interfaces/esolve-session-data.interface.d.ts +3 -0
- package/lib/session/interfaces/esolve-session.interface.d.ts +5 -0
- package/lib/session/interfaces/index.d.ts +2 -0
- 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 -36
- 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 -26
- 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 +17 -33
- 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-check-data.interface.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-check-response.type.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-data.interface.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-get-data.interface.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-get-response.type.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-interceptor.service.mjs +0 -45
- package/esm2020/lib/auth/esolve-auth-response-data.type.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-response.interface.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth-result.type.mjs +0 -2
- package/esm2020/lib/auth/esolve-auth.service.mjs +0 -210
- package/esm2020/lib/auth/esolve-login-post-response-item.interface.mjs +0 -2
- package/esm2020/lib/auth/index.mjs +0 -4
- 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 -38
- 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-data.interface.mjs +0 -2
- package/esm2020/lib/session/esolve-session-metadata.service.mjs +0 -77
- package/esm2020/lib/session/esolve-session.model.mjs +0 -37
- package/esm2020/lib/session/esolve-session.service.mjs +0 -157
- package/esm2020/lib/session/esolve-stored-session.interface.mjs +0 -2
- package/esm2020/lib/session/index.mjs +0 -6
- 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 -111
- 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 -137
- 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 -6448
- 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 -6361
- package/fesm2020/esolve-ng-esolve-connect.mjs.map +0 -1
- package/lib/auth/esolve-auth-check-data.interface.d.ts +0 -3
- package/lib/auth/esolve-auth-check-response.type.d.ts +0 -3
- package/lib/auth/esolve-auth-data.interface.d.ts +0 -5
- package/lib/auth/esolve-auth-get-data.interface.d.ts +0 -3
- package/lib/auth/esolve-auth-get-response.type.d.ts +0 -3
- package/lib/auth/esolve-auth-response-data.type.d.ts +0 -3
- package/lib/auth/esolve-auth-response.interface.d.ts +0 -7
- package/lib/auth/esolve-auth-result.type.d.ts +0 -3
- package/lib/auth/esolve-login-post-response-item.interface.d.ts +0 -6
- package/lib/session/esolve-session-data.interface.d.ts +0 -3
- package/lib/session/esolve-session.model.d.ts +0 -15
- package/lib/session/esolve-stored-session.interface.d.ts +0 -6
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { EsolveLinkedAsset } from '../shared/assets';
|
|
2
|
-
import { EsolveSeoInfo } from '../shared/seo/esolve-seo-info.model';
|
|
3
|
-
import { EsolveSpecialImageCollection } from './esolve-special-image-collection.model';
|
|
4
|
-
import { EsolveSpecialDates } from './esolve-special-dates.model';
|
|
5
|
-
export class EsolveSpecial {
|
|
6
|
-
constructor(record) {
|
|
7
|
-
this.id = +record.id;
|
|
8
|
-
this.identifier = record.identifier;
|
|
9
|
-
this.sort_priority = +record.sort_priority;
|
|
10
|
-
this.name = record.name;
|
|
11
|
-
this.description = record.description;
|
|
12
|
-
this.discount_type = +record.discount_type;
|
|
13
|
-
this.special_type = record.special_type;
|
|
14
|
-
this.location_id = +record.location_id;
|
|
15
|
-
this.active = !!+record.active;
|
|
16
|
-
this.featured = !!+record.featured;
|
|
17
|
-
this.assets = [];
|
|
18
|
-
if (record.assets.length > 0) {
|
|
19
|
-
for (const asset_record of record.assets) {
|
|
20
|
-
this.assets.push(new EsolveLinkedAsset(asset_record));
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
if (record.images &&
|
|
24
|
-
((record.images.thumb && record.images.thumb.length > 0) ||
|
|
25
|
-
(record.images.banner && record.images.banner.length > 0) ||
|
|
26
|
-
(record.images.banner_mobile &&
|
|
27
|
-
record.images.banner_mobile.length > 0)) &&
|
|
28
|
-
record.image_container.trim() !== '') {
|
|
29
|
-
this.images = new EsolveSpecialImageCollection(record.image_container, record.images);
|
|
30
|
-
}
|
|
31
|
-
const start_date = new Date(+record.from_date_timestamp * 1000);
|
|
32
|
-
const end_date = new Date(+record.to_date_timestamp * 1000);
|
|
33
|
-
this.dates = new EsolveSpecialDates(start_date, end_date);
|
|
34
|
-
if (record.seo_page_title.trim() === '') {
|
|
35
|
-
record.seo_page_title = this.name;
|
|
36
|
-
}
|
|
37
|
-
this.seo_details = new EsolveSeoInfo(record.seo_page_title, record.seo_description, record.seo_keywords);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXNwZWNpYWwubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3BlY2lhbHMvZXNvbHZlLXNwZWNpYWwubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDckQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBRXBFLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLHlDQUF5QyxDQUFDO0FBRXZGLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRWxFLE1BQU0sT0FBTyxhQUFhO0lBZ0J0QixZQUFZLE1BQTJCO1FBQ25DLElBQUksQ0FBQyxFQUFFLEdBQUcsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDO1FBQ3JCLElBQUksQ0FBQyxVQUFVLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQztRQUNwQyxJQUFJLENBQUMsYUFBYSxHQUFHLENBQUMsTUFBTSxDQUFDLGFBQWEsQ0FBQztRQUMzQyxJQUFJLENBQUMsSUFBSSxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUM7UUFDeEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDO1FBQ3RDLElBQUksQ0FBQyxhQUFhLEdBQUcsQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFDO1FBQzNDLElBQUksQ0FBQyxZQUFZLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQztRQUN4QyxJQUFJLENBQUMsV0FBVyxHQUFHLENBQUMsTUFBTSxDQUFDLFdBQVcsQ0FBQztRQUN2QyxJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUM7UUFDL0IsSUFBSSxDQUFDLFFBQVEsR0FBRyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDO1FBQ25DLElBQUksQ0FBQyxNQUFNLEdBQUcsRUFBRSxDQUFDO1FBRWpCLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQzFCLEtBQUssTUFBTSxZQUFZLElBQUksTUFBTSxDQUFDLE1BQU0sRUFBRTtnQkFDdEMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxpQkFBaUIsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDO2FBQ3pEO1NBQ0o7UUFFRCxJQUNJLE1BQU0sQ0FBQyxNQUFNO1lBQ2IsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsS0FBSyxJQUFJLE1BQU0sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUM7Z0JBQ3BELENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxNQUFNLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQztnQkFDekQsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLGFBQWE7b0JBQ3hCLE1BQU0sQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQztZQUNoRCxNQUFNLENBQUMsZUFBZSxDQUFDLElBQUksRUFBRSxLQUFLLEVBQUUsRUFDdEM7WUFDRSxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksNEJBQTRCLENBQzFDLE1BQU0sQ0FBQyxlQUFlLEVBQ3RCLE1BQU0sQ0FBQyxNQUFNLENBQ2hCLENBQUM7U0FDTDtRQUVELE1BQU0sVUFBVSxHQUFHLElBQUksSUFBSSxDQUFDLENBQUMsTUFBTSxDQUFDLG1CQUFtQixHQUFHLElBQUksQ0FBQyxDQUFDO1FBQ2hFLE1BQU0sUUFBUSxHQUFHLElBQUksSUFBSSxDQUFDLENBQUMsTUFBTSxDQUFDLGlCQUFpQixHQUFHLElBQUksQ0FBQyxDQUFDO1FBRTVELElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxrQkFBa0IsQ0FBQyxVQUFVLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFFMUQsSUFBSSxNQUFNLENBQUMsY0FBYyxDQUFDLElBQUksRUFBRSxLQUFLLEVBQUUsRUFBRTtZQUNyQyxNQUFNLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUM7U0FDckM7UUFFRCxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksYUFBYSxDQUNoQyxNQUFNLENBQUMsY0FBYyxFQUNyQixNQUFNLENBQUMsZUFBZSxFQUN0QixNQUFNLENBQUMsWUFBWSxDQUN0QixDQUFDO0lBQ04sQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlTGlua2VkQXNzZXQgfSBmcm9tICcuLi9zaGFyZWQvYXNzZXRzJztcbmltcG9ydCB7IEVzb2x2ZVNlb0luZm8gfSBmcm9tICcuLi9zaGFyZWQvc2VvL2Vzb2x2ZS1zZW8taW5mby5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVTZW9EZXRhaWxzIH0gZnJvbSAnLi4vc2hhcmVkL3Nlby9lc29sdmUtc2VvLWRldGFpbHMuaW50ZXJmYWNlJztcbmltcG9ydCB7IEVzb2x2ZVNwZWNpYWxJbWFnZUNvbGxlY3Rpb24gfSBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLWltYWdlLWNvbGxlY3Rpb24ubW9kZWwnO1xuaW1wb3J0IHsgRXNvbHZlU3BlY2lhbFJlY29yZCB9IGZyb20gJy4vZXNvbHZlLXNwZWNpYWwtcmVjb3JkLmludGVyZmFjZSc7XG5pbXBvcnQgeyBFc29sdmVTcGVjaWFsRGF0ZXMgfSBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLWRhdGVzLm1vZGVsJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZVNwZWNpYWwgaW1wbGVtZW50cyBFc29sdmVTZW9EZXRhaWxzIHtcbiAgICBwdWJsaWMgaWQ6IG51bWJlcjtcbiAgICBwdWJsaWMgaWRlbnRpZmllcjogc3RyaW5nO1xuICAgIHB1YmxpYyBzb3J0X3ByaW9yaXR5OiBudW1iZXI7XG4gICAgcHVibGljIG5hbWU6IHN0cmluZztcbiAgICBwdWJsaWMgZGVzY3JpcHRpb246IHN0cmluZztcbiAgICBwdWJsaWMgZGlzY291bnRfdHlwZTogbnVtYmVyO1xuICAgIHB1YmxpYyBzcGVjaWFsX3R5cGU6IHN0cmluZztcbiAgICBwdWJsaWMgbG9jYXRpb25faWQ6IG51bWJlcjtcbiAgICBwdWJsaWMgYWN0aXZlOiBib29sZWFuO1xuICAgIHB1YmxpYyBmZWF0dXJlZDogYm9vbGVhbjtcbiAgICBwdWJsaWMgYXNzZXRzOiBFc29sdmVMaW5rZWRBc3NldFtdO1xuICAgIHB1YmxpYyBzZW9fZGV0YWlsczogRXNvbHZlU2VvSW5mbztcbiAgICBwdWJsaWMgaW1hZ2VzPzogRXNvbHZlU3BlY2lhbEltYWdlQ29sbGVjdGlvbjtcbiAgICBwdWJsaWMgZGF0ZXM/OiBFc29sdmVTcGVjaWFsRGF0ZXM7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ6IEVzb2x2ZVNwZWNpYWxSZWNvcmQpIHtcbiAgICAgICAgdGhpcy5pZCA9ICtyZWNvcmQuaWQ7XG4gICAgICAgIHRoaXMuaWRlbnRpZmllciA9IHJlY29yZC5pZGVudGlmaWVyO1xuICAgICAgICB0aGlzLnNvcnRfcHJpb3JpdHkgPSArcmVjb3JkLnNvcnRfcHJpb3JpdHk7XG4gICAgICAgIHRoaXMubmFtZSA9IHJlY29yZC5uYW1lO1xuICAgICAgICB0aGlzLmRlc2NyaXB0aW9uID0gcmVjb3JkLmRlc2NyaXB0aW9uO1xuICAgICAgICB0aGlzLmRpc2NvdW50X3R5cGUgPSArcmVjb3JkLmRpc2NvdW50X3R5cGU7XG4gICAgICAgIHRoaXMuc3BlY2lhbF90eXBlID0gcmVjb3JkLnNwZWNpYWxfdHlwZTtcbiAgICAgICAgdGhpcy5sb2NhdGlvbl9pZCA9ICtyZWNvcmQubG9jYXRpb25faWQ7XG4gICAgICAgIHRoaXMuYWN0aXZlID0gISErcmVjb3JkLmFjdGl2ZTtcbiAgICAgICAgdGhpcy5mZWF0dXJlZCA9ICEhK3JlY29yZC5mZWF0dXJlZDtcbiAgICAgICAgdGhpcy5hc3NldHMgPSBbXTtcblxuICAgICAgICBpZiAocmVjb3JkLmFzc2V0cy5sZW5ndGggPiAwKSB7XG4gICAgICAgICAgICBmb3IgKGNvbnN0IGFzc2V0X3JlY29yZCBvZiByZWNvcmQuYXNzZXRzKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5hc3NldHMucHVzaChuZXcgRXNvbHZlTGlua2VkQXNzZXQoYXNzZXRfcmVjb3JkKSk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICBpZiAoXG4gICAgICAgICAgICByZWNvcmQuaW1hZ2VzICYmXG4gICAgICAgICAgICAoKHJlY29yZC5pbWFnZXMudGh1bWIgJiYgcmVjb3JkLmltYWdlcy50aHVtYi5sZW5ndGggPiAwKSB8fFxuICAgICAgICAgICAgICAgIChyZWNvcmQuaW1hZ2VzLmJhbm5lciAmJiByZWNvcmQuaW1hZ2VzLmJhbm5lci5sZW5ndGggPiAwKSB8fFxuICAgICAgICAgICAgICAgIChyZWNvcmQuaW1hZ2VzLmJhbm5lcl9tb2JpbGUgJiZcbiAgICAgICAgICAgICAgICAgICAgcmVjb3JkLmltYWdlcy5iYW5uZXJfbW9iaWxlLmxlbmd0aCA+IDApKSAmJlxuICAgICAgICAgICAgcmVjb3JkLmltYWdlX2NvbnRhaW5lci50cmltKCkgIT09ICcnXG4gICAgICAgICkge1xuICAgICAgICAgICAgdGhpcy5pbWFnZXMgPSBuZXcgRXNvbHZlU3BlY2lhbEltYWdlQ29sbGVjdGlvbihcbiAgICAgICAgICAgICAgICByZWNvcmQuaW1hZ2VfY29udGFpbmVyLFxuICAgICAgICAgICAgICAgIHJlY29yZC5pbWFnZXMsXG4gICAgICAgICAgICApO1xuICAgICAgICB9XG5cbiAgICAgICAgY29uc3Qgc3RhcnRfZGF0ZSA9IG5ldyBEYXRlKCtyZWNvcmQuZnJvbV9kYXRlX3RpbWVzdGFtcCAqIDEwMDApO1xuICAgICAgICBjb25zdCBlbmRfZGF0ZSA9IG5ldyBEYXRlKCtyZWNvcmQudG9fZGF0ZV90aW1lc3RhbXAgKiAxMDAwKTtcblxuICAgICAgICB0aGlzLmRhdGVzID0gbmV3IEVzb2x2ZVNwZWNpYWxEYXRlcyhzdGFydF9kYXRlLCBlbmRfZGF0ZSk7XG5cbiAgICAgICAgaWYgKHJlY29yZC5zZW9fcGFnZV90aXRsZS50cmltKCkgPT09ICcnKSB7XG4gICAgICAgICAgICByZWNvcmQuc2VvX3BhZ2VfdGl0bGUgPSB0aGlzLm5hbWU7XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLnNlb19kZXRhaWxzID0gbmV3IEVzb2x2ZVNlb0luZm8oXG4gICAgICAgICAgICByZWNvcmQuc2VvX3BhZ2VfdGl0bGUsXG4gICAgICAgICAgICByZWNvcmQuc2VvX2Rlc2NyaXB0aW9uLFxuICAgICAgICAgICAgcmVjb3JkLnNlb19rZXl3b3JkcyxcbiAgICAgICAgKTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { HttpClient, HttpParams } from '@angular/common/http';
|
|
2
|
-
import { Inject, Injectable } from '@angular/core';
|
|
3
|
-
import { of } from 'rxjs';
|
|
4
|
-
import { catchError, map } from 'rxjs/operators';
|
|
5
|
-
import { ESOLVE_CONNECT_CONFIG } from '../core/esolve-connect-config.constant';
|
|
6
|
-
import { EsolveSpecial } from './esolve-special.model';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
import * as i1 from "@angular/common/http";
|
|
9
|
-
export class EsolveSpecialsService {
|
|
10
|
-
constructor(config, http) {
|
|
11
|
-
this.config = config;
|
|
12
|
-
this.http = http;
|
|
13
|
-
}
|
|
14
|
-
getSpecial(specials_id) {
|
|
15
|
-
const params = new HttpParams({
|
|
16
|
-
fromObject: { specials_id },
|
|
17
|
-
});
|
|
18
|
-
return this.getSpecialSingle(params);
|
|
19
|
-
}
|
|
20
|
-
getSpecialFromIdentifier(identifier) {
|
|
21
|
-
const params = new HttpParams({
|
|
22
|
-
fromObject: { identifier },
|
|
23
|
-
});
|
|
24
|
-
return this.getSpecialSingle(params);
|
|
25
|
-
}
|
|
26
|
-
getSpecials(options) {
|
|
27
|
-
let params = new HttpParams();
|
|
28
|
-
if (options?.featured_only) {
|
|
29
|
-
params = params.set('featured_only', options.featured_only);
|
|
30
|
-
}
|
|
31
|
-
if (options?.image_container) {
|
|
32
|
-
params = params.set('image_container', options.image_container);
|
|
33
|
-
}
|
|
34
|
-
if (options?.location_id) {
|
|
35
|
-
params = params.set('location_id', options.location_id);
|
|
36
|
-
}
|
|
37
|
-
if (options?.special_type) {
|
|
38
|
-
params = params.set('special_type', options.special_type);
|
|
39
|
-
}
|
|
40
|
-
return this.getSpecialRecords(params).pipe(map((records) => {
|
|
41
|
-
const specials = [];
|
|
42
|
-
for (const record of records) {
|
|
43
|
-
specials.push(this.processSpecial(record));
|
|
44
|
-
}
|
|
45
|
-
return specials;
|
|
46
|
-
}), catchError(() => {
|
|
47
|
-
return of([]);
|
|
48
|
-
}));
|
|
49
|
-
}
|
|
50
|
-
getSpecialSingle(params) {
|
|
51
|
-
return this.getSpecialRecords(params).pipe(map((records) => {
|
|
52
|
-
const record = records[0];
|
|
53
|
-
return this.processSpecial(record);
|
|
54
|
-
}));
|
|
55
|
-
}
|
|
56
|
-
getSpecialRecords(params) {
|
|
57
|
-
return this.http
|
|
58
|
-
.get(`${this.config.api_url}/get-specials.php`, { params })
|
|
59
|
-
.pipe(map((response) => {
|
|
60
|
-
if (response.records === undefined ||
|
|
61
|
-
response.records.length <= 0) {
|
|
62
|
-
throw response;
|
|
63
|
-
}
|
|
64
|
-
return response.records;
|
|
65
|
-
}));
|
|
66
|
-
}
|
|
67
|
-
processSpecial(record) {
|
|
68
|
-
return new EsolveSpecial(record);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
EsolveSpecialsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveSpecialsService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
72
|
-
EsolveSpecialsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveSpecialsService, providedIn: 'root' });
|
|
73
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveSpecialsService, decorators: [{
|
|
74
|
-
type: Injectable,
|
|
75
|
-
args: [{
|
|
76
|
-
providedIn: 'root',
|
|
77
|
-
}]
|
|
78
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
79
|
-
type: Inject,
|
|
80
|
-
args: [ESOLVE_CONNECT_CONFIG]
|
|
81
|
-
}] }, { type: i1.HttpClient }]; } });
|
|
82
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXNwZWNpYWxzLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3BlY2lhbHMvZXNvbHZlLXNwZWNpYWxzLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUM5RCxPQUFPLEVBQUUsTUFBTSxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVuRCxPQUFPLEVBQWMsRUFBRSxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ3RDLE9BQU8sRUFBRSxVQUFVLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHakQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sd0NBQXdDLENBQUM7QUFHL0UsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDOzs7QUFPdkQsTUFBTSxPQUFPLHFCQUFxQjtJQUM5QixZQUMyQyxNQUEyQixFQUMxRCxJQUFnQjtRQURlLFdBQU0sR0FBTixNQUFNLENBQXFCO1FBQzFELFNBQUksR0FBSixJQUFJLENBQVk7SUFDekIsQ0FBQztJQUVHLFVBQVUsQ0FBQyxXQUFtQjtRQUNqQyxNQUFNLE1BQU0sR0FBRyxJQUFJLFVBQVUsQ0FBQztZQUMxQixVQUFVLEVBQUUsRUFBRSxXQUFXLEVBQUU7U0FDOUIsQ0FBQyxDQUFDO1FBRUgsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDekMsQ0FBQztJQUVNLHdCQUF3QixDQUMzQixVQUFrQjtRQUVsQixNQUFNLE1BQU0sR0FBRyxJQUFJLFVBQVUsQ0FBQztZQUMxQixVQUFVLEVBQUUsRUFBRSxVQUFVLEVBQUU7U0FDN0IsQ0FBQyxDQUFDO1FBRUgsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDekMsQ0FBQztJQUVNLFdBQVcsQ0FDZCxPQUE4QjtRQUU5QixJQUFJLE1BQU0sR0FBRyxJQUFJLFVBQVUsRUFBRSxDQUFDO1FBRTlCLElBQUksT0FBTyxFQUFFLGFBQWEsRUFBRTtZQUN4QixNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxlQUFlLEVBQUUsT0FBTyxDQUFDLGFBQWEsQ0FBQyxDQUFDO1NBQy9EO1FBRUQsSUFBSSxPQUFPLEVBQUUsZUFBZSxFQUFFO1lBQzFCLE1BQU0sR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxlQUFlLENBQUMsQ0FBQztTQUNuRTtRQUVELElBQUksT0FBTyxFQUFFLFdBQVcsRUFBRTtZQUN0QixNQUFNLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsT0FBTyxDQUFDLFdBQVcsQ0FBQyxDQUFDO1NBQzNEO1FBRUQsSUFBSSxPQUFPLEVBQUUsWUFBWSxFQUFFO1lBQ3ZCLE1BQU0sR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLGNBQWMsRUFBRSxPQUFPLENBQUMsWUFBWSxDQUFDLENBQUM7U0FDN0Q7UUFFRCxPQUFPLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQ3RDLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFO1lBQ1osTUFBTSxRQUFRLEdBQW9CLEVBQUUsQ0FBQztZQUVyQyxLQUFLLE1BQU0sTUFBTSxJQUFJLE9BQU8sRUFBRTtnQkFDMUIsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7YUFDOUM7WUFFRCxPQUFPLFFBQVEsQ0FBQztRQUNwQixDQUFDLENBQUMsRUFDRixVQUFVLENBQUMsR0FBRyxFQUFFO1lBQ1osT0FBTyxFQUFFLENBQWtCLEVBQUUsQ0FBQyxDQUFDO1FBQ25DLENBQUMsQ0FBQyxDQUNMLENBQUM7SUFDTixDQUFDO0lBRU8sZ0JBQWdCLENBQUMsTUFBa0I7UUFDdkMsT0FBTyxJQUFJLENBQUMsaUJBQWlCLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxDQUN0QyxHQUFHLENBQUMsQ0FBQyxPQUFPLEVBQUUsRUFBRTtZQUNaLE1BQU0sTUFBTSxHQUFHLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUUxQixPQUFPLElBQUksQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDdkMsQ0FBQyxDQUFDLENBQ0wsQ0FBQztJQUNOLENBQUM7SUFFTyxpQkFBaUIsQ0FDckIsTUFBbUI7UUFFbkIsT0FBTyxJQUFJLENBQUMsSUFBSTthQUNYLEdBQUcsQ0FDQSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxtQkFBbUIsRUFDekMsRUFBRSxNQUFNLEVBQUUsQ0FDYjthQUNBLElBQUksQ0FDRCxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRTtZQUNiLElBQ0ksUUFBUSxDQUFDLE9BQU8sS0FBSyxTQUFTO2dCQUM5QixRQUFRLENBQUMsT0FBTyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQzlCO2dCQUNFLE1BQU0sUUFBUSxDQUFDO2FBQ2xCO1lBRUQsT0FBTyxRQUFRLENBQUMsT0FBTyxDQUFDO1FBQzVCLENBQUMsQ0FBQyxDQUNMLENBQUM7SUFDVixDQUFDO0lBRU8sY0FBYyxDQUFDLE1BQTJCO1FBQzlDLE9BQU8sSUFBSSxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDckMsQ0FBQzs7a0hBL0ZRLHFCQUFxQixrQkFFbEIscUJBQXFCO3NIQUZ4QixxQkFBcUIsY0FGbEIsTUFBTTsyRkFFVCxxQkFBcUI7a0JBSGpDLFVBQVU7bUJBQUM7b0JBQ1IsVUFBVSxFQUFFLE1BQU07aUJBQ3JCOzswQkFHUSxNQUFNOzJCQUFDLHFCQUFxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBDbGllbnQsIEh0dHBQYXJhbXMgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBJbmplY3QsIEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgT2JzZXJ2YWJsZSwgb2YgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGNhdGNoRXJyb3IsIG1hcCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcblxuaW1wb3J0IHsgRXNvbHZlQ29ubmVjdENvbmZpZyB9IGZyb20gJy4uL2NvcmUvZXNvbHZlLWNvbm5lY3QuY29uZmlnJztcbmltcG9ydCB7IEVTT0xWRV9DT05ORUNUX0NPTkZJRyB9IGZyb20gJy4uL2NvcmUvZXNvbHZlLWNvbm5lY3QtY29uZmlnLmNvbnN0YW50JztcbmltcG9ydCB7IEVzb2x2ZUdldFJlc3BvbnNlIH0gZnJvbSAnLi4vc2hhcmVkL3Jlc3BvbnNlJztcblxuaW1wb3J0IHsgRXNvbHZlU3BlY2lhbCB9IGZyb20gJy4vZXNvbHZlLXNwZWNpYWwubW9kZWwnO1xuaW1wb3J0IHsgRXNvbHZlU3BlY2lhbE9wdGlvbnMgfSBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLW9wdGlvbnMuaW50ZXJmYWNlJztcbmltcG9ydCB7IEVzb2x2ZVNwZWNpYWxSZWNvcmQgfSBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLXJlY29yZC5pbnRlcmZhY2UnO1xuXG5ASW5qZWN0YWJsZSh7XG4gICAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBFc29sdmVTcGVjaWFsc1NlcnZpY2Uge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KEVTT0xWRV9DT05ORUNUX0NPTkZJRykgcHJpdmF0ZSBjb25maWc6IEVzb2x2ZUNvbm5lY3RDb25maWcsXG4gICAgICAgIHByaXZhdGUgaHR0cDogSHR0cENsaWVudCxcbiAgICApIHt9XG5cbiAgICBwdWJsaWMgZ2V0U3BlY2lhbChzcGVjaWFsc19pZDogbnVtYmVyKTogT2JzZXJ2YWJsZTxFc29sdmVTcGVjaWFsPiB7XG4gICAgICAgIGNvbnN0IHBhcmFtcyA9IG5ldyBIdHRwUGFyYW1zKHtcbiAgICAgICAgICAgIGZyb21PYmplY3Q6IHsgc3BlY2lhbHNfaWQgfSxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuZ2V0U3BlY2lhbFNpbmdsZShwYXJhbXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRTcGVjaWFsRnJvbUlkZW50aWZpZXIoXG4gICAgICAgIGlkZW50aWZpZXI6IHN0cmluZyxcbiAgICApOiBPYnNlcnZhYmxlPEVzb2x2ZVNwZWNpYWw+IHtcbiAgICAgICAgY29uc3QgcGFyYW1zID0gbmV3IEh0dHBQYXJhbXMoe1xuICAgICAgICAgICAgZnJvbU9iamVjdDogeyBpZGVudGlmaWVyIH0sXG4gICAgICAgIH0pO1xuXG4gICAgICAgIHJldHVybiB0aGlzLmdldFNwZWNpYWxTaW5nbGUocGFyYW1zKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0U3BlY2lhbHMoXG4gICAgICAgIG9wdGlvbnM/OiBFc29sdmVTcGVjaWFsT3B0aW9ucyxcbiAgICApOiBPYnNlcnZhYmxlPEVzb2x2ZVNwZWNpYWxbXT4ge1xuICAgICAgICBsZXQgcGFyYW1zID0gbmV3IEh0dHBQYXJhbXMoKTtcblxuICAgICAgICBpZiAob3B0aW9ucz8uZmVhdHVyZWRfb25seSkge1xuICAgICAgICAgICAgcGFyYW1zID0gcGFyYW1zLnNldCgnZmVhdHVyZWRfb25seScsIG9wdGlvbnMuZmVhdHVyZWRfb25seSk7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAob3B0aW9ucz8uaW1hZ2VfY29udGFpbmVyKSB7XG4gICAgICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCdpbWFnZV9jb250YWluZXInLCBvcHRpb25zLmltYWdlX2NvbnRhaW5lcik7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAob3B0aW9ucz8ubG9jYXRpb25faWQpIHtcbiAgICAgICAgICAgIHBhcmFtcyA9IHBhcmFtcy5zZXQoJ2xvY2F0aW9uX2lkJywgb3B0aW9ucy5sb2NhdGlvbl9pZCk7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAob3B0aW9ucz8uc3BlY2lhbF90eXBlKSB7XG4gICAgICAgICAgICBwYXJhbXMgPSBwYXJhbXMuc2V0KCdzcGVjaWFsX3R5cGUnLCBvcHRpb25zLnNwZWNpYWxfdHlwZSk7XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gdGhpcy5nZXRTcGVjaWFsUmVjb3JkcyhwYXJhbXMpLnBpcGUoXG4gICAgICAgICAgICBtYXAoKHJlY29yZHMpID0+IHtcbiAgICAgICAgICAgICAgICBjb25zdCBzcGVjaWFsczogRXNvbHZlU3BlY2lhbFtdID0gW107XG5cbiAgICAgICAgICAgICAgICBmb3IgKGNvbnN0IHJlY29yZCBvZiByZWNvcmRzKSB7XG4gICAgICAgICAgICAgICAgICAgIHNwZWNpYWxzLnB1c2godGhpcy5wcm9jZXNzU3BlY2lhbChyZWNvcmQpKTtcbiAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICByZXR1cm4gc3BlY2lhbHM7XG4gICAgICAgICAgICB9KSxcbiAgICAgICAgICAgIGNhdGNoRXJyb3IoKCkgPT4ge1xuICAgICAgICAgICAgICAgIHJldHVybiBvZjxFc29sdmVTcGVjaWFsW10+KFtdKTtcbiAgICAgICAgICAgIH0pLFxuICAgICAgICApO1xuICAgIH1cblxuICAgIHByaXZhdGUgZ2V0U3BlY2lhbFNpbmdsZShwYXJhbXM6IEh0dHBQYXJhbXMpOiBPYnNlcnZhYmxlPEVzb2x2ZVNwZWNpYWw+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZ2V0U3BlY2lhbFJlY29yZHMocGFyYW1zKS5waXBlKFxuICAgICAgICAgICAgbWFwKChyZWNvcmRzKSA9PiB7XG4gICAgICAgICAgICAgICAgY29uc3QgcmVjb3JkID0gcmVjb3Jkc1swXTtcblxuICAgICAgICAgICAgICAgIHJldHVybiB0aGlzLnByb2Nlc3NTcGVjaWFsKHJlY29yZCk7XG4gICAgICAgICAgICB9KSxcbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGdldFNwZWNpYWxSZWNvcmRzKFxuICAgICAgICBwYXJhbXM/OiBIdHRwUGFyYW1zLFxuICAgICk6IE9ic2VydmFibGU8RXNvbHZlU3BlY2lhbFJlY29yZFtdPiB7XG4gICAgICAgIHJldHVybiB0aGlzLmh0dHBcbiAgICAgICAgICAgIC5nZXQ8RXNvbHZlR2V0UmVzcG9uc2U8RXNvbHZlU3BlY2lhbFJlY29yZFtdPj4oXG4gICAgICAgICAgICAgICAgYCR7dGhpcy5jb25maWcuYXBpX3VybH0vZ2V0LXNwZWNpYWxzLnBocGAsXG4gICAgICAgICAgICAgICAgeyBwYXJhbXMgfSxcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIG1hcCgocmVzcG9uc2UpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgaWYgKFxuICAgICAgICAgICAgICAgICAgICAgICAgcmVzcG9uc2UucmVjb3JkcyA9PT0gdW5kZWZpbmVkIHx8XG4gICAgICAgICAgICAgICAgICAgICAgICByZXNwb25zZS5yZWNvcmRzLmxlbmd0aCA8PSAwXG4gICAgICAgICAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhyb3cgcmVzcG9uc2U7XG4gICAgICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgICAgICByZXR1cm4gcmVzcG9uc2UucmVjb3JkcztcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBwcm9jZXNzU3BlY2lhbChyZWNvcmQ6IEVzb2x2ZVNwZWNpYWxSZWNvcmQpOiBFc29sdmVTcGVjaWFsIHtcbiAgICAgICAgcmV0dXJuIG5ldyBFc29sdmVTcGVjaWFsKHJlY29yZCk7XG4gICAgfVxufVxuIl19
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from './esolve-special-image-collection-record.interface';
|
|
2
|
-
export * from './esolve-special-image-record.interface';
|
|
3
|
-
export * from './esolve-special-record.interface';
|
|
4
|
-
export * from './esolve-special-image-collection.model';
|
|
5
|
-
export * from './esolve-special-image.model';
|
|
6
|
-
export * from './esolve-special.model';
|
|
7
|
-
export * from './esolve-special-options.interface';
|
|
8
|
-
export * from './esolve-special-dates.model';
|
|
9
|
-
export * from './esolve-specials.service';
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3BlY2lhbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvREFBb0QsQ0FBQztBQUNuRSxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyx5Q0FBeUMsQ0FBQztBQUN4RCxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLWltYWdlLWNvbGxlY3Rpb24tcmVjb3JkLmludGVyZmFjZSc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLWltYWdlLXJlY29yZC5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtc3BlY2lhbC1yZWNvcmQuaW50ZXJmYWNlJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLXNwZWNpYWwtaW1hZ2UtY29sbGVjdGlvbi5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLWltYWdlLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLXNwZWNpYWwubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtc3BlY2lhbC1vcHRpb25zLmludGVyZmFjZSc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1zcGVjaWFsLWRhdGVzLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLXNwZWNpYWxzLnNlcnZpY2UnO1xuIl19
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export class EsolveAdditionalStockImage {
|
|
2
|
-
constructor(record) {
|
|
3
|
-
this.id = 0;
|
|
4
|
-
this.type = '';
|
|
5
|
-
this.url = '';
|
|
6
|
-
this.name = '';
|
|
7
|
-
if (record) {
|
|
8
|
-
this.id = record.id ?? 0;
|
|
9
|
-
this.type = record.type ?? '';
|
|
10
|
-
this.url = record.url ?? '';
|
|
11
|
-
this.name = record.name ?? '';
|
|
12
|
-
if (record.etag) {
|
|
13
|
-
this.etag = record.etag;
|
|
14
|
-
}
|
|
15
|
-
if (record.key) {
|
|
16
|
-
this.key = record.key;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWFkZGl0aW9uYWwtc3RvY2staW1hZ2UubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3RvY2svY2xhc3Nlcy9lc29sdmUtYWRkaXRpb25hbC1zdG9jay1pbWFnZS5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLE9BQU8sMEJBQTBCO0lBUW5DLFlBQVksTUFBa0Q7UUFQdkQsT0FBRSxHQUFHLENBQUMsQ0FBQztRQUNQLFNBQUksR0FBRyxFQUFFLENBQUM7UUFDVixRQUFHLEdBQUcsRUFBRSxDQUFDO1FBQ1QsU0FBSSxHQUFHLEVBQUUsQ0FBQztRQUtiLElBQUksTUFBTSxFQUFFO1lBQ1IsSUFBSSxDQUFDLEVBQUUsR0FBRyxNQUFNLENBQUMsRUFBRSxJQUFJLENBQUMsQ0FBQztZQUN6QixJQUFJLENBQUMsSUFBSSxHQUFHLE1BQU0sQ0FBQyxJQUFJLElBQUksRUFBRSxDQUFDO1lBQzlCLElBQUksQ0FBQyxHQUFHLEdBQUcsTUFBTSxDQUFDLEdBQUcsSUFBSSxFQUFFLENBQUM7WUFDNUIsSUFBSSxDQUFDLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUU5QixJQUFJLE1BQU0sQ0FBQyxJQUFJLEVBQUU7Z0JBQ2IsSUFBSSxDQUFDLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDO2FBQzNCO1lBRUQsSUFBSSxNQUFNLENBQUMsR0FBRyxFQUFFO2dCQUNaLElBQUksQ0FBQyxHQUFHLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQzthQUN6QjtTQUNKO0lBQ0wsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlQWRkaXRpb25hbFN0b2NrSW1hZ2VSZWNvcmQgfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZUFkZGl0aW9uYWxTdG9ja0ltYWdlIHtcbiAgICBwdWJsaWMgaWQgPSAwO1xuICAgIHB1YmxpYyB0eXBlID0gJyc7XG4gICAgcHVibGljIHVybCA9ICcnO1xuICAgIHB1YmxpYyBuYW1lID0gJyc7XG4gICAgcHVibGljIGV0YWc/OiBzdHJpbmc7XG4gICAgcHVibGljIGtleT86IHN0cmluZztcblxuICAgIGNvbnN0cnVjdG9yKHJlY29yZD86IFBhcnRpYWw8RXNvbHZlQWRkaXRpb25hbFN0b2NrSW1hZ2VSZWNvcmQ+KSB7XG4gICAgICAgIGlmIChyZWNvcmQpIHtcbiAgICAgICAgICAgIHRoaXMuaWQgPSByZWNvcmQuaWQgPz8gMDtcbiAgICAgICAgICAgIHRoaXMudHlwZSA9IHJlY29yZC50eXBlID8/ICcnO1xuICAgICAgICAgICAgdGhpcy51cmwgPSByZWNvcmQudXJsID8/ICcnO1xuICAgICAgICAgICAgdGhpcy5uYW1lID0gcmVjb3JkLm5hbWUgPz8gJyc7XG5cbiAgICAgICAgICAgIGlmIChyZWNvcmQuZXRhZykge1xuICAgICAgICAgICAgICAgIHRoaXMuZXRhZyA9IHJlY29yZC5ldGFnO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICBpZiAocmVjb3JkLmtleSkge1xuICAgICAgICAgICAgICAgIHRoaXMua2V5ID0gcmVjb3JkLmtleTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export class EsolveColour {
|
|
2
|
-
constructor(record) {
|
|
3
|
-
this.id = record.id ?? 0;
|
|
4
|
-
this.colour = record.colour ?? '';
|
|
5
|
-
this.description = record.description ?? '';
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvbG91ci5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9zdG9jay9jbGFzc2VzL2Vzb2x2ZS1jb2xvdXIubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLFlBQVk7SUFLckIsWUFBWSxNQUFtQztRQUMzQyxJQUFJLENBQUMsRUFBRSxHQUFHLE1BQU0sQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ3pCLElBQUksQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUM7UUFDbEMsSUFBSSxDQUFDLFdBQVcsR0FBRyxNQUFNLENBQUMsV0FBVyxJQUFJLEVBQUUsQ0FBQztJQUNoRCxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFc29sdmVDb2xvdXJSZWNvcmQgfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZUNvbG91ciB7XG4gICAgcHVibGljIGlkOiBudW1iZXI7XG4gICAgcHVibGljIGNvbG91cjogc3RyaW5nO1xuICAgIHB1YmxpYyBkZXNjcmlwdGlvbjogc3RyaW5nO1xuXG4gICAgY29uc3RydWN0b3IocmVjb3JkOiBQYXJ0aWFsPEVzb2x2ZUNvbG91clJlY29yZD4pIHtcbiAgICAgICAgdGhpcy5pZCA9IHJlY29yZC5pZCA/PyAwO1xuICAgICAgICB0aGlzLmNvbG91ciA9IHJlY29yZC5jb2xvdXIgPz8gJyc7XG4gICAgICAgIHRoaXMuZGVzY3JpcHRpb24gPSByZWNvcmQuZGVzY3JpcHRpb24gPz8gJyc7XG4gICAgfVxufVxuIl19
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { EsolveStockItemBase } from './esolve-stock-item-base.model';
|
|
2
|
-
export class EsolveDependantItem extends EsolveStockItemBase {
|
|
3
|
-
constructor(record) {
|
|
4
|
-
super(record);
|
|
5
|
-
this.qty = 0;
|
|
6
|
-
this.dependency_description = '';
|
|
7
|
-
this.qty = +(record?.qty ?? 0);
|
|
8
|
-
this.dependency_description = record?.dependency_description ?? '';
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWRlcGVuZGFudC1pdGVtLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL3N0b2NrL2NsYXNzZXMvZXNvbHZlLWRlcGVuZGFudC1pdGVtLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBRXJFLE1BQU0sT0FBTyxtQkFFWCxTQUFRLG1CQUFzQjtJQUk1QixZQUFZLE1BQThDO1FBQ3RELEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUpYLFFBQUcsR0FBRyxDQUFDLENBQUM7UUFDUiwyQkFBc0IsR0FBRyxFQUFFLENBQUM7UUFLL0IsSUFBSSxDQUFDLEdBQUcsR0FBRyxDQUFDLENBQUMsTUFBTSxFQUFFLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQztRQUMvQixJQUFJLENBQUMsc0JBQXNCLEdBQUcsTUFBTSxFQUFFLHNCQUFzQixJQUFJLEVBQUUsQ0FBQztJQUN2RSxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFc29sdmVDdXN0b21GaWVsZHMgfSBmcm9tICcuLi8uLi9zaGFyZWQvY3VzdG9tLWZpZWxkcyc7XG5cbmltcG9ydCB7IEVzb2x2ZURlcGVuZGFudEl0ZW1SZWNvcmQgfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7IEVzb2x2ZVN0b2NrSXRlbUJhc2UgfSBmcm9tICcuL2Vzb2x2ZS1zdG9jay1pdGVtLWJhc2UubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlRGVwZW5kYW50SXRlbTxcbiAgICBUIGV4dGVuZHMgRXNvbHZlQ3VzdG9tRmllbGRzID0gRXNvbHZlQ3VzdG9tRmllbGRzLFxuPiBleHRlbmRzIEVzb2x2ZVN0b2NrSXRlbUJhc2U8VD4ge1xuICAgIHB1YmxpYyBxdHkgPSAwO1xuICAgIHB1YmxpYyBkZXBlbmRlbmN5X2Rlc2NyaXB0aW9uID0gJyc7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBQYXJ0aWFsPEVzb2x2ZURlcGVuZGFudEl0ZW1SZWNvcmQ8VD4+KSB7XG4gICAgICAgIHN1cGVyKHJlY29yZCk7XG5cbiAgICAgICAgdGhpcy5xdHkgPSArKHJlY29yZD8ucXR5ID8/IDApO1xuICAgICAgICB0aGlzLmRlcGVuZGVuY3lfZGVzY3JpcHRpb24gPSByZWNvcmQ/LmRlcGVuZGVuY3lfZGVzY3JpcHRpb24gPz8gJyc7XG4gICAgfVxufVxuIl19
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EsolveStockItemBase } from './esolve-stock-item-base.model';
|
|
2
|
-
export class EsolveLinkedStockItem extends EsolveStockItemBase {
|
|
3
|
-
constructor(record) {
|
|
4
|
-
super(record);
|
|
5
|
-
this.qty = 0;
|
|
6
|
-
this.qty = +(record?.qty ?? 0);
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxpbmtlZC1zdG9jay1pdGVtLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL3N0b2NrL2NsYXNzZXMvZXNvbHZlLWxpbmtlZC1zdG9jay1pdGVtLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBRXJFLE1BQU0sT0FBTyxxQkFFWCxTQUFRLG1CQUFzQjtJQUc1QixZQUFZLE1BQTRDO1FBQ3BELEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUhYLFFBQUcsR0FBRyxDQUFDLENBQUM7UUFLWCxJQUFJLENBQUMsR0FBRyxHQUFHLENBQUMsQ0FBQyxNQUFNLEVBQUUsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDO0lBQ25DLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZUN1c3RvbUZpZWxkcyB9IGZyb20gJy4uLy4uL3NoYXJlZC9jdXN0b20tZmllbGRzJztcblxuaW1wb3J0IHsgRXNvbHZlTGlua2VkU3RvY2tSZWNvcmQgfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7IEVzb2x2ZVN0b2NrSXRlbUJhc2UgfSBmcm9tICcuL2Vzb2x2ZS1zdG9jay1pdGVtLWJhc2UubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlTGlua2VkU3RvY2tJdGVtPFxuICAgIFQgZXh0ZW5kcyBFc29sdmVDdXN0b21GaWVsZHMgPSBFc29sdmVDdXN0b21GaWVsZHMsXG4+IGV4dGVuZHMgRXNvbHZlU3RvY2tJdGVtQmFzZTxUPiB7XG4gICAgcHVibGljIHF0eSA9IDA7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBQYXJ0aWFsPEVzb2x2ZUxpbmtlZFN0b2NrUmVjb3JkPFQ+Pikge1xuICAgICAgICBzdXBlcihyZWNvcmQpO1xuXG4gICAgICAgIHRoaXMucXR5ID0gKyhyZWNvcmQ/LnF0eSA/PyAwKTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { EsolveStockItemBase } from './esolve-stock-item-base.model';
|
|
2
|
-
export class EsolveMediaStockItem extends EsolveStockItemBase {
|
|
3
|
-
constructor(record) {
|
|
4
|
-
super(record);
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLXN0b2NrLWl0ZW0ubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3RvY2svY2xhc3Nlcy9lc29sdmUtbWVkaWEtc3RvY2staXRlbS5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUVyRSxNQUFNLE9BQU8sb0JBRVgsU0FBUSxtQkFBc0I7SUFDNUIsWUFBWSxNQUErQztRQUN2RCxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDbEIsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlQ3VzdG9tRmllbGRzIH0gZnJvbSAnLi4vLi4vc2hhcmVkL2N1c3RvbS1maWVsZHMnO1xuaW1wb3J0IHsgRXNvbHZlTWVkaWFTdG9ja0l0ZW1SZWNvcmQgfSBmcm9tICcuLi90eXBlcyc7XG5cbmltcG9ydCB7IEVzb2x2ZVN0b2NrSXRlbUJhc2UgfSBmcm9tICcuL2Vzb2x2ZS1zdG9jay1pdGVtLWJhc2UubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlTWVkaWFTdG9ja0l0ZW08XG4gICAgVCBleHRlbmRzIEVzb2x2ZUN1c3RvbUZpZWxkcyA9IEVzb2x2ZUN1c3RvbUZpZWxkcyxcbj4gZXh0ZW5kcyBFc29sdmVTdG9ja0l0ZW1CYXNlPFQ+IHtcbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBQYXJ0aWFsPEVzb2x2ZU1lZGlhU3RvY2tJdGVtUmVjb3JkPFQ+Pikge1xuICAgICAgICBzdXBlcihyZWNvcmQpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EsolveStockItemBase } from './esolve-stock-item-base.model';
|
|
2
|
-
export class EsolveRecipeStockItem extends EsolveStockItemBase {
|
|
3
|
-
constructor(record) {
|
|
4
|
-
super(record);
|
|
5
|
-
this.qty = 0;
|
|
6
|
-
this.qty = +(record?.qty ?? 0);
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXJlY2lwZS1zdG9jay1pdGVtLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL3N0b2NrL2NsYXNzZXMvZXNvbHZlLXJlY2lwZS1zdG9jay1pdGVtLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBRXJFLE1BQU0sT0FBTyxxQkFFWCxTQUFRLG1CQUFzQjtJQUc1QixZQUFZLE1BQTJDO1FBQ25ELEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUhYLFFBQUcsR0FBRyxDQUFDLENBQUM7UUFLWCxJQUFJLENBQUMsR0FBRyxHQUFHLENBQUMsQ0FBQyxNQUFNLEVBQUUsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDO0lBQ25DLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZUN1c3RvbUZpZWxkcyB9IGZyb20gJy4uLy4uL3NoYXJlZC9jdXN0b20tZmllbGRzJztcblxuaW1wb3J0IHsgRXNvbHZlUmVjaXBlSXRlbVJlY29yZCB9IGZyb20gJy4uL2ludGVyZmFjZXMnO1xuaW1wb3J0IHsgRXNvbHZlU3RvY2tJdGVtQmFzZSB9IGZyb20gJy4vZXNvbHZlLXN0b2NrLWl0ZW0tYmFzZS5tb2RlbCc7XG5cbmV4cG9ydCBjbGFzcyBFc29sdmVSZWNpcGVTdG9ja0l0ZW08XG4gICAgVCBleHRlbmRzIEVzb2x2ZUN1c3RvbUZpZWxkcyA9IEVzb2x2ZUN1c3RvbUZpZWxkcyxcbj4gZXh0ZW5kcyBFc29sdmVTdG9ja0l0ZW1CYXNlPFQ+IHtcbiAgICBwdWJsaWMgcXR5ID0gMDtcblxuICAgIGNvbnN0cnVjdG9yKHJlY29yZD86IFBhcnRpYWw8RXNvbHZlUmVjaXBlSXRlbVJlY29yZDxUPj4pIHtcbiAgICAgICAgc3VwZXIocmVjb3JkKTtcblxuICAgICAgICB0aGlzLnF0eSA9ICsocmVjb3JkPy5xdHkgPz8gMCk7XG4gICAgfVxufVxuIl19
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export class EsolveStockBadge {
|
|
2
|
-
constructor(id, text, identifier, font_colour, badge_colour, sort_priority) {
|
|
3
|
-
this.id = id;
|
|
4
|
-
this.text = text;
|
|
5
|
-
this.identifier = identifier;
|
|
6
|
-
this.font_colour = font_colour;
|
|
7
|
-
this.badge_colour = badge_colour;
|
|
8
|
-
this.sort_priority = sort_priority;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXN0b2NrLWJhZGdlLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL3N0b2NrL2NsYXNzZXMvZXNvbHZlLXN0b2NrLWJhZGdlLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxnQkFBZ0I7SUFDekIsWUFDVyxFQUFVLEVBQ1YsSUFBWSxFQUNaLFVBQWtCLEVBQ2xCLFdBQW1CLEVBQ25CLFlBQW9CLEVBQ3BCLGFBQXFCO1FBTHJCLE9BQUUsR0FBRixFQUFFLENBQVE7UUFDVixTQUFJLEdBQUosSUFBSSxDQUFRO1FBQ1osZUFBVSxHQUFWLFVBQVUsQ0FBUTtRQUNsQixnQkFBVyxHQUFYLFdBQVcsQ0FBUTtRQUNuQixpQkFBWSxHQUFaLFlBQVksQ0FBUTtRQUNwQixrQkFBYSxHQUFiLGFBQWEsQ0FBUTtJQUM3QixDQUFDO0NBQ1AiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgRXNvbHZlU3RvY2tCYWRnZSB7XG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHB1YmxpYyBpZDogbnVtYmVyLFxuICAgICAgICBwdWJsaWMgdGV4dDogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgaWRlbnRpZmllcjogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgZm9udF9jb2xvdXI6IHN0cmluZyxcbiAgICAgICAgcHVibGljIGJhZGdlX2NvbG91cjogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgc29ydF9wcmlvcml0eTogbnVtYmVyLFxuICAgICkge31cbn1cbiJdfQ==
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { EsolveStockItemBase } from './esolve-stock-item-base.model';
|
|
2
|
-
export class EsolveStockGroupItem extends EsolveStockItemBase {
|
|
3
|
-
constructor(record) {
|
|
4
|
-
super(record);
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXN0b2NrLWdyb3VwLWl0ZW0ubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3RvY2svY2xhc3Nlcy9lc29sdmUtc3RvY2stZ3JvdXAtaXRlbS5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUVyRSxNQUFNLE9BQU8sb0JBRVgsU0FBUSxtQkFBc0I7SUFDNUIsWUFBWSxNQUErQztRQUN2RCxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDbEIsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlQ3VzdG9tRmllbGRzIH0gZnJvbSAnLi4vLi4vc2hhcmVkL2N1c3RvbS1maWVsZHMnO1xuaW1wb3J0IHsgRXNvbHZlU3RvY2tHcm91cEl0ZW1SZWNvcmQgfSBmcm9tICcuLi90eXBlcyc7XG5cbmltcG9ydCB7IEVzb2x2ZVN0b2NrSXRlbUJhc2UgfSBmcm9tICcuL2Vzb2x2ZS1zdG9jay1pdGVtLWJhc2UubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlU3RvY2tHcm91cEl0ZW08XG4gICAgVCBleHRlbmRzIEVzb2x2ZUN1c3RvbUZpZWxkcyA9IEVzb2x2ZUN1c3RvbUZpZWxkcyxcbj4gZXh0ZW5kcyBFc29sdmVTdG9ja0l0ZW1CYXNlPFQ+IHtcbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBQYXJ0aWFsPEVzb2x2ZVN0b2NrR3JvdXBJdGVtUmVjb3JkPFQ+Pikge1xuICAgICAgICBzdXBlcihyZWNvcmQpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { EsolveStockGroupItem } from './esolve-stock-group-item.model';
|
|
2
|
-
export class EsolveStockGroup {
|
|
3
|
-
constructor(group, records = []) {
|
|
4
|
-
this.group = group;
|
|
5
|
-
this.items = [];
|
|
6
|
-
if (records.length > 0) {
|
|
7
|
-
for (const record of records) {
|
|
8
|
-
this.items.push(new EsolveStockGroupItem(record));
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXN0b2NrLWdyb3VwLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL3N0b2NrL2NsYXNzZXMvZXNvbHZlLXN0b2NrLWdyb3VwLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBRXZFLE1BQU0sT0FBTyxnQkFBZ0I7SUFLekIsWUFDVyxLQUFhLEVBQ3BCLFVBQTJDLEVBQUU7UUFEdEMsVUFBSyxHQUFMLEtBQUssQ0FBUTtRQUhqQixVQUFLLEdBQThCLEVBQUUsQ0FBQztRQU16QyxJQUFJLE9BQU8sQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQ3BCLEtBQUssTUFBTSxNQUFNLElBQUksT0FBTyxFQUFFO2dCQUMxQixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxJQUFJLG9CQUFvQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7YUFDckQ7U0FDSjtJQUNMLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZUN1c3RvbUZpZWxkcyB9IGZyb20gJy4uLy4uL3NoYXJlZC9jdXN0b20tZmllbGRzJztcbmltcG9ydCB7IEVzb2x2ZVN0b2NrR3JvdXBJdGVtUmVjb3JkIH0gZnJvbSAnLi4vdHlwZXMnO1xuXG5pbXBvcnQgeyBFc29sdmVTdG9ja0dyb3VwSXRlbSB9IGZyb20gJy4vZXNvbHZlLXN0b2NrLWdyb3VwLWl0ZW0ubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlU3RvY2tHcm91cDxcbiAgICBUIGV4dGVuZHMgRXNvbHZlQ3VzdG9tRmllbGRzID0gRXNvbHZlQ3VzdG9tRmllbGRzLFxuPiB7XG4gICAgcHVibGljIGl0ZW1zOiBFc29sdmVTdG9ja0dyb3VwSXRlbTxUPltdID0gW107XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHVibGljIGdyb3VwOiBzdHJpbmcsXG4gICAgICAgIHJlY29yZHM6IEVzb2x2ZVN0b2NrR3JvdXBJdGVtUmVjb3JkPFQ+W10gPSBbXSxcbiAgICApIHtcbiAgICAgICAgaWYgKHJlY29yZHMubGVuZ3RoID4gMCkge1xuICAgICAgICAgICAgZm9yIChjb25zdCByZWNvcmQgb2YgcmVjb3Jkcykge1xuICAgICAgICAgICAgICAgIHRoaXMuaXRlbXMucHVzaChuZXcgRXNvbHZlU3RvY2tHcm91cEl0ZW0ocmVjb3JkKSk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { EsolveAdditionalStockImage } from './esolve-additional-stock-image.model';
|
|
2
|
-
import { EsolveStockImage } from './esolve-stock-image.model';
|
|
3
|
-
export class EsolveStockImageCollection {
|
|
4
|
-
constructor(record) {
|
|
5
|
-
this.alt_images = [];
|
|
6
|
-
this.additional_images = [];
|
|
7
|
-
this.default_image = new EsolveStockImage(record?.default_image ?? '', record?.default_image_last_modified ?? '');
|
|
8
|
-
if (!record) {
|
|
9
|
-
return;
|
|
10
|
-
}
|
|
11
|
-
if (record.alt_images && record.alt_images.length > 0) {
|
|
12
|
-
for (const alt_image_name of record.alt_images) {
|
|
13
|
-
const alt_image = new EsolveStockImage(alt_image_name);
|
|
14
|
-
this.alt_images.push(alt_image);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
if (record.additional_images && record.additional_images.length > 0) {
|
|
18
|
-
for (const additional_image_record of record.additional_images) {
|
|
19
|
-
const additional_image = new EsolveAdditionalStockImage(additional_image_record);
|
|
20
|
-
this.additional_images.push(additional_image);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXN0b2NrLWltYWdlLWNvbGxlY3Rpb24ubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvc3RvY2svY2xhc3Nlcy9lc29sdmUtc3RvY2staW1hZ2UtY29sbGVjdGlvbi5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUNuRixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUU5RCxNQUFNLE9BQU8sMEJBQTBCO0lBS25DLFlBQVksTUFBa0Q7UUFIdkQsZUFBVSxHQUF1QixFQUFFLENBQUM7UUFDcEMsc0JBQWlCLEdBQWlDLEVBQUUsQ0FBQztRQUd4RCxJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksZ0JBQWdCLENBQ3JDLE1BQU0sRUFBRSxhQUFhLElBQUksRUFBRSxFQUMzQixNQUFNLEVBQUUsMkJBQTJCLElBQUksRUFBRSxDQUM1QyxDQUFDO1FBRUYsSUFBSSxDQUFDLE1BQU0sRUFBRTtZQUNULE9BQU87U0FDVjtRQUVELElBQUksTUFBTSxDQUFDLFVBQVUsSUFBSSxNQUFNLENBQUMsVUFBVSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDbkQsS0FBSyxNQUFNLGNBQWMsSUFBSSxNQUFNLENBQUMsVUFBVSxFQUFFO2dCQUM1QyxNQUFNLFNBQVMsR0FBRyxJQUFJLGdCQUFnQixDQUFDLGNBQWMsQ0FBQyxDQUFDO2dCQUV2RCxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQzthQUNuQztTQUNKO1FBRUQsSUFBSSxNQUFNLENBQUMsaUJBQWlCLElBQUksTUFBTSxDQUFDLGlCQUFpQixDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDakUsS0FBSyxNQUFNLHVCQUF1QixJQUFJLE1BQU0sQ0FBQyxpQkFBaUIsRUFBRTtnQkFDNUQsTUFBTSxnQkFBZ0IsR0FBRyxJQUFJLDBCQUEwQixDQUNuRCx1QkFBdUIsQ0FDMUIsQ0FBQztnQkFFRixJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUM7YUFDakQ7U0FDSjtJQUNMLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZVN0b2NrSW1hZ2VDb2xsZWN0aW9uUmVjb3JkIH0gZnJvbSAnLi4vaW50ZXJmYWNlcyc7XG5pbXBvcnQgeyBFc29sdmVBZGRpdGlvbmFsU3RvY2tJbWFnZSB9IGZyb20gJy4vZXNvbHZlLWFkZGl0aW9uYWwtc3RvY2staW1hZ2UubW9kZWwnO1xuaW1wb3J0IHsgRXNvbHZlU3RvY2tJbWFnZSB9IGZyb20gJy4vZXNvbHZlLXN0b2NrLWltYWdlLm1vZGVsJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZVN0b2NrSW1hZ2VDb2xsZWN0aW9uIHtcbiAgICBwdWJsaWMgZGVmYXVsdF9pbWFnZTogRXNvbHZlU3RvY2tJbWFnZTtcbiAgICBwdWJsaWMgYWx0X2ltYWdlczogRXNvbHZlU3RvY2tJbWFnZVtdID0gW107XG4gICAgcHVibGljIGFkZGl0aW9uYWxfaW1hZ2VzOiBFc29sdmVBZGRpdGlvbmFsU3RvY2tJbWFnZVtdID0gW107XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBQYXJ0aWFsPEVzb2x2ZVN0b2NrSW1hZ2VDb2xsZWN0aW9uUmVjb3JkPikge1xuICAgICAgICB0aGlzLmRlZmF1bHRfaW1hZ2UgPSBuZXcgRXNvbHZlU3RvY2tJbWFnZShcbiAgICAgICAgICAgIHJlY29yZD8uZGVmYXVsdF9pbWFnZSA/PyAnJyxcbiAgICAgICAgICAgIHJlY29yZD8uZGVmYXVsdF9pbWFnZV9sYXN0X21vZGlmaWVkID8/ICcnLFxuICAgICAgICApO1xuXG4gICAgICAgIGlmICghcmVjb3JkKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cblxuICAgICAgICBpZiAocmVjb3JkLmFsdF9pbWFnZXMgJiYgcmVjb3JkLmFsdF9pbWFnZXMubGVuZ3RoID4gMCkge1xuICAgICAgICAgICAgZm9yIChjb25zdCBhbHRfaW1hZ2VfbmFtZSBvZiByZWNvcmQuYWx0X2ltYWdlcykge1xuICAgICAgICAgICAgICAgIGNvbnN0IGFsdF9pbWFnZSA9IG5ldyBFc29sdmVTdG9ja0ltYWdlKGFsdF9pbWFnZV9uYW1lKTtcblxuICAgICAgICAgICAgICAgIHRoaXMuYWx0X2ltYWdlcy5wdXNoKGFsdF9pbWFnZSk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICBpZiAocmVjb3JkLmFkZGl0aW9uYWxfaW1hZ2VzICYmIHJlY29yZC5hZGRpdGlvbmFsX2ltYWdlcy5sZW5ndGggPiAwKSB7XG4gICAgICAgICAgICBmb3IgKGNvbnN0IGFkZGl0aW9uYWxfaW1hZ2VfcmVjb3JkIG9mIHJlY29yZC5hZGRpdGlvbmFsX2ltYWdlcykge1xuICAgICAgICAgICAgICAgIGNvbnN0IGFkZGl0aW9uYWxfaW1hZ2UgPSBuZXcgRXNvbHZlQWRkaXRpb25hbFN0b2NrSW1hZ2UoXG4gICAgICAgICAgICAgICAgICAgIGFkZGl0aW9uYWxfaW1hZ2VfcmVjb3JkLFxuICAgICAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgICAgICB0aGlzLmFkZGl0aW9uYWxfaW1hZ2VzLnB1c2goYWRkaXRpb25hbF9pbWFnZSk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
export class EsolveStockImage {
|
|
2
|
-
/**
|
|
3
|
-
* Path to tiny stock image
|
|
4
|
-
*/
|
|
5
|
-
get tiny_src() {
|
|
6
|
-
return this.getImagePath('tiny');
|
|
7
|
-
}
|
|
8
|
-
/**
|
|
9
|
-
* Path to thumbnail stock image
|
|
10
|
-
*/
|
|
11
|
-
get thumbnail_src() {
|
|
12
|
-
return this.getImagePath('thumb');
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* Path to small stock image
|
|
16
|
-
*/
|
|
17
|
-
get small_src() {
|
|
18
|
-
return this.getImagePath('small');
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Path to big stock image
|
|
22
|
-
*/
|
|
23
|
-
get big_src() {
|
|
24
|
-
return this.getImagePath('big');
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Path to original stock image
|
|
28
|
-
*/
|
|
29
|
-
get original_src() {
|
|
30
|
-
return this.getImagePath('original');
|
|
31
|
-
}
|
|
32
|
-
constructor(image_name, last_modified = '') {
|
|
33
|
-
this.image_name = image_name;
|
|
34
|
-
this.last_modified = last_modified;
|
|
35
|
-
if (this.image_name === 'no_image.jpg') {
|
|
36
|
-
this.image_name = '';
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
getImagePath(image_size) {
|
|
40
|
-
if (this.image_name !== '') {
|
|
41
|
-
let param = '';
|
|
42
|
-
if (this.last_modified !== '') {
|
|
43
|
-
param = `?t=${this.last_modified}`;
|
|
44
|
-
}
|
|
45
|
-
return `/images/stock/${image_size}/${this.image_name}${param}`;
|
|
46
|
-
}
|
|
47
|
-
return '';
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXN0b2NrLWltYWdlLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL3N0b2NrL2NsYXNzZXMvZXNvbHZlLXN0b2NrLWltYWdlLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxnQkFBZ0I7SUFDekI7O09BRUc7SUFDSCxJQUFXLFFBQVE7UUFDZixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDckMsQ0FBQztJQUVEOztPQUVHO0lBQ0gsSUFBVyxhQUFhO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN0QyxDQUFDO0lBRUQ7O09BRUc7SUFDSCxJQUFXLFNBQVM7UUFDaEIsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3RDLENBQUM7SUFFRDs7T0FFRztJQUNILElBQVcsT0FBTztRQUNkLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNwQyxDQUFDO0lBRUQ7O09BRUc7SUFDSCxJQUFXLFlBQVk7UUFDbkIsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFFRCxZQUNZLFVBQWtCLEVBQ2xCLGdCQUF3QixFQUFFO1FBRDFCLGVBQVUsR0FBVixVQUFVLENBQVE7UUFDbEIsa0JBQWEsR0FBYixhQUFhLENBQWE7UUFFbEMsSUFBSSxJQUFJLENBQUMsVUFBVSxLQUFLLGNBQWMsRUFBRTtZQUNwQyxJQUFJLENBQUMsVUFBVSxHQUFHLEVBQUUsQ0FBQztTQUN4QjtJQUNMLENBQUM7SUFFTSxZQUFZLENBQUMsVUFBZ0M7UUFDaEQsSUFBSSxJQUFJLENBQUMsVUFBVSxLQUFLLEVBQUUsRUFBRTtZQUN4QixJQUFJLEtBQUssR0FBRyxFQUFFLENBQUM7WUFFZixJQUFJLElBQUksQ0FBQyxhQUFhLEtBQUssRUFBRSxFQUFFO2dCQUMzQixLQUFLLEdBQUcsTUFBTSxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7YUFDdEM7WUFFRCxPQUFPLGlCQUFpQixVQUFVLElBQUksSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLEVBQUUsQ0FBQztTQUNuRTtRQUVELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlU3RvY2tJbWFnZVNpemUgfSBmcm9tICcuLi90eXBlcyc7XG5cbmV4cG9ydCBjbGFzcyBFc29sdmVTdG9ja0ltYWdlIHtcbiAgICAvKipcbiAgICAgKiBQYXRoIHRvIHRpbnkgc3RvY2sgaW1hZ2VcbiAgICAgKi9cbiAgICBwdWJsaWMgZ2V0IHRpbnlfc3JjKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmdldEltYWdlUGF0aCgndGlueScpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIFBhdGggdG8gdGh1bWJuYWlsIHN0b2NrIGltYWdlXG4gICAgICovXG4gICAgcHVibGljIGdldCB0aHVtYm5haWxfc3JjKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmdldEltYWdlUGF0aCgndGh1bWInKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBQYXRoIHRvIHNtYWxsIHN0b2NrIGltYWdlXG4gICAgICovXG4gICAgcHVibGljIGdldCBzbWFsbF9zcmMoKTogc3RyaW5nIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZ2V0SW1hZ2VQYXRoKCdzbWFsbCcpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIFBhdGggdG8gYmlnIHN0b2NrIGltYWdlXG4gICAgICovXG4gICAgcHVibGljIGdldCBiaWdfc3JjKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmdldEltYWdlUGF0aCgnYmlnJyk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogUGF0aCB0byBvcmlnaW5hbCBzdG9jayBpbWFnZVxuICAgICAqL1xuICAgIHB1YmxpYyBnZXQgb3JpZ2luYWxfc3JjKCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmdldEltYWdlUGF0aCgnb3JpZ2luYWwnKTtcbiAgICB9XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSBpbWFnZV9uYW1lOiBzdHJpbmcsXG4gICAgICAgIHByaXZhdGUgbGFzdF9tb2RpZmllZDogc3RyaW5nID0gJycsXG4gICAgKSB7XG4gICAgICAgIGlmICh0aGlzLmltYWdlX25hbWUgPT09ICdub19pbWFnZS5qcGcnKSB7XG4gICAgICAgICAgICB0aGlzLmltYWdlX25hbWUgPSAnJztcbiAgICAgICAgfVxuICAgIH1cblxuICAgIHB1YmxpYyBnZXRJbWFnZVBhdGgoaW1hZ2Vfc2l6ZTogRXNvbHZlU3RvY2tJbWFnZVNpemUpOiBzdHJpbmcge1xuICAgICAgICBpZiAodGhpcy5pbWFnZV9uYW1lICE9PSAnJykge1xuICAgICAgICAgICAgbGV0IHBhcmFtID0gJyc7XG5cbiAgICAgICAgICAgIGlmICh0aGlzLmxhc3RfbW9kaWZpZWQgIT09ICcnKSB7XG4gICAgICAgICAgICAgICAgcGFyYW0gPSBgP3Q9JHt0aGlzLmxhc3RfbW9kaWZpZWR9YDtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcmV0dXJuIGAvaW1hZ2VzL3N0b2NrLyR7aW1hZ2Vfc2l6ZX0vJHt0aGlzLmltYWdlX25hbWV9JHtwYXJhbX1gO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuICcnO1xuICAgIH1cbn1cbiJdfQ==
|