@esolve/ng-esolve-connect 0.134.0 → 0.135.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.
@@ -689,6 +689,87 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
689
689
  }]
690
690
  }] });
691
691
 
692
+ class EsolveMaterial {
693
+ constructor(record) {
694
+ this.id = 0;
695
+ this.material = '';
696
+ if (record) {
697
+ this.id = +(record.id ?? 0);
698
+ this.material = record.material ?? '';
699
+ }
700
+ }
701
+ }
702
+
703
+ class EsolveMaterialsService {
704
+ constructor() {
705
+ this.config = inject(EsolveConfigService);
706
+ this.http = inject(HttpClient);
707
+ }
708
+ /**
709
+ * Retrieves type of materials details for the provided filter options
710
+ *
711
+ * @param options Filter options
712
+ *
713
+ * @returns An observable of material details
714
+ */
715
+ getMaterials(options) {
716
+ return this.http
717
+ .get(`${this.config.api_url}/get-type-of-materials.php`, {
718
+ params: this.parseOptions(options),
719
+ })
720
+ .pipe(map$1((response) => {
721
+ if (response.records === undefined) {
722
+ throw response;
723
+ }
724
+ return this.processMaterials(response.records);
725
+ }));
726
+ }
727
+ parseOptions(options) {
728
+ let params = new HttpParams();
729
+ if (options) {
730
+ if (options.type_of_materials_id) {
731
+ if (Array.isArray(options.type_of_materials_id)) {
732
+ const material_list = options.type_of_materials_id;
733
+ if (material_list.length > 0) {
734
+ params = params.append('type_of_materials_id', material_list.join(','));
735
+ }
736
+ }
737
+ else {
738
+ params = params.append('type_of_materials_id', options.type_of_materials_id);
739
+ }
740
+ }
741
+ else {
742
+ if (options.phrase && options.phrase !== '') {
743
+ params = params.append('phrase', options.phrase);
744
+ const phrase_match_mode = options.phrase_match_mode;
745
+ if (phrase_match_mode) {
746
+ params = params.append('phrase_match_mode', phrase_match_mode);
747
+ }
748
+ }
749
+ }
750
+ }
751
+ return params;
752
+ }
753
+ processMaterials(records) {
754
+ const materials = [];
755
+ if (records) {
756
+ for (const record of records) {
757
+ const material = new EsolveMaterial(record);
758
+ materials.push(material);
759
+ }
760
+ }
761
+ return materials;
762
+ }
763
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveMaterialsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
764
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveMaterialsService, providedIn: 'root' }); }
765
+ }
766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveMaterialsService, decorators: [{
767
+ type: Injectable,
768
+ args: [{
769
+ providedIn: 'root'
770
+ }]
771
+ }] });
772
+
692
773
  class EsolveRange {
693
774
  get image_src() {
694
775
  return this.getImagePath();
@@ -1304,6 +1385,10 @@ class EsolveStockItemBase {
1304
1385
  * Sizes
1305
1386
  */
1306
1387
  this.sizes = [];
1388
+ /**
1389
+ * Material id
1390
+ */
1391
+ this.type_of_material_id = 0;
1307
1392
  /**
1308
1393
  * Image filename
1309
1394
  */
@@ -1338,6 +1423,7 @@ class EsolveStockItemBase {
1338
1423
  this.subcategory_id = +(record.subcategory_id ?? 0);
1339
1424
  this.manufacturers_id = +(record.manufacturers_id ?? 0);
1340
1425
  this.ranges_id = +(record.ranges_id ?? 0);
1426
+ this.type_of_material_id = +(record.type_of_material_id ?? 0);
1341
1427
  this.delivery_category = record.delivery_category ?? 'regular_item';
1342
1428
  this.custom_label = record.custom_label ?? '';
1343
1429
  this.must_collect = !!+(record.must_collect ?? false);
@@ -1432,6 +1518,9 @@ class EsolveStockItemBase {
1432
1518
  if (record.reviews_report) {
1433
1519
  this.reviews_report = new EsolveStockReviewsReport(record.reviews_report);
1434
1520
  }
1521
+ if (record.material) {
1522
+ this.material = new EsolveMaterial(record.material);
1523
+ }
1435
1524
  this.video_embed = record.video_embed;
1436
1525
  this.three_d_embed = record.three_d_embed;
1437
1526
  seo_title = record.seo_page_title ?? '';
@@ -3751,7 +3840,7 @@ class EsolveCartService {
3751
3840
  *
3752
3841
  * @returns An `Observable` with the transaction ID
3753
3842
  */
3754
- checkout(type, addresses_id, shipping_id, payment_method_id = 0, location_id = 0, comments = '', time_slot, apply_wallet, purchase_order_number) {
3843
+ checkout(type, addresses_id, shipping_id, payment_method_id = 0, location_id = 0, comments = '', time_slot, apply_wallet, purchase_order_number, expected_date) {
3755
3844
  const body = {
3756
3845
  type,
3757
3846
  addresses_id,
@@ -3763,6 +3852,7 @@ class EsolveCartService {
3763
3852
  time_slot,
3764
3853
  apply_wallet,
3765
3854
  purchase_order_number,
3855
+ expected_date,
3766
3856
  };
3767
3857
  return this.getTrackingCode().pipe(switchMap((tracking) => {
3768
3858
  if (tracking <= 0) {
@@ -8252,6 +8342,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
8252
8342
  }]
8253
8343
  }] });
8254
8344
 
8345
+ class EsolveShippingCostItem {
8346
+ constructor(record) {
8347
+ this.shipping_id = 0;
8348
+ this.shipping_method_name = '';
8349
+ this.code = '';
8350
+ this.weight = 0;
8351
+ this.length = 0;
8352
+ this.width = 0;
8353
+ this.height = 0;
8354
+ this.volume = 0;
8355
+ this.delivery_category = 'regular_item';
8356
+ this.must_collect = false;
8357
+ this.total_shipping_costs = 0;
8358
+ this.cart_item_id = 0;
8359
+ if (record) {
8360
+ this.cart_item_id = +(record.id ?? 0);
8361
+ this.shipping_id = +(record.shipping_id ?? 0);
8362
+ this.shipping_method_name = record.shipping_method_name ?? '';
8363
+ this.code = record.code ?? '';
8364
+ this.weight = +(record.weight ?? 0);
8365
+ this.length = +(record.length ?? 0);
8366
+ this.width = +(record.width ?? 0);
8367
+ this.height = +(record.height ?? 0);
8368
+ this.volume = +(record.volume ?? 0);
8369
+ this.delivery_category = record.delivery_category ?? 'regular_item';
8370
+ this.must_collect = record.must_collect ?? false;
8371
+ this.total_shipping_costs = +(record.total_shipping_costs ?? 0);
8372
+ }
8373
+ }
8374
+ }
8375
+
8255
8376
  class EsolveShippingTotals {
8256
8377
  constructor(total, vat, savings) {
8257
8378
  this.total = total;
@@ -8265,9 +8386,18 @@ class EsolveShippingCost {
8265
8386
  // Shipping
8266
8387
  shipping_total = 0, shipping_vat = 0, shipping_total_savings = 0,
8267
8388
  // Insurance
8268
- insurance_total = 0, insurance_vat = 0, insurance_total_savings = 0) {
8389
+ insurance_total = 0, insurance_vat = 0, insurance_total_savings = 0, items = []) {
8390
+ this.items = [];
8269
8391
  this.shipping = new EsolveShippingTotals(shipping_total, shipping_vat, shipping_total_savings);
8270
8392
  this.insurance = new EsolveShippingTotals(insurance_total, insurance_vat, insurance_total_savings);
8393
+ this.items = this.processItems(items);
8394
+ }
8395
+ processItems(records = []) {
8396
+ const items = [];
8397
+ for (const record of records) {
8398
+ items.push(new EsolveShippingCostItem(record));
8399
+ }
8400
+ return items;
8271
8401
  }
8272
8402
  }
8273
8403
 
@@ -8515,7 +8645,7 @@ class EsolveShippingService {
8515
8645
  * @returns Processed shipping costs
8516
8646
  */
8517
8647
  processShippingCost(record) {
8518
- const shipping_cost = new EsolveShippingCost(+record.shipping_total, +record.vat_on_shipping, +record.total_saving_on_shipping, +record.insurance_total, +record.vat_on_insurance, +record.total_saving_on_insurance);
8648
+ const shipping_cost = new EsolveShippingCost(+record.shipping_total, +record.vat_on_shipping, +record.total_saving_on_shipping, +record.insurance_total, +record.vat_on_insurance, +record.total_saving_on_insurance, record.items);
8519
8649
  return shipping_cost;
8520
8650
  }
8521
8651
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveShippingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
@@ -10251,87 +10381,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
10251
10381
  }]
10252
10382
  }] });
10253
10383
 
10254
- class EsolveMaterial {
10255
- constructor(record) {
10256
- this.id = 0;
10257
- this.material = '';
10258
- if (record) {
10259
- this.id = +(record.id ?? 0);
10260
- this.material = record.material ?? '';
10261
- }
10262
- }
10263
- }
10264
-
10265
- class EsolveMaterialsService {
10266
- constructor() {
10267
- this.config = inject(EsolveConfigService);
10268
- this.http = inject(HttpClient);
10269
- }
10270
- /**
10271
- * Retrieves type of materials details for the provided filter options
10272
- *
10273
- * @param options Filter options
10274
- *
10275
- * @returns An observable of material details
10276
- */
10277
- getMaterials(options) {
10278
- return this.http
10279
- .get(`${this.config.api_url}/get-type-of-materials.php`, {
10280
- params: this.parseOptions(options),
10281
- })
10282
- .pipe(map$1((response) => {
10283
- if (response.records === undefined) {
10284
- throw response;
10285
- }
10286
- return this.processMaterials(response.records);
10287
- }));
10288
- }
10289
- parseOptions(options) {
10290
- let params = new HttpParams();
10291
- if (options) {
10292
- if (options.type_of_materials_id) {
10293
- if (Array.isArray(options.type_of_materials_id)) {
10294
- const material_list = options.type_of_materials_id;
10295
- if (material_list.length > 0) {
10296
- params = params.append('type_of_materials_id', material_list.join(','));
10297
- }
10298
- }
10299
- else {
10300
- params = params.append('type_of_materials_id', options.type_of_materials_id);
10301
- }
10302
- }
10303
- else {
10304
- if (options.phrase && options.phrase !== '') {
10305
- params = params.append('phrase', options.phrase);
10306
- const phrase_match_mode = options.phrase_match_mode;
10307
- if (phrase_match_mode) {
10308
- params = params.append('phrase_match_mode', phrase_match_mode);
10309
- }
10310
- }
10311
- }
10312
- }
10313
- return params;
10314
- }
10315
- processMaterials(records) {
10316
- const materials = [];
10317
- if (records) {
10318
- for (const record of records) {
10319
- const material = new EsolveMaterial(record);
10320
- materials.push(material);
10321
- }
10322
- }
10323
- return materials;
10324
- }
10325
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveMaterialsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
10326
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveMaterialsService, providedIn: 'root' }); }
10327
- }
10328
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EsolveMaterialsService, decorators: [{
10329
- type: Injectable,
10330
- args: [{
10331
- providedIn: 'root'
10332
- }]
10333
- }] });
10334
-
10335
10384
  /*
10336
10385
  * Public API Surface of ng-esolve-connect
10337
10386
  */
@@ -10340,5 +10389,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
10340
10389
  * Generated bundle index. Do not edit.
10341
10390
  */
10342
10391
 
10343
- 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, 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, EsolveSeoInfo, EsolveSeoService, EsolveSessionAddressUpdateResult, EsolveSessionClientUpdateResult, EsolveSessionMetadataService, EsolveSessionService, EsolveSessionShippingUpdateResult, EsolveSetDeviceResult, EsolveSetNotifyResult, EsolveShippingCost, 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 };
10392
+ 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, 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, EsolveSeoInfo, EsolveSeoService, EsolveSessionAddressUpdateResult, EsolveSessionClientUpdateResult, EsolveSessionMetadataService, EsolveSessionService, EsolveSessionShippingUpdateResult, EsolveSetDeviceResult, EsolveSetNotifyResult, 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 };
10344
10393
  //# sourceMappingURL=esolve-ng-esolve-connect.mjs.map