@esolve/ng-esolve-connect 0.141.0 → 0.142.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.
|
@@ -1413,6 +1413,10 @@ class EsolveStockItemBase {
|
|
|
1413
1413
|
* Material id
|
|
1414
1414
|
*/
|
|
1415
1415
|
this.type_of_material_id = 0;
|
|
1416
|
+
/**
|
|
1417
|
+
* Item author
|
|
1418
|
+
*/
|
|
1419
|
+
this.author = '';
|
|
1416
1420
|
/**
|
|
1417
1421
|
* Image filename
|
|
1418
1422
|
*/
|
|
@@ -1443,6 +1447,7 @@ class EsolveStockItemBase {
|
|
|
1443
1447
|
this.extended_description = record.extended_description ?? '';
|
|
1444
1448
|
this.image_name = record.image_name ?? '';
|
|
1445
1449
|
this.image_last_modified = record.image_last_modified ?? '';
|
|
1450
|
+
this.author = record.author ?? '';
|
|
1446
1451
|
this.category_id = record.category_id ?? '';
|
|
1447
1452
|
this.subcategory_id = +(record.subcategory_id ?? 0);
|
|
1448
1453
|
this.manufacturers_id = +(record.manufacturers_id ?? 0);
|
|
@@ -2795,6 +2800,117 @@ class EsolveCartItem {
|
|
|
2795
2800
|
}
|
|
2796
2801
|
}
|
|
2797
2802
|
|
|
2803
|
+
/**
|
|
2804
|
+
* One item that makes up a promotion, with progress toward qualifying.
|
|
2805
|
+
*/
|
|
2806
|
+
class EsolveCartPromotionProgressQualifyingItem {
|
|
2807
|
+
constructor(record) {
|
|
2808
|
+
this.type = 'code';
|
|
2809
|
+
/**
|
|
2810
|
+
* The raw identifier: stock `code` (string), `subcategory_id` (int),
|
|
2811
|
+
* `category_id` (string), or `null` for `everything`.
|
|
2812
|
+
*/
|
|
2813
|
+
this.value = null;
|
|
2814
|
+
this.required = 0;
|
|
2815
|
+
this.qualifying = 0;
|
|
2816
|
+
this.remaining = 0;
|
|
2817
|
+
/**
|
|
2818
|
+
* `true` when this item's `remaining` is `0` (the cart has enough of it).
|
|
2819
|
+
*/
|
|
2820
|
+
this.completed = false;
|
|
2821
|
+
if (!record) {
|
|
2822
|
+
return;
|
|
2823
|
+
}
|
|
2824
|
+
this.type = record.type ?? 'code';
|
|
2825
|
+
this.value = record.value ?? null;
|
|
2826
|
+
this.required = +(record.required ?? 0);
|
|
2827
|
+
this.qualifying = +(record.qualifying ?? 0);
|
|
2828
|
+
this.remaining = +(record.remaining ?? 0);
|
|
2829
|
+
this.completed = record.completed ?? false;
|
|
2830
|
+
}
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
/**
|
|
2834
|
+
* One active promotion the cart has not yet qualified for, with progress
|
|
2835
|
+
* toward qualifying (returned by `get-cart-promotion-progress`).
|
|
2836
|
+
*/
|
|
2837
|
+
class EsolveCartPromotionProgressItem {
|
|
2838
|
+
constructor(record) {
|
|
2839
|
+
/**
|
|
2840
|
+
* How the remaining items relate to completing the promotion.
|
|
2841
|
+
*/
|
|
2842
|
+
this.mode = 'qty';
|
|
2843
|
+
/**
|
|
2844
|
+
* Engine discount type the record originated from: `1` = code,
|
|
2845
|
+
* `2` = subcategory, `3` = everything, `4` = category, `5` = group/"any-of".
|
|
2846
|
+
*/
|
|
2847
|
+
this.type = 0;
|
|
2848
|
+
/**
|
|
2849
|
+
* Linked special ID (`0` if the discount is not tied to a special).
|
|
2850
|
+
*/
|
|
2851
|
+
this.specials_id = 0;
|
|
2852
|
+
/**
|
|
2853
|
+
* Discount ID (`0` for group promotions, which are tracked per special).
|
|
2854
|
+
*/
|
|
2855
|
+
this.discount_id = 0;
|
|
2856
|
+
/**
|
|
2857
|
+
* Headline quantity required.
|
|
2858
|
+
*/
|
|
2859
|
+
this.required = 0;
|
|
2860
|
+
/**
|
|
2861
|
+
* Headline quantity the cart already has toward `required`.
|
|
2862
|
+
*/
|
|
2863
|
+
this.qualifying = 0;
|
|
2864
|
+
/**
|
|
2865
|
+
* Headline quantity still needed (`required − qualifying`).
|
|
2866
|
+
*/
|
|
2867
|
+
this.remaining = 0;
|
|
2868
|
+
/**
|
|
2869
|
+
* Items that make up the promotion. Authoritative.
|
|
2870
|
+
*/
|
|
2871
|
+
this.qualifying_items = [];
|
|
2872
|
+
/**
|
|
2873
|
+
* Configured discount percentage that applies once qualified
|
|
2874
|
+
* (meaningful when `discount_type` is `"percentage"`).
|
|
2875
|
+
*/
|
|
2876
|
+
this.discount = 0;
|
|
2877
|
+
/**
|
|
2878
|
+
* Configured fixed discounted price (excluding tax) that applies once
|
|
2879
|
+
* qualified (meaningful when `discount_type` is `"price"`).
|
|
2880
|
+
*/
|
|
2881
|
+
this.discounted_price = 0;
|
|
2882
|
+
this.discount_type = 'none';
|
|
2883
|
+
/**
|
|
2884
|
+
* Default, ready-to-show reward text. Contains no currency symbol.
|
|
2885
|
+
*/
|
|
2886
|
+
this.offer = '';
|
|
2887
|
+
/**
|
|
2888
|
+
* Default, ready-to-show indicator text (the "what to add" nudge).
|
|
2889
|
+
*/
|
|
2890
|
+
this.message = '';
|
|
2891
|
+
if (!record) {
|
|
2892
|
+
return;
|
|
2893
|
+
}
|
|
2894
|
+
this.mode = record.mode ?? 'qty';
|
|
2895
|
+
this.type = +(record.type ?? 0);
|
|
2896
|
+
this.specials_id = +(record.specials_id ?? 0);
|
|
2897
|
+
this.discount_id = +(record.discount_id ?? 0);
|
|
2898
|
+
this.required = +(record.required ?? 0);
|
|
2899
|
+
this.qualifying = +(record.qualifying ?? 0);
|
|
2900
|
+
this.remaining = +(record.remaining ?? 0);
|
|
2901
|
+
this.discount = +(record.discount ?? 0);
|
|
2902
|
+
this.discounted_price = +(record.discounted_price ?? 0);
|
|
2903
|
+
this.discount_type = record.discount_type ?? 'none';
|
|
2904
|
+
this.offer = record.offer ?? '';
|
|
2905
|
+
this.message = record.message ?? '';
|
|
2906
|
+
if (record.qualifying_items) {
|
|
2907
|
+
for (const qualifying_item of record.qualifying_items) {
|
|
2908
|
+
this.qualifying_items.push(new EsolveCartPromotionProgressQualifyingItem(qualifying_item));
|
|
2909
|
+
}
|
|
2910
|
+
}
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2798
2914
|
class EsolveCartTaxBreakdown {
|
|
2799
2915
|
constructor() {
|
|
2800
2916
|
this.goods = 0;
|
|
@@ -3919,6 +4035,28 @@ class EsolveCartService {
|
|
|
3919
4035
|
return this.processCartAlternatives(response.records);
|
|
3920
4036
|
}));
|
|
3921
4037
|
}
|
|
4038
|
+
/**
|
|
4039
|
+
* Retrieves the active promotions the cart has not yet qualified for, with a
|
|
4040
|
+
* ready-to-display indicator message and the structured data behind it.
|
|
4041
|
+
*
|
|
4042
|
+
* The endpoint is read-only — it never applies discounts and never writes to
|
|
4043
|
+
* the cart. Call it whenever the cart changes (the same trigger used for
|
|
4044
|
+
* `getCart` / `getTotals`). A `no_records` soft-error (`records: []`) means
|
|
4045
|
+
* there is nothing to display — not a real failure — and resolves to an
|
|
4046
|
+
* empty array.
|
|
4047
|
+
*
|
|
4048
|
+
* @returns An `Observable` with an array of promotion progress entries
|
|
4049
|
+
*/
|
|
4050
|
+
getCartPromotionProgress() {
|
|
4051
|
+
return this.http
|
|
4052
|
+
.get(`${this.config.api_url}/get-cart-promotion-progress.php`)
|
|
4053
|
+
.pipe(map((response) => {
|
|
4054
|
+
if (response.records === undefined) {
|
|
4055
|
+
throw response;
|
|
4056
|
+
}
|
|
4057
|
+
return this.processCartPromotionProgress(response.records);
|
|
4058
|
+
}));
|
|
4059
|
+
}
|
|
3922
4060
|
/**
|
|
3923
4061
|
* Set an alternative stock item to current cart item
|
|
3924
4062
|
*
|
|
@@ -3998,6 +4136,21 @@ class EsolveCartService {
|
|
|
3998
4136
|
processCartTotals(record) {
|
|
3999
4137
|
return new EsolveCartTotals(record);
|
|
4000
4138
|
}
|
|
4139
|
+
/**
|
|
4140
|
+
* Processes the eSolve cart promotion progress records
|
|
4141
|
+
*
|
|
4142
|
+
* @param records Records to process
|
|
4143
|
+
* @returns An array of processed promotion progress entries
|
|
4144
|
+
*/
|
|
4145
|
+
processCartPromotionProgress(records) {
|
|
4146
|
+
const progress = [];
|
|
4147
|
+
if (records) {
|
|
4148
|
+
for (const record of records) {
|
|
4149
|
+
progress.push(new EsolveCartPromotionProgressItem(record));
|
|
4150
|
+
}
|
|
4151
|
+
}
|
|
4152
|
+
return progress;
|
|
4153
|
+
}
|
|
4001
4154
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: EsolveCartService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4002
4155
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: EsolveCartService, providedIn: 'root' }); }
|
|
4003
4156
|
}
|
|
@@ -7357,7 +7510,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
7357
7510
|
}], ctorParameters: () => [] });
|
|
7358
7511
|
|
|
7359
7512
|
class EsolveBanner {
|
|
7360
|
-
constructor(id, banner_display_container, identifier, type, title, sub_title, catch_phrase, background_colour, button_caption, article, sort_priority, link, images) {
|
|
7513
|
+
constructor(id, banner_display_container, identifier, type, title, sub_title, catch_phrase, background_colour, button_caption, article, sort_priority, link, images, videos = []) {
|
|
7361
7514
|
this.id = id;
|
|
7362
7515
|
this.banner_display_container = banner_display_container;
|
|
7363
7516
|
this.identifier = identifier;
|
|
@@ -7370,9 +7523,11 @@ class EsolveBanner {
|
|
|
7370
7523
|
this.article = article;
|
|
7371
7524
|
this.sort_priority = sort_priority;
|
|
7372
7525
|
this.link = link;
|
|
7526
|
+
this.videos = videos;
|
|
7373
7527
|
this.desktop_images = [];
|
|
7374
7528
|
this.mobile_images = [];
|
|
7375
7529
|
this.sub_images = [];
|
|
7530
|
+
this.video_posters = [];
|
|
7376
7531
|
if (images.desktop) {
|
|
7377
7532
|
this.desktop_images = images.desktop;
|
|
7378
7533
|
}
|
|
@@ -7382,6 +7537,9 @@ class EsolveBanner {
|
|
|
7382
7537
|
if (images.sub) {
|
|
7383
7538
|
this.sub_images = images.sub;
|
|
7384
7539
|
}
|
|
7540
|
+
if (images.video_poster) {
|
|
7541
|
+
this.video_posters = images.video_poster;
|
|
7542
|
+
}
|
|
7385
7543
|
}
|
|
7386
7544
|
}
|
|
7387
7545
|
|
|
@@ -7408,6 +7566,20 @@ class EsolveBannerImageHotspot {
|
|
|
7408
7566
|
}
|
|
7409
7567
|
}
|
|
7410
7568
|
|
|
7569
|
+
class EsolveBannerVideo {
|
|
7570
|
+
constructor(record) {
|
|
7571
|
+
this.id = 0;
|
|
7572
|
+
this.filename = '';
|
|
7573
|
+
if (record) {
|
|
7574
|
+
this.id = +record.id;
|
|
7575
|
+
this.filename = record.filename;
|
|
7576
|
+
}
|
|
7577
|
+
}
|
|
7578
|
+
get src() {
|
|
7579
|
+
return '/videos/banners/' + this.filename;
|
|
7580
|
+
}
|
|
7581
|
+
}
|
|
7582
|
+
|
|
7411
7583
|
class EsolveBannerService {
|
|
7412
7584
|
constructor() {
|
|
7413
7585
|
this.config = inject(EsolveConfigService);
|
|
@@ -7473,6 +7645,7 @@ class EsolveBannerService {
|
|
|
7473
7645
|
if (records && records.length > 0) {
|
|
7474
7646
|
for (const record of records) {
|
|
7475
7647
|
const image_sets = {};
|
|
7648
|
+
const videos = [];
|
|
7476
7649
|
if (record.images.desktop) {
|
|
7477
7650
|
image_sets.desktop = this.processBannerImages(record.images.desktop, record.type);
|
|
7478
7651
|
}
|
|
@@ -7482,10 +7655,18 @@ class EsolveBannerService {
|
|
|
7482
7655
|
if (record.images.sub) {
|
|
7483
7656
|
image_sets.sub = this.processBannerImages(record.images.sub, record.type);
|
|
7484
7657
|
}
|
|
7658
|
+
if (record.images.video_poster) {
|
|
7659
|
+
image_sets.video_poster = this.processBannerImages(record.images.video_poster, record.type);
|
|
7660
|
+
}
|
|
7661
|
+
if (record.images.video && record.images.video.length > 0) {
|
|
7662
|
+
for (const video of record.images.video) {
|
|
7663
|
+
videos.push(new EsolveBannerVideo(video));
|
|
7664
|
+
}
|
|
7665
|
+
}
|
|
7485
7666
|
const banner = new EsolveBanner(+record.id, record.banner_display_container, record.identifier, record.type, record.title, record.sub_title, record.catch_phrase, record.background_colour, record.button_caption, record.article, +record.sort_priority, {
|
|
7486
7667
|
url: record.link.url,
|
|
7487
7668
|
target: record.link.target,
|
|
7488
|
-
}, image_sets);
|
|
7669
|
+
}, image_sets, videos);
|
|
7489
7670
|
banners.push(banner);
|
|
7490
7671
|
}
|
|
7491
7672
|
}
|
|
@@ -10826,5 +11007,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
|
|
|
10826
11007
|
* Generated bundle index. Do not edit.
|
|
10827
11008
|
*/
|
|
10828
11009
|
|
|
10829
|
-
export { ESOLVE_CONNECT_CONFIG, ESOLVE_EURUS_AUTO_LOGIN, EsolveAccountConfirmationResult, EsolveAccountPayment, EsolveAccountService, EsolveAdditionalStockImage, EsolveAddress, EsolveAddressResult, EsolveAffiliate, EsolveAffiliateCheckResult, EsolveAffiliateLinkResult, EsolveAffiliateService, EsolveAlbum, EsolveAlbumImage, EsolveAlbumImageList, EsolveAlbumList, EsolveAlbumsService, EsolveAsset, EsolveAssetsService, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveCaptcha, EsolveCaptchaService, EsolveCareer, EsolveCareersService, EsolveCartAlternative, EsolveCartErrorHandlerService, EsolveCartItem, EsolveCartItemError, EsolveCartService, EsolveCartStockItem, EsolveCartTaxBreakdown, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveCdnSrcDirective, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveClientAsset, EsolveClientAssetList, EsolveColour, EsolveColoursService, EsolveCompetition, EsolveCompetitionDates, EsolveCompetitionEntryResult, EsolveCompetitionWinner, EsolveCompetitionsService, EsolveConfigService, EsolveCookieService, EsolveCountry, EsolveCountryService, EsolveCoupon, EsolveCouponsService, EsolveDeliveriesService, EsolveDelivery, EsolveDeliveryCategoryTotals, EsolveDeliveryList, EsolveDeliveryStatus, EsolveDependantItem, EsolveDeviceService, EsolveEmptyCartResult, EsolveEmptyWishlistResult, EsolveEnquiryResult, EsolveEnquiryService, EsolveErpDocumentRequest, EsolveErpDocumentsRequestResult, EsolveErrorHandlerService, EsolveEvent, EsolveEventTargetService, EsolveEventType, EsolveFilterFactory, EsolveGenericFilter, EsolveGeocodeAddressResult, EsolveGeocodeCoordsResult, EsolveGeocodeResult, EsolveGeocoderService, EsolveHttpError, EsolveLinkedAsset, EsolveLinkedStockItem, EsolveList, EsolveLocation, EsolveLocationAddress, EsolveLocationContactInfo, EsolveLocationGEO, EsolveLocationList, EsolveLocationPOBoxAddress, EsolveLocationTradingDay, EsolveLocationTradingTimes, EsolveLocationUpdateResult, EsolveLocationsService, EsolveManufacturer, EsolveManufacturersService, EsolveMaterial, EsolveMaterialsService, EsolveMediaStockItem, EsolveMenuItem, EsolveMenuService, EsolveMultipleSelectFilter, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolveNewsletterResult, EsolveNotificationButtonAction, EsolveNotificationDates, EsolveNotificationsService, EsolveOtp, EsolveOtpService, EsolveOtpValidation, EsolvePaymentMethod, EsolvePaymentResult, EsolvePaymentService, EsolveRange, EsolveRangeFilter, EsolveRangesService, EsolveRecipeStockItem, EsolveRegistrationResult, EsolveResetPasswordResult, EsolveResponseHandlerService, EsolveResponseResult, EsolveResult, EsolveReview, EsolveReviewList, EsolveReviewResult, EsolveReviewsService, EsolveSearchCleanResult, EsolveSearchResult, EsolveSearchResultItem, EsolveSearchService, EsolveSearchVectorizeResult, EsolveSeoInfo, EsolveSeoService, EsolveSessionAddressUpdateResult, EsolveSessionClientUpdateResult, EsolveSessionMetadataService, EsolveSessionService, EsolveSessionShippingUpdateResult, EsolveSetDeviceResult, EsolveSetNotifyResult, EsolveSettings, EsolveSettingsService, EsolveShippingCost, EsolveShippingCostItem, EsolveShippingMethod, EsolveShippingService, EsolveShippingTotals, EsolveSingleSelectFilter, EsolveSpecial, EsolveSpecialDates, EsolveSpecialImage, EsolveSpecialImageCollection, EsolveSpecialsService, EsolveStatement, EsolveStatementAgeing, EsolveStatementBalances, EsolveStatementTransaction, EsolveStockBadge, EsolveStockBarcode, EsolveStockGroup, EsolveStockGroupItem, EsolveStockImage, EsolveStockImageCollection, EsolveStockItem, EsolveStockItemBase, EsolveStockItemList, EsolveStockItemLocationLevel, EsolveStockLeadTimes, EsolveStockPrice, EsolveStockReviewsReport, EsolveStockService, EsolveStockTransactionSales, EsolveSuggestedStockItem, EsolveSupplier, EsolveSuppliersService, EsolveSystemNotification, EsolveSystemNotificationType, EsolveTag, EsolveTagsService, EsolveTimeSlot, EsolveTimeSlotConfig, EsolveTimeSlotDate, EsolveTimeSlotDays, EsolveTimeSlotTimes, EsolveToggleFilter, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionAnalyticsData, EsolveTransactionApprovalResult, EsolveTransactionClient, EsolveTransactionDelivery, EsolveTransactionItem, EsolveTransactionItemPrice, EsolveTransactionList, EsolveTransactionLocation, EsolveTransactionPaymentMethod, EsolveTransactionPick, EsolveTransactionShippingMethod, EsolveTransactionTimeSlot, EsolveTransactionUser, EsolveTransactionsService, EsolveUserAccount, EsolveUserAccountBusiness, EsolveUserAccountContact, EsolveUserAccountResult, EsolveUserClientAccount, EsolveUserClientAccountBalances, EsolveUserDevice, EsolveVaultItem, EsolveVaultItemResult, EsolveVoucher, EsolveVouchersService, EsolveWalletBalances, EsolveWalletService, EsolveWalletTransaction, EsolveWalletTransactionsList, EsolveWishlistItem, EsolveWishlistService, NgEsolveConnectModule, esolveAuthInterceptor, esolveHexHash, esolveUnauthorizedErrorInterceptor, isEsolveCdnPath, isFtgCdnPath, isLegacyEsolveCdnPath, processEsolveImageSrc, provideEsolveImageLoader, provideNgEsolveConnect };
|
|
11010
|
+
export { ESOLVE_CONNECT_CONFIG, ESOLVE_EURUS_AUTO_LOGIN, EsolveAccountConfirmationResult, EsolveAccountPayment, EsolveAccountService, EsolveAdditionalStockImage, EsolveAddress, EsolveAddressResult, EsolveAffiliate, EsolveAffiliateCheckResult, EsolveAffiliateLinkResult, EsolveAffiliateService, EsolveAlbum, EsolveAlbumImage, EsolveAlbumImageList, EsolveAlbumList, EsolveAlbumsService, EsolveAsset, EsolveAssetsService, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveBannerVideo, EsolveCaptcha, EsolveCaptchaService, EsolveCareer, EsolveCareersService, EsolveCartAlternative, EsolveCartErrorHandlerService, EsolveCartItem, EsolveCartItemError, EsolveCartPromotionProgressItem, EsolveCartPromotionProgressQualifyingItem, EsolveCartService, EsolveCartStockItem, EsolveCartTaxBreakdown, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveCdnSrcDirective, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveClientAsset, EsolveClientAssetList, EsolveColour, EsolveColoursService, EsolveCompetition, EsolveCompetitionDates, EsolveCompetitionEntryResult, EsolveCompetitionWinner, EsolveCompetitionsService, EsolveConfigService, EsolveCookieService, EsolveCountry, EsolveCountryService, EsolveCoupon, EsolveCouponsService, EsolveDeliveriesService, EsolveDelivery, EsolveDeliveryCategoryTotals, EsolveDeliveryList, EsolveDeliveryStatus, EsolveDependantItem, EsolveDeviceService, EsolveEmptyCartResult, EsolveEmptyWishlistResult, EsolveEnquiryResult, EsolveEnquiryService, EsolveErpDocumentRequest, EsolveErpDocumentsRequestResult, EsolveErrorHandlerService, EsolveEvent, EsolveEventTargetService, EsolveEventType, EsolveFilterFactory, EsolveGenericFilter, EsolveGeocodeAddressResult, EsolveGeocodeCoordsResult, EsolveGeocodeResult, EsolveGeocoderService, EsolveHttpError, EsolveLinkedAsset, EsolveLinkedStockItem, EsolveList, EsolveLocation, EsolveLocationAddress, EsolveLocationContactInfo, EsolveLocationGEO, EsolveLocationList, EsolveLocationPOBoxAddress, EsolveLocationTradingDay, EsolveLocationTradingTimes, EsolveLocationUpdateResult, EsolveLocationsService, EsolveManufacturer, EsolveManufacturersService, EsolveMaterial, EsolveMaterialsService, EsolveMediaStockItem, EsolveMenuItem, EsolveMenuService, EsolveMultipleSelectFilter, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolveNewsletterResult, EsolveNotificationButtonAction, EsolveNotificationDates, EsolveNotificationsService, EsolveOtp, EsolveOtpService, EsolveOtpValidation, EsolvePaymentMethod, EsolvePaymentResult, EsolvePaymentService, EsolveRange, EsolveRangeFilter, EsolveRangesService, EsolveRecipeStockItem, EsolveRegistrationResult, EsolveResetPasswordResult, EsolveResponseHandlerService, EsolveResponseResult, EsolveResult, EsolveReview, EsolveReviewList, EsolveReviewResult, EsolveReviewsService, EsolveSearchCleanResult, EsolveSearchResult, EsolveSearchResultItem, EsolveSearchService, EsolveSearchVectorizeResult, EsolveSeoInfo, EsolveSeoService, EsolveSessionAddressUpdateResult, EsolveSessionClientUpdateResult, EsolveSessionMetadataService, EsolveSessionService, EsolveSessionShippingUpdateResult, EsolveSetDeviceResult, EsolveSetNotifyResult, EsolveSettings, EsolveSettingsService, EsolveShippingCost, EsolveShippingCostItem, EsolveShippingMethod, EsolveShippingService, EsolveShippingTotals, EsolveSingleSelectFilter, EsolveSpecial, EsolveSpecialDates, EsolveSpecialImage, EsolveSpecialImageCollection, EsolveSpecialsService, EsolveStatement, EsolveStatementAgeing, EsolveStatementBalances, EsolveStatementTransaction, EsolveStockBadge, EsolveStockBarcode, EsolveStockGroup, EsolveStockGroupItem, EsolveStockImage, EsolveStockImageCollection, EsolveStockItem, EsolveStockItemBase, EsolveStockItemList, EsolveStockItemLocationLevel, EsolveStockLeadTimes, EsolveStockPrice, EsolveStockReviewsReport, EsolveStockService, EsolveStockTransactionSales, EsolveSuggestedStockItem, EsolveSupplier, EsolveSuppliersService, EsolveSystemNotification, EsolveSystemNotificationType, EsolveTag, EsolveTagsService, EsolveTimeSlot, EsolveTimeSlotConfig, EsolveTimeSlotDate, EsolveTimeSlotDays, EsolveTimeSlotTimes, EsolveToggleFilter, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionAnalyticsData, EsolveTransactionApprovalResult, EsolveTransactionClient, EsolveTransactionDelivery, EsolveTransactionItem, EsolveTransactionItemPrice, EsolveTransactionList, EsolveTransactionLocation, EsolveTransactionPaymentMethod, EsolveTransactionPick, EsolveTransactionShippingMethod, EsolveTransactionTimeSlot, EsolveTransactionUser, EsolveTransactionsService, EsolveUserAccount, EsolveUserAccountBusiness, EsolveUserAccountContact, EsolveUserAccountResult, EsolveUserClientAccount, EsolveUserClientAccountBalances, EsolveUserDevice, EsolveVaultItem, EsolveVaultItemResult, EsolveVoucher, EsolveVouchersService, EsolveWalletBalances, EsolveWalletService, EsolveWalletTransaction, EsolveWalletTransactionsList, EsolveWishlistItem, EsolveWishlistService, NgEsolveConnectModule, esolveAuthInterceptor, esolveHexHash, esolveUnauthorizedErrorInterceptor, isEsolveCdnPath, isFtgCdnPath, isLegacyEsolveCdnPath, processEsolveImageSrc, provideEsolveImageLoader, provideNgEsolveConnect };
|
|
10830
11011
|
//# sourceMappingURL=esolve-ng-esolve-connect.mjs.map
|