@esolve/ng-esolve-connect 0.108.0 → 0.109.1

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.
Files changed (38) hide show
  1. package/esm2022/index.mjs +3 -1
  2. package/esm2022/lib/account/registration/esolve-registration-data.interface.mjs +1 -1
  3. package/esm2022/lib/affiliates/classes/esolve-affiliate-check-result.model.mjs +43 -0
  4. package/esm2022/lib/affiliates/classes/esolve-affiliate-link-result.model.mjs +9 -0
  5. package/esm2022/lib/affiliates/classes/esolve-affiliate.model.mjs +47 -0
  6. package/esm2022/lib/affiliates/classes/index.mjs +4 -0
  7. package/esm2022/lib/affiliates/index.mjs +5 -0
  8. package/esm2022/lib/affiliates/interfaces/esolve-affiliate-check-record.interface.mjs +2 -0
  9. package/esm2022/lib/affiliates/interfaces/esolve-affiliate-link-options.interface.mjs +2 -0
  10. package/esm2022/lib/affiliates/interfaces/esolve-affiliate-record.interface.mjs +2 -0
  11. package/esm2022/lib/affiliates/interfaces/esolve-affiliates-options.interface.mjs +2 -0
  12. package/esm2022/lib/affiliates/interfaces/index.mjs +5 -0
  13. package/esm2022/lib/affiliates/services/esolve-affiliate.service.mjs +168 -0
  14. package/esm2022/lib/affiliates/services/index.mjs +2 -0
  15. package/esm2022/lib/affiliates/types/esolve-affiliate-link-response.type.mjs +2 -0
  16. package/esm2022/lib/affiliates/types/index.mjs +2 -0
  17. package/esm2022/lib/captcha/types/esolve-captcha-action.type.mjs +1 -1
  18. package/esm2022/lib/session/esolve-session.service.mjs +4 -2
  19. package/fesm2022/esolve-ng-esolve-connect.mjs +262 -2
  20. package/fesm2022/esolve-ng-esolve-connect.mjs.map +1 -1
  21. package/index.d.ts +1 -0
  22. package/lib/account/registration/esolve-registration-data.interface.d.ts +2 -0
  23. package/lib/affiliates/classes/esolve-affiliate-check-result.model.d.ts +38 -0
  24. package/lib/affiliates/classes/esolve-affiliate-link-result.model.d.ts +6 -0
  25. package/lib/affiliates/classes/esolve-affiliate.model.d.ts +38 -0
  26. package/lib/affiliates/classes/index.d.ts +3 -0
  27. package/lib/affiliates/index.d.ts +4 -0
  28. package/lib/affiliates/interfaces/esolve-affiliate-check-record.interface.d.ts +7 -0
  29. package/lib/affiliates/interfaces/esolve-affiliate-link-options.interface.d.ts +4 -0
  30. package/lib/affiliates/interfaces/esolve-affiliate-record.interface.d.ts +7 -0
  31. package/lib/affiliates/interfaces/esolve-affiliates-options.interface.d.ts +6 -0
  32. package/lib/affiliates/interfaces/index.d.ts +4 -0
  33. package/lib/affiliates/services/esolve-affiliate.service.d.ts +85 -0
  34. package/lib/affiliates/services/index.d.ts +1 -0
  35. package/lib/affiliates/types/esolve-affiliate-link-response.type.d.ts +2 -0
  36. package/lib/affiliates/types/index.d.ts +1 -0
  37. package/lib/captcha/types/esolve-captcha-action.type.d.ts +1 -1
  38. package/package.json +1 -1
@@ -675,7 +675,9 @@ class EsolveSessionService {
675
675
  this.updateClientsId(session.clients_id);
676
676
  // Update token last to make sure session is correctly checked
677
677
  this.updateToken(session.token);
678
- this.startTimer(expiry_date);
678
+ if (this.is_browser) {
679
+ this.startTimer(expiry_date);
680
+ }
679
681
  }
680
682
  handleUpdateSession({ user_id, location_id, addresses_id, shipping_id, clients_id, token, }) {
681
683
  if (typeof user_id !== 'undefined') {
@@ -9104,6 +9106,264 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
9104
9106
  }]
9105
9107
  }] });
9106
9108
 
9109
+ /**
9110
+ * Represents an Esolve Affiliate with properties and a constructor to initialize from a record.
9111
+ */
9112
+ class EsolveAffiliate {
9113
+ /**
9114
+ * Constructs a new EsolveAffiliate instance.
9115
+ *
9116
+ * @param record - An optional partial EsolveAffiliateRecord to initialize the instance from.
9117
+ *
9118
+ * @remarks
9119
+ * If a record is provided, the instance properties are populated from the record.
9120
+ * If a record property is missing or null, the corresponding instance property is set to its default value.
9121
+ *
9122
+ * @example
9123
+ * ```typescript
9124
+ * const record: Partial<EsolveAffiliateRecord> = {
9125
+ * id: '123',
9126
+ * affiliate_name: 'Example Affiliate',
9127
+ * affiliate_domain: 'example.com'
9128
+ * affiliate_key: 'example-key',
9129
+ * default: true
9130
+ * };
9131
+ *
9132
+ * const affiliate = new EsolveAffiliate(record);
9133
+ * console.log(affiliate.id); // Output: 123
9134
+ * console.log(affiliate.name); // Output: Example Affiliate
9135
+ * console.log(affiliate.key); // Output: example-key
9136
+ * console.log(affiliate.is_default); // Output: true
9137
+ * ```
9138
+ */
9139
+ constructor(record) {
9140
+ this.id = 0;
9141
+ this.name = '';
9142
+ this.key = '';
9143
+ this.domain = '';
9144
+ if (record) {
9145
+ this.id = +(record.id ?? 0);
9146
+ this.name = record.affiliate_name ?? '';
9147
+ this.key = record.affiliate_key ?? '';
9148
+ this.domain = record.affiliate_domain ?? '';
9149
+ if (typeof record.default !== 'undefined') {
9150
+ this.is_default = !!+record.default;
9151
+ }
9152
+ }
9153
+ }
9154
+ }
9155
+
9156
+ /**
9157
+ * Represents the result of an affiliate-related API call.
9158
+ *
9159
+ * @remarks
9160
+ * This class is used to encapsulate the result of an affiliate-related API call,
9161
+ * providing access to the affiliate, linked affiliates, and additional data.
9162
+ */
9163
+ class EsolveAffiliateCheckResult {
9164
+ constructor(record) {
9165
+ /**
9166
+ * Indicates whether user confirmation is required for the affiliate linking.
9167
+ * @default false
9168
+ */
9169
+ this.confirmation_required = false;
9170
+ /**
9171
+ * An array of linked affiliates associated with the current user.
9172
+ * @default []
9173
+ */
9174
+ this.linked_affiliates = [];
9175
+ /**
9176
+ * The total number of linked affiliates associated with the current user.
9177
+ * @default 0
9178
+ */
9179
+ this.total_linked_affiliates = 0;
9180
+ if (record) {
9181
+ this.affiliate = new EsolveAffiliate(record.affiliate);
9182
+ this.confirmation_required = !!record.confirmation_required;
9183
+ this.linked_affiliates = this.processAffiliates(record.linked_affiliates ?? []);
9184
+ this.total_linked_affiliates = +(record.total_linked_affiliates ?? 0);
9185
+ }
9186
+ }
9187
+ /**
9188
+ * Processes an array of affiliate records and returns an array of EsolveAffiliate instances.
9189
+ *
9190
+ * @param affiliate_records - The affiliate records to process.
9191
+ * @returns An array of EsolveAffiliate instances.
9192
+ */
9193
+ processAffiliates(affiliate_records) {
9194
+ return affiliate_records.map((record) => new EsolveAffiliate(record));
9195
+ }
9196
+ }
9197
+
9198
+ class EsolveAffiliateLinkResult extends EsolveResponseResult {
9199
+ constructor(response) {
9200
+ super(response);
9201
+ this.id = 0;
9202
+ this.id = +response.esolve_id;
9203
+ }
9204
+ }
9205
+
9206
+ class EsolveAffiliateService {
9207
+ constructor() {
9208
+ this.http = inject(HttpClient);
9209
+ this.config = inject(EsolveConfigService);
9210
+ this.errorHandler = inject(EsolveErrorHandlerService);
9211
+ this.responseHandler = inject(EsolveResponseHandlerService);
9212
+ }
9213
+ /**
9214
+ * Retrieves affiliate records based on the provided options.
9215
+ *
9216
+ * @param options - Optional parameters for filtering and pagination.
9217
+ * @returns - An observable that emits an `EsolveList` containing the retrieved affiliate records and additional data.
9218
+ *
9219
+ * @remarks
9220
+ * If the `options` parameter is provided, it is used to construct an HTTP GET request with query parameters for pagination.
9221
+ * The response is validated and transformed into an `EsolveList` object.
9222
+ * If the response does not contain any records, an error is thrown.
9223
+ * The function utilizes the `HttpClient` to make the HTTP request and applies RxJS operators for handling the response.
9224
+ *
9225
+ * @example
9226
+ * ```typescript
9227
+ * const options: EsolveAffiliatesOptions = {
9228
+ * page: 1,
9229
+ * rows: 10,
9230
+ * };
9231
+ *
9232
+ * this.affiliateService.getAffiliates(options).subscribe((affiliates) => {
9233
+ * console.log(affiliates.items); // Array of EsolveAffiliate objects
9234
+ * console.log(affiliates.page); // 1
9235
+ * console.log(affiliates.rows); // 10
9236
+ * console.log(affiliates.totalRecords); // Total number of affiliate records
9237
+ * });
9238
+ * ```
9239
+ */
9240
+ getAffiliates(options) {
9241
+ let params = new HttpParams();
9242
+ if (options) {
9243
+ if (options.page) {
9244
+ params = params.set('page', options.page);
9245
+ }
9246
+ if (options.rows) {
9247
+ params = params.set('rows', options.rows);
9248
+ }
9249
+ }
9250
+ return this.http
9251
+ .get(`${this.config.api_url}/get-affiliates.php`, {
9252
+ params,
9253
+ })
9254
+ .pipe(map((response) => {
9255
+ if (response.records === undefined ||
9256
+ response.records.length <= 0) {
9257
+ throw response;
9258
+ }
9259
+ const items = this.processAffiliates(response.records);
9260
+ return new EsolveList(items, options?.page, options?.rows, +response.additional_data.total_records);
9261
+ }));
9262
+ }
9263
+ /**
9264
+ * Retrieves affiliate information for user linking based on the provided affiliate key.
9265
+ *
9266
+ * @param affiliate_key - The unique identifier for the affiliate.
9267
+ * @returns - An observable that emits an `EsolveAffiliateCheckResult` object containing the retrieved affiliate check record.
9268
+ *
9269
+ * @remarks
9270
+ * If the `affiliate_key` parameter is an empty string, an error is emitted using the `EsolveErrorHandlerService`.
9271
+ * The function constructs an HTTP GET request with the affiliate key as a query parameter.
9272
+ * The response is validated and transformed into an `EsolveAffiliateCheckResult` object.
9273
+ * If the response does not contain a valid record, an error is thrown.
9274
+ * The function utilizes the `HttpClient` to make the HTTP request and applies RxJS operators for handling the response.
9275
+ *
9276
+ * @example
9277
+ * ```typescript
9278
+ * this.affiliateService.getAffiliateCheck('12345').subscribe((affiliateCheckResult) => {
9279
+ * console.log(affiliateCheckResult.record); // EsolveAffiliateCheckRecord object
9280
+ * });
9281
+ * ```
9282
+ */
9283
+ getAffiliateCheck(affiliate_key) {
9284
+ if (affiliate_key === '') {
9285
+ return this.errorHandler.emitError('affiliate_key_required', 'Affiliate key is required is required');
9286
+ }
9287
+ const params = new HttpParams({
9288
+ fromObject: { affiliate_key },
9289
+ });
9290
+ return this.http
9291
+ .get(`${this.config.api_url}/get-affiliate-check.php`, {
9292
+ params,
9293
+ })
9294
+ .pipe(map((response) => {
9295
+ let record = response.records;
9296
+ if (Array.isArray(record)) {
9297
+ record = undefined;
9298
+ }
9299
+ if (!record) {
9300
+ throw response;
9301
+ }
9302
+ return new EsolveAffiliateCheckResult(record);
9303
+ }));
9304
+ }
9305
+ /**
9306
+ * Sets the affiliate link using the provided options.
9307
+ *
9308
+ * @param options - The options for setting the affiliate link.
9309
+ * @returns - An observable that emits the result of the affiliate link set operation.
9310
+ *
9311
+ * @remarks
9312
+ * This function constructs a FormData object with the affiliate key from the provided options.
9313
+ * It then sends a POST request to the API endpoint `/set-affiliate-link.php` with the FormData.
9314
+ * The response is validated and transformed into an `EsolveAffiliateLinkResult` object.
9315
+ * If an error occurs during the HTTP request, it is handled and an appropriate error is emitted.
9316
+ */
9317
+ setAffiliateLink(options) {
9318
+ const form_data = new FormData();
9319
+ if (options.affiliate_id !== undefined && options.affiliate_id !== 0) {
9320
+ form_data.append('affiliate_key', options.affiliate_id.toString());
9321
+ }
9322
+ else if (options.affiliate_key !== undefined &&
9323
+ options.affiliate_key !== '') {
9324
+ form_data.append('affiliate_key', options.affiliate_key);
9325
+ }
9326
+ else {
9327
+ return this.errorHandler.emitError('affiliate_key_id_required', 'Affiliate key or id is required is required');
9328
+ }
9329
+ return this.http
9330
+ .post(`${this.config.api_url}/set-affiliate-link.php`, form_data, {
9331
+ responseType: 'json',
9332
+ observe: 'body',
9333
+ })
9334
+ .pipe(map((http_response) => this.responseHandler.validateSingleHttpResponse(http_response, (response) => new EsolveAffiliateLinkResult(response))), catchError$1((errorRes) => {
9335
+ return this.errorHandler.handleHttpPostError('set-enquiry', errorRes);
9336
+ }));
9337
+ }
9338
+ /**
9339
+ * Processes an array of `EsolveAffiliateRecord` objects and transforms them into an array of `EsolveAffiliate` objects.
9340
+ *
9341
+ * @param records - An array of `EsolveAffiliateRecord` objects to be processed.
9342
+ * @returns - An array of `EsolveAffiliate` objects, where each object is created from a corresponding `EsolveAffiliateRecord` object.
9343
+ *
9344
+ * @remarks
9345
+ * This function iterates over the input array of `EsolveAffiliateRecord` objects and creates a new `EsolveAffiliate` object for each record.
9346
+ * If the input array is empty, an empty array is returned.
9347
+ */
9348
+ processAffiliates(records) {
9349
+ const items = [];
9350
+ if (records.length > 0) {
9351
+ for (const record of records) {
9352
+ items.push(new EsolveAffiliate(record));
9353
+ }
9354
+ }
9355
+ return items;
9356
+ }
9357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: EsolveAffiliateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
9358
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: EsolveAffiliateService, providedIn: 'root' }); }
9359
+ }
9360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: EsolveAffiliateService, decorators: [{
9361
+ type: Injectable,
9362
+ args: [{
9363
+ providedIn: 'root',
9364
+ }]
9365
+ }] });
9366
+
9107
9367
  /*
9108
9368
  * Public API Surface of ng-esolve-connect
9109
9369
  */
@@ -9112,5 +9372,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImpor
9112
9372
  * Generated bundle index. Do not edit.
9113
9373
  */
9114
9374
 
9115
- export { ESOLVE_CONNECT_CONFIG, ESOLVE_EURUS_AUTO_LOGIN, EsolveAccountConfirmationResult, EsolveAccountPayment, EsolveAccountService, EsolveAdditionalStockImage, EsolveAddress, EsolveAddressResult, EsolveAlbum, EsolveAlbumImage, EsolveAlbumImageList, EsolveAlbumList, EsolveAlbumsService, EsolveAsset, EsolveAssetsService, EsolveAuthInterceptorService, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveCaptcha, EsolveCaptchaService, EsolveCartAlternative, EsolveCartItem, EsolveCartService, EsolveCartStockItem, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveCdnSrcDirective, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveColour, EsolveCompetition, EsolveCompetitionDates, EsolveCompetitionEntryResult, EsolveCompetitionWinner, EsolveCompetitionsService, EsolveConfigService, EsolveCookieService, EsolveCoupon, EsolveCouponsService, EsolveDeliveriesService, EsolveDelivery, EsolveDeliveryCategoryTotals, EsolveDeliveryList, EsolveDeliveryStatus, EsolveDependantItem, EsolveDeviceService, EsolveEmptyCartResult, EsolveEmptyWishlistResult, EsolveEnquiryResult, EsolveEnquiryService, EsolveErpDocumentRequest, EsolveErpDocumentsRequestResult, EsolveErrorHandlerService, EsolveFilterFactory, EsolveGenericFilter, EsolveGeocodeAddressResult, EsolveGeocodeCoordsResult, EsolveGeocodeResult, EsolveGeocoderService, EsolveHttpError, EsolveLinkedAsset, EsolveLinkedStockItem, EsolveList, EsolveLocation, EsolveLocationAddress, EsolveLocationContactInfo, EsolveLocationGEO, EsolveLocationList, EsolveLocationPOBoxAddress, EsolveLocationTradingDay, EsolveLocationTradingTimes, EsolveLocationUpdateResult, EsolveLocationsService, EsolveManufacturer, EsolveManufacturersService, EsolveMediaStockItem, EsolveMenuItem, EsolveMenuService, EsolveMultipleSelectFilter, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolveNewsletterResult, 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, EsolveStockGroup, EsolveStockGroupItem, EsolveStockImage, EsolveStockImageCollection, EsolveStockItem, EsolveStockItemBase, EsolveStockItemList, EsolveStockLeadTimes, EsolveStockPrice, EsolveStockReviewsReport, EsolveStockService, EsolveSuggestedStockItem, EsolveSupplier, EsolveSuppliersService, EsolveTag, EsolveTagsService, EsolveTimeSlot, EsolveTimeSlotConfig, EsolveTimeSlotDate, EsolveTimeSlotDays, EsolveTimeSlotTimes, EsolveToggleFilter, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionAnalyticsData, 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, esolveHexHash, isEsolveCdnPath, isFtgCdnPath, isLegacyEsolveCdnPath, processEsolveImageSrc, provideEsolveImageLoader, provideNgEsolveConnect };
9375
+ 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, EsolveAuthInterceptorService, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveCaptcha, EsolveCaptchaService, EsolveCartAlternative, EsolveCartItem, EsolveCartService, EsolveCartStockItem, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveCdnSrcDirective, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveColour, EsolveCompetition, EsolveCompetitionDates, EsolveCompetitionEntryResult, EsolveCompetitionWinner, EsolveCompetitionsService, EsolveConfigService, EsolveCookieService, EsolveCoupon, EsolveCouponsService, EsolveDeliveriesService, EsolveDelivery, EsolveDeliveryCategoryTotals, EsolveDeliveryList, EsolveDeliveryStatus, EsolveDependantItem, EsolveDeviceService, EsolveEmptyCartResult, EsolveEmptyWishlistResult, EsolveEnquiryResult, EsolveEnquiryService, EsolveErpDocumentRequest, EsolveErpDocumentsRequestResult, EsolveErrorHandlerService, EsolveFilterFactory, EsolveGenericFilter, EsolveGeocodeAddressResult, EsolveGeocodeCoordsResult, EsolveGeocodeResult, EsolveGeocoderService, EsolveHttpError, EsolveLinkedAsset, EsolveLinkedStockItem, EsolveList, EsolveLocation, EsolveLocationAddress, EsolveLocationContactInfo, EsolveLocationGEO, EsolveLocationList, EsolveLocationPOBoxAddress, EsolveLocationTradingDay, EsolveLocationTradingTimes, EsolveLocationUpdateResult, EsolveLocationsService, EsolveManufacturer, EsolveManufacturersService, EsolveMediaStockItem, EsolveMenuItem, EsolveMenuService, EsolveMultipleSelectFilter, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolveNewsletterResult, 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, EsolveStockGroup, EsolveStockGroupItem, EsolveStockImage, EsolveStockImageCollection, EsolveStockItem, EsolveStockItemBase, EsolveStockItemList, EsolveStockLeadTimes, EsolveStockPrice, EsolveStockReviewsReport, EsolveStockService, EsolveSuggestedStockItem, EsolveSupplier, EsolveSuppliersService, EsolveTag, EsolveTagsService, EsolveTimeSlot, EsolveTimeSlotConfig, EsolveTimeSlotDate, EsolveTimeSlotDays, EsolveTimeSlotTimes, EsolveToggleFilter, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionAnalyticsData, 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, esolveHexHash, isEsolveCdnPath, isFtgCdnPath, isLegacyEsolveCdnPath, processEsolveImageSrc, provideEsolveImageLoader, provideNgEsolveConnect };
9116
9376
  //# sourceMappingURL=esolve-ng-esolve-connect.mjs.map