@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export class EsolveHeading {
|
|
2
|
+
constructor(identifier, value) {
|
|
3
|
+
this.identifier = identifier;
|
|
4
|
+
this.value = value;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWhlYWRpbmcubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY2xhc3Nlcy9lc29sdmUtaGVhZGluZy5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLE9BQU8sYUFBYTtJQUN0QixZQUFtQixVQUFrQixFQUFTLEtBQWE7UUFBeEMsZUFBVSxHQUFWLFVBQVUsQ0FBUTtRQUFTLFVBQUssR0FBTCxLQUFLLENBQVE7SUFBRyxDQUFDO0NBQ2xFIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIEVzb2x2ZUhlYWRpbmcge1xuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyBpZGVudGlmaWVyOiBzdHJpbmcsIHB1YmxpYyB2YWx1ZTogc3RyaW5nKSB7fVxufVxuIl19
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { EsolveTag, EsolveTopic, EsolveSeoInfo, EsolveManufacturer, EsolveRange, } from '@esolve/ng-esolve-connect';
|
|
2
|
+
import { EsolveMediaGroup } from './esolve-media-group.model';
|
|
3
|
+
import { EsolveMediaLayoutSection } from './esolve-media-layout-section.model';
|
|
4
|
+
import { EsolveMediaLink } from './esolve-media-link.model';
|
|
5
|
+
export class EsolveMediaArticle {
|
|
6
|
+
constructor(record) {
|
|
7
|
+
this.layout = '';
|
|
8
|
+
this.image_url = '';
|
|
9
|
+
this.tags = [];
|
|
10
|
+
this.topics = [];
|
|
11
|
+
this.identifier = record.identifier;
|
|
12
|
+
this.title = record.title;
|
|
13
|
+
this.sub_title = record.sub_title;
|
|
14
|
+
this.article = record.article;
|
|
15
|
+
let seo_title = record.seo_page_title ?? '';
|
|
16
|
+
const seo_keywords = record.seo_keywords ?? '';
|
|
17
|
+
const seo_description = record.seo_description ?? '';
|
|
18
|
+
if (seo_title.trim() === '') {
|
|
19
|
+
seo_title = this.title;
|
|
20
|
+
}
|
|
21
|
+
this.seo_details = new EsolveSeoInfo(seo_title, seo_description, seo_keywords);
|
|
22
|
+
this.image_url = record.image_url ?? '';
|
|
23
|
+
if (record.tags && record.tags.length > 0) {
|
|
24
|
+
for (const tag of record.tags) {
|
|
25
|
+
this.tags.push(new EsolveTag(tag));
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
if (record.topics && record.topics.length > 0) {
|
|
29
|
+
for (const topic of record.topics) {
|
|
30
|
+
this.topics.push(new EsolveTopic(topic));
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
if (record.media_group) {
|
|
34
|
+
this.group = new EsolveMediaGroup(record.media_group);
|
|
35
|
+
}
|
|
36
|
+
if (record.manufacturer) {
|
|
37
|
+
this.manufacturer = new EsolveManufacturer(record.manufacturer);
|
|
38
|
+
}
|
|
39
|
+
if (record.range) {
|
|
40
|
+
this.range = new EsolveRange(record.range);
|
|
41
|
+
}
|
|
42
|
+
if (record.is_both_master_and_minor_article ||
|
|
43
|
+
!record.is_minor_article) {
|
|
44
|
+
this.layout = record.layout ?? '';
|
|
45
|
+
if (record.sections) {
|
|
46
|
+
this.sections = new Map();
|
|
47
|
+
for (const key in record.sections) {
|
|
48
|
+
const section_list = [];
|
|
49
|
+
const section_records = record.sections[key];
|
|
50
|
+
for (const section_record of section_records) {
|
|
51
|
+
section_list.push(new EsolveMediaLayoutSection(section_record));
|
|
52
|
+
}
|
|
53
|
+
this.sections.set(key, section_list);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
if (record.is_both_master_and_minor_article ||
|
|
58
|
+
record.is_minor_article) {
|
|
59
|
+
if (record.sef_url) {
|
|
60
|
+
this.link = new EsolveMediaLink({
|
|
61
|
+
url: record.sef_url,
|
|
62
|
+
caption: record.link_caption,
|
|
63
|
+
target: record.target,
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
if (record.custom_fields) {
|
|
68
|
+
this.custom_fields = record.custom_fields;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWFydGljbGUubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY2xhc3Nlcy9lc29sdmUtbWVkaWEtYXJ0aWNsZS5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBRUgsU0FBUyxFQUNULFdBQVcsRUFDWCxhQUFhLEVBQ2Isa0JBQWtCLEVBQ2xCLFdBQVcsR0FFZCxNQUFNLDJCQUEyQixDQUFDO0FBSW5DLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQzlELE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBQy9FLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUU1RCxNQUFNLE9BQU8sa0JBQWtCO0lBaUIzQixZQUFZLE1BQXlCO1FBWjlCLFdBQU0sR0FBRyxFQUFFLENBQUM7UUFDWixjQUFTLEdBQUcsRUFBRSxDQUFDO1FBQ2YsU0FBSSxHQUFnQixFQUFFLENBQUM7UUFDdkIsV0FBTSxHQUFrQixFQUFFLENBQUM7UUFVOUIsSUFBSSxDQUFDLFVBQVUsR0FBRyxNQUFNLENBQUMsVUFBVSxDQUFDO1FBQ3BDLElBQUksQ0FBQyxLQUFLLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQztRQUMxQixJQUFJLENBQUMsU0FBUyxHQUFHLE1BQU0sQ0FBQyxTQUFTLENBQUM7UUFDbEMsSUFBSSxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUMsT0FBTyxDQUFDO1FBRTlCLElBQUksU0FBUyxHQUFHLE1BQU0sQ0FBQyxjQUFjLElBQUksRUFBRSxDQUFDO1FBQzVDLE1BQU0sWUFBWSxHQUFHLE1BQU0sQ0FBQyxZQUFZLElBQUksRUFBRSxDQUFDO1FBQy9DLE1BQU0sZUFBZSxHQUFHLE1BQU0sQ0FBQyxlQUFlLElBQUksRUFBRSxDQUFDO1FBRXJELElBQUksU0FBUyxDQUFDLElBQUksRUFBRSxLQUFLLEVBQUUsRUFBRTtZQUN6QixTQUFTLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztTQUMxQjtRQUVELElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxhQUFhLENBQ2hDLFNBQVMsRUFDVCxlQUFlLEVBQ2YsWUFBWSxDQUNmLENBQUM7UUFFRixJQUFJLENBQUMsU0FBUyxHQUFHLE1BQU0sQ0FBQyxTQUFTLElBQUksRUFBRSxDQUFDO1FBRXhDLElBQUksTUFBTSxDQUFDLElBQUksSUFBSSxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDdkMsS0FBSyxNQUFNLEdBQUcsSUFBSSxNQUFNLENBQUMsSUFBSSxFQUFFO2dCQUMzQixJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLFNBQVMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO2FBQ3RDO1NBQ0o7UUFFRCxJQUFJLE1BQU0sQ0FBQyxNQUFNLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO1lBQzNDLEtBQUssTUFBTSxLQUFLLElBQUksTUFBTSxDQUFDLE1BQU0sRUFBRTtnQkFDL0IsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxXQUFXLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQzthQUM1QztTQUNKO1FBRUQsSUFBSSxNQUFNLENBQUMsV0FBVyxFQUFFO1lBQ3BCLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7U0FDekQ7UUFFRCxJQUFJLE1BQU0sQ0FBQyxZQUFZLEVBQUU7WUFDckIsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLGtCQUFrQixDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQztTQUNuRTtRQUVELElBQUksTUFBTSxDQUFDLEtBQUssRUFBRTtZQUNkLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxXQUFXLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQzlDO1FBRUQsSUFDSSxNQUFNLENBQUMsZ0NBQWdDO1lBQ3ZDLENBQUMsTUFBTSxDQUFDLGdCQUFnQixFQUMxQjtZQUNFLElBQUksQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLE1BQU0sSUFBSSxFQUFFLENBQUM7WUFFbEMsSUFBSSxNQUFNLENBQUMsUUFBUSxFQUFFO2dCQUNqQixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksR0FBRyxFQUFzQyxDQUFDO2dCQUU5RCxLQUFLLE1BQU0sR0FBRyxJQUFJLE1BQU0sQ0FBQyxRQUFRLEVBQUU7b0JBQy9CLE1BQU0sWUFBWSxHQUErQixFQUFFLENBQUM7b0JBQ3BELE1BQU0sZUFBZSxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLENBQUM7b0JBRTdDLEtBQUssTUFBTSxjQUFjLElBQUksZUFBZSxFQUFFO3dCQUMxQyxZQUFZLENBQUMsSUFBSSxDQUNiLElBQUksd0JBQXdCLENBQUMsY0FBYyxDQUFDLENBQy9DLENBQUM7cUJBQ0w7b0JBRUQsSUFBSSxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsR0FBRyxFQUFFLFlBQVksQ0FBQyxDQUFDO2lCQUN4QzthQUNKO1NBQ0o7UUFFRCxJQUNJLE1BQU0sQ0FBQyxnQ0FBZ0M7WUFDdkMsTUFBTSxDQUFDLGdCQUFnQixFQUN6QjtZQUNFLElBQUksTUFBTSxDQUFDLE9BQU8sRUFBRTtnQkFDaEIsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLGVBQWUsQ0FBQztvQkFDNUIsR0FBRyxFQUFFLE1BQU0sQ0FBQyxPQUFPO29CQUNuQixPQUFPLEVBQUUsTUFBTSxDQUFDLFlBQVk7b0JBQzVCLE1BQU0sRUFBRSxNQUFNLENBQUMsTUFBTTtpQkFDeEIsQ0FBQyxDQUFDO2FBQ047U0FDSjtRQUVELElBQUksTUFBTSxDQUFDLGFBQWEsRUFBRTtZQUN0QixJQUFJLENBQUMsYUFBYSxHQUFHLE1BQU0sQ0FBQyxhQUFhLENBQUM7U0FDN0M7SUFDTCxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIEVzb2x2ZVNlb0RldGFpbHMsXG4gICAgRXNvbHZlVGFnLFxuICAgIEVzb2x2ZVRvcGljLFxuICAgIEVzb2x2ZVNlb0luZm8sXG4gICAgRXNvbHZlTWFudWZhY3R1cmVyLFxuICAgIEVzb2x2ZVJhbmdlLFxuICAgIEVzb2x2ZUN1c3RvbUZpZWxkcyxcbn0gZnJvbSAnQGVzb2x2ZS9uZy1lc29sdmUtY29ubmVjdCc7XG5cbmltcG9ydCB7IEVzb2x2ZU1lZGlhUmVjb3JkIH0gZnJvbSAnLi4vaW50ZXJmYWNlcyc7XG5cbmltcG9ydCB7IEVzb2x2ZU1lZGlhR3JvdXAgfSBmcm9tICcuL2Vzb2x2ZS1tZWRpYS1ncm91cC5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVNZWRpYUxheW91dFNlY3Rpb24gfSBmcm9tICcuL2Vzb2x2ZS1tZWRpYS1sYXlvdXQtc2VjdGlvbi5tb2RlbCc7XG5pbXBvcnQgeyBFc29sdmVNZWRpYUxpbmsgfSBmcm9tICcuL2Vzb2x2ZS1tZWRpYS1saW5rLm1vZGVsJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZU1lZGlhQXJ0aWNsZSBpbXBsZW1lbnRzIEVzb2x2ZVNlb0RldGFpbHMge1xuICAgIHB1YmxpYyBpZGVudGlmaWVyOiBzdHJpbmc7XG4gICAgcHVibGljIHRpdGxlOiBzdHJpbmc7XG4gICAgcHVibGljIHN1Yl90aXRsZTogc3RyaW5nO1xuICAgIHB1YmxpYyBhcnRpY2xlOiBzdHJpbmc7XG4gICAgcHVibGljIGxheW91dCA9ICcnO1xuICAgIHB1YmxpYyBpbWFnZV91cmwgPSAnJztcbiAgICBwdWJsaWMgdGFnczogRXNvbHZlVGFnW10gPSBbXTtcbiAgICBwdWJsaWMgdG9waWNzOiBFc29sdmVUb3BpY1tdID0gW107XG4gICAgcHVibGljIHNlb19kZXRhaWxzOiBFc29sdmVTZW9JbmZvO1xuICAgIHB1YmxpYyBncm91cD86IEVzb2x2ZU1lZGlhR3JvdXA7XG4gICAgcHVibGljIG1hbnVmYWN0dXJlcj86IEVzb2x2ZU1hbnVmYWN0dXJlcjtcbiAgICBwdWJsaWMgcmFuZ2U/OiBFc29sdmVSYW5nZTtcbiAgICBwdWJsaWMgc2VjdGlvbnM/OiBNYXA8c3RyaW5nLCBFc29sdmVNZWRpYUxheW91dFNlY3Rpb25bXT47XG4gICAgcHVibGljIGxpbms/OiBFc29sdmVNZWRpYUxpbms7XG4gICAgcHVibGljIGN1c3RvbV9maWVsZHM/OiBFc29sdmVDdXN0b21GaWVsZHM7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ6IEVzb2x2ZU1lZGlhUmVjb3JkKSB7XG4gICAgICAgIHRoaXMuaWRlbnRpZmllciA9IHJlY29yZC5pZGVudGlmaWVyO1xuICAgICAgICB0aGlzLnRpdGxlID0gcmVjb3JkLnRpdGxlO1xuICAgICAgICB0aGlzLnN1Yl90aXRsZSA9IHJlY29yZC5zdWJfdGl0bGU7XG4gICAgICAgIHRoaXMuYXJ0aWNsZSA9IHJlY29yZC5hcnRpY2xlO1xuXG4gICAgICAgIGxldCBzZW9fdGl0bGUgPSByZWNvcmQuc2VvX3BhZ2VfdGl0bGUgPz8gJyc7XG4gICAgICAgIGNvbnN0IHNlb19rZXl3b3JkcyA9IHJlY29yZC5zZW9fa2V5d29yZHMgPz8gJyc7XG4gICAgICAgIGNvbnN0IHNlb19kZXNjcmlwdGlvbiA9IHJlY29yZC5zZW9fZGVzY3JpcHRpb24gPz8gJyc7XG5cbiAgICAgICAgaWYgKHNlb190aXRsZS50cmltKCkgPT09ICcnKSB7XG4gICAgICAgICAgICBzZW9fdGl0bGUgPSB0aGlzLnRpdGxlO1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5zZW9fZGV0YWlscyA9IG5ldyBFc29sdmVTZW9JbmZvKFxuICAgICAgICAgICAgc2VvX3RpdGxlLFxuICAgICAgICAgICAgc2VvX2Rlc2NyaXB0aW9uLFxuICAgICAgICAgICAgc2VvX2tleXdvcmRzLFxuICAgICAgICApO1xuXG4gICAgICAgIHRoaXMuaW1hZ2VfdXJsID0gcmVjb3JkLmltYWdlX3VybCA/PyAnJztcblxuICAgICAgICBpZiAocmVjb3JkLnRhZ3MgJiYgcmVjb3JkLnRhZ3MubGVuZ3RoID4gMCkge1xuICAgICAgICAgICAgZm9yIChjb25zdCB0YWcgb2YgcmVjb3JkLnRhZ3MpIHtcbiAgICAgICAgICAgICAgICB0aGlzLnRhZ3MucHVzaChuZXcgRXNvbHZlVGFnKHRhZykpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHJlY29yZC50b3BpY3MgJiYgcmVjb3JkLnRvcGljcy5sZW5ndGggPiAwKSB7XG4gICAgICAgICAgICBmb3IgKGNvbnN0IHRvcGljIG9mIHJlY29yZC50b3BpY3MpIHtcbiAgICAgICAgICAgICAgICB0aGlzLnRvcGljcy5wdXNoKG5ldyBFc29sdmVUb3BpYyh0b3BpYykpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHJlY29yZC5tZWRpYV9ncm91cCkge1xuICAgICAgICAgICAgdGhpcy5ncm91cCA9IG5ldyBFc29sdmVNZWRpYUdyb3VwKHJlY29yZC5tZWRpYV9ncm91cCk7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAocmVjb3JkLm1hbnVmYWN0dXJlcikge1xuICAgICAgICAgICAgdGhpcy5tYW51ZmFjdHVyZXIgPSBuZXcgRXNvbHZlTWFudWZhY3R1cmVyKHJlY29yZC5tYW51ZmFjdHVyZXIpO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKHJlY29yZC5yYW5nZSkge1xuICAgICAgICAgICAgdGhpcy5yYW5nZSA9IG5ldyBFc29sdmVSYW5nZShyZWNvcmQucmFuZ2UpO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgcmVjb3JkLmlzX2JvdGhfbWFzdGVyX2FuZF9taW5vcl9hcnRpY2xlIHx8XG4gICAgICAgICAgICAhcmVjb3JkLmlzX21pbm9yX2FydGljbGVcbiAgICAgICAgKSB7XG4gICAgICAgICAgICB0aGlzLmxheW91dCA9IHJlY29yZC5sYXlvdXQgPz8gJyc7XG5cbiAgICAgICAgICAgIGlmIChyZWNvcmQuc2VjdGlvbnMpIHtcbiAgICAgICAgICAgICAgICB0aGlzLnNlY3Rpb25zID0gbmV3IE1hcDxzdHJpbmcsIEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvbltdPigpO1xuXG4gICAgICAgICAgICAgICAgZm9yIChjb25zdCBrZXkgaW4gcmVjb3JkLnNlY3Rpb25zKSB7XG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IHNlY3Rpb25fbGlzdDogRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uW10gPSBbXTtcbiAgICAgICAgICAgICAgICAgICAgY29uc3Qgc2VjdGlvbl9yZWNvcmRzID0gcmVjb3JkLnNlY3Rpb25zW2tleV07XG5cbiAgICAgICAgICAgICAgICAgICAgZm9yIChjb25zdCBzZWN0aW9uX3JlY29yZCBvZiBzZWN0aW9uX3JlY29yZHMpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHNlY3Rpb25fbGlzdC5wdXNoKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIG5ldyBFc29sdmVNZWRpYUxheW91dFNlY3Rpb24oc2VjdGlvbl9yZWNvcmQpLFxuICAgICAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc2VjdGlvbnMuc2V0KGtleSwgc2VjdGlvbl9saXN0KTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICBpZiAoXG4gICAgICAgICAgICByZWNvcmQuaXNfYm90aF9tYXN0ZXJfYW5kX21pbm9yX2FydGljbGUgfHxcbiAgICAgICAgICAgIHJlY29yZC5pc19taW5vcl9hcnRpY2xlXG4gICAgICAgICkge1xuICAgICAgICAgICAgaWYgKHJlY29yZC5zZWZfdXJsKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5saW5rID0gbmV3IEVzb2x2ZU1lZGlhTGluayh7XG4gICAgICAgICAgICAgICAgICAgIHVybDogcmVjb3JkLnNlZl91cmwsXG4gICAgICAgICAgICAgICAgICAgIGNhcHRpb246IHJlY29yZC5saW5rX2NhcHRpb24sXG4gICAgICAgICAgICAgICAgICAgIHRhcmdldDogcmVjb3JkLnRhcmdldCxcbiAgICAgICAgICAgICAgICB9KTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICAgIGlmIChyZWNvcmQuY3VzdG9tX2ZpZWxkcykge1xuICAgICAgICAgICAgdGhpcy5jdXN0b21fZmllbGRzID0gcmVjb3JkLmN1c3RvbV9maWVsZHM7XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export class EsolveMediaGroup {
|
|
2
|
+
constructor(record) {
|
|
3
|
+
this.id = 0;
|
|
4
|
+
this.name = '';
|
|
5
|
+
this.sef_name = '';
|
|
6
|
+
this.description = '';
|
|
7
|
+
if (record) {
|
|
8
|
+
this.id = +(record.id ?? 0);
|
|
9
|
+
this.name = record.name ?? '';
|
|
10
|
+
this.sef_name = record.sef_name ?? '';
|
|
11
|
+
this.description = record.description ?? '';
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWdyb3VwLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL2NsYXNzZXMvZXNvbHZlLW1lZGlhLWdyb3VwLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxnQkFBZ0I7SUFNekIsWUFBWSxNQUErQjtRQUxwQyxPQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQ1AsU0FBSSxHQUFHLEVBQUUsQ0FBQztRQUNWLGFBQVEsR0FBRyxFQUFFLENBQUM7UUFDZCxnQkFBVyxHQUFHLEVBQUUsQ0FBQztRQUdwQixJQUFJLE1BQU0sRUFBRTtZQUNSLElBQUksQ0FBQyxFQUFFLEdBQUcsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUM7WUFDNUIsSUFBSSxDQUFDLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUM5QixJQUFJLENBQUMsUUFBUSxHQUFHLE1BQU0sQ0FBQyxRQUFRLElBQUksRUFBRSxDQUFDO1lBQ3RDLElBQUksQ0FBQyxXQUFXLEdBQUcsTUFBTSxDQUFDLFdBQVcsSUFBSSxFQUFFLENBQUM7U0FDL0M7SUFDTCxDQUFDO0NBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFc29sdmVNZWRpYUdyb3VwUmVjb3JkIH0gZnJvbSAnLi4vaW50ZXJmYWNlcyc7XG5cbmV4cG9ydCBjbGFzcyBFc29sdmVNZWRpYUdyb3VwIHtcbiAgICBwdWJsaWMgaWQgPSAwO1xuICAgIHB1YmxpYyBuYW1lID0gJyc7XG4gICAgcHVibGljIHNlZl9uYW1lID0gJyc7XG4gICAgcHVibGljIGRlc2NyaXB0aW9uID0gJyc7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ/OiBFc29sdmVNZWRpYUdyb3VwUmVjb3JkKSB7XG4gICAgICAgIGlmIChyZWNvcmQpIHtcbiAgICAgICAgICAgIHRoaXMuaWQgPSArKHJlY29yZC5pZCA/PyAwKTtcbiAgICAgICAgICAgIHRoaXMubmFtZSA9IHJlY29yZC5uYW1lID8/ICcnO1xuICAgICAgICAgICAgdGhpcy5zZWZfbmFtZSA9IHJlY29yZC5zZWZfbmFtZSA/PyAnJztcbiAgICAgICAgICAgIHRoaXMuZGVzY3JpcHRpb24gPSByZWNvcmQuZGVzY3JpcHRpb24gPz8gJyc7XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class EsolveMediaLayoutSection {
|
|
2
|
+
constructor(record) {
|
|
3
|
+
this.sub_type = '';
|
|
4
|
+
this.type = record.type;
|
|
5
|
+
this.identifier = record.identifier;
|
|
6
|
+
this.sub_type = record.sub_type ?? '';
|
|
7
|
+
if (record.data) {
|
|
8
|
+
this.data = record.data;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
getData() {
|
|
12
|
+
if (typeof this.data === 'undefined') {
|
|
13
|
+
return null;
|
|
14
|
+
}
|
|
15
|
+
return this.data;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWxheW91dC1zZWN0aW9uLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL2NsYXNzZXMvZXNvbHZlLW1lZGlhLWxheW91dC1zZWN0aW9uLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE1BQU0sT0FBTyx3QkFBd0I7SUFPakMsWUFBWSxNQUFzQztRQUwzQyxhQUFRLEdBQUcsRUFBRSxDQUFDO1FBTWpCLElBQUksQ0FBQyxJQUFJLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQztRQUN4QixJQUFJLENBQUMsVUFBVSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUM7UUFDcEMsSUFBSSxDQUFDLFFBQVEsR0FBRyxNQUFNLENBQUMsUUFBUSxJQUFJLEVBQUUsQ0FBQztRQUV0QyxJQUFJLE1BQU0sQ0FBQyxJQUFJLEVBQUU7WUFDYixJQUFJLENBQUMsSUFBSSxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUM7U0FDM0I7SUFDTCxDQUFDO0lBRU0sT0FBTztRQUNWLElBQUksT0FBTyxJQUFJLENBQUMsSUFBSSxLQUFLLFdBQVcsRUFBRTtZQUNsQyxPQUFPLElBQUksQ0FBQztTQUNmO1FBRUQsT0FBTyxJQUFJLENBQUMsSUFBUyxDQUFDO0lBQzFCLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvblJlY29yZCB9IGZyb20gJy4uL2ludGVyZmFjZXMnO1xuaW1wb3J0IHsgRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uVHlwZSB9IGZyb20gJy4uL3R5cGVzJztcblxuZXhwb3J0IGNsYXNzIEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvbiB7XG4gICAgcHVibGljIHR5cGU6IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvblR5cGU7XG4gICAgcHVibGljIHN1Yl90eXBlID0gJyc7XG4gICAgcHVibGljIGlkZW50aWZpZXI6IHN0cmluZztcblxuICAgIHByaXZhdGUgZGF0YT86IGFueTtcblxuICAgIGNvbnN0cnVjdG9yKHJlY29yZDogRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uUmVjb3JkKSB7XG4gICAgICAgIHRoaXMudHlwZSA9IHJlY29yZC50eXBlO1xuICAgICAgICB0aGlzLmlkZW50aWZpZXIgPSByZWNvcmQuaWRlbnRpZmllcjtcbiAgICAgICAgdGhpcy5zdWJfdHlwZSA9IHJlY29yZC5zdWJfdHlwZSA/PyAnJztcblxuICAgICAgICBpZiAocmVjb3JkLmRhdGEpIHtcbiAgICAgICAgICAgIHRoaXMuZGF0YSA9IHJlY29yZC5kYXRhO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIGdldERhdGE8VD4oKTogVCB8IG51bGwge1xuICAgICAgICBpZiAodHlwZW9mIHRoaXMuZGF0YSA9PT0gJ3VuZGVmaW5lZCcpIHtcbiAgICAgICAgICAgIHJldHVybiBudWxsO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuZGF0YSBhcyBUO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export class EsolveMediaLink {
|
|
2
|
+
constructor(record) {
|
|
3
|
+
this.url = record.url;
|
|
4
|
+
this.caption = record.caption ?? 'Read more...';
|
|
5
|
+
this.target = record.target ?? '_self';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWxpbmsubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY2xhc3Nlcy9lc29sdmUtbWVkaWEtbGluay5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFJQSxNQUFNLE9BQU8sZUFBZTtJQUt4QixZQUFZLE1BQTZCO1FBQ3JDLElBQUksQ0FBQyxHQUFHLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQztRQUN0QixJQUFJLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQyxPQUFPLElBQUksY0FBYyxDQUFDO1FBQ2hELElBQUksQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFDLE1BQU0sSUFBSSxPQUFPLENBQUM7SUFDM0MsQ0FBQztDQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlVXJsVGFyZ2V0IH0gZnJvbSAnQGVzb2x2ZS9uZy1lc29sdmUtY29ubmVjdCc7XG5cbmltcG9ydCB7IEVzb2x2ZU1lZGlhTGlua1JlY29yZCB9IGZyb20gJy4uL2ludGVyZmFjZXMnO1xuXG5leHBvcnQgY2xhc3MgRXNvbHZlTWVkaWFMaW5rIHtcbiAgICBwdWJsaWMgY2FwdGlvbjogc3RyaW5nO1xuICAgIHB1YmxpYyB1cmw6IHN0cmluZztcbiAgICBwdWJsaWMgdGFyZ2V0OiBFc29sdmVVcmxUYXJnZXQ7XG5cbiAgICBjb25zdHJ1Y3RvcihyZWNvcmQ6IEVzb2x2ZU1lZGlhTGlua1JlY29yZCkge1xuICAgICAgICB0aGlzLnVybCA9IHJlY29yZC51cmw7XG4gICAgICAgIHRoaXMuY2FwdGlvbiA9IHJlY29yZC5jYXB0aW9uID8/ICdSZWFkIG1vcmUuLi4nO1xuICAgICAgICB0aGlzLnRhcmdldCA9IHJlY29yZC50YXJnZXQgPz8gJ19zZWxmJztcbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './esolve-heading.model';
|
|
2
|
+
export * from './esolve-media-article.model';
|
|
3
|
+
export * from './esolve-media-group.model';
|
|
4
|
+
export * from './esolve-media-link.model';
|
|
5
|
+
export * from './esolve-media-layout-section.model';
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY2xhc3Nlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMscUNBQXFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1oZWFkaW5nLm1vZGVsJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLW1lZGlhLWFydGljbGUubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbWVkaWEtZ3JvdXAubW9kZWwnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbWVkaWEtbGluay5tb2RlbCc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1tZWRpYS1sYXlvdXQtc2VjdGlvbi5tb2RlbCc7XG4iXX0=
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './media-layout/esolve-media-layout.component';
|
|
2
|
+
export * from './media-section/esolve-media-section.component';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY29tcG9uZW50cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsZ0RBQWdELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL21lZGlhLWxheW91dC9lc29sdmUtbWVkaWEtbGF5b3V0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL21lZGlhLXNlY3Rpb24vZXNvbHZlLW1lZGlhLXNlY3Rpb24uY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Component, Input, Injector } from '@angular/core';
|
|
2
|
+
import { ComponentPortal } from '@angular/cdk/portal';
|
|
3
|
+
import { EsolveMediaArticle } from '../../classes';
|
|
4
|
+
import { EsolveMediaLayoutService } from '../../services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../../services";
|
|
7
|
+
import * as i2 from "@angular/cdk/portal";
|
|
8
|
+
class EsolveMediaLayoutComponent {
|
|
9
|
+
constructor(layoutService) {
|
|
10
|
+
this.layoutService = layoutService;
|
|
11
|
+
}
|
|
12
|
+
ngOnChanges() {
|
|
13
|
+
this.layoutService.setMedia(this.media);
|
|
14
|
+
const component = this.layoutService.getLayout();
|
|
15
|
+
const injector = Injector.create({
|
|
16
|
+
providers: [
|
|
17
|
+
{
|
|
18
|
+
provide: EsolveMediaLayoutService,
|
|
19
|
+
useValue: this.layoutService,
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
});
|
|
23
|
+
this.portal = new ComponentPortal(component, null, injector);
|
|
24
|
+
}
|
|
25
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaLayoutComponent, deps: [{ token: i1.EsolveMediaLayoutService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: EsolveMediaLayoutComponent, selector: "eslv-media-layout", inputs: { media: "media" }, providers: [EsolveMediaLayoutService], usesOnChanges: true, ngImport: i0, template: "<ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n", dependencies: [{ kind: "directive", type: i2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }] }); }
|
|
27
|
+
}
|
|
28
|
+
export { EsolveMediaLayoutComponent };
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaLayoutComponent, decorators: [{
|
|
30
|
+
type: Component,
|
|
31
|
+
args: [{ selector: 'eslv-media-layout', providers: [EsolveMediaLayoutService], template: "<ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n" }]
|
|
32
|
+
}], ctorParameters: function () { return [{ type: i1.EsolveMediaLayoutService }]; }, propDecorators: { media: [{
|
|
33
|
+
type: Input
|
|
34
|
+
}] } });
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWxheW91dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY29tcG9uZW50cy9tZWRpYS1sYXlvdXQvZXNvbHZlLW1lZGlhLWxheW91dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY29tcG9uZW50cy9tZWRpYS1sYXlvdXQvZXNvbHZlLW1lZGlhLWxheW91dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFhLEtBQUssRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdEUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRXRELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNuRCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7OztBQUUxRCxNQUthLDBCQUEwQjtJQUtuQyxZQUFtQixhQUF1QztRQUF2QyxrQkFBYSxHQUFiLGFBQWEsQ0FBMEI7SUFBRyxDQUFDO0lBRXZELFdBQVc7UUFDZCxJQUFJLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDeEMsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxTQUFTLEVBQUUsQ0FBQztRQUNqRCxNQUFNLFFBQVEsR0FBRyxRQUFRLENBQUMsTUFBTSxDQUFDO1lBQzdCLFNBQVMsRUFBRTtnQkFDUDtvQkFDSSxPQUFPLEVBQUUsd0JBQXdCO29CQUNqQyxRQUFRLEVBQUUsSUFBSSxDQUFDLGFBQWE7aUJBQy9CO2FBQ0o7U0FDSixDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksZUFBZSxDQUFDLFNBQVMsRUFBRSxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDakUsQ0FBQzs4R0FwQlEsMEJBQTBCO2tHQUExQiwwQkFBMEIsd0VBRnhCLENBQUMsd0JBQXdCLENBQUMsK0NDVHpDLDREQUNBOztTRFVhLDBCQUEwQjsyRkFBMUIsMEJBQTBCO2tCQUx0QyxTQUFTOytCQUNJLG1CQUFtQixhQUVsQixDQUFDLHdCQUF3QixDQUFDOytHQUdyQixLQUFLO3NCQUFwQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkNoYW5nZXMsIElucHV0LCBJbmplY3RvciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tcG9uZW50UG9ydGFsIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XG5cbmltcG9ydCB7IEVzb2x2ZU1lZGlhQXJ0aWNsZSB9IGZyb20gJy4uLy4uL2NsYXNzZXMnO1xuaW1wb3J0IHsgRXNvbHZlTWVkaWFMYXlvdXRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2VzbHYtbWVkaWEtbGF5b3V0JyxcbiAgICB0ZW1wbGF0ZVVybDogJ2Vzb2x2ZS1tZWRpYS1sYXlvdXQuY29tcG9uZW50Lmh0bWwnLFxuICAgIHByb3ZpZGVyczogW0Vzb2x2ZU1lZGlhTGF5b3V0U2VydmljZV0sXG59KVxuZXhwb3J0IGNsYXNzIEVzb2x2ZU1lZGlhTGF5b3V0Q29tcG9uZW50IGltcGxlbWVudHMgT25DaGFuZ2VzIHtcbiAgICBASW5wdXQoKSBwdWJsaWMgbWVkaWEhOiBFc29sdmVNZWRpYUFydGljbGU7XG5cbiAgICBwdWJsaWMgcG9ydGFsITogQ29tcG9uZW50UG9ydGFsPGFueT47XG5cbiAgICBjb25zdHJ1Y3RvcihwdWJsaWMgbGF5b3V0U2VydmljZTogRXNvbHZlTWVkaWFMYXlvdXRTZXJ2aWNlKSB7fVxuXG4gICAgcHVibGljIG5nT25DaGFuZ2VzKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmxheW91dFNlcnZpY2Uuc2V0TWVkaWEodGhpcy5tZWRpYSk7XG4gICAgICAgIGNvbnN0IGNvbXBvbmVudCA9IHRoaXMubGF5b3V0U2VydmljZS5nZXRMYXlvdXQoKTtcbiAgICAgICAgY29uc3QgaW5qZWN0b3IgPSBJbmplY3Rvci5jcmVhdGUoe1xuICAgICAgICAgICAgcHJvdmlkZXJzOiBbXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICBwcm92aWRlOiBFc29sdmVNZWRpYUxheW91dFNlcnZpY2UsXG4gICAgICAgICAgICAgICAgICAgIHVzZVZhbHVlOiB0aGlzLmxheW91dFNlcnZpY2UsXG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgIF0sXG4gICAgICAgIH0pO1xuXG4gICAgICAgIHRoaXMucG9ydGFsID0gbmV3IENvbXBvbmVudFBvcnRhbChjb21wb25lbnQsIG51bGwsIGluamVjdG9yKTtcbiAgICB9XG59XG4iLCI8bmctdGVtcGxhdGUgW2Nka1BvcnRhbE91dGxldF09XCJwb3J0YWxcIj48L25nLXRlbXBsYXRlPlxuIl19
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Component, Input, Injector } from '@angular/core';
|
|
2
|
+
import { ComponentPortal } from '@angular/cdk/portal';
|
|
3
|
+
import { EsolveMediaLayoutSection } from '../../classes';
|
|
4
|
+
import { EsolveMediaLayoutService } from '../../services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "../../services";
|
|
7
|
+
import * as i2 from "@angular/common";
|
|
8
|
+
import * as i3 from "@angular/cdk/portal";
|
|
9
|
+
class EsolveMediaSectionComponent {
|
|
10
|
+
constructor(layoutService) {
|
|
11
|
+
this.layoutService = layoutService;
|
|
12
|
+
this.portals = [];
|
|
13
|
+
}
|
|
14
|
+
ngOnChanges() {
|
|
15
|
+
const sections = this.layoutService.getSectionContent(this.key);
|
|
16
|
+
this.processPortals(sections);
|
|
17
|
+
}
|
|
18
|
+
processPortals(sections) {
|
|
19
|
+
for (const section of sections) {
|
|
20
|
+
const injector = Injector.create({
|
|
21
|
+
providers: [
|
|
22
|
+
{
|
|
23
|
+
provide: EsolveMediaLayoutSection,
|
|
24
|
+
useValue: section,
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
provide: EsolveMediaLayoutService,
|
|
28
|
+
useValue: this.layoutService,
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
});
|
|
32
|
+
const component = this.layoutService.getSectionComponent(this.key, section);
|
|
33
|
+
const portal = new ComponentPortal(component, null, injector);
|
|
34
|
+
this.portals.push(portal);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaSectionComponent, deps: [{ token: i1.EsolveMediaLayoutService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
38
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.4", type: EsolveMediaSectionComponent, selector: "eslv-media-section", inputs: { key: "key" }, usesOnChanges: true, ngImport: i0, template: "<ng-container *ngIf=\"portals.length > 0\">\n <ng-container *ngFor=\"let portal of portals\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n </ng-container>\n</ng-container>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }] }); }
|
|
39
|
+
}
|
|
40
|
+
export { EsolveMediaSectionComponent };
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaSectionComponent, decorators: [{
|
|
42
|
+
type: Component,
|
|
43
|
+
args: [{ selector: 'eslv-media-section', template: "<ng-container *ngIf=\"portals.length > 0\">\n <ng-container *ngFor=\"let portal of portals\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n </ng-container>\n</ng-container>\n" }]
|
|
44
|
+
}], ctorParameters: function () { return [{ type: i1.EsolveMediaLayoutService }]; }, propDecorators: { key: [{
|
|
45
|
+
type: Input
|
|
46
|
+
}] } });
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLXNlY3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL2NvbXBvbmVudHMvbWVkaWEtc2VjdGlvbi9lc29sdmUtbWVkaWEtc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvY29tcG9uZW50cy9tZWRpYS1zZWN0aW9uL2Vzb2x2ZS1tZWRpYS1zZWN0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWEsS0FBSyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFdEQsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pELE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7OztBQUUxRCxNQUlhLDJCQUEyQjtJQUtwQyxZQUFtQixhQUF1QztRQUF2QyxrQkFBYSxHQUFiLGFBQWEsQ0FBMEI7UUFGbkQsWUFBTyxHQUEyQixFQUFFLENBQUM7SUFFaUIsQ0FBQztJQUV2RCxXQUFXO1FBQ2QsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7UUFDaEUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUNsQyxDQUFDO0lBRU8sY0FBYyxDQUFDLFFBQW9DO1FBQ3ZELEtBQUssTUFBTSxPQUFPLElBQUksUUFBUSxFQUFFO1lBQzVCLE1BQU0sUUFBUSxHQUFHLFFBQVEsQ0FBQyxNQUFNLENBQUM7Z0JBQzdCLFNBQVMsRUFBRTtvQkFDUDt3QkFDSSxPQUFPLEVBQUUsd0JBQXdCO3dCQUNqQyxRQUFRLEVBQUUsT0FBTztxQkFDcEI7b0JBQ0Q7d0JBQ0ksT0FBTyxFQUFFLHdCQUF3Qjt3QkFDakMsUUFBUSxFQUFFLElBQUksQ0FBQyxhQUFhO3FCQUMvQjtpQkFDSjthQUNKLENBQUMsQ0FBQztZQUVILE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsbUJBQW1CLENBQ3BELElBQUksQ0FBQyxHQUFHLEVBQ1IsT0FBTyxDQUNWLENBQUM7WUFFRixNQUFNLE1BQU0sR0FBRyxJQUFJLGVBQWUsQ0FBQyxTQUFTLEVBQUUsSUFBSSxFQUFFLFFBQVEsQ0FBQyxDQUFDO1lBQzlELElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1NBQzdCO0lBQ0wsQ0FBQzs4R0FuQ1EsMkJBQTJCO2tHQUEzQiwyQkFBMkIsdUdDVnhDLDRNQUtBOztTREthLDJCQUEyQjsyRkFBM0IsMkJBQTJCO2tCQUp2QyxTQUFTOytCQUNJLG9CQUFvQjsrR0FJZCxHQUFHO3NCQUFsQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkNoYW5nZXMsIElucHV0LCBJbmplY3RvciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tcG9uZW50UG9ydGFsIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XG5cbmltcG9ydCB7IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvbiB9IGZyb20gJy4uLy4uL2NsYXNzZXMnO1xuaW1wb3J0IHsgRXNvbHZlTWVkaWFMYXlvdXRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2VzbHYtbWVkaWEtc2VjdGlvbicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2Vzb2x2ZS1tZWRpYS1zZWN0aW9uLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgRXNvbHZlTWVkaWFTZWN0aW9uQ29tcG9uZW50IGltcGxlbWVudHMgT25DaGFuZ2VzIHtcbiAgICBASW5wdXQoKSBwdWJsaWMga2V5ITogc3RyaW5nO1xuXG4gICAgcHVibGljIHBvcnRhbHM6IENvbXBvbmVudFBvcnRhbDxhbnk+W10gPSBbXTtcblxuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyBsYXlvdXRTZXJ2aWNlOiBFc29sdmVNZWRpYUxheW91dFNlcnZpY2UpIHt9XG5cbiAgICBwdWJsaWMgbmdPbkNoYW5nZXMoKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IHNlY3Rpb25zID0gdGhpcy5sYXlvdXRTZXJ2aWNlLmdldFNlY3Rpb25Db250ZW50KHRoaXMua2V5KTtcbiAgICAgICAgdGhpcy5wcm9jZXNzUG9ydGFscyhzZWN0aW9ucyk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBwcm9jZXNzUG9ydGFscyhzZWN0aW9uczogRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uW10pIHtcbiAgICAgICAgZm9yIChjb25zdCBzZWN0aW9uIG9mIHNlY3Rpb25zKSB7XG4gICAgICAgICAgICBjb25zdCBpbmplY3RvciA9IEluamVjdG9yLmNyZWF0ZSh7XG4gICAgICAgICAgICAgICAgcHJvdmlkZXJzOiBbXG4gICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHByb3ZpZGU6IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvbixcbiAgICAgICAgICAgICAgICAgICAgICAgIHVzZVZhbHVlOiBzZWN0aW9uLFxuICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICBwcm92aWRlOiBFc29sdmVNZWRpYUxheW91dFNlcnZpY2UsXG4gICAgICAgICAgICAgICAgICAgICAgICB1c2VWYWx1ZTogdGhpcy5sYXlvdXRTZXJ2aWNlLFxuICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICB9KTtcblxuICAgICAgICAgICAgY29uc3QgY29tcG9uZW50ID0gdGhpcy5sYXlvdXRTZXJ2aWNlLmdldFNlY3Rpb25Db21wb25lbnQoXG4gICAgICAgICAgICAgICAgdGhpcy5rZXksXG4gICAgICAgICAgICAgICAgc2VjdGlvbixcbiAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIGNvbnN0IHBvcnRhbCA9IG5ldyBDb21wb25lbnRQb3J0YWwoY29tcG9uZW50LCBudWxsLCBpbmplY3Rvcik7XG4gICAgICAgICAgICB0aGlzLnBvcnRhbHMucHVzaChwb3J0YWwpO1xuICAgICAgICB9XG4gICAgfVxufVxuIiwiPG5nLWNvbnRhaW5lciAqbmdJZj1cInBvcnRhbHMubGVuZ3RoID4gMFwiPlxuICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IHBvcnRhbCBvZiBwb3J0YWxzXCI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSBbY2RrUG9ydGFsT3V0bGV0XT1cInBvcnRhbFwiPjwvbmctdGVtcGxhdGU+XG4gICAgPC9uZy1jb250YWluZXI+XG48L25nLWNvbnRhaW5lcj5cbiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
export const ESOLVE_CONNECT_MEDIA_CONFIG = new InjectionToken('esolve.connect.media.config');
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvbm5lY3QtbWVkaWEtY29uZmlnLnRva2VuLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL2Vzb2x2ZS1jb25uZWN0LW1lZGlhLWNvbmZpZy50b2tlbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBSS9DLE1BQU0sQ0FBQyxNQUFNLDJCQUEyQixHQUNwQyxJQUFJLGNBQWMsQ0FBMkIsNkJBQTZCLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEVzb2x2ZUNvbm5lY3RNZWRpYUNvbmZpZyB9IGZyb20gJy4vZXNvbHZlLWNvbm5lY3QtbWVkaWEuY29uZmlnJztcblxuZXhwb3J0IGNvbnN0IEVTT0xWRV9DT05ORUNUX01FRElBX0NPTkZJRyA9XG4gICAgbmV3IEluamVjdGlvblRva2VuPEVzb2x2ZUNvbm5lY3RNZWRpYUNvbmZpZz4oJ2Vzb2x2ZS5jb25uZWN0Lm1lZGlhLmNvbmZpZycpO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWNvbm5lY3QtbWVkaWEuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL2Vzb2x2ZS1jb25uZWN0LW1lZGlhLmNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlTGF5b3V0Q29uZmlnLCBFc29sdmVMYXlvdXRTZWN0aW9uQ29uZmlnIH0gZnJvbSAnLi9pbnRlcmZhY2VzJztcblxuZXhwb3J0IGludGVyZmFjZSBFc29sdmVDb25uZWN0TWVkaWFDb25maWcge1xuICAgIGxheW91dHM6IEVzb2x2ZUxheW91dENvbmZpZ1tdO1xuICAgIGRlZmF1bHRfbGF5b3V0Pzogc3RyaW5nO1xuICAgIHNlY3Rpb25zOiBFc29sdmVMYXlvdXRTZWN0aW9uQ29uZmlnW107XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWhlYWRpbmctcmVjb3JkLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3QvbWVkaWEvc3JjL2xpYi9pbnRlcmZhY2VzL2Vzb2x2ZS1oZWFkaW5nLXJlY29yZC5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRXNvbHZlSGVhZGluZ1JlY29yZCB7XG4gICAgaWQ6IG51bWJlcjtcbiAgICBpZGVudGlmaWVyOiBzdHJpbmc7XG4gICAgdmFsdWU6IHN0cmluZztcbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxheW91dC1jb25maWcuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL2ludGVyZmFjZXMvZXNvbHZlLWxheW91dC1jb25maWcuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnRUeXBlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XG5cbmltcG9ydCB7IEVzb2x2ZUxheW91dFNlY3Rpb25Db25maWcgfSBmcm9tICcuL2Vzb2x2ZS1sYXlvdXQtc2VjdGlvbi1jb25maWcuaW50ZXJmYWNlJztcblxuZXhwb3J0IGludGVyZmFjZSBFc29sdmVMYXlvdXRDb25maWcge1xuICAgIGtleTogc3RyaW5nO1xuICAgIGNvbXBvbmVudDogQ29tcG9uZW50VHlwZTxhbnk+O1xuICAgIHNlY3Rpb25zPzoge1xuICAgICAgICBba2V5OiBzdHJpbmddOiBFc29sdmVMYXlvdXRTZWN0aW9uQ29uZmlnW107XG4gICAgfTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLWxheW91dC1zZWN0aW9uLWNvbmZpZy5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvaW50ZXJmYWNlcy9lc29sdmUtbGF5b3V0LXNlY3Rpb24tY29uZmlnLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50VHlwZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuXG5pbXBvcnQgeyBFc29sdmVNZWRpYUxheW91dFNlY3Rpb25UeXBlIH0gZnJvbSAnLi4vdHlwZXMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEVzb2x2ZUxheW91dFNlY3Rpb25Db25maWcge1xuICAgIGtleTogRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uVHlwZTtcbiAgICBzdWJfa2V5Pzogc3RyaW5nO1xuICAgIGNvbXBvbmVudDogQ29tcG9uZW50VHlwZTxhbnk+O1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWdyb3VwLXJlY29yZC5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvaW50ZXJmYWNlcy9lc29sdmUtbWVkaWEtZ3JvdXAtcmVjb3JkLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBFc29sdmVNZWRpYUdyb3VwUmVjb3JkIHtcbiAgICBpZD86IG51bWJlcjtcbiAgICBuYW1lPzogc3RyaW5nO1xuICAgIHNlZl9uYW1lPzogc3RyaW5nO1xuICAgIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWxheW91dC1zZWN0aW9uLXJlY29yZC5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvaW50ZXJmYWNlcy9lc29sdmUtbWVkaWEtbGF5b3V0LXNlY3Rpb24tcmVjb3JkLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uVHlwZSB9IGZyb20gJy4uL3R5cGVzJztcblxuZXhwb3J0IGludGVyZmFjZSBFc29sdmVNZWRpYUxheW91dFNlY3Rpb25SZWNvcmQge1xuICAgIHR5cGU6IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvblR5cGU7XG4gICAgc3ViX3R5cGU/OiBzdHJpbmc7XG4gICAgaWRlbnRpZmllcjogc3RyaW5nO1xuICAgIGRhdGE/OiBhbnk7XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWxpbmstcmVjb3JkLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbmctZXNvbHZlLWNvbm5lY3QvbWVkaWEvc3JjL2xpYi9pbnRlcmZhY2VzL2Vzb2x2ZS1tZWRpYS1saW5rLXJlY29yZC5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVzb2x2ZVVybFRhcmdldCB9IGZyb20gJ0Blc29sdmUvbmctZXNvbHZlLWNvbm5lY3QnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEVzb2x2ZU1lZGlhTGlua1JlY29yZCB7XG4gICAgdXJsOiBzdHJpbmc7XG4gICAgY2FwdGlvbj86IHN0cmluZztcbiAgICB0YXJnZXQ/OiBFc29sdmVVcmxUYXJnZXQ7XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLXJlY29yZC5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvaW50ZXJmYWNlcy9lc29sdmUtbWVkaWEtcmVjb3JkLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgICBFc29sdmVDdXN0b21GaWVsZHMsXG4gICAgRXNvbHZlTWFudWZhY3R1cmVyUmVjb3JkLFxuICAgIEVzb2x2ZVJhbmdlUmVjb3JkLFxuICAgIEVzb2x2ZVRhZ1JlY29yZCxcbiAgICBFc29sdmVUb3BpY1JlY29yZCxcbiAgICBFc29sdmVVcmxUYXJnZXQsXG59IGZyb20gJ0Blc29sdmUvbmctZXNvbHZlLWNvbm5lY3QnO1xuXG5pbXBvcnQgeyBFc29sdmVNZWRpYUdyb3VwUmVjb3JkIH0gZnJvbSAnLi9lc29sdmUtbWVkaWEtZ3JvdXAtcmVjb3JkLmludGVyZmFjZSc7XG5pbXBvcnQgeyBFc29sdmVNZWRpYUxheW91dFNlY3Rpb25SZWNvcmQgfSBmcm9tICcuL2Vzb2x2ZS1tZWRpYS1sYXlvdXQtc2VjdGlvbi1yZWNvcmQuaW50ZXJmYWNlJztcblxuZXhwb3J0IGludGVyZmFjZSBFc29sdmVNZWRpYVJlY29yZCB7XG4gICAgaWRlbnRpZmllcjogc3RyaW5nO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgc3ViX3RpdGxlOiBzdHJpbmc7XG4gICAgYXJ0aWNsZTogc3RyaW5nO1xuICAgIGlkPzogbnVtYmVyO1xuICAgIG1lZGlhX2dyb3VwX2lkPzogbnVtYmVyO1xuICAgIG1lZGlhX2dyb3VwPzogRXNvbHZlTWVkaWFHcm91cFJlY29yZDtcbiAgICB0eGRhdGU/OiBzdHJpbmc7XG4gICAgc2VvX3BhZ2VfcHJpb3JpdHk/OiBzdHJpbmc7XG4gICAgc2VvX3BhZ2VfdXBkYXRlX2ZyZXF1ZW5jeT86IHN0cmluZztcbiAgICBzZW9fcGFnZV90aXRsZT86IHN0cmluZztcbiAgICBzZW9fa2V5d29yZHM/OiBzdHJpbmc7XG4gICAgc2VvX2Rlc2NyaXB0aW9uPzogc3RyaW5nO1xuICAgIHVzZXJpZD86IG51bWJlcjtcbiAgICBsYW5ndWFnZV9jb2RlPzogc3RyaW5nO1xuICAgIGFjdGl2ZT86IGJvb2xlYW47XG4gICAgc29ydF9wcmlvcml0eT86IG51bWJlcjtcbiAgICBvbmx5X2Rpc3BsYXlfd2hlbl9sb2dnZWRfb24/OiBib29sZWFuO1xuICAgIGlzX21pbm9yX2FydGljbGU/OiBib29sZWFuO1xuICAgIGlzX2JvdGhfbWFzdGVyX2FuZF9taW5vcl9hcnRpY2xlPzogYm9vbGVhbjtcbiAgICB1cmw/OiBzdHJpbmc7XG4gICAgc2VmX3VybD86IHN0cmluZztcbiAgICBsaW5rX2NhcHRpb24/OiBzdHJpbmc7XG4gICAgdGFyZ2V0PzogRXNvbHZlVXJsVGFyZ2V0O1xuICAgIG1vZGlmaWVkPzogc3RyaW5nO1xuICAgIGltYWdlX3VybD86IHN0cmluZztcbiAgICBpbWFnZV9jaGVja3N1bT86IHN0cmluZztcbiAgICBtYW51ZmFjdHVyZXI/OiBFc29sdmVNYW51ZmFjdHVyZXJSZWNvcmQ7XG4gICAgcmFuZ2U/OiBFc29sdmVSYW5nZVJlY29yZDtcbiAgICBsYXlvdXQ/OiBzdHJpbmc7XG4gICAgdGFncz86IEVzb2x2ZVRhZ1JlY29yZFtdO1xuICAgIHRvcGljcz86IEVzb2x2ZVRvcGljUmVjb3JkW107XG4gICAgc2VjdGlvbnM/OiB7XG4gICAgICAgIFtrZXk6IHN0cmluZ106IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvblJlY29yZFtdO1xuICAgIH07XG4gICAgY3VzdG9tX2ZpZWxkcz86IEVzb2x2ZUN1c3RvbUZpZWxkcztcbn1cbiJdfQ==
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './esolve-layout-config.interface';
|
|
2
|
+
export * from './esolve-layout-section-config.interface';
|
|
3
|
+
export * from './esolve-heading-record.interface';
|
|
4
|
+
export * from './esolve-media-record.interface';
|
|
5
|
+
export * from './esolve-media-group-record.interface';
|
|
6
|
+
export * from './esolve-media-layout-section-record.interface';
|
|
7
|
+
export * from './esolve-media-link-record.interface';
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL25nLWVzb2x2ZS1jb25uZWN0L21lZGlhL3NyYy9saWIvaW50ZXJmYWNlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLHNDQUFzQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbGF5b3V0LWNvbmZpZy5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbGF5b3V0LXNlY3Rpb24tY29uZmlnLmludGVyZmFjZSc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1oZWFkaW5nLXJlY29yZC5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbWVkaWEtcmVjb3JkLmludGVyZmFjZSc7XG5leHBvcnQgKiBmcm9tICcuL2Vzb2x2ZS1tZWRpYS1ncm91cC1yZWNvcmQuaW50ZXJmYWNlJztcbmV4cG9ydCAqIGZyb20gJy4vZXNvbHZlLW1lZGlhLWxheW91dC1zZWN0aW9uLXJlY29yZC5pbnRlcmZhY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9lc29sdmUtbWVkaWEtbGluay1yZWNvcmQuaW50ZXJmYWNlJztcbiJdfQ==
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
4
|
+
import { PortalModule } from '@angular/cdk/portal';
|
|
5
|
+
import { NgEsolveConnectModule } from '@esolve/ng-esolve-connect';
|
|
6
|
+
import { EsolveMediaLayoutComponent, EsolveMediaSectionComponent, } from './components';
|
|
7
|
+
import { ESOLVE_CONNECT_MEDIA_CONFIG } from './esolve-connect-media-config.token';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
class NgEsolveConnectMediaModule {
|
|
10
|
+
static withConfig(config) {
|
|
11
|
+
return {
|
|
12
|
+
ngModule: NgEsolveConnectMediaModule,
|
|
13
|
+
providers: [
|
|
14
|
+
{
|
|
15
|
+
provide: ESOLVE_CONNECT_MEDIA_CONFIG,
|
|
16
|
+
useValue: config,
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: NgEsolveConnectMediaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
22
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.4", ngImport: i0, type: NgEsolveConnectMediaModule, declarations: [EsolveMediaLayoutComponent, EsolveMediaSectionComponent], imports: [CommonModule,
|
|
23
|
+
HttpClientModule,
|
|
24
|
+
PortalModule,
|
|
25
|
+
NgEsolveConnectModule], exports: [EsolveMediaLayoutComponent, EsolveMediaSectionComponent] }); }
|
|
26
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: NgEsolveConnectMediaModule, imports: [CommonModule,
|
|
27
|
+
HttpClientModule,
|
|
28
|
+
PortalModule,
|
|
29
|
+
NgEsolveConnectModule] }); }
|
|
30
|
+
}
|
|
31
|
+
export { NgEsolveConnectMediaModule };
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: NgEsolveConnectMediaModule, decorators: [{
|
|
33
|
+
type: NgModule,
|
|
34
|
+
args: [{
|
|
35
|
+
declarations: [EsolveMediaLayoutComponent, EsolveMediaSectionComponent],
|
|
36
|
+
imports: [
|
|
37
|
+
CommonModule,
|
|
38
|
+
HttpClientModule,
|
|
39
|
+
PortalModule,
|
|
40
|
+
NgEsolveConnectModule,
|
|
41
|
+
],
|
|
42
|
+
exports: [EsolveMediaLayoutComponent, EsolveMediaSectionComponent],
|
|
43
|
+
}]
|
|
44
|
+
}] });
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctZXNvbHZlLWNvbm5lY3QtbWVkaWEubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL25nLWVzb2x2ZS1jb25uZWN0LW1lZGlhLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXVCLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDeEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRW5ELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRWxFLE9BQU8sRUFDSCwwQkFBMEIsRUFDMUIsMkJBQTJCLEdBQzlCLE1BQU0sY0FBYyxDQUFDO0FBRXRCLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQUVsRixNQVVhLDBCQUEwQjtJQUM1QixNQUFNLENBQUMsVUFBVSxDQUNwQixNQUFnQztRQUVoQyxPQUFPO1lBQ0gsUUFBUSxFQUFFLDBCQUEwQjtZQUNwQyxTQUFTLEVBQUU7Z0JBQ1A7b0JBQ0ksT0FBTyxFQUFFLDJCQUEyQjtvQkFDcEMsUUFBUSxFQUFFLE1BQU07aUJBQ25CO2FBQ0o7U0FDSixDQUFDO0lBQ04sQ0FBQzs4R0FiUSwwQkFBMEI7K0dBQTFCLDBCQUEwQixpQkFUcEIsMEJBQTBCLEVBQUUsMkJBQTJCLGFBRWxFLFlBQVk7WUFDWixnQkFBZ0I7WUFDaEIsWUFBWTtZQUNaLHFCQUFxQixhQUVmLDBCQUEwQixFQUFFLDJCQUEyQjsrR0FFeEQsMEJBQTBCLFlBUC9CLFlBQVk7WUFDWixnQkFBZ0I7WUFDaEIsWUFBWTtZQUNaLHFCQUFxQjs7U0FJaEIsMEJBQTBCOzJGQUExQiwwQkFBMEI7a0JBVnRDLFFBQVE7bUJBQUM7b0JBQ04sWUFBWSxFQUFFLENBQUMsMEJBQTBCLEVBQUUsMkJBQTJCLENBQUM7b0JBQ3ZFLE9BQU8sRUFBRTt3QkFDTCxZQUFZO3dCQUNaLGdCQUFnQjt3QkFDaEIsWUFBWTt3QkFDWixxQkFBcUI7cUJBQ3hCO29CQUNELE9BQU8sRUFBRSxDQUFDLDBCQUEwQixFQUFFLDJCQUEyQixDQUFDO2lCQUNyRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE1vZHVsZVdpdGhQcm92aWRlcnMsIE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgSHR0cENsaWVudE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcbmltcG9ydCB7IFBvcnRhbE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuXG5pbXBvcnQgeyBOZ0Vzb2x2ZUNvbm5lY3RNb2R1bGUgfSBmcm9tICdAZXNvbHZlL25nLWVzb2x2ZS1jb25uZWN0JztcblxuaW1wb3J0IHtcbiAgICBFc29sdmVNZWRpYUxheW91dENvbXBvbmVudCxcbiAgICBFc29sdmVNZWRpYVNlY3Rpb25Db21wb25lbnQsXG59IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBFc29sdmVDb25uZWN0TWVkaWFDb25maWcgfSBmcm9tICcuL2Vzb2x2ZS1jb25uZWN0LW1lZGlhLmNvbmZpZyc7XG5pbXBvcnQgeyBFU09MVkVfQ09OTkVDVF9NRURJQV9DT05GSUcgfSBmcm9tICcuL2Vzb2x2ZS1jb25uZWN0LW1lZGlhLWNvbmZpZy50b2tlbic7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbRXNvbHZlTWVkaWFMYXlvdXRDb21wb25lbnQsIEVzb2x2ZU1lZGlhU2VjdGlvbkNvbXBvbmVudF0sXG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIEh0dHBDbGllbnRNb2R1bGUsXG4gICAgICAgIFBvcnRhbE1vZHVsZSxcbiAgICAgICAgTmdFc29sdmVDb25uZWN0TW9kdWxlLFxuICAgIF0sXG4gICAgZXhwb3J0czogW0Vzb2x2ZU1lZGlhTGF5b3V0Q29tcG9uZW50LCBFc29sdmVNZWRpYVNlY3Rpb25Db21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBOZ0Vzb2x2ZUNvbm5lY3RNZWRpYU1vZHVsZSB7XG4gICAgcHVibGljIHN0YXRpYyB3aXRoQ29uZmlnKFxuICAgICAgICBjb25maWc6IEVzb2x2ZUNvbm5lY3RNZWRpYUNvbmZpZyxcbiAgICApOiBNb2R1bGVXaXRoUHJvdmlkZXJzPE5nRXNvbHZlQ29ubmVjdE1lZGlhTW9kdWxlPiB7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBuZ01vZHVsZTogTmdFc29sdmVDb25uZWN0TWVkaWFNb2R1bGUsXG4gICAgICAgICAgICBwcm92aWRlcnM6IFtcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIHByb3ZpZGU6IEVTT0xWRV9DT05ORUNUX01FRElBX0NPTkZJRyxcbiAgICAgICAgICAgICAgICAgICAgdXNlVmFsdWU6IGNvbmZpZyxcbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgXSxcbiAgICAgICAgfTtcbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { Inject, Injectable } from '@angular/core';
|
|
2
|
+
import { ESOLVE_CONNECT_MEDIA_CONFIG } from '../esolve-connect-media-config.token';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
class EsolveMediaLayoutService {
|
|
5
|
+
constructor(config) {
|
|
6
|
+
this.section_key_delimiter = '>>>';
|
|
7
|
+
this.layout_map = new Map();
|
|
8
|
+
this.section_map = new Map();
|
|
9
|
+
if (config.layouts.length === 0) {
|
|
10
|
+
throw new Error('No layouts have been defined');
|
|
11
|
+
}
|
|
12
|
+
for (const layout of config.layouts) {
|
|
13
|
+
this.setLayout(layout.key, layout.component);
|
|
14
|
+
if (layout.sections) {
|
|
15
|
+
for (const section_group_key in layout.sections) {
|
|
16
|
+
const sections = layout.sections[section_group_key];
|
|
17
|
+
for (const section of sections) {
|
|
18
|
+
const key_options = {
|
|
19
|
+
type: section.key,
|
|
20
|
+
sub_type: section.sub_key,
|
|
21
|
+
layout: layout.key,
|
|
22
|
+
};
|
|
23
|
+
if (section_group_key !== '__default') {
|
|
24
|
+
key_options.group = section_group_key;
|
|
25
|
+
}
|
|
26
|
+
this.setSection(section.component, key_options);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
const default_layout = config.default_layout;
|
|
32
|
+
if (default_layout) {
|
|
33
|
+
this.default_layout = default_layout;
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
this.default_layout = config.layouts[0].key;
|
|
37
|
+
}
|
|
38
|
+
if (config.sections.length > 0) {
|
|
39
|
+
for (const section of config.sections) {
|
|
40
|
+
const key_options = {
|
|
41
|
+
type: section.key,
|
|
42
|
+
sub_type: section.sub_key,
|
|
43
|
+
};
|
|
44
|
+
this.setSection(section.component, key_options);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
getMedia() {
|
|
49
|
+
if (!this.media) {
|
|
50
|
+
throw new Error('Media not declared');
|
|
51
|
+
}
|
|
52
|
+
return this.media;
|
|
53
|
+
}
|
|
54
|
+
setMedia(media) {
|
|
55
|
+
this.media = media;
|
|
56
|
+
}
|
|
57
|
+
getLayout() {
|
|
58
|
+
const media = this.getMedia();
|
|
59
|
+
let layout_key = media.layout;
|
|
60
|
+
if (layout_key === '') {
|
|
61
|
+
layout_key = this.default_layout;
|
|
62
|
+
}
|
|
63
|
+
return this.searchLayout(layout_key);
|
|
64
|
+
}
|
|
65
|
+
getSectionContent(key) {
|
|
66
|
+
const media = this.getMedia();
|
|
67
|
+
if (media.sections) {
|
|
68
|
+
const section = media.sections.get(key);
|
|
69
|
+
if (section) {
|
|
70
|
+
return section;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return [];
|
|
74
|
+
}
|
|
75
|
+
getSectionComponent(key, section) {
|
|
76
|
+
const type = section.type;
|
|
77
|
+
const sub_type = section.sub_type;
|
|
78
|
+
const { layout } = this.getMedia();
|
|
79
|
+
const section_key = this.createSectionMapKey({
|
|
80
|
+
type,
|
|
81
|
+
sub_type,
|
|
82
|
+
layout,
|
|
83
|
+
group: key,
|
|
84
|
+
});
|
|
85
|
+
let component = this.section_map.get(section_key);
|
|
86
|
+
if (component) {
|
|
87
|
+
return component;
|
|
88
|
+
}
|
|
89
|
+
const layout_key = this.createSectionMapKey({
|
|
90
|
+
type,
|
|
91
|
+
sub_type,
|
|
92
|
+
layout,
|
|
93
|
+
});
|
|
94
|
+
component = this.section_map.get(layout_key);
|
|
95
|
+
if (component) {
|
|
96
|
+
return component;
|
|
97
|
+
}
|
|
98
|
+
const base_key = this.createSectionMapKey({
|
|
99
|
+
type,
|
|
100
|
+
sub_type,
|
|
101
|
+
});
|
|
102
|
+
component = this.section_map.get(base_key);
|
|
103
|
+
if (component) {
|
|
104
|
+
return component;
|
|
105
|
+
}
|
|
106
|
+
throw new Error('Section component not defined');
|
|
107
|
+
}
|
|
108
|
+
searchLayout(layout_key) {
|
|
109
|
+
const component = this.layout_map.get(layout_key);
|
|
110
|
+
if (!component) {
|
|
111
|
+
throw new Error('Layout not declared');
|
|
112
|
+
}
|
|
113
|
+
return component;
|
|
114
|
+
}
|
|
115
|
+
setLayout(key, component) {
|
|
116
|
+
this.layout_map.set(key, component);
|
|
117
|
+
}
|
|
118
|
+
setSection(component, key_options) {
|
|
119
|
+
const key = this.createSectionMapKey(key_options);
|
|
120
|
+
this.section_map.set(key, component);
|
|
121
|
+
}
|
|
122
|
+
createSectionMapKey(key_options) {
|
|
123
|
+
const { type, sub_type, layout, group } = key_options;
|
|
124
|
+
const key_array = [type];
|
|
125
|
+
if (sub_type) {
|
|
126
|
+
key_array.push(sub_type);
|
|
127
|
+
}
|
|
128
|
+
if (layout) {
|
|
129
|
+
key_array.push(layout);
|
|
130
|
+
if (group) {
|
|
131
|
+
key_array.push(group);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
return key_array.join(this.section_key_delimiter);
|
|
135
|
+
}
|
|
136
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaLayoutService, deps: [{ token: ESOLVE_CONNECT_MEDIA_CONFIG }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
137
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaLayoutService }); }
|
|
138
|
+
}
|
|
139
|
+
export { EsolveMediaLayoutService };
|
|
140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.4", ngImport: i0, type: EsolveMediaLayoutService, decorators: [{
|
|
141
|
+
type: Injectable
|
|
142
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
143
|
+
type: Inject,
|
|
144
|
+
args: [ESOLVE_CONNECT_MEDIA_CONFIG]
|
|
145
|
+
}] }]; } });
|
|
146
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLW1lZGlhLWxheW91dC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9uZy1lc29sdmUtY29ubmVjdC9tZWRpYS9zcmMvbGliL3NlcnZpY2VzL2Vzb2x2ZS1tZWRpYS1sYXlvdXQuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsTUFBTSxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUtuRCxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQzs7QUFZbkYsTUFDYSx3QkFBd0I7SUFRakMsWUFDeUMsTUFBZ0M7UUFSeEQsMEJBQXFCLEdBQUcsS0FBSyxDQUFDO1FBR3ZDLGVBQVUsR0FBaUIsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUNyQyxnQkFBVyxHQUFpQixJQUFJLEdBQUcsRUFBRSxDQUFDO1FBTTFDLElBQUksTUFBTSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFO1lBQzdCLE1BQU0sSUFBSSxLQUFLLENBQUMsOEJBQThCLENBQUMsQ0FBQztTQUNuRDtRQUVELEtBQUssTUFBTSxNQUFNLElBQUksTUFBTSxDQUFDLE9BQU8sRUFBRTtZQUNqQyxJQUFJLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxHQUFHLEVBQUUsTUFBTSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBRTdDLElBQUksTUFBTSxDQUFDLFFBQVEsRUFBRTtnQkFDakIsS0FBSyxNQUFNLGlCQUFpQixJQUFJLE1BQU0sQ0FBQyxRQUFRLEVBQUU7b0JBQzdDLE1BQU0sUUFBUSxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsaUJBQWlCLENBQUMsQ0FBQztvQkFFcEQsS0FBSyxNQUFNLE9BQU8sSUFBSSxRQUFRLEVBQUU7d0JBQzVCLE1BQU0sV0FBVyxHQUFzQjs0QkFDbkMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxHQUFHOzRCQUNqQixRQUFRLEVBQUUsT0FBTyxDQUFDLE9BQU87NEJBQ3pCLE1BQU0sRUFBRSxNQUFNLENBQUMsR0FBRzt5QkFDckIsQ0FBQzt3QkFFRixJQUFJLGlCQUFpQixLQUFLLFdBQVcsRUFBRTs0QkFDbkMsV0FBVyxDQUFDLEtBQUssR0FBRyxpQkFBaUIsQ0FBQzt5QkFDekM7d0JBRUQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsU0FBUyxFQUFFLFdBQVcsQ0FBQyxDQUFDO3FCQUNuRDtpQkFDSjthQUNKO1NBQ0o7UUFFRCxNQUFNLGNBQWMsR0FBRyxNQUFNLENBQUMsY0FBYyxDQUFDO1FBRTdDLElBQUksY0FBYyxFQUFFO1lBQ2hCLElBQUksQ0FBQyxjQUFjLEdBQUcsY0FBYyxDQUFDO1NBQ3hDO2FBQU07WUFDSCxJQUFJLENBQUMsY0FBYyxHQUFHLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDO1NBQy9DO1FBRUQsSUFBSSxNQUFNLENBQUMsUUFBUSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDNUIsS0FBSyxNQUFNLE9BQU8sSUFBSSxNQUFNLENBQUMsUUFBUSxFQUFFO2dCQUNuQyxNQUFNLFdBQVcsR0FBc0I7b0JBQ25DLElBQUksRUFBRSxPQUFPLENBQUMsR0FBRztvQkFDakIsUUFBUSxFQUFFLE9BQU8sQ0FBQyxPQUFPO2lCQUM1QixDQUFDO2dCQUVGLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxXQUFXLENBQUMsQ0FBQzthQUNuRDtTQUNKO0lBQ0wsQ0FBQztJQUVNLFFBQVE7UUFDWCxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRTtZQUNiLE1BQU0sSUFBSSxLQUFLLENBQUMsb0JBQW9CLENBQUMsQ0FBQztTQUN6QztRQUVELE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQztJQUN0QixDQUFDO0lBRU0sUUFBUSxDQUFDLEtBQXlCO1FBQ3JDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3ZCLENBQUM7SUFFTSxTQUFTO1FBQ1osTUFBTSxLQUFLLEdBQUcsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBRTlCLElBQUksVUFBVSxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUM7UUFFOUIsSUFBSSxVQUFVLEtBQUssRUFBRSxFQUFFO1lBQ25CLFVBQVUsR0FBRyxJQUFJLENBQUMsY0FBYyxDQUFDO1NBQ3BDO1FBRUQsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxHQUFXO1FBQ2hDLE1BQU0sS0FBSyxHQUFHLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUU5QixJQUFJLEtBQUssQ0FBQyxRQUFRLEVBQUU7WUFDaEIsTUFBTSxPQUFPLEdBQUcsS0FBSyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUM7WUFFeEMsSUFBSSxPQUFPLEVBQUU7Z0JBQ1QsT0FBTyxPQUFPLENBQUM7YUFDbEI7U0FDSjtRQUVELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQztJQUVNLG1CQUFtQixDQUFDLEdBQVcsRUFBRSxPQUFpQztRQUNyRSxNQUFNLElBQUksR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDO1FBQzFCLE1BQU0sUUFBUSxHQUFHLE9BQU8sQ0FBQyxRQUFRLENBQUM7UUFDbEMsTUFBTSxFQUFFLE1BQU0sRUFBRSxHQUFHLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUVuQyxNQUFNLFdBQVcsR0FBRyxJQUFJLENBQUMsbUJBQW1CLENBQUM7WUFDekMsSUFBSTtZQUNKLFFBQVE7WUFDUixNQUFNO1lBQ04sS0FBSyxFQUFFLEdBQUc7U0FDYixDQUFDLENBQUM7UUFFSCxJQUFJLFNBQVMsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLEdBQUcsQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUVsRCxJQUFJLFNBQVMsRUFBRTtZQUNYLE9BQU8sU0FBUyxDQUFDO1NBQ3BCO1FBRUQsTUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDO1lBQ3hDLElBQUk7WUFDSixRQUFRO1lBQ1IsTUFBTTtTQUNULENBQUMsQ0FBQztRQUVILFNBQVMsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUU3QyxJQUFJLFNBQVMsRUFBRTtZQUNYLE9BQU8sU0FBUyxDQUFDO1NBQ3BCO1FBRUQsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDO1lBQ3RDLElBQUk7WUFDSixRQUFRO1NBQ1gsQ0FBQyxDQUFDO1FBRUgsU0FBUyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBRTNDLElBQUksU0FBUyxFQUFFO1lBQ1gsT0FBTyxTQUFTLENBQUM7U0FDcEI7UUFFRCxNQUFNLElBQUksS0FBSyxDQUFDLCtCQUErQixDQUFDLENBQUM7SUFDckQsQ0FBQztJQUVPLFlBQVksQ0FBQyxVQUFrQjtRQUNuQyxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUVsRCxJQUFJLENBQUMsU0FBUyxFQUFFO1lBQ1osTUFBTSxJQUFJLEtBQUssQ0FBQyxxQkFBcUIsQ0FBQyxDQUFDO1NBQzFDO1FBRUQsT0FBTyxTQUFTLENBQUM7SUFDckIsQ0FBQztJQUVPLFNBQVMsQ0FBQyxHQUFXLEVBQUUsU0FBNkI7UUFDeEQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsR0FBRyxFQUFFLFNBQVMsQ0FBQyxDQUFDO0lBQ3hDLENBQUM7SUFFTyxVQUFVLENBQ2QsU0FBNkIsRUFDN0IsV0FBOEI7UUFFOUIsTUFBTSxHQUFHLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDLFdBQVcsQ0FBQyxDQUFDO1FBRWxELElBQUksQ0FBQyxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxTQUFTLENBQUMsQ0FBQztJQUN6QyxDQUFDO0lBRU8sbUJBQW1CLENBQUMsV0FBOEI7UUFDdEQsTUFBTSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxHQUFHLFdBQVcsQ0FBQztRQUV0RCxNQUFNLFNBQVMsR0FBYSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRW5DLElBQUksUUFBUSxFQUFFO1lBQ1YsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztTQUM1QjtRQUVELElBQUksTUFBTSxFQUFFO1lBQ1IsU0FBUyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUV2QixJQUFJLEtBQUssRUFBRTtnQkFDUCxTQUFTLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO2FBQ3pCO1NBQ0o7UUFFRCxPQUFPLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLHFCQUFxQixDQUFDLENBQUM7SUFDdEQsQ0FBQzs4R0F0TFEsd0JBQXdCLGtCQVNyQiwyQkFBMkI7a0hBVDlCLHdCQUF3Qjs7U0FBeEIsd0JBQXdCOzJGQUF4Qix3QkFBd0I7a0JBRHBDLFVBQVU7OzBCQVVGLE1BQU07MkJBQUMsMkJBQTJCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50VHlwZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuaW1wb3J0IHsgSW5qZWN0LCBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEVzb2x2ZU1lZGlhQXJ0aWNsZSwgRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uIH0gZnJvbSAnLi4vY2xhc3Nlcyc7XG5pbXBvcnQgeyBFc29sdmVNZWRpYUxheW91dFNlY3Rpb25UeXBlIH0gZnJvbSAnLi4vdHlwZXMnO1xuXG5pbXBvcnQgeyBFU09MVkVfQ09OTkVDVF9NRURJQV9DT05GSUcgfSBmcm9tICcuLi9lc29sdmUtY29ubmVjdC1tZWRpYS1jb25maWcudG9rZW4nO1xuaW1wb3J0IHsgRXNvbHZlQ29ubmVjdE1lZGlhQ29uZmlnIH0gZnJvbSAnLi4vZXNvbHZlLWNvbm5lY3QtbWVkaWEuY29uZmlnJztcblxudHlwZSBDb21wb25lbnRNYXAgPSBNYXA8c3RyaW5nLCBDb21wb25lbnRUeXBlPGFueT4+O1xuXG50eXBlIFNlY3Rpb25LZXlPcHRpb25zID0ge1xuICAgIHR5cGU6IEVzb2x2ZU1lZGlhTGF5b3V0U2VjdGlvblR5cGU7XG4gICAgc3ViX3R5cGU/OiBzdHJpbmc7XG4gICAgbGF5b3V0Pzogc3RyaW5nO1xuICAgIGdyb3VwPzogc3RyaW5nO1xufTtcblxuQEluamVjdGFibGUoKVxuZXhwb3J0IGNsYXNzIEVzb2x2ZU1lZGlhTGF5b3V0U2VydmljZSB7XG4gICAgcHJpdmF0ZSByZWFkb25seSBzZWN0aW9uX2tleV9kZWxpbWl0ZXIgPSAnPj4+JztcblxuICAgIHByaXZhdGUgbWVkaWE/OiBFc29sdmVNZWRpYUFydGljbGU7XG4gICAgcHJpdmF0ZSBsYXlvdXRfbWFwOiBDb21wb25lbnRNYXAgPSBuZXcgTWFwKCk7XG4gICAgcHJpdmF0ZSBzZWN0aW9uX21hcDogQ29tcG9uZW50TWFwID0gbmV3IE1hcCgpO1xuICAgIHByaXZhdGUgZGVmYXVsdF9sYXlvdXQ6IHN0cmluZztcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBASW5qZWN0KEVTT0xWRV9DT05ORUNUX01FRElBX0NPTkZJRykgY29uZmlnOiBFc29sdmVDb25uZWN0TWVkaWFDb25maWcsXG4gICAgKSB7XG4gICAgICAgIGlmIChjb25maWcubGF5b3V0cy5sZW5ndGggPT09IDApIHtcbiAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcignTm8gbGF5b3V0cyBoYXZlIGJlZW4gZGVmaW5lZCcpO1xuICAgICAgICB9XG5cbiAgICAgICAgZm9yIChjb25zdCBsYXlvdXQgb2YgY29uZmlnLmxheW91dHMpIHtcbiAgICAgICAgICAgIHRoaXMuc2V0TGF5b3V0KGxheW91dC5rZXksIGxheW91dC5jb21wb25lbnQpO1xuXG4gICAgICAgICAgICBpZiAobGF5b3V0LnNlY3Rpb25zKSB7XG4gICAgICAgICAgICAgICAgZm9yIChjb25zdCBzZWN0aW9uX2dyb3VwX2tleSBpbiBsYXlvdXQuc2VjdGlvbnMpIHtcbiAgICAgICAgICAgICAgICAgICAgY29uc3Qgc2VjdGlvbnMgPSBsYXlvdXQuc2VjdGlvbnNbc2VjdGlvbl9ncm91cF9rZXldO1xuXG4gICAgICAgICAgICAgICAgICAgIGZvciAoY29uc3Qgc2VjdGlvbiBvZiBzZWN0aW9ucykge1xuICAgICAgICAgICAgICAgICAgICAgICAgY29uc3Qga2V5X29wdGlvbnM6IFNlY3Rpb25LZXlPcHRpb25zID0ge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHR5cGU6IHNlY3Rpb24ua2V5LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHN1Yl90eXBlOiBzZWN0aW9uLnN1Yl9rZXksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgbGF5b3V0OiBsYXlvdXQua2V5LFxuICAgICAgICAgICAgICAgICAgICAgICAgfTtcblxuICAgICAgICAgICAgICAgICAgICAgICAgaWYgKHNlY3Rpb25fZ3JvdXBfa2V5ICE9PSAnX19kZWZhdWx0Jykge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGtleV9vcHRpb25zLmdyb3VwID0gc2VjdGlvbl9ncm91cF9rZXk7XG4gICAgICAgICAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuc2V0U2VjdGlvbihzZWN0aW9uLmNvbXBvbmVudCwga2V5X29wdGlvbnMpO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgY29uc3QgZGVmYXVsdF9sYXlvdXQgPSBjb25maWcuZGVmYXVsdF9sYXlvdXQ7XG5cbiAgICAgICAgaWYgKGRlZmF1bHRfbGF5b3V0KSB7XG4gICAgICAgICAgICB0aGlzLmRlZmF1bHRfbGF5b3V0ID0gZGVmYXVsdF9sYXlvdXQ7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLmRlZmF1bHRfbGF5b3V0ID0gY29uZmlnLmxheW91dHNbMF0ua2V5O1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKGNvbmZpZy5zZWN0aW9ucy5sZW5ndGggPiAwKSB7XG4gICAgICAgICAgICBmb3IgKGNvbnN0IHNlY3Rpb24gb2YgY29uZmlnLnNlY3Rpb25zKSB7XG4gICAgICAgICAgICAgICAgY29uc3Qga2V5X29wdGlvbnM6IFNlY3Rpb25LZXlPcHRpb25zID0ge1xuICAgICAgICAgICAgICAgICAgICB0eXBlOiBzZWN0aW9uLmtleSxcbiAgICAgICAgICAgICAgICAgICAgc3ViX3R5cGU6IHNlY3Rpb24uc3ViX2tleSxcbiAgICAgICAgICAgICAgICB9O1xuXG4gICAgICAgICAgICAgICAgdGhpcy5zZXRTZWN0aW9uKHNlY3Rpb24uY29tcG9uZW50LCBrZXlfb3B0aW9ucyk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0TWVkaWEoKSB7XG4gICAgICAgIGlmICghdGhpcy5tZWRpYSkge1xuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKCdNZWRpYSBub3QgZGVjbGFyZWQnKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiB0aGlzLm1lZGlhO1xuICAgIH1cblxuICAgIHB1YmxpYyBzZXRNZWRpYShtZWRpYTogRXNvbHZlTWVkaWFBcnRpY2xlKSB7XG4gICAgICAgIHRoaXMubWVkaWEgPSBtZWRpYTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0TGF5b3V0KCkge1xuICAgICAgICBjb25zdCBtZWRpYSA9IHRoaXMuZ2V0TWVkaWEoKTtcblxuICAgICAgICBsZXQgbGF5b3V0X2tleSA9IG1lZGlhLmxheW91dDtcblxuICAgICAgICBpZiAobGF5b3V0X2tleSA9PT0gJycpIHtcbiAgICAgICAgICAgIGxheW91dF9rZXkgPSB0aGlzLmRlZmF1bHRfbGF5b3V0O1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIHRoaXMuc2VhcmNoTGF5b3V0KGxheW91dF9rZXkpO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXRTZWN0aW9uQ29udGVudChrZXk6IHN0cmluZykge1xuICAgICAgICBjb25zdCBtZWRpYSA9IHRoaXMuZ2V0TWVkaWEoKTtcblxuICAgICAgICBpZiAobWVkaWEuc2VjdGlvbnMpIHtcbiAgICAgICAgICAgIGNvbnN0IHNlY3Rpb24gPSBtZWRpYS5zZWN0aW9ucy5nZXQoa2V5KTtcblxuICAgICAgICAgICAgaWYgKHNlY3Rpb24pIHtcbiAgICAgICAgICAgICAgICByZXR1cm4gc2VjdGlvbjtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBbXTtcbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0U2VjdGlvbkNvbXBvbmVudChrZXk6IHN0cmluZywgc2VjdGlvbjogRXNvbHZlTWVkaWFMYXlvdXRTZWN0aW9uKSB7XG4gICAgICAgIGNvbnN0IHR5cGUgPSBzZWN0aW9uLnR5cGU7XG4gICAgICAgIGNvbnN0IHN1Yl90eXBlID0gc2VjdGlvbi5zdWJfdHlwZTtcbiAgICAgICAgY29uc3QgeyBsYXlvdXQgfSA9IHRoaXMuZ2V0TWVkaWEoKTtcblxuICAgICAgICBjb25zdCBzZWN0aW9uX2tleSA9IHRoaXMuY3JlYXRlU2VjdGlvbk1hcEtleSh7XG4gICAgICAgICAgICB0eXBlLFxuICAgICAgICAgICAgc3ViX3R5cGUsXG4gICAgICAgICAgICBsYXlvdXQsXG4gICAgICAgICAgICBncm91cDoga2V5LFxuICAgICAgICB9KTtcblxuICAgICAgICBsZXQgY29tcG9uZW50ID0gdGhpcy5zZWN0aW9uX21hcC5nZXQoc2VjdGlvbl9rZXkpO1xuXG4gICAgICAgIGlmIChjb21wb25lbnQpIHtcbiAgICAgICAgICAgIHJldHVybiBjb21wb25lbnQ7XG4gICAgICAgIH1cblxuICAgICAgICBjb25zdCBsYXlvdXRfa2V5ID0gdGhpcy5jcmVhdGVTZWN0aW9uTWFwS2V5KHtcbiAgICAgICAgICAgIHR5cGUsXG4gICAgICAgICAgICBzdWJfdHlwZSxcbiAgICAgICAgICAgIGxheW91dCxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgY29tcG9uZW50ID0gdGhpcy5zZWN0aW9uX21hcC5nZXQobGF5b3V0X2tleSk7XG5cbiAgICAgICAgaWYgKGNvbXBvbmVudCkge1xuICAgICAgICAgICAgcmV0dXJuIGNvbXBvbmVudDtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IGJhc2Vfa2V5ID0gdGhpcy5jcmVhdGVTZWN0aW9uTWFwS2V5KHtcbiAgICAgICAgICAgIHR5cGUsXG4gICAgICAgICAgICBzdWJfdHlwZSxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgY29tcG9uZW50ID0gdGhpcy5zZWN0aW9uX21hcC5nZXQoYmFzZV9rZXkpO1xuXG4gICAgICAgIGlmIChjb21wb25lbnQpIHtcbiAgICAgICAgICAgIHJldHVybiBjb21wb25lbnQ7XG4gICAgICAgIH1cblxuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoJ1NlY3Rpb24gY29tcG9uZW50IG5vdCBkZWZpbmVkJyk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBzZWFyY2hMYXlvdXQobGF5b3V0X2tleTogc3RyaW5nKSB7XG4gICAgICAgIGNvbnN0IGNvbXBvbmVudCA9IHRoaXMubGF5b3V0X21hcC5nZXQobGF5b3V0X2tleSk7XG5cbiAgICAgICAgaWYgKCFjb21wb25lbnQpIHtcbiAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcignTGF5b3V0IG5vdCBkZWNsYXJlZCcpO1xuICAgICAgICB9XG5cbiAgICAgICAgcmV0dXJuIGNvbXBvbmVudDtcbiAgICB9XG5cbiAgICBwcml2YXRlIHNldExheW91dChrZXk6IHN0cmluZywgY29tcG9uZW50OiBDb21wb25lbnRUeXBlPGFueT4pIHtcbiAgICAgICAgdGhpcy5sYXlvdXRfbWFwLnNldChrZXksIGNvbXBvbmVudCk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBzZXRTZWN0aW9uKFxuICAgICAgICBjb21wb25lbnQ6IENvbXBvbmVudFR5cGU8YW55PixcbiAgICAgICAga2V5X29wdGlvbnM6IFNlY3Rpb25LZXlPcHRpb25zLFxuICAgICkge1xuICAgICAgICBjb25zdCBrZXkgPSB0aGlzLmNyZWF0ZVNlY3Rpb25NYXBLZXkoa2V5X29wdGlvbnMpO1xuXG4gICAgICAgIHRoaXMuc2VjdGlvbl9tYXAuc2V0KGtleSwgY29tcG9uZW50KTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGNyZWF0ZVNlY3Rpb25NYXBLZXkoa2V5X29wdGlvbnM6IFNlY3Rpb25LZXlPcHRpb25zKSB7XG4gICAgICAgIGNvbnN0IHsgdHlwZSwgc3ViX3R5cGUsIGxheW91dCwgZ3JvdXAgfSA9IGtleV9vcHRpb25zO1xuXG4gICAgICAgIGNvbnN0IGtleV9hcnJheTogc3RyaW5nW10gPSBbdHlwZV07XG5cbiAgICAgICAgaWYgKHN1Yl90eXBlKSB7XG4gICAgICAgICAgICBrZXlfYXJyYXkucHVzaChzdWJfdHlwZSk7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAobGF5b3V0KSB7XG4gICAgICAgICAgICBrZXlfYXJyYXkucHVzaChsYXlvdXQpO1xuXG4gICAgICAgICAgICBpZiAoZ3JvdXApIHtcbiAgICAgICAgICAgICAgICBrZXlfYXJyYXkucHVzaChncm91cCk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4ga2V5X2FycmF5LmpvaW4odGhpcy5zZWN0aW9uX2tleV9kZWxpbWl0ZXIpO1xuICAgIH1cbn1cbiJdfQ==
|