@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,2 +0,0 @@
|
|
|
1
|
-
export * from './esolve-coupons-cache.type';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvY291cG9ucy90eXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDZCQUE2QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtY291cG9ucy1jYWNoZS50eXBlJztcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWVucXVpcnktcmVzcG9uc2UudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9lbnF1aXJ5L2Vzb2x2ZS1lbnF1aXJ5LXJlc3BvbnNlLnR5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZVBvc3RSZXNwb25zZUl0ZW0gfSBmcm9tICcuLi9zaGFyZWQvcmVzcG9uc2UnO1xuXG5leHBvcnQgdHlwZSBFc29sdmVFbnF1aXJ5UmVzcG9uc2UgPSBFc29sdmVQb3N0UmVzcG9uc2VJdGVtO1xuIl19
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EsolveResponseResult } from '../shared/response';
|
|
2
|
-
export class EsolveEnquiryResult extends EsolveResponseResult {
|
|
3
|
-
constructor(response) {
|
|
4
|
-
super(response);
|
|
5
|
-
this.id = 0;
|
|
6
|
-
this.id = +response.esolve_id;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWVucXVpcnktcmVzdWx0Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2VucXVpcnkvZXNvbHZlLWVucXVpcnktcmVzdWx0Lm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBSTFELE1BQU0sT0FBTyxtQkFBb0IsU0FBUSxvQkFBb0I7SUFHekQsWUFBWSxRQUErQjtRQUN2QyxLQUFLLENBQUMsUUFBUSxDQUFDLENBQUM7UUFIYixPQUFFLEdBQUcsQ0FBQyxDQUFDO1FBS1YsSUFBSSxDQUFDLEVBQUUsR0FBRyxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUM7SUFDbEMsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlUmVzcG9uc2VSZXN1bHQgfSBmcm9tICcuLi9zaGFyZWQvcmVzcG9uc2UnO1xuXG5pbXBvcnQgeyBFc29sdmVFbnF1aXJ5UmVzcG9uc2UgfSBmcm9tICcuL2Vzb2x2ZS1lbnF1aXJ5LXJlc3BvbnNlLnR5cGUnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlRW5xdWlyeVJlc3VsdCBleHRlbmRzIEVzb2x2ZVJlc3BvbnNlUmVzdWx0IHtcbiAgICBwdWJsaWMgaWQgPSAwO1xuXG4gICAgY29uc3RydWN0b3IocmVzcG9uc2U6IEVzb2x2ZUVucXVpcnlSZXNwb25zZSkge1xuICAgICAgICBzdXBlcihyZXNwb25zZSk7XG5cbiAgICAgICAgdGhpcy5pZCA9ICtyZXNwb25zZS5lc29sdmVfaWQ7XG4gICAgfVxufVxuIl19
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Injectable } from '@angular/core';
|
|
3
|
-
import { catchError, map } from 'rxjs/operators';
|
|
4
|
-
import { EsolveErrorHandlerService } from '../shared/errors';
|
|
5
|
-
import { EsolveResponseHandlerService, } from '../shared/response';
|
|
6
|
-
import { EsolveEnquiryResult } from './esolve-enquiry-result.model';
|
|
7
|
-
import { EsolveConfigService } from '../core';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "../core";
|
|
10
|
-
import * as i2 from "@angular/common/http";
|
|
11
|
-
import * as i3 from "../shared/errors";
|
|
12
|
-
import * as i4 from "../shared/response";
|
|
13
|
-
export class EsolveEnquiryService {
|
|
14
|
-
constructor(config, http, errorHandler, responseHandler) {
|
|
15
|
-
this.config = config;
|
|
16
|
-
this.http = http;
|
|
17
|
-
this.errorHandler = errorHandler;
|
|
18
|
-
this.responseHandler = responseHandler;
|
|
19
|
-
}
|
|
20
|
-
send(form_data) {
|
|
21
|
-
if (!form_data.has('email')) {
|
|
22
|
-
return this.errorHandler.emitError('email_required', 'Email is required');
|
|
23
|
-
}
|
|
24
|
-
return this.http
|
|
25
|
-
.post(`${this.config.api_url}/set-enquiry.php`, form_data, {
|
|
26
|
-
responseType: 'json',
|
|
27
|
-
observe: 'body',
|
|
28
|
-
})
|
|
29
|
-
.pipe(map((http_response) => this.responseHandler.validateSingleHttpResponse(http_response, (response) => new EsolveEnquiryResult(response))), catchError((errorRes) => {
|
|
30
|
-
return this.errorHandler.handleHttpPostError('set-enquiry', errorRes);
|
|
31
|
-
}));
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
EsolveEnquiryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveEnquiryService, deps: [{ token: i1.EsolveConfigService }, { token: i2.HttpClient }, { token: i3.EsolveErrorHandlerService }, { token: i4.EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
35
|
-
EsolveEnquiryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveEnquiryService, providedIn: 'root' });
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveEnquiryService, decorators: [{
|
|
37
|
-
type: Injectable,
|
|
38
|
-
args: [{
|
|
39
|
-
providedIn: 'root',
|
|
40
|
-
}]
|
|
41
|
-
}], ctorParameters: function () { return [{ type: i1.EsolveConfigService }, { type: i2.HttpClient }, { type: i3.EsolveErrorHandlerService }, { type: i4.EsolveResponseHandlerService }]; } });
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWVucXVpcnkuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9lbnF1aXJ5L2Vzb2x2ZS1lbnF1aXJ5LnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBcUIsTUFBTSxzQkFBc0IsQ0FBQztBQUNyRSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRzNDLE9BQU8sRUFBRSxVQUFVLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFakQsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0QsT0FBTyxFQUNILDRCQUE0QixHQUUvQixNQUFNLG9CQUFvQixDQUFDO0FBRTVCLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBRXBFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7Ozs7O0FBSzlDLE1BQU0sT0FBTyxvQkFBb0I7SUFDN0IsWUFDWSxNQUEyQixFQUMzQixJQUFnQixFQUNoQixZQUF1QyxFQUN2QyxlQUE2QztRQUg3QyxXQUFNLEdBQU4sTUFBTSxDQUFxQjtRQUMzQixTQUFJLEdBQUosSUFBSSxDQUFZO1FBQ2hCLGlCQUFZLEdBQVosWUFBWSxDQUEyQjtRQUN2QyxvQkFBZSxHQUFmLGVBQWUsQ0FBOEI7SUFDdEQsQ0FBQztJQUVHLElBQUksQ0FBQyxTQUFtQjtRQUMzQixJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsRUFBRTtZQUN6QixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUM5QixnQkFBZ0IsRUFDaEIsbUJBQW1CLENBQ3RCLENBQUM7U0FDTDtRQUVELE9BQU8sSUFBSSxDQUFDLElBQUk7YUFDWCxJQUFJLENBQ0QsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sa0JBQWtCLEVBQ3hDLFNBQVMsRUFDVDtZQUNJLFlBQVksRUFBRSxNQUFNO1lBQ3BCLE9BQU8sRUFBRSxNQUFNO1NBQ2xCLENBQ0o7YUFDQSxJQUFJLENBQ0QsR0FBRyxDQUFDLENBQUMsYUFBYSxFQUFFLEVBQUUsQ0FDbEIsSUFBSSxDQUFDLGVBQWUsQ0FBQywwQkFBMEIsQ0FDM0MsYUFBYSxFQUNiLENBQUMsUUFBUSxFQUFFLEVBQUUsQ0FBQyxJQUFJLG1CQUFtQixDQUFDLFFBQVEsQ0FBQyxDQUNsRCxDQUNKLEVBQ0QsVUFBVSxDQUFDLENBQUMsUUFBaUMsRUFBRSxFQUFFO1lBQzdDLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxtQkFBbUIsQ0FDeEMsYUFBYSxFQUNiLFFBQVEsQ0FDWCxDQUFDO1FBQ04sQ0FBQyxDQUFDLENBQ0wsQ0FBQztJQUNWLENBQUM7O2lIQXZDUSxvQkFBb0I7cUhBQXBCLG9CQUFvQixjQUZqQixNQUFNOzJGQUVULG9CQUFvQjtrQkFIaEMsVUFBVTttQkFBQztvQkFDUixVQUFVLEVBQUUsTUFBTTtpQkFDckIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIdHRwQ2xpZW50LCBIdHRwRXJyb3JSZXNwb25zZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcbmltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgY2F0Y2hFcnJvciwgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5pbXBvcnQgeyBFc29sdmVFcnJvckhhbmRsZXJTZXJ2aWNlIH0gZnJvbSAnLi4vc2hhcmVkL2Vycm9ycyc7XG5pbXBvcnQge1xuICAgIEVzb2x2ZVJlc3BvbnNlSGFuZGxlclNlcnZpY2UsXG4gICAgRXNvbHZlU2V0UmVzcG9uc2UsXG59IGZyb20gJy4uL3NoYXJlZC9yZXNwb25zZSc7XG5cbmltcG9ydCB7IEVzb2x2ZUVucXVpcnlSZXN1bHQgfSBmcm9tICcuL2Vzb2x2ZS1lbnF1aXJ5LXJlc3VsdC5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVFbnF1aXJ5UmVzcG9uc2UgfSBmcm9tICcuL2Vzb2x2ZS1lbnF1aXJ5LXJlc3BvbnNlLnR5cGUnO1xuaW1wb3J0IHsgRXNvbHZlQ29uZmlnU2VydmljZSB9IGZyb20gJy4uL2NvcmUnO1xuXG5ASW5qZWN0YWJsZSh7XG4gICAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBFc29sdmVFbnF1aXJ5U2VydmljZSB7XG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgY29uZmlnOiBFc29sdmVDb25maWdTZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQsXG4gICAgICAgIHByaXZhdGUgZXJyb3JIYW5kbGVyOiBFc29sdmVFcnJvckhhbmRsZXJTZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIHJlc3BvbnNlSGFuZGxlcjogRXNvbHZlUmVzcG9uc2VIYW5kbGVyU2VydmljZSxcbiAgICApIHt9XG5cbiAgICBwdWJsaWMgc2VuZChmb3JtX2RhdGE6IEZvcm1EYXRhKTogT2JzZXJ2YWJsZTxFc29sdmVFbnF1aXJ5UmVzdWx0PiB7XG4gICAgICAgIGlmICghZm9ybV9kYXRhLmhhcygnZW1haWwnKSkge1xuICAgICAgICAgICAgcmV0dXJuIHRoaXMuZXJyb3JIYW5kbGVyLmVtaXRFcnJvcihcbiAgICAgICAgICAgICAgICAnZW1haWxfcmVxdWlyZWQnLFxuICAgICAgICAgICAgICAgICdFbWFpbCBpcyByZXF1aXJlZCcsXG4gICAgICAgICAgICApO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuaHR0cFxuICAgICAgICAgICAgLnBvc3Q8RXNvbHZlU2V0UmVzcG9uc2U8RXNvbHZlRW5xdWlyeVJlc3BvbnNlPj4oXG4gICAgICAgICAgICAgICAgYCR7dGhpcy5jb25maWcuYXBpX3VybH0vc2V0LWVucXVpcnkucGhwYCxcbiAgICAgICAgICAgICAgICBmb3JtX2RhdGEsXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICByZXNwb25zZVR5cGU6ICdqc29uJyxcbiAgICAgICAgICAgICAgICAgICAgb2JzZXJ2ZTogJ2JvZHknLFxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICApXG4gICAgICAgICAgICAucGlwZShcbiAgICAgICAgICAgICAgICBtYXAoKGh0dHBfcmVzcG9uc2UpID0+XG4gICAgICAgICAgICAgICAgICAgIHRoaXMucmVzcG9uc2VIYW5kbGVyLnZhbGlkYXRlU2luZ2xlSHR0cFJlc3BvbnNlKFxuICAgICAgICAgICAgICAgICAgICAgICAgaHR0cF9yZXNwb25zZSxcbiAgICAgICAgICAgICAgICAgICAgICAgIChyZXNwb25zZSkgPT4gbmV3IEVzb2x2ZUVucXVpcnlSZXN1bHQocmVzcG9uc2UpLFxuICAgICAgICAgICAgICAgICAgICApLFxuICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgY2F0Y2hFcnJvcigoZXJyb3JSZXM6IEh0dHBFcnJvclJlc3BvbnNlIHwgYW55KSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIHJldHVybiB0aGlzLmVycm9ySGFuZGxlci5oYW5kbGVIdHRwUG9zdEVycm9yKFxuICAgICAgICAgICAgICAgICAgICAgICAgJ3NldC1lbnF1aXJ5JyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGVycm9yUmVzLFxuICAgICAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgKTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './esolve-enquiry-response.type';
|
|
2
|
-
export * from './esolve-enquiry-result.model';
|
|
3
|
-
export * from './esolve-enquiry.service';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvZW5xdWlyeS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWVucXVpcnktcmVzcG9uc2UudHlwZSc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1lbnF1aXJ5LXJlc3VsdC5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1lbnF1aXJ5LnNlcnZpY2UnO1xuIl19
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { Directive, ElementRef, HostListener, Input, } from '@angular/core';
|
|
2
|
-
import { EsolveConfigService } from '../../core';
|
|
3
|
-
import { processEsolveImageSrc } from '../functions';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "../../core";
|
|
6
|
-
/**
|
|
7
|
-
* An alternative to optimised images to load a new image
|
|
8
|
-
*/
|
|
9
|
-
export class EsolveCdnSrcDirective {
|
|
10
|
-
constructor(el, config) {
|
|
11
|
-
this.el = el;
|
|
12
|
-
this.config = config;
|
|
13
|
-
this.src = '';
|
|
14
|
-
this.no_image = false;
|
|
15
|
-
this.error_image_path = '/assets/no_image.jpg';
|
|
16
|
-
if (this.config.error_image_path) {
|
|
17
|
-
this.error_image_path = this.config.error_image_path;
|
|
18
|
-
}
|
|
19
|
-
if (this.isImage(this.el.nativeElement)) {
|
|
20
|
-
this.el.nativeElement.loading = 'lazy';
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
ngOnChanges() {
|
|
24
|
-
this.init();
|
|
25
|
-
}
|
|
26
|
-
onError() {
|
|
27
|
-
this.setErrorImage();
|
|
28
|
-
}
|
|
29
|
-
init() {
|
|
30
|
-
this.no_image = false;
|
|
31
|
-
if (this.src === '') {
|
|
32
|
-
this.setErrorImage();
|
|
33
|
-
return;
|
|
34
|
-
}
|
|
35
|
-
const image_src = processEsolveImageSrc(this.src, this.config.cdn, this.config.legacy_cdn);
|
|
36
|
-
this.setSrc(image_src);
|
|
37
|
-
}
|
|
38
|
-
setSrc(src) {
|
|
39
|
-
if (this.isImage(this.el.nativeElement)) {
|
|
40
|
-
this.el.nativeElement.src = src;
|
|
41
|
-
}
|
|
42
|
-
else {
|
|
43
|
-
this.el.nativeElement.srcset = src;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
setErrorImage() {
|
|
47
|
-
if (this.no_image) {
|
|
48
|
-
return;
|
|
49
|
-
}
|
|
50
|
-
this.setSrc(this.error_image_path);
|
|
51
|
-
this.no_image = true;
|
|
52
|
-
}
|
|
53
|
-
isImage(el) {
|
|
54
|
-
return 'loading' in this.el.nativeElement;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
EsolveCdnSrcDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveCdnSrcDirective, deps: [{ token: i0.ElementRef }, { token: i1.EsolveConfigService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
58
|
-
EsolveCdnSrcDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: EsolveCdnSrcDirective, isStandalone: true, selector: "[eslvCdnSrc]", inputs: { src: ["eslvCdnSrc", "src"] }, host: { listeners: { "error": "onError()" } }, usesOnChanges: true, ngImport: i0 });
|
|
59
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveCdnSrcDirective, decorators: [{
|
|
60
|
-
type: Directive,
|
|
61
|
-
args: [{
|
|
62
|
-
selector: '[eslvCdnSrc]',
|
|
63
|
-
standalone: true,
|
|
64
|
-
}]
|
|
65
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.EsolveConfigService }]; }, propDecorators: { src: [{
|
|
66
|
-
type: Input,
|
|
67
|
-
args: ['eslvCdnSrc']
|
|
68
|
-
}], onError: [{
|
|
69
|
-
type: HostListener,
|
|
70
|
-
args: ['error']
|
|
71
|
-
}] } });
|
|
72
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2RuLXNyYy5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvaW1hZ2VzL2RpcmVjdGl2ZXMvY2RuLXNyYy5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILFNBQVMsRUFDVCxVQUFVLEVBQ1YsWUFBWSxFQUNaLEtBQUssR0FFUixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFDakQsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sY0FBYyxDQUFDOzs7QUFFckQ7O0dBRUc7QUFLSCxNQUFNLE9BQU8scUJBQXFCO0lBSzlCLFlBQ1ksRUFBb0QsRUFDcEQsTUFBMkI7UUFEM0IsT0FBRSxHQUFGLEVBQUUsQ0FBa0Q7UUFDcEQsV0FBTSxHQUFOLE1BQU0sQ0FBcUI7UUFOWCxRQUFHLEdBQUcsRUFBRSxDQUFDO1FBQzdCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFDakIscUJBQWdCLEdBQUcsc0JBQXNCLENBQUM7UUFNOUMsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLGdCQUFnQixFQUFFO1lBQzlCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLGdCQUFnQixDQUFDO1NBQ3hEO1FBRUQsSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDLEVBQUU7WUFDckMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQztTQUMxQztJQUNMLENBQUM7SUFFTSxXQUFXO1FBQ2QsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2hCLENBQUM7SUFHTSxPQUFPO1FBQ1YsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFTSxJQUFJO1FBQ1AsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUM7UUFFdEIsSUFBSSxJQUFJLENBQUMsR0FBRyxLQUFLLEVBQUUsRUFBRTtZQUNqQixJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7WUFFckIsT0FBTztTQUNWO1FBRUQsTUFBTSxTQUFTLEdBQUcscUJBQXFCLENBQ25DLElBQUksQ0FBQyxHQUFHLEVBQ1IsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLEVBQ2YsSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQ3pCLENBQUM7UUFFRixJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQzNCLENBQUM7SUFFTyxNQUFNLENBQUMsR0FBVztRQUN0QixJQUFJLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsRUFBRTtZQUNyQyxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxHQUFHLEdBQUcsR0FBRyxDQUFDO1NBQ25DO2FBQU07WUFDSCxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxNQUFNLEdBQUcsR0FBRyxDQUFDO1NBQ3RDO0lBQ0wsQ0FBQztJQUVPLGFBQWE7UUFDakIsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2YsT0FBTztTQUNWO1FBRUQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQztJQUN6QixDQUFDO0lBRU8sT0FBTyxDQUNYLEVBQXdDO1FBRXhDLE9BQU8sU0FBUyxJQUFJLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDO0lBQzlDLENBQUM7O2tIQWxFUSxxQkFBcUI7c0dBQXJCLHFCQUFxQjsyRkFBckIscUJBQXFCO2tCQUpqQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxjQUFjO29CQUN4QixVQUFVLEVBQUUsSUFBSTtpQkFDbkI7bUlBRStCLEdBQUc7c0JBQTlCLEtBQUs7dUJBQUMsWUFBWTtnQkFzQlosT0FBTztzQkFEYixZQUFZO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIERpcmVjdGl2ZSxcbiAgICBFbGVtZW50UmVmLFxuICAgIEhvc3RMaXN0ZW5lcixcbiAgICBJbnB1dCxcbiAgICBPbkNoYW5nZXMsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBFc29sdmVDb25maWdTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vY29yZSc7XG5pbXBvcnQgeyBwcm9jZXNzRXNvbHZlSW1hZ2VTcmMgfSBmcm9tICcuLi9mdW5jdGlvbnMnO1xuXG4vKipcbiAqIEFuIGFsdGVybmF0aXZlIHRvIG9wdGltaXNlZCBpbWFnZXMgdG8gbG9hZCBhIG5ldyBpbWFnZVxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1tlc2x2Q2RuU3JjXScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgRXNvbHZlQ2RuU3JjRGlyZWN0aXZlIGltcGxlbWVudHMgT25DaGFuZ2VzIHtcbiAgICBASW5wdXQoJ2VzbHZDZG5TcmMnKSBwdWJsaWMgc3JjID0gJyc7XG4gICAgcHJpdmF0ZSBub19pbWFnZSA9IGZhbHNlO1xuICAgIHByaXZhdGUgZXJyb3JfaW1hZ2VfcGF0aCA9ICcvYXNzZXRzL25vX2ltYWdlLmpwZyc7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSBlbDogRWxlbWVudFJlZjxIVE1MSW1hZ2VFbGVtZW50IHwgSFRNTFNvdXJjZUVsZW1lbnQ+LFxuICAgICAgICBwcml2YXRlIGNvbmZpZzogRXNvbHZlQ29uZmlnU2VydmljZSxcbiAgICApIHtcbiAgICAgICAgaWYgKHRoaXMuY29uZmlnLmVycm9yX2ltYWdlX3BhdGgpIHtcbiAgICAgICAgICAgIHRoaXMuZXJyb3JfaW1hZ2VfcGF0aCA9IHRoaXMuY29uZmlnLmVycm9yX2ltYWdlX3BhdGg7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAodGhpcy5pc0ltYWdlKHRoaXMuZWwubmF0aXZlRWxlbWVudCkpIHtcbiAgICAgICAgICAgIHRoaXMuZWwubmF0aXZlRWxlbWVudC5sb2FkaW5nID0gJ2xhenknO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIG5nT25DaGFuZ2VzKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmluaXQoKTtcbiAgICB9XG5cbiAgICBASG9zdExpc3RlbmVyKCdlcnJvcicpXG4gICAgcHVibGljIG9uRXJyb3IoKSB7XG4gICAgICAgIHRoaXMuc2V0RXJyb3JJbWFnZSgpO1xuICAgIH1cblxuICAgIHB1YmxpYyBpbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLm5vX2ltYWdlID0gZmFsc2U7XG5cbiAgICAgICAgaWYgKHRoaXMuc3JjID09PSAnJykge1xuICAgICAgICAgICAgdGhpcy5zZXRFcnJvckltYWdlKCk7XG5cbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IGltYWdlX3NyYyA9IHByb2Nlc3NFc29sdmVJbWFnZVNyYyhcbiAgICAgICAgICAgIHRoaXMuc3JjLFxuICAgICAgICAgICAgdGhpcy5jb25maWcuY2RuLFxuICAgICAgICAgICAgdGhpcy5jb25maWcubGVnYWN5X2NkbixcbiAgICAgICAgKTtcblxuICAgICAgICB0aGlzLnNldFNyYyhpbWFnZV9zcmMpO1xuICAgIH1cblxuICAgIHByaXZhdGUgc2V0U3JjKHNyYzogc3RyaW5nKSB7XG4gICAgICAgIGlmICh0aGlzLmlzSW1hZ2UodGhpcy5lbC5uYXRpdmVFbGVtZW50KSkge1xuICAgICAgICAgICAgdGhpcy5lbC5uYXRpdmVFbGVtZW50LnNyYyA9IHNyYztcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMuZWwubmF0aXZlRWxlbWVudC5zcmNzZXQgPSBzcmM7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwcml2YXRlIHNldEVycm9ySW1hZ2UoKSB7XG4gICAgICAgIGlmICh0aGlzLm5vX2ltYWdlKSB7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLnNldFNyYyh0aGlzLmVycm9yX2ltYWdlX3BhdGgpO1xuICAgICAgICB0aGlzLm5vX2ltYWdlID0gdHJ1ZTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGlzSW1hZ2UoXG4gICAgICAgIGVsOiBIVE1MSW1hZ2VFbGVtZW50IHwgSFRNTFNvdXJjZUVsZW1lbnQsXG4gICAgKTogZWwgaXMgSFRNTEltYWdlRWxlbWVudCB7XG4gICAgICAgIHJldHVybiAnbG9hZGluZycgaW4gdGhpcy5lbC5uYXRpdmVFbGVtZW50O1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './cdn-src.directive';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvaW1hZ2VzL2RpcmVjdGl2ZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY2RuLXNyYy5kaXJlY3RpdmUnO1xuIl19
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { IMAGE_LOADER } from '@angular/common';
|
|
2
|
-
import { EsolveConfigService } from '../core';
|
|
3
|
-
import { processEsolveImageSrc } from './functions';
|
|
4
|
-
export const ESOLVE_IMAGE_LOADER_PROVIDER = {
|
|
5
|
-
provide: IMAGE_LOADER,
|
|
6
|
-
useFactory: (esolveConfig) => {
|
|
7
|
-
return (config) => {
|
|
8
|
-
return processEsolveImageSrc(config.src, esolveConfig.cdn, esolveConfig.legacy_cdn);
|
|
9
|
-
};
|
|
10
|
-
},
|
|
11
|
-
deps: [EsolveConfigService],
|
|
12
|
-
};
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWltYWdlLWxvYWRlci5wcm92aWRlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9pbWFnZXMvZXNvbHZlLWltYWdlLWxvYWRlci5wcm92aWRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXFCLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBR2xFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLFNBQVMsQ0FBQztBQUM5QyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFcEQsTUFBTSxDQUFDLE1BQU0sNEJBQTRCLEdBQWE7SUFDbEQsT0FBTyxFQUFFLFlBQVk7SUFDckIsVUFBVSxFQUFFLENBQUMsWUFBaUMsRUFBRSxFQUFFO1FBQzlDLE9BQU8sQ0FBQyxNQUF5QixFQUFFLEVBQUU7WUFDakMsT0FBTyxxQkFBcUIsQ0FDeEIsTUFBTSxDQUFDLEdBQUcsRUFDVixZQUFZLENBQUMsR0FBRyxFQUNoQixZQUFZLENBQUMsVUFBVSxDQUMxQixDQUFDO1FBQ04sQ0FBQyxDQUFDO0lBQ04sQ0FBQztJQUNELElBQUksRUFBRSxDQUFDLG1CQUFtQixDQUFDO0NBQzlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbWFnZUxvYWRlckNvbmZpZywgSU1BR0VfTE9BREVSIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IFByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEVzb2x2ZUNvbmZpZ1NlcnZpY2UgfSBmcm9tICcuLi9jb3JlJztcbmltcG9ydCB7IHByb2Nlc3NFc29sdmVJbWFnZVNyYyB9IGZyb20gJy4vZnVuY3Rpb25zJztcblxuZXhwb3J0IGNvbnN0IEVTT0xWRV9JTUFHRV9MT0FERVJfUFJPVklERVI6IFByb3ZpZGVyID0ge1xuICAgIHByb3ZpZGU6IElNQUdFX0xPQURFUixcbiAgICB1c2VGYWN0b3J5OiAoZXNvbHZlQ29uZmlnOiBFc29sdmVDb25maWdTZXJ2aWNlKSA9PiB7XG4gICAgICAgIHJldHVybiAoY29uZmlnOiBJbWFnZUxvYWRlckNvbmZpZykgPT4ge1xuICAgICAgICAgICAgcmV0dXJuIHByb2Nlc3NFc29sdmVJbWFnZVNyYyhcbiAgICAgICAgICAgICAgICBjb25maWcuc3JjLFxuICAgICAgICAgICAgICAgIGVzb2x2ZUNvbmZpZy5jZG4sXG4gICAgICAgICAgICAgICAgZXNvbHZlQ29uZmlnLmxlZ2FjeV9jZG4sXG4gICAgICAgICAgICApO1xuICAgICAgICB9O1xuICAgIH0sXG4gICAgZGVwczogW0Vzb2x2ZUNvbmZpZ1NlcnZpY2VdLFxufTtcbiJdfQ==
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './process-image-src.function';
|
|
2
|
-
export * from './is-esolve-cdn-path.function';
|
|
3
|
-
export * from './is-legacy-esolve-cdn-path.function';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvaW1hZ2VzL2Z1bmN0aW9ucy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxzQ0FBc0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHJvY2Vzcy1pbWFnZS1zcmMuZnVuY3Rpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9pcy1lc29sdmUtY2RuLXBhdGguZnVuY3Rpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9pcy1sZWdhY3ktZXNvbHZlLWNkbi1wYXRoLmZ1bmN0aW9uJztcbiJdfQ==
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export function isEsolveCdnPath(path) {
|
|
2
|
-
const cdn_regex = /^\/?images\/(?:stock|media|news|assets|banners|documents|manufacturers|ranges|categories|subcategories|tags)\//;
|
|
3
|
-
return cdn_regex.test(path);
|
|
4
|
-
}
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXMtZXNvbHZlLWNkbi1wYXRoLmZ1bmN0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2ltYWdlcy9mdW5jdGlvbnMvaXMtZXNvbHZlLWNkbi1wYXRoLmZ1bmN0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sVUFBVSxlQUFlLENBQUMsSUFBWTtJQUN4QyxNQUFNLFNBQVMsR0FDWCxnSEFBZ0gsQ0FBQztJQUVySCxPQUFPLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7QUFDaEMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBmdW5jdGlvbiBpc0Vzb2x2ZUNkblBhdGgocGF0aDogc3RyaW5nKTogYm9vbGVhbiB7XG4gICAgY29uc3QgY2RuX3JlZ2V4ID1cbiAgICAgICAgL15cXC8/aW1hZ2VzXFwvKD86c3RvY2t8bWVkaWF8bmV3c3xhc3NldHN8YmFubmVyc3xkb2N1bWVudHN8bWFudWZhY3R1cmVyc3xyYW5nZXN8Y2F0ZWdvcmllc3xzdWJjYXRlZ29yaWVzfHRhZ3MpXFwvLztcblxuICAgIHJldHVybiBjZG5fcmVnZXgudGVzdChwYXRoKTtcbn1cbiJdfQ==
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export function isLegacyEsolveCdnPath(path) {
|
|
2
|
-
const cdn_regex = /^\/?images\/(?:media|news|assets|banners|documents|manufacturers|ranges|categories|subcategories|tags)\//;
|
|
3
|
-
return cdn_regex.test(path);
|
|
4
|
-
}
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXMtbGVnYWN5LWVzb2x2ZS1jZG4tcGF0aC5mdW5jdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9pbWFnZXMvZnVuY3Rpb25zL2lzLWxlZ2FjeS1lc29sdmUtY2RuLXBhdGguZnVuY3Rpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxVQUFVLHFCQUFxQixDQUFDLElBQVk7SUFDOUMsTUFBTSxTQUFTLEdBQ1gsMEdBQTBHLENBQUM7SUFFL0csT0FBTyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0FBQ2hDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZnVuY3Rpb24gaXNMZWdhY3lFc29sdmVDZG5QYXRoKHBhdGg6IHN0cmluZyk6IGJvb2xlYW4ge1xuICAgIGNvbnN0IGNkbl9yZWdleCA9XG4gICAgICAgIC9eXFwvP2ltYWdlc1xcLyg/Om1lZGlhfG5ld3N8YXNzZXRzfGJhbm5lcnN8ZG9jdW1lbnRzfG1hbnVmYWN0dXJlcnN8cmFuZ2VzfGNhdGVnb3JpZXN8c3ViY2F0ZWdvcmllc3x0YWdzKVxcLy87XG5cbiAgICByZXR1cm4gY2RuX3JlZ2V4LnRlc3QocGF0aCk7XG59XG4iXX0=
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { isEsolveCdnPath } from './is-esolve-cdn-path.function';
|
|
2
|
-
import { isLegacyEsolveCdnPath } from './is-legacy-esolve-cdn-path.function';
|
|
3
|
-
function isAbsoluteUrl(src) {
|
|
4
|
-
return /^https?:\/\//.test(src);
|
|
5
|
-
}
|
|
6
|
-
function normalizePath(path) {
|
|
7
|
-
return path.endsWith('/') ? path.slice(0, -1) : path;
|
|
8
|
-
}
|
|
9
|
-
function normalizeSrc(src) {
|
|
10
|
-
return src.startsWith('/') ? src.slice(1) : src;
|
|
11
|
-
}
|
|
12
|
-
export function processEsolveImageSrc(src, cdn_url = '', legacy_cdn_url = '') {
|
|
13
|
-
if (isAbsoluteUrl(src)) {
|
|
14
|
-
return src;
|
|
15
|
-
}
|
|
16
|
-
cdn_url = normalizePath(cdn_url);
|
|
17
|
-
legacy_cdn_url = normalizePath(legacy_cdn_url);
|
|
18
|
-
if (cdn_url === '') {
|
|
19
|
-
return src;
|
|
20
|
-
}
|
|
21
|
-
if (legacy_cdn_url === '') {
|
|
22
|
-
legacy_cdn_url = cdn_url;
|
|
23
|
-
}
|
|
24
|
-
if (!isEsolveCdnPath(src)) {
|
|
25
|
-
return src;
|
|
26
|
-
}
|
|
27
|
-
src = normalizeSrc(src);
|
|
28
|
-
if (isLegacyEsolveCdnPath(src)) {
|
|
29
|
-
return `${legacy_cdn_url}/${src}`;
|
|
30
|
-
}
|
|
31
|
-
return `${cdn_url}/${src}`;
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvY2Vzcy1pbWFnZS1zcmMuZnVuY3Rpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvaW1hZ2VzL2Z1bmN0aW9ucy9wcm9jZXNzLWltYWdlLXNyYy5mdW5jdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDaEUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFFN0UsU0FBUyxhQUFhLENBQUMsR0FBVztJQUM5QixPQUFPLGNBQWMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7QUFDcEMsQ0FBQztBQUNELFNBQVMsYUFBYSxDQUFDLElBQVk7SUFDL0IsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7QUFDekQsQ0FBQztBQUVELFNBQVMsWUFBWSxDQUFDLEdBQVc7SUFDN0IsT0FBTyxHQUFHLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUM7QUFDcEQsQ0FBQztBQUVELE1BQU0sVUFBVSxxQkFBcUIsQ0FDakMsR0FBVyxFQUNYLE9BQU8sR0FBRyxFQUFFLEVBQ1osY0FBYyxHQUFHLEVBQUU7SUFFbkIsSUFBSSxhQUFhLENBQUMsR0FBRyxDQUFDLEVBQUU7UUFDcEIsT0FBTyxHQUFHLENBQUM7S0FDZDtJQUVELE9BQU8sR0FBRyxhQUFhLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDakMsY0FBYyxHQUFHLGFBQWEsQ0FBQyxjQUFjLENBQUMsQ0FBQztJQUUvQyxJQUFJLE9BQU8sS0FBSyxFQUFFLEVBQUU7UUFDaEIsT0FBTyxHQUFHLENBQUM7S0FDZDtJQUVELElBQUksY0FBYyxLQUFLLEVBQUUsRUFBRTtRQUN2QixjQUFjLEdBQUcsT0FBTyxDQUFDO0tBQzVCO0lBRUQsSUFBSSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsRUFBRTtRQUN2QixPQUFPLEdBQUcsQ0FBQztLQUNkO0lBRUQsR0FBRyxHQUFHLFlBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUV4QixJQUFJLHFCQUFxQixDQUFDLEdBQUcsQ0FBQyxFQUFFO1FBQzVCLE9BQU8sR0FBRyxjQUFjLElBQUksR0FBRyxFQUFFLENBQUM7S0FDckM7SUFFRCxPQUFPLEdBQUcsT0FBTyxJQUFJLEdBQUcsRUFBRSxDQUFDO0FBQy9CLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBpc0Vzb2x2ZUNkblBhdGggfSBmcm9tICcuL2lzLWVzb2x2ZS1jZG4tcGF0aC5mdW5jdGlvbic7XG5pbXBvcnQgeyBpc0xlZ2FjeUVzb2x2ZUNkblBhdGggfSBmcm9tICcuL2lzLWxlZ2FjeS1lc29sdmUtY2RuLXBhdGguZnVuY3Rpb24nO1xuXG5mdW5jdGlvbiBpc0Fic29sdXRlVXJsKHNyYzogc3RyaW5nKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIC9eaHR0cHM/OlxcL1xcLy8udGVzdChzcmMpO1xufVxuZnVuY3Rpb24gbm9ybWFsaXplUGF0aChwYXRoOiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIHJldHVybiBwYXRoLmVuZHNXaXRoKCcvJykgPyBwYXRoLnNsaWNlKDAsIC0xKSA6IHBhdGg7XG59XG5cbmZ1bmN0aW9uIG5vcm1hbGl6ZVNyYyhzcmM6IHN0cmluZyk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHNyYy5zdGFydHNXaXRoKCcvJykgPyBzcmMuc2xpY2UoMSkgOiBzcmM7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBwcm9jZXNzRXNvbHZlSW1hZ2VTcmMoXG4gICAgc3JjOiBzdHJpbmcsXG4gICAgY2RuX3VybCA9ICcnLFxuICAgIGxlZ2FjeV9jZG5fdXJsID0gJycsXG4pIHtcbiAgICBpZiAoaXNBYnNvbHV0ZVVybChzcmMpKSB7XG4gICAgICAgIHJldHVybiBzcmM7XG4gICAgfVxuXG4gICAgY2RuX3VybCA9IG5vcm1hbGl6ZVBhdGgoY2RuX3VybCk7XG4gICAgbGVnYWN5X2Nkbl91cmwgPSBub3JtYWxpemVQYXRoKGxlZ2FjeV9jZG5fdXJsKTtcblxuICAgIGlmIChjZG5fdXJsID09PSAnJykge1xuICAgICAgICByZXR1cm4gc3JjO1xuICAgIH1cblxuICAgIGlmIChsZWdhY3lfY2RuX3VybCA9PT0gJycpIHtcbiAgICAgICAgbGVnYWN5X2Nkbl91cmwgPSBjZG5fdXJsO1xuICAgIH1cblxuICAgIGlmICghaXNFc29sdmVDZG5QYXRoKHNyYykpIHtcbiAgICAgICAgcmV0dXJuIHNyYztcbiAgICB9XG5cbiAgICBzcmMgPSBub3JtYWxpemVTcmMoc3JjKTtcblxuICAgIGlmIChpc0xlZ2FjeUVzb2x2ZUNkblBhdGgoc3JjKSkge1xuICAgICAgICByZXR1cm4gYCR7bGVnYWN5X2Nkbl91cmx9LyR7c3JjfWA7XG4gICAgfVxuXG4gICAgcmV0dXJuIGAke2Nkbl91cmx9LyR7c3JjfWA7XG59XG4iXX0=
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './esolve-image-loader.provider';
|
|
2
|
-
export * from './directives';
|
|
3
|
-
export * from './functions';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvaW1hZ2VzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1pbWFnZS1sb2FkZXIucHJvdmlkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzJztcbmV4cG9ydCAqIGZyb20gJy4vZnVuY3Rpb25zJztcbiJdfQ==
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export class EsolveLocationAddress {
|
|
2
|
-
constructor(street, suburb, city, province, country, postal_code, latitude, longitude) {
|
|
3
|
-
this.street = street;
|
|
4
|
-
this.suburb = suburb;
|
|
5
|
-
this.city = city;
|
|
6
|
-
this.province = province;
|
|
7
|
-
this.country = country;
|
|
8
|
-
this.postal_code = postal_code;
|
|
9
|
-
this.latitude = latitude;
|
|
10
|
-
this.longitude = longitude;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLWFkZHJlc3MubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2NsYXNzZXMvZXNvbHZlLWxvY2F0aW9uLWFkZHJlc3MubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLHFCQUFxQjtJQUM5QixZQUNXLE1BQWMsRUFDZCxNQUFjLEVBQ2QsSUFBWSxFQUNaLFFBQWdCLEVBQ2hCLE9BQWUsRUFDZixXQUFtQixFQUNuQixRQUFnQixFQUNoQixTQUFpQjtRQVBqQixXQUFNLEdBQU4sTUFBTSxDQUFRO1FBQ2QsV0FBTSxHQUFOLE1BQU0sQ0FBUTtRQUNkLFNBQUksR0FBSixJQUFJLENBQVE7UUFDWixhQUFRLEdBQVIsUUFBUSxDQUFRO1FBQ2hCLFlBQU8sR0FBUCxPQUFPLENBQVE7UUFDZixnQkFBVyxHQUFYLFdBQVcsQ0FBUTtRQUNuQixhQUFRLEdBQVIsUUFBUSxDQUFRO1FBQ2hCLGNBQVMsR0FBVCxTQUFTLENBQVE7SUFDekIsQ0FBQztDQUNQIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIEVzb2x2ZUxvY2F0aW9uQWRkcmVzcyB7XG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHB1YmxpYyBzdHJlZXQ6IHN0cmluZyxcbiAgICAgICAgcHVibGljIHN1YnVyYjogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgY2l0eTogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgcHJvdmluY2U6IHN0cmluZyxcbiAgICAgICAgcHVibGljIGNvdW50cnk6IHN0cmluZyxcbiAgICAgICAgcHVibGljIHBvc3RhbF9jb2RlOiBzdHJpbmcsXG4gICAgICAgIHB1YmxpYyBsYXRpdHVkZTogbnVtYmVyLFxuICAgICAgICBwdWJsaWMgbG9uZ2l0dWRlOiBudW1iZXIsXG4gICAgKSB7fVxufVxuIl19
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export class EsolveLocationContactInfo {
|
|
2
|
-
constructor(telnumber, cellnumber, email, fax) {
|
|
3
|
-
this.telnumber = telnumber;
|
|
4
|
-
this.cellnumber = cellnumber;
|
|
5
|
-
this.email = email;
|
|
6
|
-
this.fax = fax;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLWNvbnRhY3QtaW5mby5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9sb2NhdGlvbnMvY2xhc3Nlcy9lc29sdmUtbG9jYXRpb24tY29udGFjdC1pbmZvLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyx5QkFBeUI7SUFDbEMsWUFDVyxTQUFtQixFQUNuQixVQUFrQixFQUNsQixLQUFhLEVBQ2IsR0FBVztRQUhYLGNBQVMsR0FBVCxTQUFTLENBQVU7UUFDbkIsZUFBVSxHQUFWLFVBQVUsQ0FBUTtRQUNsQixVQUFLLEdBQUwsS0FBSyxDQUFRO1FBQ2IsUUFBRyxHQUFILEdBQUcsQ0FBUTtJQUNuQixDQUFDO0NBQ1AiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgRXNvbHZlTG9jYXRpb25Db250YWN0SW5mbyB7XG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHB1YmxpYyB0ZWxudW1iZXI6IHN0cmluZ1tdLFxuICAgICAgICBwdWJsaWMgY2VsbG51bWJlcjogc3RyaW5nLFxuICAgICAgICBwdWJsaWMgZW1haWw6IHN0cmluZyxcbiAgICAgICAgcHVibGljIGZheDogc3RyaW5nLFxuICAgICkge31cbn1cbiJdfQ==
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export class EsolveLocationGEO {
|
|
2
|
-
constructor(distance, range, target_description) {
|
|
3
|
-
this.distance = distance;
|
|
4
|
-
this.range = range;
|
|
5
|
-
this.target_description = target_description;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLWdlby5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9sb2NhdGlvbnMvY2xhc3Nlcy9lc29sdmUtbG9jYXRpb24tZ2VvLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxpQkFBaUI7SUFDMUIsWUFDVyxRQUFnQixFQUNoQixLQUFhLEVBQ2Isa0JBQTBCO1FBRjFCLGFBQVEsR0FBUixRQUFRLENBQVE7UUFDaEIsVUFBSyxHQUFMLEtBQUssQ0FBUTtRQUNiLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBUTtJQUNsQyxDQUFDO0NBQ1AiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgRXNvbHZlTG9jYXRpb25HRU8ge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwdWJsaWMgZGlzdGFuY2U6IG51bWJlcixcbiAgICAgICAgcHVibGljIHJhbmdlOiBudW1iZXIsXG4gICAgICAgIHB1YmxpYyB0YXJnZXRfZGVzY3JpcHRpb246IHN0cmluZyxcbiAgICApIHt9XG59XG4iXX0=
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export class EsolveLocationPOBoxAddress {
|
|
2
|
-
constructor(pobox, city, postal_code) {
|
|
3
|
-
this.pobox = pobox;
|
|
4
|
-
this.city = city;
|
|
5
|
-
this.postal_code = postal_code;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLXBvYm94LWFkZHJlc3MubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2NsYXNzZXMvZXNvbHZlLWxvY2F0aW9uLXBvYm94LWFkZHJlc3MubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLDBCQUEwQjtJQUNuQyxZQUNXLEtBQWEsRUFDYixJQUFZLEVBQ1osV0FBbUI7UUFGbkIsVUFBSyxHQUFMLEtBQUssQ0FBUTtRQUNiLFNBQUksR0FBSixJQUFJLENBQVE7UUFDWixnQkFBVyxHQUFYLFdBQVcsQ0FBUTtJQUMzQixDQUFDO0NBQ1AiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgRXNvbHZlTG9jYXRpb25QT0JveEFkZHJlc3Mge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwdWJsaWMgcG9ib3g6IHN0cmluZyxcbiAgICAgICAgcHVibGljIGNpdHk6IHN0cmluZyxcbiAgICAgICAgcHVibGljIHBvc3RhbF9jb2RlOiBzdHJpbmcsXG4gICAgKSB7fVxufVxuIl19
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export class EsolveLocationTradingDay {
|
|
2
|
-
constructor(open, close) {
|
|
3
|
-
this.open = open;
|
|
4
|
-
this.close = close;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLXRyYWRpbmctZGF5Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2xvY2F0aW9ucy9jbGFzc2VzL2Vzb2x2ZS1sb2NhdGlvbi10cmFkaW5nLWRheS5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLE9BQU8sd0JBQXdCO0lBQ2pDLFlBQW1CLElBQVksRUFBUyxLQUFhO1FBQWxDLFNBQUksR0FBSixJQUFJLENBQVE7UUFBUyxVQUFLLEdBQUwsS0FBSyxDQUFRO0lBQUcsQ0FBQztDQUM1RCIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXkge1xuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyBvcGVuOiBzdHJpbmcsIHB1YmxpYyBjbG9zZTogc3RyaW5nKSB7fVxufVxuIl19
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export class EsolveLocationTradingTimes {
|
|
2
|
-
constructor(monday, tuesday, wednesday, thursday, friday, saturday, sunday, public_holiday, trading_hours_additional_info = '') {
|
|
3
|
-
this.monday = monday;
|
|
4
|
-
this.tuesday = tuesday;
|
|
5
|
-
this.wednesday = wednesday;
|
|
6
|
-
this.thursday = thursday;
|
|
7
|
-
this.friday = friday;
|
|
8
|
-
this.saturday = saturday;
|
|
9
|
-
this.sunday = sunday;
|
|
10
|
-
this.public_holiday = public_holiday;
|
|
11
|
-
this.trading_hours_additional_info = trading_hours_additional_info;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLXRyYWRpbmctdGltZXMubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2NsYXNzZXMvZXNvbHZlLWxvY2F0aW9uLXRyYWRpbmctdGltZXMubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLDBCQUEwQjtJQUNuQyxZQUNXLE1BQWdDLEVBQ2hDLE9BQWlDLEVBQ2pDLFNBQW1DLEVBQ25DLFFBQWtDLEVBQ2xDLE1BQWdDLEVBQ2hDLFFBQWtDLEVBQ2xDLE1BQWdDLEVBQ2hDLGNBQXdDLEVBQ3hDLGdDQUF3QyxFQUFFO1FBUjFDLFdBQU0sR0FBTixNQUFNLENBQTBCO1FBQ2hDLFlBQU8sR0FBUCxPQUFPLENBQTBCO1FBQ2pDLGNBQVMsR0FBVCxTQUFTLENBQTBCO1FBQ25DLGFBQVEsR0FBUixRQUFRLENBQTBCO1FBQ2xDLFdBQU0sR0FBTixNQUFNLENBQTBCO1FBQ2hDLGFBQVEsR0FBUixRQUFRLENBQTBCO1FBQ2xDLFdBQU0sR0FBTixNQUFNLENBQTBCO1FBQ2hDLG1CQUFjLEdBQWQsY0FBYyxDQUEwQjtRQUN4QyxrQ0FBNkIsR0FBN0IsNkJBQTZCLENBQWE7SUFDbEQsQ0FBQztDQUNQIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlTG9jYXRpb25UcmFkaW5nRGF5IH0gZnJvbSAnLi9lc29sdmUtbG9jYXRpb24tdHJhZGluZy1kYXkubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlTG9jYXRpb25UcmFkaW5nVGltZXMge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwdWJsaWMgbW9uZGF5OiBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXksXG4gICAgICAgIHB1YmxpYyB0dWVzZGF5OiBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXksXG4gICAgICAgIHB1YmxpYyB3ZWRuZXNkYXk6IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ0RheSxcbiAgICAgICAgcHVibGljIHRodXJzZGF5OiBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXksXG4gICAgICAgIHB1YmxpYyBmcmlkYXk6IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ0RheSxcbiAgICAgICAgcHVibGljIHNhdHVyZGF5OiBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXksXG4gICAgICAgIHB1YmxpYyBzdW5kYXk6IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ0RheSxcbiAgICAgICAgcHVibGljIHB1YmxpY19ob2xpZGF5OiBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXksXG4gICAgICAgIHB1YmxpYyB0cmFkaW5nX2hvdXJzX2FkZGl0aW9uYWxfaW5mbzogc3RyaW5nID0gJycsXG4gICAgKSB7fVxufVxuIl19
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { EsolveLocationAddress } from './esolve-location-address.model';
|
|
2
|
-
import { EsolveLocationContactInfo } from './esolve-location-contact-info.model';
|
|
3
|
-
import { EsolveLocationPOBoxAddress } from './esolve-location-pobox-address.model';
|
|
4
|
-
import { EsolveLocationTradingTimes } from './esolve-location-trading-times.model';
|
|
5
|
-
import { EsolveLocationTradingDay } from './esolve-location-trading-day.model';
|
|
6
|
-
import { EsolveLocationGEO } from './esolve-location-geo.model';
|
|
7
|
-
export class EsolveLocation {
|
|
8
|
-
constructor(record) {
|
|
9
|
-
this.id = +record.id;
|
|
10
|
-
this.identifier = record.identifier;
|
|
11
|
-
this.description = record.description;
|
|
12
|
-
this.head_office = !!+record.head_office;
|
|
13
|
-
this.erp_identifier = record.erp_identifier;
|
|
14
|
-
this.external_system_code = record.external_system_code;
|
|
15
|
-
this.default_location_for_payment_methods =
|
|
16
|
-
!!+record.default_location_for_payment_methods;
|
|
17
|
-
this.userid = +record.userid;
|
|
18
|
-
this.importance = +record.importance;
|
|
19
|
-
this.active = !!+record.is_active;
|
|
20
|
-
this.dispatches_stock = !!+record.dispatches_stock;
|
|
21
|
-
this.include_on_enquiries = !!+record.include_on_enquiries;
|
|
22
|
-
this.include_on_store_locator = !!+record.include_on_store_locator;
|
|
23
|
-
this.website_url = record.website_url;
|
|
24
|
-
this.address = new EsolveLocationAddress(record.street, record.suburb, record.city, record.province, record.country, record.postal_code, +record.latitude, +record.longitude);
|
|
25
|
-
this.pobox_address = new EsolveLocationPOBoxAddress(record.pobox, record.pobox_city, record.pobox_postal_code);
|
|
26
|
-
const telnumbers = [];
|
|
27
|
-
if (record.branch_telnumber.length > 0) {
|
|
28
|
-
telnumbers.push(record.branch_telnumber);
|
|
29
|
-
}
|
|
30
|
-
if (record.branch_telnumber_2.length > 0) {
|
|
31
|
-
telnumbers.push(record.branch_telnumber_2);
|
|
32
|
-
}
|
|
33
|
-
if (record.branch_telnumber_3.length > 0) {
|
|
34
|
-
telnumbers.push(record.branch_telnumber_3);
|
|
35
|
-
}
|
|
36
|
-
this.contact_info = new EsolveLocationContactInfo(telnumbers, record.branch_cellnumber, record.branch_email, record.branch_fax);
|
|
37
|
-
const monday = new EsolveLocationTradingDay(record.monday_open_time, record.monday_close_time);
|
|
38
|
-
const tuesday = new EsolveLocationTradingDay(record.tuesday_open_time, record.tuesday_close_time);
|
|
39
|
-
const wednesday = new EsolveLocationTradingDay(record.wednesday_open_time, record.wednesday_close_time);
|
|
40
|
-
const thursday = new EsolveLocationTradingDay(record.thursday_open_time, record.thursday_close_time);
|
|
41
|
-
const friday = new EsolveLocationTradingDay(record.friday_open_time, record.friday_close_time);
|
|
42
|
-
const saturday = new EsolveLocationTradingDay(record.saturday_open_time, record.saturday_close_time);
|
|
43
|
-
const sunday = new EsolveLocationTradingDay(record.sunday_open_time, record.sunday_close_time);
|
|
44
|
-
const public_holiday = new EsolveLocationTradingDay(record.public_holiday_open_time, record.public_holiday_close_time);
|
|
45
|
-
this.trading_times = new EsolveLocationTradingTimes(monday, tuesday, wednesday, thursday, friday, saturday, sunday, public_holiday, record.trading_hours_additional_info);
|
|
46
|
-
this.geo = new EsolveLocationGEO(record.distance, record.range, record.target_description);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2xvY2F0aW9ucy9jbGFzc2VzL2Vzb2x2ZS1sb2NhdGlvbi5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN4RSxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUNqRixPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUNuRixPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSx1Q0FBdUMsQ0FBQztBQUNuRixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMvRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUVoRSxNQUFNLE9BQU8sY0FBYztJQXNCdkIsWUFBWSxNQUE0QjtRQUNwQyxJQUFJLENBQUMsRUFBRSxHQUFHLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUM7UUFDcEMsSUFBSSxDQUFDLFdBQVcsR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDO1FBQ3RDLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLFdBQVcsQ0FBQztRQUN6QyxJQUFJLENBQUMsY0FBYyxHQUFHLE1BQU0sQ0FBQyxjQUFjLENBQUM7UUFDNUMsSUFBSSxDQUFDLG9CQUFvQixHQUFHLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQztRQUN4RCxJQUFJLENBQUMsb0NBQW9DO1lBQ3JDLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxvQ0FBb0MsQ0FBQztRQUNuRCxJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQztRQUM3QixJQUFJLENBQUMsVUFBVSxHQUFHLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQztRQUNyQyxJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUM7UUFDbEMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQztRQUNuRCxJQUFJLENBQUMsb0JBQW9CLEdBQUcsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLG9CQUFvQixDQUFDO1FBQzNELElBQUksQ0FBQyx3QkFBd0IsR0FBRyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsd0JBQXdCLENBQUM7UUFDbkUsSUFBSSxDQUFDLFdBQVcsR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDO1FBRXRDLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxxQkFBcUIsQ0FDcEMsTUFBTSxDQUFDLE1BQU0sRUFDYixNQUFNLENBQUMsTUFBTSxFQUNiLE1BQU0sQ0FBQyxJQUFJLEVBQ1gsTUFBTSxDQUFDLFFBQVEsRUFDZixNQUFNLENBQUMsT0FBTyxFQUNkLE1BQU0sQ0FBQyxXQUFXLEVBQ2xCLENBQUMsTUFBTSxDQUFDLFFBQVEsRUFDaEIsQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUNwQixDQUFDO1FBRUYsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLDBCQUEwQixDQUMvQyxNQUFNLENBQUMsS0FBSyxFQUNaLE1BQU0sQ0FBQyxVQUFVLEVBQ2pCLE1BQU0sQ0FBQyxpQkFBaUIsQ0FDM0IsQ0FBQztRQUVGLE1BQU0sVUFBVSxHQUFHLEVBQUUsQ0FBQztRQUV0QixJQUFJLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQ3BDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLGdCQUFnQixDQUFDLENBQUM7U0FDNUM7UUFFRCxJQUFJLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQ3RDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLGtCQUFrQixDQUFDLENBQUM7U0FDOUM7UUFFRCxJQUFJLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQ3RDLFVBQVUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLGtCQUFrQixDQUFDLENBQUM7U0FDOUM7UUFFRCxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUkseUJBQXlCLENBQzdDLFVBQVUsRUFDVixNQUFNLENBQUMsaUJBQWlCLEVBQ3hCLE1BQU0sQ0FBQyxZQUFZLEVBQ25CLE1BQU0sQ0FBQyxVQUFVLENBQ3BCLENBQUM7UUFFRixNQUFNLE1BQU0sR0FBRyxJQUFJLHdCQUF3QixDQUN2QyxNQUFNLENBQUMsZ0JBQWdCLEVBQ3ZCLE1BQU0sQ0FBQyxpQkFBaUIsQ0FDM0IsQ0FBQztRQUVGLE1BQU0sT0FBTyxHQUFHLElBQUksd0JBQXdCLENBQ3hDLE1BQU0sQ0FBQyxpQkFBaUIsRUFDeEIsTUFBTSxDQUFDLGtCQUFrQixDQUM1QixDQUFDO1FBRUYsTUFBTSxTQUFTLEdBQUcsSUFBSSx3QkFBd0IsQ0FDMUMsTUFBTSxDQUFDLG1CQUFtQixFQUMxQixNQUFNLENBQUMsb0JBQW9CLENBQzlCLENBQUM7UUFFRixNQUFNLFFBQVEsR0FBRyxJQUFJLHdCQUF3QixDQUN6QyxNQUFNLENBQUMsa0JBQWtCLEVBQ3pCLE1BQU0sQ0FBQyxtQkFBbUIsQ0FDN0IsQ0FBQztRQUVGLE1BQU0sTUFBTSxHQUFHLElBQUksd0JBQXdCLENBQ3ZDLE1BQU0sQ0FBQyxnQkFBZ0IsRUFDdkIsTUFBTSxDQUFDLGlCQUFpQixDQUMzQixDQUFDO1FBRUYsTUFBTSxRQUFRLEdBQUcsSUFBSSx3QkFBd0IsQ0FDekMsTUFBTSxDQUFDLGtCQUFrQixFQUN6QixNQUFNLENBQUMsbUJBQW1CLENBQzdCLENBQUM7UUFFRixNQUFNLE1BQU0sR0FBRyxJQUFJLHdCQUF3QixDQUN2QyxNQUFNLENBQUMsZ0JBQWdCLEVBQ3ZCLE1BQU0sQ0FBQyxpQkFBaUIsQ0FDM0IsQ0FBQztRQUVGLE1BQU0sY0FBYyxHQUFHLElBQUksd0JBQXdCLENBQy9DLE1BQU0sQ0FBQyx3QkFBd0IsRUFDL0IsTUFBTSxDQUFDLHlCQUF5QixDQUNuQyxDQUFDO1FBRUYsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLDBCQUEwQixDQUMvQyxNQUFNLEVBQ04sT0FBTyxFQUNQLFNBQVMsRUFDVCxRQUFRLEVBQ1IsTUFBTSxFQUNOLFFBQVEsRUFDUixNQUFNLEVBQ04sY0FBYyxFQUNkLE1BQU0sQ0FBQyw2QkFBNkIsQ0FDdkMsQ0FBQztRQUVGLElBQUksQ0FBQyxHQUFHLEdBQUcsSUFBSSxpQkFBaUIsQ0FDNUIsTUFBTSxDQUFDLFFBQVEsRUFDZixNQUFNLENBQUMsS0FBSyxFQUNaLE1BQU0sQ0FBQyxrQkFBa0IsQ0FDNUIsQ0FBQztJQUNOLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZUxvY2F0aW9uUmVjb3JkIH0gZnJvbSAnLi4vaW50ZXJmYWNlcy9lc29sdmUtbG9jYXRpb24tcmVjb3JkLmludGVyZmFjZSc7XG5pbXBvcnQgeyBFc29sdmVMb2NhdGlvbkFkZHJlc3MgfSBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi1hZGRyZXNzLm1vZGVsJztcbmltcG9ydCB7IEVzb2x2ZUxvY2F0aW9uQ29udGFjdEluZm8gfSBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi1jb250YWN0LWluZm8ubW9kZWwnO1xuaW1wb3J0IHsgRXNvbHZlTG9jYXRpb25QT0JveEFkZHJlc3MgfSBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi1wb2JveC1hZGRyZXNzLm1vZGVsJztcbmltcG9ydCB7IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ1RpbWVzIH0gZnJvbSAnLi9lc29sdmUtbG9jYXRpb24tdHJhZGluZy10aW1lcy5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXkgfSBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi10cmFkaW5nLWRheS5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVMb2NhdGlvbkdFTyB9IGZyb20gJy4vZXNvbHZlLWxvY2F0aW9uLWdlby5tb2RlbCc7XG5cbmV4cG9ydCBjbGFzcyBFc29sdmVMb2NhdGlvbiB7XG4gICAgcHVibGljIGlkOiBudW1iZXI7XG4gICAgcHVibGljIGlkZW50aWZpZXI6IHN0cmluZztcbiAgICBwdWJsaWMgZGVzY3JpcHRpb246IHN0cmluZztcbiAgICBwdWJsaWMgaGVhZF9vZmZpY2U6IGJvb2xlYW47XG4gICAgcHVibGljIGRlZmF1bHRfbG9jYXRpb25fZm9yX3BheW1lbnRfbWV0aG9kczogYm9vbGVhbjtcbiAgICBwdWJsaWMgZXh0ZXJuYWxfc3lzdGVtX2NvZGU6IHN0cmluZztcbiAgICBwdWJsaWMgZXJwX2lkZW50aWZpZXI6IHN0cmluZztcbiAgICBwdWJsaWMgdXNlcmlkOiBudW1iZXI7XG4gICAgcHVibGljIGltcG9ydGFuY2U6IG51bWJlcjtcbiAgICBwdWJsaWMgYWN0aXZlOiBib29sZWFuO1xuICAgIHB1YmxpYyBkaXNwYXRjaGVzX3N0b2NrOiBib29sZWFuO1xuICAgIHB1YmxpYyBpbmNsdWRlX29uX2VucXVpcmllczogYm9vbGVhbjtcbiAgICBwdWJsaWMgaW5jbHVkZV9vbl9zdG9yZV9sb2NhdG9yOiBib29sZWFuO1xuICAgIHB1YmxpYyB3ZWJzaXRlX3VybDogc3RyaW5nO1xuXG4gICAgcHVibGljIGFkZHJlc3M6IEVzb2x2ZUxvY2F0aW9uQWRkcmVzcztcbiAgICBwdWJsaWMgcG9ib3hfYWRkcmVzczogRXNvbHZlTG9jYXRpb25QT0JveEFkZHJlc3M7XG4gICAgcHVibGljIGNvbnRhY3RfaW5mbzogRXNvbHZlTG9jYXRpb25Db250YWN0SW5mbztcbiAgICBwdWJsaWMgdHJhZGluZ190aW1lczogRXNvbHZlTG9jYXRpb25UcmFkaW5nVGltZXM7XG4gICAgcHVibGljIGdlbz86IEVzb2x2ZUxvY2F0aW9uR0VPO1xuXG4gICAgY29uc3RydWN0b3IocmVjb3JkOiBFc29sdmVMb2NhdGlvblJlY29yZCkge1xuICAgICAgICB0aGlzLmlkID0gK3JlY29yZC5pZDtcbiAgICAgICAgdGhpcy5pZGVudGlmaWVyID0gcmVjb3JkLmlkZW50aWZpZXI7XG4gICAgICAgIHRoaXMuZGVzY3JpcHRpb24gPSByZWNvcmQuZGVzY3JpcHRpb247XG4gICAgICAgIHRoaXMuaGVhZF9vZmZpY2UgPSAhIStyZWNvcmQuaGVhZF9vZmZpY2U7XG4gICAgICAgIHRoaXMuZXJwX2lkZW50aWZpZXIgPSByZWNvcmQuZXJwX2lkZW50aWZpZXI7XG4gICAgICAgIHRoaXMuZXh0ZXJuYWxfc3lzdGVtX2NvZGUgPSByZWNvcmQuZXh0ZXJuYWxfc3lzdGVtX2NvZGU7XG4gICAgICAgIHRoaXMuZGVmYXVsdF9sb2NhdGlvbl9mb3JfcGF5bWVudF9tZXRob2RzID1cbiAgICAgICAgICAgICEhK3JlY29yZC5kZWZhdWx0X2xvY2F0aW9uX2Zvcl9wYXltZW50X21ldGhvZHM7XG4gICAgICAgIHRoaXMudXNlcmlkID0gK3JlY29yZC51c2VyaWQ7XG4gICAgICAgIHRoaXMuaW1wb3J0YW5jZSA9ICtyZWNvcmQuaW1wb3J0YW5jZTtcbiAgICAgICAgdGhpcy5hY3RpdmUgPSAhIStyZWNvcmQuaXNfYWN0aXZlO1xuICAgICAgICB0aGlzLmRpc3BhdGNoZXNfc3RvY2sgPSAhIStyZWNvcmQuZGlzcGF0Y2hlc19zdG9jaztcbiAgICAgICAgdGhpcy5pbmNsdWRlX29uX2VucXVpcmllcyA9ICEhK3JlY29yZC5pbmNsdWRlX29uX2VucXVpcmllcztcbiAgICAgICAgdGhpcy5pbmNsdWRlX29uX3N0b3JlX2xvY2F0b3IgPSAhIStyZWNvcmQuaW5jbHVkZV9vbl9zdG9yZV9sb2NhdG9yO1xuICAgICAgICB0aGlzLndlYnNpdGVfdXJsID0gcmVjb3JkLndlYnNpdGVfdXJsO1xuXG4gICAgICAgIHRoaXMuYWRkcmVzcyA9IG5ldyBFc29sdmVMb2NhdGlvbkFkZHJlc3MoXG4gICAgICAgICAgICByZWNvcmQuc3RyZWV0LFxuICAgICAgICAgICAgcmVjb3JkLnN1YnVyYixcbiAgICAgICAgICAgIHJlY29yZC5jaXR5LFxuICAgICAgICAgICAgcmVjb3JkLnByb3ZpbmNlLFxuICAgICAgICAgICAgcmVjb3JkLmNvdW50cnksXG4gICAgICAgICAgICByZWNvcmQucG9zdGFsX2NvZGUsXG4gICAgICAgICAgICArcmVjb3JkLmxhdGl0dWRlLFxuICAgICAgICAgICAgK3JlY29yZC5sb25naXR1ZGUsXG4gICAgICAgICk7XG5cbiAgICAgICAgdGhpcy5wb2JveF9hZGRyZXNzID0gbmV3IEVzb2x2ZUxvY2F0aW9uUE9Cb3hBZGRyZXNzKFxuICAgICAgICAgICAgcmVjb3JkLnBvYm94LFxuICAgICAgICAgICAgcmVjb3JkLnBvYm94X2NpdHksXG4gICAgICAgICAgICByZWNvcmQucG9ib3hfcG9zdGFsX2NvZGUsXG4gICAgICAgICk7XG5cbiAgICAgICAgY29uc3QgdGVsbnVtYmVycyA9IFtdO1xuXG4gICAgICAgIGlmIChyZWNvcmQuYnJhbmNoX3RlbG51bWJlci5sZW5ndGggPiAwKSB7XG4gICAgICAgICAgICB0ZWxudW1iZXJzLnB1c2gocmVjb3JkLmJyYW5jaF90ZWxudW1iZXIpO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHJlY29yZC5icmFuY2hfdGVsbnVtYmVyXzIubGVuZ3RoID4gMCkge1xuICAgICAgICAgICAgdGVsbnVtYmVycy5wdXNoKHJlY29yZC5icmFuY2hfdGVsbnVtYmVyXzIpO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHJlY29yZC5icmFuY2hfdGVsbnVtYmVyXzMubGVuZ3RoID4gMCkge1xuICAgICAgICAgICAgdGVsbnVtYmVycy5wdXNoKHJlY29yZC5icmFuY2hfdGVsbnVtYmVyXzMpO1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5jb250YWN0X2luZm8gPSBuZXcgRXNvbHZlTG9jYXRpb25Db250YWN0SW5mbyhcbiAgICAgICAgICAgIHRlbG51bWJlcnMsXG4gICAgICAgICAgICByZWNvcmQuYnJhbmNoX2NlbGxudW1iZXIsXG4gICAgICAgICAgICByZWNvcmQuYnJhbmNoX2VtYWlsLFxuICAgICAgICAgICAgcmVjb3JkLmJyYW5jaF9mYXgsXG4gICAgICAgICk7XG5cbiAgICAgICAgY29uc3QgbW9uZGF5ID0gbmV3IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ0RheShcbiAgICAgICAgICAgIHJlY29yZC5tb25kYXlfb3Blbl90aW1lLFxuICAgICAgICAgICAgcmVjb3JkLm1vbmRheV9jbG9zZV90aW1lLFxuICAgICAgICApO1xuXG4gICAgICAgIGNvbnN0IHR1ZXNkYXkgPSBuZXcgRXNvbHZlTG9jYXRpb25UcmFkaW5nRGF5KFxuICAgICAgICAgICAgcmVjb3JkLnR1ZXNkYXlfb3Blbl90aW1lLFxuICAgICAgICAgICAgcmVjb3JkLnR1ZXNkYXlfY2xvc2VfdGltZSxcbiAgICAgICAgKTtcblxuICAgICAgICBjb25zdCB3ZWRuZXNkYXkgPSBuZXcgRXNvbHZlTG9jYXRpb25UcmFkaW5nRGF5KFxuICAgICAgICAgICAgcmVjb3JkLndlZG5lc2RheV9vcGVuX3RpbWUsXG4gICAgICAgICAgICByZWNvcmQud2VkbmVzZGF5X2Nsb3NlX3RpbWUsXG4gICAgICAgICk7XG5cbiAgICAgICAgY29uc3QgdGh1cnNkYXkgPSBuZXcgRXNvbHZlTG9jYXRpb25UcmFkaW5nRGF5KFxuICAgICAgICAgICAgcmVjb3JkLnRodXJzZGF5X29wZW5fdGltZSxcbiAgICAgICAgICAgIHJlY29yZC50aHVyc2RheV9jbG9zZV90aW1lLFxuICAgICAgICApO1xuXG4gICAgICAgIGNvbnN0IGZyaWRheSA9IG5ldyBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXkoXG4gICAgICAgICAgICByZWNvcmQuZnJpZGF5X29wZW5fdGltZSxcbiAgICAgICAgICAgIHJlY29yZC5mcmlkYXlfY2xvc2VfdGltZSxcbiAgICAgICAgKTtcblxuICAgICAgICBjb25zdCBzYXR1cmRheSA9IG5ldyBFc29sdmVMb2NhdGlvblRyYWRpbmdEYXkoXG4gICAgICAgICAgICByZWNvcmQuc2F0dXJkYXlfb3Blbl90aW1lLFxuICAgICAgICAgICAgcmVjb3JkLnNhdHVyZGF5X2Nsb3NlX3RpbWUsXG4gICAgICAgICk7XG5cbiAgICAgICAgY29uc3Qgc3VuZGF5ID0gbmV3IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ0RheShcbiAgICAgICAgICAgIHJlY29yZC5zdW5kYXlfb3Blbl90aW1lLFxuICAgICAgICAgICAgcmVjb3JkLnN1bmRheV9jbG9zZV90aW1lLFxuICAgICAgICApO1xuXG4gICAgICAgIGNvbnN0IHB1YmxpY19ob2xpZGF5ID0gbmV3IEVzb2x2ZUxvY2F0aW9uVHJhZGluZ0RheShcbiAgICAgICAgICAgIHJlY29yZC5wdWJsaWNfaG9saWRheV9vcGVuX3RpbWUsXG4gICAgICAgICAgICByZWNvcmQucHVibGljX2hvbGlkYXlfY2xvc2VfdGltZSxcbiAgICAgICAgKTtcblxuICAgICAgICB0aGlzLnRyYWRpbmdfdGltZXMgPSBuZXcgRXNvbHZlTG9jYXRpb25UcmFkaW5nVGltZXMoXG4gICAgICAgICAgICBtb25kYXksXG4gICAgICAgICAgICB0dWVzZGF5LFxuICAgICAgICAgICAgd2VkbmVzZGF5LFxuICAgICAgICAgICAgdGh1cnNkYXksXG4gICAgICAgICAgICBmcmlkYXksXG4gICAgICAgICAgICBzYXR1cmRheSxcbiAgICAgICAgICAgIHN1bmRheSxcbiAgICAgICAgICAgIHB1YmxpY19ob2xpZGF5LFxuICAgICAgICAgICAgcmVjb3JkLnRyYWRpbmdfaG91cnNfYWRkaXRpb25hbF9pbmZvLFxuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuZ2VvID0gbmV3IEVzb2x2ZUxvY2F0aW9uR0VPKFxuICAgICAgICAgICAgcmVjb3JkLmRpc3RhbmNlLFxuICAgICAgICAgICAgcmVjb3JkLnJhbmdlLFxuICAgICAgICAgICAgcmVjb3JkLnRhcmdldF9kZXNjcmlwdGlvbixcbiAgICAgICAgKTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
// Classes
|
|
2
|
-
export * from './esolve-location-address.model';
|
|
3
|
-
export * from './esolve-location-contact-info.model';
|
|
4
|
-
export * from './esolve-location-geo.model';
|
|
5
|
-
export * from './esolve-location-pobox-address.model';
|
|
6
|
-
export * from './esolve-location-trading-day.model';
|
|
7
|
-
export * from './esolve-location-trading-times.model';
|
|
8
|
-
export * from './esolve-location.model';
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2NsYXNzZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsVUFBVTtBQUNWLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBDbGFzc2VzXG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi1hZGRyZXNzLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWxvY2F0aW9uLWNvbnRhY3QtaW5mby5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi1nZW8ubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbG9jYXRpb24tcG9ib3gtYWRkcmVzcy5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi10cmFkaW5nLWRheS5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1sb2NhdGlvbi10cmFkaW5nLXRpbWVzLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWxvY2F0aW9uLm1vZGVsJztcbiJdfQ==
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Inject, Injectable } from '@angular/core';
|
|
3
|
-
import { map } from 'rxjs/operators';
|
|
4
|
-
import { ESOLVE_CONNECT_CONFIG } from '../core/esolve-connect-config.constant';
|
|
5
|
-
import { EsolveLocation } from './classes/esolve-location.model';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/common/http";
|
|
8
|
-
export class EsolveLocationsService {
|
|
9
|
-
constructor(config, http) {
|
|
10
|
-
this.config = config;
|
|
11
|
-
this.http = http;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* Retrieves a list of stock locations
|
|
15
|
-
*
|
|
16
|
-
* @returns An `Observable` with an array of stock locations
|
|
17
|
-
*/
|
|
18
|
-
getStockLocations() {
|
|
19
|
-
return this.http
|
|
20
|
-
.get(`${this.config.api_url}/get-locations.php`)
|
|
21
|
-
.pipe(map((response) => {
|
|
22
|
-
if (response.records === undefined) {
|
|
23
|
-
throw response;
|
|
24
|
-
}
|
|
25
|
-
return this.processStockLocations(response.records);
|
|
26
|
-
}));
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Retrieves a list of stock locations using the address_id as parameter or the latitude and longitude.
|
|
30
|
-
* Set the addresses_id to 0 and the gps coordinates in order to retrieve the locations list when the address isn't
|
|
31
|
-
* yet saved.
|
|
32
|
-
*
|
|
33
|
-
* @param addresses_id if supplied, the latitude and longitude on the address will be used.
|
|
34
|
-
* @param latitude if supplied and address_id > 0, the value is ignored.
|
|
35
|
-
* @param longitude if supplied and address_id > 0, the value is ignored.
|
|
36
|
-
*
|
|
37
|
-
* @returns An `Observable` with an array of stock locations
|
|
38
|
-
*/
|
|
39
|
-
getStockLocationsGeo(addresses_id = 0, latitude = 0, longitude = 0) {
|
|
40
|
-
return this.http
|
|
41
|
-
.get(`${this.config.api_url}/get-locations-geo.php`, {
|
|
42
|
-
params: {
|
|
43
|
-
addresses_id,
|
|
44
|
-
latitude,
|
|
45
|
-
longitude,
|
|
46
|
-
},
|
|
47
|
-
})
|
|
48
|
-
.pipe(map((response) => {
|
|
49
|
-
if (response.records === undefined) {
|
|
50
|
-
throw response;
|
|
51
|
-
}
|
|
52
|
-
return this.processStockLocations(response.records);
|
|
53
|
-
}));
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* Processes the eSolve stock location records.
|
|
57
|
-
*
|
|
58
|
-
* @param records Records to process
|
|
59
|
-
* @returns An array of processed stock location records
|
|
60
|
-
*/
|
|
61
|
-
processStockLocations(records) {
|
|
62
|
-
const stock_locations = [];
|
|
63
|
-
if (records) {
|
|
64
|
-
for (const record of records) {
|
|
65
|
-
stock_locations.push(new EsolveLocation(record));
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
return stock_locations;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
EsolveLocationsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveLocationsService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
72
|
-
EsolveLocationsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveLocationsService, providedIn: 'root' });
|
|
73
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EsolveLocationsService, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9ucy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2xvY2F0aW9ucy9lc29sdmUtbG9jYXRpb25zLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBR25ELE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUdyQyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUcvRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0saUNBQWlDLENBQUM7OztBQU1qRSxNQUFNLE9BQU8sc0JBQXNCO0lBQy9CLFlBQzJDLE1BQTJCLEVBQzFELElBQWdCO1FBRGUsV0FBTSxHQUFOLE1BQU0sQ0FBcUI7UUFDMUQsU0FBSSxHQUFKLElBQUksQ0FBWTtJQUN6QixDQUFDO0lBRUo7Ozs7T0FJRztJQUNJLGlCQUFpQjtRQUNwQixPQUFPLElBQUksQ0FBQyxJQUFJO2FBQ1gsR0FBRyxDQUNBLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLG9CQUFvQixDQUM3QzthQUNBLElBQUksQ0FDRCxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUUsRUFBRTtZQUNiLElBQUksUUFBUSxDQUFDLE9BQU8sS0FBSyxTQUFTLEVBQUU7Z0JBQ2hDLE1BQU0sUUFBUSxDQUFDO2FBQ2xCO1lBRUQsT0FBTyxJQUFJLENBQUMscUJBQXFCLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQ3hELENBQUMsQ0FBQyxDQUNMLENBQUM7SUFDVixDQUFDO0lBRUQ7Ozs7Ozs7Ozs7T0FVRztJQUNJLG9CQUFvQixDQUN2QixZQUFZLEdBQUcsQ0FBQyxFQUNoQixRQUFRLEdBQUcsQ0FBQyxFQUNaLFNBQVMsR0FBRyxDQUFDO1FBRWIsT0FBTyxJQUFJLENBQUMsSUFBSTthQUNYLEdBQUcsQ0FDQSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyx3QkFBd0IsRUFDOUM7WUFDSSxNQUFNLEVBQUU7Z0JBQ0osWUFBWTtnQkFDWixRQUFRO2dCQUNSLFNBQVM7YUFDWjtTQUNKLENBQ0o7YUFDQSxJQUFJLENBQ0QsR0FBRyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUU7WUFDYixJQUFJLFFBQVEsQ0FBQyxPQUFPLEtBQUssU0FBUyxFQUFFO2dCQUNoQyxNQUFNLFFBQVEsQ0FBQzthQUNsQjtZQUVELE9BQU8sSUFBSSxDQUFDLHFCQUFxQixDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUN4RCxDQUFDLENBQUMsQ0FDTCxDQUFDO0lBQ1YsQ0FBQztJQUVEOzs7OztPQUtHO0lBQ0sscUJBQXFCLENBQ3pCLE9BQStCO1FBRS9CLE1BQU0sZUFBZSxHQUFxQixFQUFFLENBQUM7UUFFN0MsSUFBSSxPQUFPLEVBQUU7WUFDVCxLQUFLLE1BQU0sTUFBTSxJQUFJLE9BQU8sRUFBRTtnQkFDMUIsZUFBZSxDQUFDLElBQUksQ0FBQyxJQUFJLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO2FBQ3BEO1NBQ0o7UUFFRCxPQUFPLGVBQWUsQ0FBQztJQUMzQixDQUFDOzttSEFuRlEsc0JBQXNCLGtCQUVuQixxQkFBcUI7dUhBRnhCLHNCQUFzQixjQUZuQixNQUFNOzJGQUVULHNCQUFzQjtrQkFIbEMsVUFBVTttQkFBQztvQkFDUixVQUFVLEVBQUUsTUFBTTtpQkFDckI7OzBCQUdRLE1BQU07MkJBQUMscUJBQXFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cENsaWVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcbmltcG9ydCB7IEluamVjdCwgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBtYXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbmltcG9ydCB7IEVzb2x2ZUNvbm5lY3RDb25maWcgfSBmcm9tICcuLi9jb3JlL2Vzb2x2ZS1jb25uZWN0LmNvbmZpZyc7XG5pbXBvcnQgeyBFU09MVkVfQ09OTkVDVF9DT05GSUcgfSBmcm9tICcuLi9jb3JlL2Vzb2x2ZS1jb25uZWN0LWNvbmZpZy5jb25zdGFudCc7XG5pbXBvcnQgeyBFc29sdmVHZXRSZXNwb25zZSB9IGZyb20gJy4uL3NoYXJlZC9yZXNwb25zZSc7XG5cbmltcG9ydCB7IEVzb2x2ZUxvY2F0aW9uIH0gZnJvbSAnLi9jbGFzc2VzL2Vzb2x2ZS1sb2NhdGlvbi5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVMb2NhdGlvblJlY29yZCB9IGZyb20gJy4vaW50ZXJmYWNlcy9lc29sdmUtbG9jYXRpb24tcmVjb3JkLmludGVyZmFjZSc7XG5cbkBJbmplY3RhYmxlKHtcbiAgICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIEVzb2x2ZUxvY2F0aW9uc1NlcnZpY2Uge1xuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KEVTT0xWRV9DT05ORUNUX0NPTkZJRykgcHJpdmF0ZSBjb25maWc6IEVzb2x2ZUNvbm5lY3RDb25maWcsXG4gICAgICAgIHByaXZhdGUgaHR0cDogSHR0cENsaWVudCxcbiAgICApIHt9XG5cbiAgICAvKipcbiAgICAgKiBSZXRyaWV2ZXMgYSBsaXN0IG9mIHN0b2NrIGxvY2F0aW9uc1xuICAgICAqXG4gICAgICogQHJldHVybnMgQW4gYE9ic2VydmFibGVgIHdpdGggYW4gYXJyYXkgb2Ygc3RvY2sgbG9jYXRpb25zXG4gICAgICovXG4gICAgcHVibGljIGdldFN0b2NrTG9jYXRpb25zKCk6IE9ic2VydmFibGU8RXNvbHZlTG9jYXRpb25bXT4ge1xuICAgICAgICByZXR1cm4gdGhpcy5odHRwXG4gICAgICAgICAgICAuZ2V0PEVzb2x2ZUdldFJlc3BvbnNlPEVzb2x2ZUxvY2F0aW9uUmVjb3JkW10+PihcbiAgICAgICAgICAgICAgICBgJHt0aGlzLmNvbmZpZy5hcGlfdXJsfS9nZXQtbG9jYXRpb25zLnBocGAsXG4gICAgICAgICAgICApXG4gICAgICAgICAgICAucGlwZShcbiAgICAgICAgICAgICAgICBtYXAoKHJlc3BvbnNlKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIGlmIChyZXNwb25zZS5yZWNvcmRzID09PSB1bmRlZmluZWQpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRocm93IHJlc3BvbnNlO1xuICAgICAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICAgICAgcmV0dXJuIHRoaXMucHJvY2Vzc1N0b2NrTG9jYXRpb25zKHJlc3BvbnNlLnJlY29yZHMpO1xuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgKTtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBSZXRyaWV2ZXMgYSBsaXN0IG9mIHN0b2NrIGxvY2F0aW9ucyB1c2luZyB0aGUgYWRkcmVzc19pZCBhcyBwYXJhbWV0ZXIgb3IgdGhlIGxhdGl0dWRlIGFuZCBsb25naXR1ZGUuXG4gICAgICogU2V0IHRoZSBhZGRyZXNzZXNfaWQgdG8gMCBhbmQgdGhlIGdwcyBjb29yZGluYXRlcyBpbiBvcmRlciB0byByZXRyaWV2ZSB0aGUgbG9jYXRpb25zIGxpc3Qgd2hlbiB0aGUgYWRkcmVzcyBpc24ndFxuICAgICAqIHlldCBzYXZlZC5cbiAgICAgKlxuICAgICAqIEBwYXJhbSBhZGRyZXNzZXNfaWQgaWYgc3VwcGxpZWQsIHRoZSBsYXRpdHVkZSBhbmQgbG9uZ2l0dWRlIG9uIHRoZSBhZGRyZXNzIHdpbGwgYmUgdXNlZC5cbiAgICAgKiBAcGFyYW0gbGF0aXR1ZGUgaWYgc3VwcGxpZWQgYW5kIGFkZHJlc3NfaWQgPiAwLCB0aGUgdmFsdWUgaXMgaWdub3JlZC5cbiAgICAgKiBAcGFyYW0gbG9uZ2l0dWRlIGlmIHN1cHBsaWVkIGFuZCBhZGRyZXNzX2lkID4gMCwgdGhlIHZhbHVlIGlzIGlnbm9yZWQuXG4gICAgICpcbiAgICAgKiBAcmV0dXJucyBBbiBgT2JzZXJ2YWJsZWAgd2l0aCBhbiBhcnJheSBvZiBzdG9jayBsb2NhdGlvbnNcbiAgICAgKi9cbiAgICBwdWJsaWMgZ2V0U3RvY2tMb2NhdGlvbnNHZW8oXG4gICAgICAgIGFkZHJlc3Nlc19pZCA9IDAsXG4gICAgICAgIGxhdGl0dWRlID0gMCxcbiAgICAgICAgbG9uZ2l0dWRlID0gMCxcbiAgICApOiBPYnNlcnZhYmxlPEVzb2x2ZUxvY2F0aW9uW10+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuaHR0cFxuICAgICAgICAgICAgLmdldDxFc29sdmVHZXRSZXNwb25zZTxFc29sdmVMb2NhdGlvblJlY29yZFtdPj4oXG4gICAgICAgICAgICAgICAgYCR7dGhpcy5jb25maWcuYXBpX3VybH0vZ2V0LWxvY2F0aW9ucy1nZW8ucGhwYCxcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIHBhcmFtczoge1xuICAgICAgICAgICAgICAgICAgICAgICAgYWRkcmVzc2VzX2lkLFxuICAgICAgICAgICAgICAgICAgICAgICAgbGF0aXR1ZGUsXG4gICAgICAgICAgICAgICAgICAgICAgICBsb25naXR1ZGUsXG4gICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgIC5waXBlKFxuICAgICAgICAgICAgICAgIG1hcCgocmVzcG9uc2UpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgaWYgKHJlc3BvbnNlLnJlY29yZHMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhyb3cgcmVzcG9uc2U7XG4gICAgICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5wcm9jZXNzU3RvY2tMb2NhdGlvbnMocmVzcG9uc2UucmVjb3Jkcyk7XG4gICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICApO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIFByb2Nlc3NlcyB0aGUgZVNvbHZlIHN0b2NrIGxvY2F0aW9uIHJlY29yZHMuXG4gICAgICpcbiAgICAgKiBAcGFyYW0gcmVjb3JkcyBSZWNvcmRzIHRvIHByb2Nlc3NcbiAgICAgKiBAcmV0dXJucyBBbiBhcnJheSBvZiBwcm9jZXNzZWQgc3RvY2sgbG9jYXRpb24gcmVjb3Jkc1xuICAgICAqL1xuICAgIHByaXZhdGUgcHJvY2Vzc1N0b2NrTG9jYXRpb25zKFxuICAgICAgICByZWNvcmRzOiBFc29sdmVMb2NhdGlvblJlY29yZFtdLFxuICAgICk6IEVzb2x2ZUxvY2F0aW9uW10ge1xuICAgICAgICBjb25zdCBzdG9ja19sb2NhdGlvbnM6IEVzb2x2ZUxvY2F0aW9uW10gPSBbXTtcblxuICAgICAgICBpZiAocmVjb3Jkcykge1xuICAgICAgICAgICAgZm9yIChjb25zdCByZWNvcmQgb2YgcmVjb3Jkcykge1xuICAgICAgICAgICAgICAgIHN0b2NrX2xvY2F0aW9ucy5wdXNoKG5ldyBFc29sdmVMb2NhdGlvbihyZWNvcmQpKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBzdG9ja19sb2NhdGlvbnM7XG4gICAgfVxufVxuIl19
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export * from './classes';
|
|
2
|
-
export * from './interfaces';
|
|
3
|
-
export * from './esolve-locations.service';
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsV0FBVyxDQUFDO0FBQzFCLGNBQWMsY0FBYyxDQUFDO0FBRTdCLGNBQWMsNEJBQTRCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NsYXNzZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9pbnRlcmZhY2VzJztcblxuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbG9jYXRpb25zLnNlcnZpY2UnO1xuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxvY2F0aW9uLXJlY29yZC5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2ludGVyZmFjZXMvZXNvbHZlLWxvY2F0aW9uLXJlY29yZC5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRXNvbHZlTG9jYXRpb25SZWNvcmQge1xuICAgIGlkOiBudW1iZXI7XG4gICAgaWRlbnRpZmllcjogc3RyaW5nO1xuICAgIGhlYWRfb2ZmaWNlOiBib29sZWFuO1xuICAgIGRlZmF1bHRfbG9jYXRpb25fZm9yX3BheW1lbnRfbWV0aG9kczogYm9vbGVhbjtcbiAgICBkZXNjcmlwdGlvbjogc3RyaW5nO1xuICAgIGV4dGVybmFsX3N5c3RlbV9jb2RlOiBzdHJpbmc7XG4gICAgZXJwX2lkZW50aWZpZXI6IHN0cmluZztcbiAgICB1c2VyaWQ6IG51bWJlcjtcbiAgICBpbXBvcnRhbmNlOiBudW1iZXI7XG4gICAgaXNfYWN0aXZlOiBib29sZWFuO1xuICAgIGRpc3BhdGNoZXNfc3RvY2s6IGJvb2xlYW47XG4gICAgaW5jbHVkZV9vbl9lbnF1aXJpZXM6IGJvb2xlYW47XG4gICAgaW5jbHVkZV9vbl9zdG9yZV9sb2NhdG9yOiBib29sZWFuO1xuICAgIHN0cmVldDogc3RyaW5nO1xuICAgIHN1YnVyYjogc3RyaW5nO1xuICAgIGNpdHk6IHN0cmluZztcbiAgICBwcm92aW5jZTogc3RyaW5nO1xuICAgIGNvdW50cnk6IHN0cmluZztcbiAgICBwb3N0YWxfY29kZTogc3RyaW5nO1xuICAgIGxhdGl0dWRlOiBudW1iZXI7XG4gICAgbG9uZ2l0dWRlOiBudW1iZXI7XG4gICAgcG9ib3hfcG9zdGFsX2NvZGU6IHN0cmluZztcbiAgICBwb2JveF9jaXR5OiBzdHJpbmc7XG4gICAgcG9ib3g6IHN0cmluZztcbiAgICBicmFuY2hfdGVsbnVtYmVyOiBzdHJpbmc7XG4gICAgYnJhbmNoX3RlbG51bWJlcl8yOiBzdHJpbmc7XG4gICAgYnJhbmNoX3RlbG51bWJlcl8zOiBzdHJpbmc7XG4gICAgYnJhbmNoX2NlbGxudW1iZXI6IHN0cmluZztcbiAgICBicmFuY2hfZmF4OiBzdHJpbmc7XG4gICAgYnJhbmNoX2VtYWlsOiBzdHJpbmc7XG4gICAgbW9uZGF5X29wZW5fdGltZTogc3RyaW5nO1xuICAgIG1vbmRheV9jbG9zZV90aW1lOiBzdHJpbmc7XG4gICAgdHVlc2RheV9vcGVuX3RpbWU6IHN0cmluZztcbiAgICB0dWVzZGF5X2Nsb3NlX3RpbWU6IHN0cmluZztcbiAgICB3ZWRuZXNkYXlfb3Blbl90aW1lOiBzdHJpbmc7XG4gICAgd2VkbmVzZGF5X2Nsb3NlX3RpbWU6IHN0cmluZztcbiAgICB0aHVyc2RheV9vcGVuX3RpbWU6IHN0cmluZztcbiAgICB0aHVyc2RheV9jbG9zZV90aW1lOiBzdHJpbmc7XG4gICAgZnJpZGF5X29wZW5fdGltZTogc3RyaW5nO1xuICAgIGZyaWRheV9jbG9zZV90aW1lOiBzdHJpbmc7XG4gICAgc2F0dXJkYXlfb3Blbl90aW1lOiBzdHJpbmc7XG4gICAgc2F0dXJkYXlfY2xvc2VfdGltZTogc3RyaW5nO1xuICAgIHN1bmRheV9vcGVuX3RpbWU6IHN0cmluZztcbiAgICBzdW5kYXlfY2xvc2VfdGltZTogc3RyaW5nO1xuICAgIHB1YmxpY19ob2xpZGF5X29wZW5fdGltZTogc3RyaW5nO1xuICAgIHB1YmxpY19ob2xpZGF5X2Nsb3NlX3RpbWU6IHN0cmluZztcbiAgICB0cmFkaW5nX2hvdXJzX2FkZGl0aW9uYWxfaW5mbz86IHN0cmluZztcbiAgICB3ZWJzaXRlX3VybDogc3RyaW5nO1xuICAgIGRpc3RhbmNlOiBudW1iZXI7XG4gICAgcmFuZ2U6IG51bWJlcjtcbiAgICB0YXJnZXRfZGVzY3JpcHRpb246IHN0cmluZztcbn1cbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './esolve-location-record.interface';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbG9jYXRpb25zL2ludGVyZmFjZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQ0FBb0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLWxvY2F0aW9uLXJlY29yZC5pbnRlcmZhY2UnO1xuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1hbnVmYWN0dXJlci1pbWFnZS1zaXplLnR5cGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L3NyYy9saWIvbWFudWZhY3R1cmVycy9lc29sdmUtbWFudWZhY3R1cmVyLWltYWdlLXNpemUudHlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgRXNvbHZlTWFudWZhY3R1cmVySW1hZ2VTaXplID1cbiAgICB8ICdzbWFsbCdcbiAgICB8ICd0aHVtYidcbiAgICB8ICd0aW55J1xuICAgIHwgJ29yaWdpbmFsJztcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1hbnVmYWN0dXJlci1vcHRpb25zLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3Qvc3JjL2xpYi9tYW51ZmFjdHVyZXJzL2Vzb2x2ZS1tYW51ZmFjdHVyZXItb3B0aW9ucy5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRXNvbHZlTWFudWZhY3R1cmVyT3B0aW9ucyB7XG4gICAgZmVhdHVyZWRfb25seT86IGJvb2xlYW47XG59XG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1hbnVmYWN0dXJlci1yZWNvcmQuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL21hbnVmYWN0dXJlcnMvZXNvbHZlLW1hbnVmYWN0dXJlci1yZWNvcmQuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEVzb2x2ZU1hbnVmYWN0dXJlclJlY29yZCB7XG4gICAgaWQ6IG51bWJlcjtcbiAgICBtYW51ZmFjdHVyZXI6IHN0cmluZztcbiAgICBzZWZfbWFudWZhY3R1cmVyOiBzdHJpbmc7XG4gICAgc2VvX3BhZ2VfcHJpb3JpdHk6IG51bWJlcjtcbiAgICBzZW9fcGFnZV91cGRhdGVfZnJlcXVlbmN5OiBzdHJpbmc7XG4gICAgc2VvX3BhZ2VfdGl0bGU6IHN0cmluZztcbiAgICBzZW9fa2V5d29yZHM6IHN0cmluZztcbiAgICBzZW9fZGVzY3JpcHRpb246IHN0cmluZztcbiAgICBpbWFnZV9uYW1lOiBzdHJpbmc7XG4gICAgc29ydF9wcmlvcml0eTogbnVtYmVyO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgYXJ0aWNsZTogc3RyaW5nO1xuICAgIGlzX2FjdGl2ZTogYm9vbGVhbjtcbiAgICBmZWF0dXJlZDogYm9vbGVhbjtcbn1cbiJdfQ==
|