@esolve/ng-esolve-connect 0.22.2 → 0.24.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.
- package/esm2020/lib/account/confirmation/esolve-account-confirmation-post-response-item.interface.mjs +2 -0
- package/esm2020/lib/account/confirmation/esolve-account-confirmation-result.model.mjs +10 -0
- package/esm2020/lib/account/confirmation/index.mjs +3 -0
- package/esm2020/lib/account/esolve-account.service.mjs +34 -1
- package/esm2020/lib/account/index.mjs +2 -1
- package/esm2020/lib/cart/esolve-checkout-response.interface.mjs +1 -1
- package/esm2020/lib/cart/esolve-checkout-result.model.mjs +2 -1
- package/esm2020/lib/locations/classes/esolve-location-address.model.mjs +13 -0
- package/esm2020/lib/locations/classes/esolve-location-contact-info.model.mjs +9 -0
- package/esm2020/lib/locations/classes/esolve-location-geo.model.mjs +8 -0
- package/esm2020/lib/locations/classes/esolve-location-pobox-address.model.mjs +8 -0
- package/esm2020/lib/locations/classes/esolve-location-trading-day.model.mjs +7 -0
- package/esm2020/lib/locations/classes/esolve-location-trading-times.model.mjs +14 -0
- package/esm2020/lib/locations/classes/esolve-location.model.mjs +48 -0
- package/esm2020/lib/locations/classes/index.mjs +9 -0
- package/esm2020/lib/locations/esolve-locations.service.mjs +2 -2
- package/esm2020/lib/locations/index.mjs +3 -8
- package/esm2020/lib/locations/interfaces/esolve-location-record.interface.mjs +2 -0
- package/esm2020/lib/locations/interfaces/index.mjs +2 -0
- package/esm2020/lib/payment/esolve-payment.service.mjs +6 -3
- package/esm2020/lib/payment/interfaces/esolve-payment-redirect-links.interface.mjs +2 -0
- package/esm2020/lib/payment/interfaces/esolve-payment-set-body.interface.mjs +1 -1
- package/esm2020/lib/payment/interfaces/index.mjs +2 -1
- package/esm2020/lib/suppliers/classes/esolve-supplier.model.mjs +27 -0
- package/esm2020/lib/suppliers/classes/index.mjs +2 -0
- package/esm2020/lib/suppliers/esolve-suppliers.service.mjs +59 -0
- package/esm2020/lib/suppliers/index.mjs +5 -0
- package/esm2020/lib/suppliers/interfaces/esolve-supplier-options.interface.mjs +2 -0
- package/esm2020/lib/suppliers/interfaces/esolve-supplier-record.interface.mjs +2 -0
- package/esm2020/lib/suppliers/interfaces/index.mjs +3 -0
- package/esm2020/lib/wishlist/esolve-wishlist.service.mjs +2 -2
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/esolve-ng-esolve-connect.mjs +148 -18
- package/fesm2015/esolve-ng-esolve-connect.mjs.map +1 -1
- package/fesm2020/esolve-ng-esolve-connect.mjs +144 -18
- package/fesm2020/esolve-ng-esolve-connect.mjs.map +1 -1
- package/lib/account/confirmation/esolve-account-confirmation-post-response-item.interface.d.ts +7 -0
- package/lib/account/confirmation/esolve-account-confirmation-result.model.d.ts +8 -0
- package/lib/account/confirmation/index.d.ts +2 -0
- package/lib/account/esolve-account.service.d.ts +10 -0
- package/lib/account/index.d.ts +1 -0
- package/lib/cart/esolve-checkout-response.interface.d.ts +1 -0
- package/lib/cart/esolve-checkout-result.model.d.ts +1 -0
- package/lib/locations/{esolve-location-address.model.d.ts → classes/esolve-location-address.model.d.ts} +0 -0
- package/lib/locations/{esolve-location-contact-info.model.d.ts → classes/esolve-location-contact-info.model.d.ts} +0 -0
- package/lib/locations/{esolve-location-geo.model.d.ts → classes/esolve-location-geo.model.d.ts} +0 -0
- package/lib/locations/{esolve-location-pobox-address.model.d.ts → classes/esolve-location-pobox-address.model.d.ts} +0 -0
- package/lib/locations/{esolve-location-trading-day.model.d.ts → classes/esolve-location-trading-day.model.d.ts} +0 -0
- package/lib/locations/{esolve-location-trading-times.model.d.ts → classes/esolve-location-trading-times.model.d.ts} +0 -0
- package/lib/locations/{esolve-location.model.d.ts → classes/esolve-location.model.d.ts} +2 -1
- package/lib/locations/classes/index.d.ts +7 -0
- package/lib/locations/esolve-locations.service.d.ts +1 -1
- package/lib/locations/index.d.ts +2 -7
- package/lib/locations/{esolve-location-record.interface.d.ts → interfaces/esolve-location-record.interface.d.ts} +1 -0
- package/lib/locations/interfaces/index.d.ts +1 -0
- package/lib/payment/esolve-payment.service.d.ts +2 -2
- package/lib/payment/interfaces/esolve-payment-redirect-links.interface.d.ts +4 -0
- package/lib/payment/interfaces/esolve-payment-set-body.interface.d.ts +2 -0
- package/lib/payment/interfaces/index.d.ts +1 -0
- package/lib/suppliers/classes/esolve-supplier.model.d.ts +26 -0
- package/lib/suppliers/classes/index.d.ts +1 -0
- package/lib/suppliers/esolve-suppliers.service.d.ts +16 -0
- package/lib/suppliers/index.d.ts +3 -0
- package/lib/suppliers/interfaces/esolve-supplier-options.interface.d.ts +4 -0
- package/lib/suppliers/interfaces/esolve-supplier-record.interface.d.ts +24 -0
- package/lib/suppliers/interfaces/index.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2020/lib/locations/esolve-location-address.model.mjs +0 -13
- package/esm2020/lib/locations/esolve-location-contact-info.model.mjs +0 -9
- package/esm2020/lib/locations/esolve-location-geo.model.mjs +0 -8
- package/esm2020/lib/locations/esolve-location-pobox-address.model.mjs +0 -8
- package/esm2020/lib/locations/esolve-location-record.interface.mjs +0 -2
- package/esm2020/lib/locations/esolve-location-trading-day.model.mjs +0 -7
- package/esm2020/lib/locations/esolve-location-trading-times.model.mjs +0 -14
- package/esm2020/lib/locations/esolve-location.model.mjs +0 -47
|
@@ -1961,6 +1961,14 @@ class EsolveLocationContactInfo {
|
|
|
1961
1961
|
}
|
|
1962
1962
|
}
|
|
1963
1963
|
|
|
1964
|
+
class EsolveLocationGEO {
|
|
1965
|
+
constructor(distance, range, target_description) {
|
|
1966
|
+
this.distance = distance;
|
|
1967
|
+
this.range = range;
|
|
1968
|
+
this.target_description = target_description;
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1964
1972
|
class EsolveLocationPOBoxAddress {
|
|
1965
1973
|
constructor(pobox, city, postal_code) {
|
|
1966
1974
|
this.pobox = pobox;
|
|
@@ -1969,6 +1977,13 @@ class EsolveLocationPOBoxAddress {
|
|
|
1969
1977
|
}
|
|
1970
1978
|
}
|
|
1971
1979
|
|
|
1980
|
+
class EsolveLocationTradingDay {
|
|
1981
|
+
constructor(open, close) {
|
|
1982
|
+
this.open = open;
|
|
1983
|
+
this.close = close;
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1972
1987
|
class EsolveLocationTradingTimes {
|
|
1973
1988
|
constructor(monday, tuesday, wednesday, thursday, friday, saturday, sunday, public_holiday, trading_hours_additional_info = '') {
|
|
1974
1989
|
this.monday = monday;
|
|
@@ -1983,21 +1998,6 @@ class EsolveLocationTradingTimes {
|
|
|
1983
1998
|
}
|
|
1984
1999
|
}
|
|
1985
2000
|
|
|
1986
|
-
class EsolveLocationTradingDay {
|
|
1987
|
-
constructor(open, close) {
|
|
1988
|
-
this.open = open;
|
|
1989
|
-
this.close = close;
|
|
1990
|
-
}
|
|
1991
|
-
}
|
|
1992
|
-
|
|
1993
|
-
class EsolveLocationGEO {
|
|
1994
|
-
constructor(distance, range, target_description) {
|
|
1995
|
-
this.distance = distance;
|
|
1996
|
-
this.range = range;
|
|
1997
|
-
this.target_description = target_description;
|
|
1998
|
-
}
|
|
1999
|
-
}
|
|
2000
|
-
|
|
2001
2001
|
class EsolveLocation {
|
|
2002
2002
|
constructor(record) {
|
|
2003
2003
|
this.id = +record.id;
|
|
@@ -2012,6 +2012,7 @@ class EsolveLocation {
|
|
|
2012
2012
|
this.active = !!+record.is_active;
|
|
2013
2013
|
this.dispatches_stock = !!+record.dispatches_stock;
|
|
2014
2014
|
this.include_on_enquiries = !!+record.include_on_enquiries;
|
|
2015
|
+
this.include_on_store_locator = !!+record.include_on_store_locator;
|
|
2015
2016
|
this.website_url = record.website_url;
|
|
2016
2017
|
this.address = new EsolveLocationAddress(record.street, record.suburb, record.city, record.province, record.country, record.postal_code, +record.latitude, +record.longitude);
|
|
2017
2018
|
this.pobox_address = new EsolveLocationPOBoxAddress(record.pobox, record.pobox_city, record.pobox_postal_code);
|
|
@@ -2039,6 +2040,8 @@ class EsolveLocation {
|
|
|
2039
2040
|
}
|
|
2040
2041
|
}
|
|
2041
2042
|
|
|
2043
|
+
// Classes
|
|
2044
|
+
|
|
2042
2045
|
class EsolveLocationsService {
|
|
2043
2046
|
constructor(config, http) {
|
|
2044
2047
|
this.config = config;
|
|
@@ -2233,6 +2236,15 @@ class EsolveRegistrationResult extends EsolveResponseResult {
|
|
|
2233
2236
|
}
|
|
2234
2237
|
}
|
|
2235
2238
|
|
|
2239
|
+
class EsolveAccountConfirmationResult extends EsolveResponseResult {
|
|
2240
|
+
constructor(response) {
|
|
2241
|
+
super(response);
|
|
2242
|
+
this.user_id = +response.esolve_id;
|
|
2243
|
+
this.location_id = +response.location_id;
|
|
2244
|
+
this.recalculated_cart = !!+response.recalculated_cart;
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2236
2248
|
class EsolveLocationUpdateResult extends EsolveResponseResult {
|
|
2237
2249
|
constructor(response) {
|
|
2238
2250
|
super(response);
|
|
@@ -2386,6 +2398,38 @@ class EsolveAccountService {
|
|
|
2386
2398
|
return this.errorHandler.handleHttpPostError('set-change-password', errorRes);
|
|
2387
2399
|
}));
|
|
2388
2400
|
}
|
|
2401
|
+
/**
|
|
2402
|
+
* Submits the users confirmation key to the relevant backend server in order to
|
|
2403
|
+
* confirm the accounts validity. The key was emailed to the user hence if he received
|
|
2404
|
+
* it and enters the value, the email account can be seen as valid.
|
|
2405
|
+
*
|
|
2406
|
+
* @param key The key that was emailed to the registered user's email account.
|
|
2407
|
+
* @returns An `Observable` that contains the result of the account confirmation request.
|
|
2408
|
+
*/
|
|
2409
|
+
accountConfirmationRequest(key) {
|
|
2410
|
+
const body = {
|
|
2411
|
+
key,
|
|
2412
|
+
};
|
|
2413
|
+
return this.http
|
|
2414
|
+
.post(`${this.config.api_url}/set-account-confirmation.php`, body, {
|
|
2415
|
+
headers: {
|
|
2416
|
+
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8;',
|
|
2417
|
+
},
|
|
2418
|
+
responseType: 'json',
|
|
2419
|
+
observe: 'body',
|
|
2420
|
+
})
|
|
2421
|
+
.pipe(map((http_response) => this.responseHandler.validateSingleHttpResponse(http_response, (response) => {
|
|
2422
|
+
if (response.auto_login) {
|
|
2423
|
+
this.sessionService.handleUpdateSession({
|
|
2424
|
+
user_id: +response.esolve_id,
|
|
2425
|
+
location_id: +response.location_id,
|
|
2426
|
+
});
|
|
2427
|
+
}
|
|
2428
|
+
return new EsolveAccountConfirmationResult(response);
|
|
2429
|
+
})), catchError((errorRes) => {
|
|
2430
|
+
return this.errorHandler.handleHttpPostError('set-account-confirmation', errorRes);
|
|
2431
|
+
}));
|
|
2432
|
+
}
|
|
2389
2433
|
sendForgotPasswordRequest(email) {
|
|
2390
2434
|
return this.http
|
|
2391
2435
|
.get(`${this.config.api_url}/get-forgot-password.php`, { params: { email } })
|
|
@@ -3910,6 +3954,7 @@ class EsolveCheckoutResult extends EsolveResponseResult {
|
|
|
3910
3954
|
super(response);
|
|
3911
3955
|
this.id = 0;
|
|
3912
3956
|
this.id = +response.esolve_id;
|
|
3957
|
+
this.process_payment = response.process_payment ?? false;
|
|
3913
3958
|
}
|
|
3914
3959
|
}
|
|
3915
3960
|
|
|
@@ -4468,7 +4513,7 @@ class EsolvePaymentService {
|
|
|
4468
4513
|
*
|
|
4469
4514
|
* @returns An `Observable` with the result of the payment
|
|
4470
4515
|
*/
|
|
4471
|
-
setPayment(transaction_id, payment_methods_id, card) {
|
|
4516
|
+
setPayment(transaction_id, payment_methods_id, card, links) {
|
|
4472
4517
|
const body = {
|
|
4473
4518
|
payment: {
|
|
4474
4519
|
cart_id: transaction_id,
|
|
@@ -4488,6 +4533,9 @@ class EsolvePaymentService {
|
|
|
4488
4533
|
};
|
|
4489
4534
|
}
|
|
4490
4535
|
}
|
|
4536
|
+
if (links) {
|
|
4537
|
+
body.links = links;
|
|
4538
|
+
}
|
|
4491
4539
|
return this.http
|
|
4492
4540
|
.post(`${this.config.api_url}/set-payment.php`, body, {
|
|
4493
4541
|
headers: {
|
|
@@ -4836,7 +4884,7 @@ class EsolveWishlistService {
|
|
|
4836
4884
|
*/
|
|
4837
4885
|
setWishlistEmpty() {
|
|
4838
4886
|
return this.http
|
|
4839
|
-
.post(`${this.config.api_url}/set-wishlist-empty.php`,
|
|
4887
|
+
.post(`${this.config.api_url}/set-wishlist-empty.php`, { empty: true }, {
|
|
4840
4888
|
headers: {
|
|
4841
4889
|
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8;',
|
|
4842
4890
|
},
|
|
@@ -4888,6 +4936,84 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
4888
4936
|
args: [ESOLVE_CONNECT_CONFIG]
|
|
4889
4937
|
}] }, { type: i1$2.HttpClient }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
|
|
4890
4938
|
|
|
4939
|
+
class EsolveSupplier {
|
|
4940
|
+
constructor(record) {
|
|
4941
|
+
this.id = record?.id;
|
|
4942
|
+
this.internal_account = record?.internal_account;
|
|
4943
|
+
this.external_account = record?.external_account;
|
|
4944
|
+
this.company_name = record?.company_name ?? '';
|
|
4945
|
+
this.owner_firstname = record?.owner_firstname ?? '';
|
|
4946
|
+
this.owner_surname = record?.owner_surname ?? '';
|
|
4947
|
+
this.owner_email = record?.owner_email ?? '';
|
|
4948
|
+
this.owner_contact_number = record?.owner_contact_number ?? '';
|
|
4949
|
+
this.rep_firstname = record?.rep_firstname ?? '';
|
|
4950
|
+
this.rep_surname = record?.rep_surname ?? '';
|
|
4951
|
+
this.rep_email = record?.rep_email ?? '';
|
|
4952
|
+
this.rep_contact_number = record?.rep_contact_number ?? '';
|
|
4953
|
+
this.street = record?.street ?? '';
|
|
4954
|
+
this.suburb = record?.suburb ?? '';
|
|
4955
|
+
this.city = record?.city ?? '';
|
|
4956
|
+
this.province = record?.province ?? '';
|
|
4957
|
+
this.country = record?.country ?? '';
|
|
4958
|
+
this.postal_code = record?.postal_code ?? '';
|
|
4959
|
+
this.catalogue_ref_1 = record?.catalogue_ref_1 ?? '';
|
|
4960
|
+
this.catalogue_ref_2 = record?.catalogue_ref_2 ?? '';
|
|
4961
|
+
this.is_active = record?.is_active;
|
|
4962
|
+
this.industry_type = record?.industry_type ?? '';
|
|
4963
|
+
}
|
|
4964
|
+
}
|
|
4965
|
+
|
|
4966
|
+
class EsolveSuppliersService {
|
|
4967
|
+
constructor(config, http) {
|
|
4968
|
+
this.config = config;
|
|
4969
|
+
this.http = http;
|
|
4970
|
+
}
|
|
4971
|
+
getSuppliers(options) {
|
|
4972
|
+
let params = new HttpParams();
|
|
4973
|
+
if (options?.industry_type) {
|
|
4974
|
+
params = params.set('industry_type', options.industry_type);
|
|
4975
|
+
}
|
|
4976
|
+
if (options?.internal_account) {
|
|
4977
|
+
params = params.set('internal_account', options.internal_account);
|
|
4978
|
+
}
|
|
4979
|
+
return this.getSupplierRecords(params).pipe(map((records) => {
|
|
4980
|
+
const suppliers = [];
|
|
4981
|
+
for (const record of records) {
|
|
4982
|
+
suppliers.push(this.processSuppliers(record));
|
|
4983
|
+
}
|
|
4984
|
+
return suppliers;
|
|
4985
|
+
}), catchError(() => {
|
|
4986
|
+
return of([]);
|
|
4987
|
+
}));
|
|
4988
|
+
}
|
|
4989
|
+
getSupplierRecords(params) {
|
|
4990
|
+
return this.http
|
|
4991
|
+
.get(`${this.config.api_url}/get-suppliers.php`, { params })
|
|
4992
|
+
.pipe(map((response) => {
|
|
4993
|
+
if ((response.records === undefined) ||
|
|
4994
|
+
(response.records.length === 0)) {
|
|
4995
|
+
throw response;
|
|
4996
|
+
}
|
|
4997
|
+
return response.records;
|
|
4998
|
+
;
|
|
4999
|
+
}));
|
|
5000
|
+
}
|
|
5001
|
+
processSuppliers(record) {
|
|
5002
|
+
return new EsolveSupplier(record);
|
|
5003
|
+
}
|
|
5004
|
+
}
|
|
5005
|
+
EsolveSuppliersService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EsolveSuppliersService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5006
|
+
EsolveSuppliersService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EsolveSuppliersService, providedIn: 'root' });
|
|
5007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: EsolveSuppliersService, decorators: [{
|
|
5008
|
+
type: Injectable,
|
|
5009
|
+
args: [{
|
|
5010
|
+
providedIn: 'root',
|
|
5011
|
+
}]
|
|
5012
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
5013
|
+
type: Inject,
|
|
5014
|
+
args: [ESOLVE_CONNECT_CONFIG]
|
|
5015
|
+
}] }, { type: i1$2.HttpClient }]; } });
|
|
5016
|
+
|
|
4891
5017
|
/*
|
|
4892
5018
|
* Public API Surface of ng-esolve-connect
|
|
4893
5019
|
*/
|
|
@@ -4896,5 +5022,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
4896
5022
|
* Generated bundle index. Do not edit.
|
|
4897
5023
|
*/
|
|
4898
5024
|
|
|
4899
|
-
export { ESOLVE_CONNECT_CONFIG, EsolveAccountService, EsolveAdditionalStockImage, EsolveAddress, EsolveAddressResult, EsolveAsset, EsolveAssetsService, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveCartItem, EsolveCartService, EsolveCartStockItem, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveColour, EsolveCookieService, EsolveEmptyCartResult, EsolveEmptyWishlistResult, EsolveEnquiryResult, EsolveEnquiryService, EsolveErrorHandlerService, EsolveFilterFactory, EsolveGeocodeAddressResult, EsolveGeocodeCoordsResult, EsolveGeocodeResult, EsolveGeocoderService, EsolveHttpError, EsolveLinkedAsset, EsolveLinkedStockItem, EsolveList, EsolveLocation, EsolveLocationAddress, EsolveLocationContactInfo, EsolveLocationPOBoxAddress, EsolveLocationTradingDay, EsolveLocationTradingTimes, EsolveLocationsService, EsolveManufacturer, EsolveManufacturersService, EsolveMediaStockItem, EsolveMenuItem, EsolveMenuService, EsolveMultipleSelectFilter, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolvePaymentMethod, EsolvePaymentResult, EsolvePaymentService, EsolveRange, EsolveRangeFilter, EsolveRangesService, EsolveRecipeStockItem, EsolveRegistrationResult, EsolveResetPasswordResult, EsolveResponseHandlerService, EsolveResponseResult, EsolveResult, EsolveSeoInfo, EsolveSeoService, EsolveSession, EsolveSessionService, EsolveShippingCost, EsolveShippingMethod, EsolveShippingService, EsolveShippingTotals, EsolveSingleSelectFilter, EsolveSpecial, EsolveSpecialDates, EsolveSpecialImage, EsolveSpecialImageCollection, EsolveSpecialsService, EsolveStockBadge, EsolveStockGroup, EsolveStockGroupItem, EsolveStockImage, EsolveStockImageCollection, EsolveStockItem, EsolveStockItemBase, EsolveStockItemList, EsolveStockLeadTimes, EsolveStockPrice, EsolveStockService, EsolveTag, EsolveTagsService, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionClient, EsolveTransactionItem, EsolveTransactionItemPrice, EsolveTransactionList, EsolveTransactionLocation, EsolveTransactionPaymentMethod, EsolveTransactionShippingMethod, EsolveTransactionUser, EsolveUserAccount, EsolveUserAccountBusiness, EsolveUserAccountContact, EsolveUserAccountResult, EsolveVaultItem, EsolveVaultItemResult, EsolveWishlistItem, EsolveWishlistService, NgEsolveConnectModule };
|
|
5025
|
+
export { ESOLVE_CONNECT_CONFIG, EsolveAccountConfirmationResult, EsolveAccountService, EsolveAdditionalStockImage, EsolveAddress, EsolveAddressResult, EsolveAsset, EsolveAssetsService, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveCartItem, EsolveCartService, EsolveCartStockItem, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveColour, EsolveCookieService, EsolveEmptyCartResult, EsolveEmptyWishlistResult, EsolveEnquiryResult, EsolveEnquiryService, EsolveErrorHandlerService, EsolveFilterFactory, EsolveGeocodeAddressResult, EsolveGeocodeCoordsResult, EsolveGeocodeResult, EsolveGeocoderService, EsolveHttpError, EsolveLinkedAsset, EsolveLinkedStockItem, EsolveList, EsolveLocation, EsolveLocationAddress, EsolveLocationContactInfo, EsolveLocationGEO, EsolveLocationPOBoxAddress, EsolveLocationTradingDay, EsolveLocationTradingTimes, EsolveLocationsService, EsolveManufacturer, EsolveManufacturersService, EsolveMediaStockItem, EsolveMenuItem, EsolveMenuService, EsolveMultipleSelectFilter, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolvePaymentMethod, EsolvePaymentResult, EsolvePaymentService, EsolveRange, EsolveRangeFilter, EsolveRangesService, EsolveRecipeStockItem, EsolveRegistrationResult, EsolveResetPasswordResult, EsolveResponseHandlerService, EsolveResponseResult, EsolveResult, EsolveSeoInfo, EsolveSeoService, EsolveSession, EsolveSessionService, EsolveShippingCost, EsolveShippingMethod, EsolveShippingService, EsolveShippingTotals, EsolveSingleSelectFilter, EsolveSpecial, EsolveSpecialDates, EsolveSpecialImage, EsolveSpecialImageCollection, EsolveSpecialsService, EsolveStockBadge, EsolveStockGroup, EsolveStockGroupItem, EsolveStockImage, EsolveStockImageCollection, EsolveStockItem, EsolveStockItemBase, EsolveStockItemList, EsolveStockLeadTimes, EsolveStockPrice, EsolveStockService, EsolveSupplier, EsolveSuppliersService, EsolveTag, EsolveTagsService, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionClient, EsolveTransactionItem, EsolveTransactionItemPrice, EsolveTransactionList, EsolveTransactionLocation, EsolveTransactionPaymentMethod, EsolveTransactionShippingMethod, EsolveTransactionUser, EsolveUserAccount, EsolveUserAccountBusiness, EsolveUserAccountContact, EsolveUserAccountResult, EsolveVaultItem, EsolveVaultItemResult, EsolveWishlistItem, EsolveWishlistService, NgEsolveConnectModule };
|
|
4900
5026
|
//# sourceMappingURL=esolve-ng-esolve-connect.mjs.map
|