@esolve/ng-esolve-connect 0.10.3 → 0.10.4

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 (26) hide show
  1. package/esm2020/lib/account/esolve-account.service.mjs +3 -3
  2. package/esm2020/lib/auth/esolve-auth-interceptor.service.mjs +3 -3
  3. package/esm2020/lib/auth/esolve-auth.service.mjs +18 -11
  4. package/esm2020/lib/banners/esolve-banner.service.mjs +3 -3
  5. package/esm2020/lib/cart/esolve-cart.service.mjs +3 -3
  6. package/esm2020/lib/category-tree/esolve-category-tree.service.mjs +3 -3
  7. package/esm2020/lib/locations/esolve-locations.service.mjs +3 -3
  8. package/esm2020/lib/media/esolve-media.service.mjs +3 -3
  9. package/esm2020/lib/menu/esolve-menu.service.mjs +3 -3
  10. package/esm2020/lib/news/esolve-news.service.mjs +3 -3
  11. package/esm2020/lib/ng-esolve-connect.module.mjs +4 -4
  12. package/esm2020/lib/payment/esolve-payment.service.mjs +3 -3
  13. package/esm2020/lib/session/esolve-session.service.mjs +9 -12
  14. package/esm2020/lib/shared/error-handler/esolve-error-handler.service.mjs +3 -3
  15. package/esm2020/lib/shared/response-handler/esolve-response-handler.service.mjs +3 -3
  16. package/esm2020/lib/shared/seo/esolve-seo.service.mjs +3 -3
  17. package/esm2020/lib/shipping/esolve-shipping.service.mjs +3 -3
  18. package/esm2020/lib/stock/esolve-stock.service.mjs +3 -3
  19. package/esm2020/lib/topics/esolve-topic.service.mjs +3 -3
  20. package/fesm2015/esolve-ng-esolve-connect.mjs +94 -91
  21. package/fesm2015/esolve-ng-esolve-connect.mjs.map +1 -1
  22. package/fesm2020/esolve-ng-esolve-connect.mjs +94 -91
  23. package/fesm2020/esolve-ng-esolve-connect.mjs.map +1 -1
  24. package/lib/auth/esolve-auth.service.d.ts +2 -1
  25. package/lib/session/esolve-session.service.d.ts +1 -3
  26. package/package.json +1 -1
@@ -1,12 +1,12 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, Injectable, Inject, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
- import * as i1$2 from '@angular/common/http';
2
+ import { InjectionToken, Injectable, Inject, NgModule, PLATFORM_ID } from '@angular/core';
3
+ import { CommonModule, isPlatformBrowser } from '@angular/common';
4
+ import * as i1$1 from '@angular/common/http';
5
5
  import { HttpParams, HTTP_INTERCEPTORS, HttpClientModule, HttpErrorResponse, HttpHeaders } from '@angular/common/http';
6
- import * as i1 from 'ngx-cookie-service';
6
+ import * as i4 from 'ngx-cookie-service';
7
7
  import { CookieService } from 'ngx-cookie-service';
8
8
  import { BehaviorSubject, throwError, iif, of } from 'rxjs';
9
- import * as i1$1 from '@angular/platform-browser';
9
+ import * as i1 from '@angular/platform-browser';
10
10
  import { tap, catchError, map, switchMap } from 'rxjs/operators';
11
11
 
12
12
  const ESOLVE_CONNECT_CONFIG = new InjectionToken('esolve.connect.config');
@@ -46,9 +46,8 @@ class EsolveSession {
46
46
  }
47
47
 
48
48
  class EsolveSessionService {
49
- constructor(config, cookieService) {
49
+ constructor(config) {
50
50
  this.config = config;
51
- this.cookieService = cookieService;
52
51
  this.storage_key = 'ngEslvUserSession';
53
52
  this.setStorageKey();
54
53
  this._session = new BehaviorSubject(new EsolveSession(0, ''));
@@ -73,7 +72,7 @@ class EsolveSessionService {
73
72
  }
74
73
  restore(expirationCallback, invalidSessionCallback) {
75
74
  if (!this.currentSession.valid) {
76
- const stored_session_json = this.cookieService.get(this.storage_key);
75
+ const stored_session_json = localStorage.getItem(this.storage_key);
77
76
  const stored_session = (stored_session_json ? JSON.parse(stored_session_json) : null);
78
77
  if (!stored_session) {
79
78
  invalidSessionCallback();
@@ -87,7 +86,6 @@ class EsolveSessionService {
87
86
  this.startTimer(expirationCallback, expiration_duration);
88
87
  }
89
88
  else {
90
- this.cookieService.delete(this.storage_key);
91
89
  expirationCallback(loaded_session);
92
90
  }
93
91
  }
@@ -95,23 +93,23 @@ class EsolveSessionService {
95
93
  handleSession(user_id, key, expiry_time, expires, expirationCallback) {
96
94
  const expiration_date = new Date(expiry_time * 1000);
97
95
  const session = new EsolveSession(user_id, key, expiration_date);
98
- this.cookieService.set(this.storage_key, JSON.stringify(session), expiration_date);
96
+ localStorage.setItem(this.storage_key, JSON.stringify(session));
99
97
  this._session.next(session);
100
98
  this.startTimer(expirationCallback, expires * 1000);
101
99
  }
102
100
  handleUpdateSession(user_id, callback) {
103
101
  const current_session = this.currentSession;
104
102
  current_session.updateUser(user_id);
105
- this.cookieService.set(this.storage_key, JSON.stringify(current_session));
103
+ localStorage.setItem(this.storage_key, JSON.stringify(current_session));
106
104
  this._session.next(current_session);
107
105
  if (typeof callback === 'function') {
108
106
  callback();
109
107
  }
110
108
  }
111
109
  }
112
- EsolveSessionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveSessionService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
113
- EsolveSessionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveSessionService, providedIn: 'root' });
114
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveSessionService, decorators: [{
110
+ EsolveSessionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveSessionService, deps: [{ token: ESOLVE_CONNECT_CONFIG }], target: i0.ɵɵFactoryTarget.Injectable });
111
+ EsolveSessionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveSessionService, providedIn: 'root' });
112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveSessionService, decorators: [{
115
113
  type: Injectable,
116
114
  args: [{
117
115
  providedIn: 'root'
@@ -119,7 +117,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
119
117
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
120
118
  type: Inject,
121
119
  args: [ESOLVE_CONNECT_CONFIG]
122
- }] }, { type: i1.CookieService }]; } });
120
+ }] }]; } });
123
121
 
124
122
  class EsolveAuthInterceptorService {
125
123
  constructor(config, session) {
@@ -150,9 +148,9 @@ class EsolveAuthInterceptorService {
150
148
  return next.handle(req);
151
149
  }
152
150
  }
153
- EsolveAuthInterceptorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAuthInterceptorService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: EsolveSessionService }], target: i0.ɵɵFactoryTarget.Injectable });
154
- EsolveAuthInterceptorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAuthInterceptorService });
155
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAuthInterceptorService, decorators: [{
151
+ EsolveAuthInterceptorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAuthInterceptorService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: EsolveSessionService }], target: i0.ɵɵFactoryTarget.Injectable });
152
+ EsolveAuthInterceptorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAuthInterceptorService });
153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAuthInterceptorService, decorators: [{
156
154
  type: Injectable
157
155
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
158
156
  type: Inject,
@@ -177,14 +175,14 @@ class NgEsolveConnectModule {
177
175
  };
178
176
  }
179
177
  }
180
- NgEsolveConnectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: NgEsolveConnectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
181
- NgEsolveConnectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: NgEsolveConnectModule, imports: [CommonModule,
178
+ NgEsolveConnectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgEsolveConnectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
179
+ NgEsolveConnectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgEsolveConnectModule, imports: [CommonModule,
182
180
  HttpClientModule] });
183
- NgEsolveConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: NgEsolveConnectModule, providers: [CookieService], imports: [[
181
+ NgEsolveConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgEsolveConnectModule, providers: [CookieService], imports: [[
184
182
  CommonModule,
185
183
  HttpClientModule
186
184
  ]] });
187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: NgEsolveConnectModule, decorators: [{
185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: NgEsolveConnectModule, decorators: [{
188
186
  type: NgModule,
189
187
  args: [{
190
188
  declarations: [],
@@ -299,9 +297,9 @@ class EsolveErrorHandlerService {
299
297
  return new EsolveHttpError('error', result.message, result.code);
300
298
  }
301
299
  }
302
- EsolveErrorHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
303
- EsolveErrorHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveErrorHandlerService, providedIn: 'root' });
304
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveErrorHandlerService, decorators: [{
300
+ EsolveErrorHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
301
+ EsolveErrorHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveErrorHandlerService, providedIn: 'root' });
302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveErrorHandlerService, decorators: [{
305
303
  type: Injectable,
306
304
  args: [{
307
305
  providedIn: 'root'
@@ -338,9 +336,9 @@ class EsolveResponseHandlerService {
338
336
  return resultHandler(response);
339
337
  }
340
338
  }
341
- EsolveResponseHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveResponseHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
342
- EsolveResponseHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveResponseHandlerService, providedIn: 'root' });
343
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveResponseHandlerService, decorators: [{
339
+ EsolveResponseHandlerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveResponseHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
340
+ EsolveResponseHandlerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveResponseHandlerService, providedIn: 'root' });
341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveResponseHandlerService, decorators: [{
344
342
  type: Injectable,
345
343
  args: [{
346
344
  providedIn: 'root'
@@ -455,9 +453,9 @@ class EsolveSeoService {
455
453
  this.setPageKeywordsTags(seoInfo.keywords);
456
454
  }
457
455
  }
458
- EsolveSeoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveSeoService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.Title }, { token: i1$1.Meta }], target: i0.ɵɵFactoryTarget.Injectable });
459
- EsolveSeoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveSeoService, providedIn: 'root' });
460
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveSeoService, decorators: [{
456
+ EsolveSeoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveSeoService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1.Title }, { token: i1.Meta }], target: i0.ɵɵFactoryTarget.Injectable });
457
+ EsolveSeoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveSeoService, providedIn: 'root' });
458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveSeoService, decorators: [{
461
459
  type: Injectable,
462
460
  args: [{
463
461
  providedIn: 'root'
@@ -465,11 +463,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
465
463
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
466
464
  type: Inject,
467
465
  args: [ESOLVE_CONNECT_CONFIG]
468
- }] }, { type: i1$1.Title }, { type: i1$1.Meta }]; } });
466
+ }] }, { type: i1.Title }, { type: i1.Meta }]; } });
469
467
 
470
468
  class EsolveAuthService {
471
- constructor(config, http, session, errorHandler, cookieService) {
469
+ constructor(config, platformId, http, session, errorHandler, cookieService) {
472
470
  this.config = config;
471
+ this.platformId = platformId;
473
472
  this.http = http;
474
473
  this.session = session;
475
474
  this.errorHandler = errorHandler;
@@ -478,7 +477,7 @@ class EsolveAuthService {
478
477
  getAccessToken(email, password, anonymous = false) {
479
478
  let params = new HttpParams();
480
479
  if (anonymous) {
481
- params = params.set('anonymous', '1');
480
+ params = params.set('anonymous', true);
482
481
  }
483
482
  if (email !== '') {
484
483
  params = params.set('email', email);
@@ -502,11 +501,13 @@ class EsolveAuthService {
502
501
  }));
503
502
  }
504
503
  autoLogin() {
505
- this.session.restore(this.handleExpiration(), () => {
506
- this.getAccessToken('', '', true).toPromise().then(_ => { }, error => {
507
- console.log(error);
504
+ if (isPlatformBrowser(this.platformId)) {
505
+ this.session.restore(this.handleExpiration(), () => {
506
+ this.getAccessToken('', '', true).toPromise().then(_ => { }, error => {
507
+ console.log(error);
508
+ });
508
509
  });
509
- });
510
+ }
510
511
  }
511
512
  login(email, password) {
512
513
  const body = {
@@ -608,9 +609,9 @@ class EsolveAuthService {
608
609
  return throwError(error);
609
610
  }
610
611
  }
611
- EsolveAuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAuthService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }, { token: EsolveSessionService }, { token: EsolveErrorHandlerService }, { token: i1.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
612
- EsolveAuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAuthService, providedIn: 'root' });
613
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAuthService, decorators: [{
612
+ EsolveAuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAuthService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: PLATFORM_ID }, { token: i1$1.HttpClient }, { token: EsolveSessionService }, { token: EsolveErrorHandlerService }, { token: i4.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
613
+ EsolveAuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAuthService, providedIn: 'root' });
614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAuthService, decorators: [{
614
615
  type: Injectable,
615
616
  args: [{
616
617
  providedIn: 'root'
@@ -618,7 +619,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
618
619
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
619
620
  type: Inject,
620
621
  args: [ESOLVE_CONNECT_CONFIG]
621
- }] }, { type: i1$2.HttpClient }, { type: EsolveSessionService }, { type: EsolveErrorHandlerService }, { type: i1.CookieService }]; } });
622
+ }] }, { type: Object, decorators: [{
623
+ type: Inject,
624
+ args: [PLATFORM_ID]
625
+ }] }, { type: i1$1.HttpClient }, { type: EsolveSessionService }, { type: EsolveErrorHandlerService }, { type: i4.CookieService }]; } });
622
626
 
623
627
  class EsolveAddress {
624
628
  constructor(id, recipient, address_type, pobox, place_name, street_number, street, suburb, city, province, country, postal_code, latitude, longitude) {
@@ -1211,9 +1215,9 @@ class EsolveAccountService {
1211
1215
  }
1212
1216
  }
1213
1217
  }
1214
- EsolveAccountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAccountService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }, { token: EsolveSessionService }, { token: EsolveErrorHandlerService }, { token: EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
1215
- EsolveAccountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAccountService, providedIn: 'root' });
1216
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveAccountService, decorators: [{
1218
+ EsolveAccountService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAccountService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }, { token: EsolveSessionService }, { token: EsolveErrorHandlerService }, { token: EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
1219
+ EsolveAccountService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAccountService, providedIn: 'root' });
1220
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveAccountService, decorators: [{
1217
1221
  type: Injectable,
1218
1222
  args: [{
1219
1223
  providedIn: 'root'
@@ -1221,7 +1225,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
1221
1225
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1222
1226
  type: Inject,
1223
1227
  args: [ESOLVE_CONNECT_CONFIG]
1224
- }] }, { type: i1$2.HttpClient }, { type: EsolveSessionService }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
1228
+ }] }, { type: i1$1.HttpClient }, { type: EsolveSessionService }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
1225
1229
 
1226
1230
  class EsolveMediaArticle {
1227
1231
  constructor(identifier, title, article, image_url = '', tags = [], topics = [], seo_title = '', seo_keywords = '', seo_description = '') {
@@ -1329,9 +1333,9 @@ class EsolveMediaService {
1329
1333
  return this.http.get(`${this.config.api_url}/service/get-media.php`, { params });
1330
1334
  }
1331
1335
  }
1332
- EsolveMediaService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveMediaService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1333
- EsolveMediaService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveMediaService, providedIn: 'root' });
1334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveMediaService, decorators: [{
1336
+ EsolveMediaService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveMediaService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1337
+ EsolveMediaService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveMediaService, providedIn: 'root' });
1338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveMediaService, decorators: [{
1335
1339
  type: Injectable,
1336
1340
  args: [{
1337
1341
  providedIn: 'root'
@@ -1339,7 +1343,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
1339
1343
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1340
1344
  type: Inject,
1341
1345
  args: [ESOLVE_CONNECT_CONFIG]
1342
- }] }, { type: i1$2.HttpClient }]; } });
1346
+ }] }, { type: i1$1.HttpClient }]; } });
1343
1347
 
1344
1348
  class EsolveNewsGroup {
1345
1349
  constructor(id, name, description, sef_name) {
@@ -1471,9 +1475,9 @@ class EsolveNewsService {
1471
1475
  return new EsolveNewsArticle(newsRecord.id, newsRecord.title, newsRecord.sef_title, newsRecord.article, newsRecord.short_description, newsRecord.txdate, newsRecord.active, newsRecord.image, newsRecord.featured, author, newsRecord.seo_page_title, newsRecord.seo_keywords);
1472
1476
  }
1473
1477
  }
1474
- EsolveNewsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveNewsService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1475
- EsolveNewsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveNewsService, providedIn: 'root' });
1476
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveNewsService, decorators: [{
1478
+ EsolveNewsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveNewsService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1479
+ EsolveNewsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveNewsService, providedIn: 'root' });
1480
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveNewsService, decorators: [{
1477
1481
  type: Injectable,
1478
1482
  args: [{
1479
1483
  providedIn: 'root'
@@ -1481,7 +1485,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
1481
1485
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1482
1486
  type: Inject,
1483
1487
  args: [ESOLVE_CONNECT_CONFIG]
1484
- }] }, { type: i1$2.HttpClient }]; } });
1488
+ }] }, { type: i1$1.HttpClient }]; } });
1485
1489
 
1486
1490
  class EsolveBanner {
1487
1491
  constructor(id, banner_display_container, identifier, type, title, article, sort_priority, link, images) {
@@ -1614,9 +1618,9 @@ class EsolveBannerService {
1614
1618
  return banners;
1615
1619
  }
1616
1620
  }
1617
- EsolveBannerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveBannerService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1618
- EsolveBannerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveBannerService, providedIn: 'root' });
1619
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveBannerService, decorators: [{
1621
+ EsolveBannerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveBannerService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1622
+ EsolveBannerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveBannerService, providedIn: 'root' });
1623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveBannerService, decorators: [{
1620
1624
  type: Injectable,
1621
1625
  args: [{
1622
1626
  providedIn: 'root'
@@ -1624,7 +1628,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
1624
1628
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1625
1629
  type: Inject,
1626
1630
  args: [ESOLVE_CONNECT_CONFIG]
1627
- }] }, { type: i1$2.HttpClient }]; } });
1631
+ }] }, { type: i1$1.HttpClient }]; } });
1628
1632
 
1629
1633
  class EsolveMenuItem {
1630
1634
  constructor(url, name, target, children = []) {
@@ -1664,9 +1668,9 @@ class EsolveMenuService {
1664
1668
  return menu;
1665
1669
  }
1666
1670
  }
1667
- EsolveMenuService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveMenuService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1668
- EsolveMenuService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveMenuService, providedIn: 'root' });
1669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveMenuService, decorators: [{
1671
+ EsolveMenuService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveMenuService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1672
+ EsolveMenuService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveMenuService, providedIn: 'root' });
1673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveMenuService, decorators: [{
1670
1674
  type: Injectable,
1671
1675
  args: [{
1672
1676
  providedIn: 'root'
@@ -1674,7 +1678,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
1674
1678
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1675
1679
  type: Inject,
1676
1680
  args: [ESOLVE_CONNECT_CONFIG]
1677
- }] }, { type: i1$2.HttpClient }]; } });
1681
+ }] }, { type: i1$1.HttpClient }]; } });
1678
1682
 
1679
1683
  class EsolveTopicService {
1680
1684
  constructor(config, http) {
@@ -1714,9 +1718,9 @@ class EsolveTopicService {
1714
1718
  return topics;
1715
1719
  }
1716
1720
  }
1717
- EsolveTopicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveTopicService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1718
- EsolveTopicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveTopicService, providedIn: 'root' });
1719
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveTopicService, decorators: [{
1721
+ EsolveTopicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveTopicService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1722
+ EsolveTopicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveTopicService, providedIn: 'root' });
1723
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveTopicService, decorators: [{
1720
1724
  type: Injectable,
1721
1725
  args: [{
1722
1726
  providedIn: 'root'
@@ -1724,7 +1728,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
1724
1728
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1725
1729
  type: Inject,
1726
1730
  args: [ESOLVE_CONNECT_CONFIG]
1727
- }] }, { type: i1$2.HttpClient }]; } });
1731
+ }] }, { type: i1$1.HttpClient }]; } });
1728
1732
 
1729
1733
  class EsolveStockBadge {
1730
1734
  constructor(id, text, identifier, font_colour, badge_colour, sort_priority) {
@@ -2044,9 +2048,9 @@ class EsolveStockService {
2044
2048
  }));
2045
2049
  }
2046
2050
  }
2047
- EsolveStockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveStockService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2048
- EsolveStockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveStockService, providedIn: 'root' });
2049
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveStockService, decorators: [{
2051
+ EsolveStockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveStockService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2052
+ EsolveStockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveStockService, providedIn: 'root' });
2053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveStockService, decorators: [{
2050
2054
  type: Injectable,
2051
2055
  args: [{
2052
2056
  providedIn: 'root'
@@ -2054,7 +2058,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2054
2058
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2055
2059
  type: Inject,
2056
2060
  args: [ESOLVE_CONNECT_CONFIG]
2057
- }] }, { type: i1$2.HttpClient }]; } });
2061
+ }] }, { type: i1$1.HttpClient }]; } });
2058
2062
 
2059
2063
  class EsolveCategoryTreeItem {
2060
2064
  constructor(type, esolve_id, parent_id, description, sef_description, short_description, sort_priority, active, display_only, image_name, seo_title, seo_keywords, seo_description, children) {
@@ -2209,9 +2213,9 @@ class EsolveCategoryTreeService {
2209
2213
  return null;
2210
2214
  }
2211
2215
  }
2212
- EsolveCategoryTreeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveCategoryTreeService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2213
- EsolveCategoryTreeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveCategoryTreeService, providedIn: 'root' });
2214
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveCategoryTreeService, decorators: [{
2216
+ EsolveCategoryTreeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveCategoryTreeService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2217
+ EsolveCategoryTreeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveCategoryTreeService, providedIn: 'root' });
2218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveCategoryTreeService, decorators: [{
2215
2219
  type: Injectable,
2216
2220
  args: [{
2217
2221
  providedIn: 'root'
@@ -2219,7 +2223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2219
2223
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2220
2224
  type: Inject,
2221
2225
  args: [ESOLVE_CONNECT_CONFIG]
2222
- }] }, { type: i1$2.HttpClient }]; } });
2226
+ }] }, { type: i1$1.HttpClient }]; } });
2223
2227
 
2224
2228
  class EsolveCheckoutResult extends EsolveResponseResult {
2225
2229
  constructor(response) {
@@ -2486,9 +2490,9 @@ class EsolveCartService {
2486
2490
  return cart_totals;
2487
2491
  }
2488
2492
  }
2489
- EsolveCartService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveCartService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }, { token: EsolveErrorHandlerService }, { token: EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
2490
- EsolveCartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveCartService, providedIn: 'root' });
2491
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveCartService, decorators: [{
2493
+ EsolveCartService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveCartService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }, { token: EsolveErrorHandlerService }, { token: EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
2494
+ EsolveCartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveCartService, providedIn: 'root' });
2495
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveCartService, decorators: [{
2492
2496
  type: Injectable,
2493
2497
  args: [{
2494
2498
  providedIn: 'root'
@@ -2496,7 +2500,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2496
2500
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2497
2501
  type: Inject,
2498
2502
  args: [ESOLVE_CONNECT_CONFIG]
2499
- }] }, { type: i1$2.HttpClient }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
2503
+ }] }, { type: i1$1.HttpClient }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
2500
2504
 
2501
2505
  class EsolveVaultItemResult extends EsolveResponseResult {
2502
2506
  constructor(response) {
@@ -2776,9 +2780,9 @@ class EsolvePaymentService {
2776
2780
  }));
2777
2781
  }
2778
2782
  }
2779
- EsolvePaymentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolvePaymentService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }, { token: EsolveErrorHandlerService }, { token: EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
2780
- EsolvePaymentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolvePaymentService, providedIn: 'root' });
2781
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolvePaymentService, decorators: [{
2783
+ EsolvePaymentService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolvePaymentService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }, { token: EsolveErrorHandlerService }, { token: EsolveResponseHandlerService }], target: i0.ɵɵFactoryTarget.Injectable });
2784
+ EsolvePaymentService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolvePaymentService, providedIn: 'root' });
2785
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolvePaymentService, decorators: [{
2782
2786
  type: Injectable,
2783
2787
  args: [{
2784
2788
  providedIn: 'root'
@@ -2786,7 +2790,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2786
2790
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2787
2791
  type: Inject,
2788
2792
  args: [ESOLVE_CONNECT_CONFIG]
2789
- }] }, { type: i1$2.HttpClient }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
2793
+ }] }, { type: i1$1.HttpClient }, { type: EsolveErrorHandlerService }, { type: EsolveResponseHandlerService }]; } });
2790
2794
 
2791
2795
  class EsolveShippingMethod {
2792
2796
  constructor(id, carrier_name, delivery_category, description, location, pricing, link_to_carrier_website, days_to_deliver, shipping_cost_calculation_method, insurance_cost_calculation_method, insurance_cost_percentage, metric_factor, allow_immediate_payment_processing, allow_postal_address, allow_physical_address, client_to_collect, is_default, location_id, use_zones, min_distance, max_distance, shipping_surge_condition, shipping_surge_percentage, sort_priority, shipping_group, shipping_slot_identifier, shipping_slot_delay_hours, image_url) {
@@ -2926,9 +2930,9 @@ class EsolveShippingService {
2926
2930
  }
2927
2931
  }
2928
2932
  }
2929
- EsolveShippingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveShippingService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2930
- EsolveShippingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveShippingService, providedIn: 'root' });
2931
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveShippingService, decorators: [{
2933
+ EsolveShippingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveShippingService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2934
+ EsolveShippingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveShippingService, providedIn: 'root' });
2935
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveShippingService, decorators: [{
2932
2936
  type: Injectable,
2933
2937
  args: [{
2934
2938
  providedIn: 'root'
@@ -2936,7 +2940,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2936
2940
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2937
2941
  type: Inject,
2938
2942
  args: [ESOLVE_CONNECT_CONFIG]
2939
- }] }, { type: i1$2.HttpClient }]; } });
2943
+ }] }, { type: i1$1.HttpClient }]; } });
2940
2944
 
2941
2945
  class EsolveLocationsService {
2942
2946
  constructor(config, http) {
@@ -2972,9 +2976,9 @@ class EsolveLocationsService {
2972
2976
  return stock_locations;
2973
2977
  }
2974
2978
  }
2975
- EsolveLocationsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveLocationsService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2976
- EsolveLocationsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveLocationsService, providedIn: 'root' });
2977
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImport: i0, type: EsolveLocationsService, decorators: [{
2979
+ EsolveLocationsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveLocationsService, deps: [{ token: ESOLVE_CONNECT_CONFIG }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2980
+ EsolveLocationsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveLocationsService, providedIn: 'root' });
2981
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: EsolveLocationsService, decorators: [{
2978
2982
  type: Injectable,
2979
2983
  args: [{
2980
2984
  providedIn: 'root'
@@ -2982,7 +2986,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2982
2986
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2983
2987
  type: Inject,
2984
2988
  args: [ESOLVE_CONNECT_CONFIG]
2985
- }] }, { type: i1$2.HttpClient }]; } });
2989
+ }] }, { type: i1$1.HttpClient }]; } });
2986
2990
 
2987
2991
  /*
2988
2992
  * Public API Surface of ng-esolve-connect
@@ -2993,4 +2997,3 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.0", ngImpor
2993
2997
  */
2994
2998
 
2995
2999
  export { EsolveAccountService, EsolveAddress, EsolveAddressResult, EsolveAuthService, EsolveBankingDetails, EsolveBanner, EsolveBannerImage, EsolveBannerImageHotspot, EsolveBannerService, EsolveCartItem, EsolveCartService, EsolveCartTotals, EsolveCategoryTreeItem, EsolveCategoryTreeService, EsolveChangePasswordResult, EsolveCheckoutResult, EsolveErrorHandlerService, EsolveHttpError, EsolveList, EsolveLocationsService, EsolveMediaArticle, EsolveMediaService, EsolveMenuItem, EsolveMenuService, EsolveNewsArticle, EsolveNewsArticleAuthor, EsolveNewsArticleList, EsolveNewsGroup, EsolveNewsService, EsolvePaymentMethod, EsolvePaymentResult, EsolvePaymentService, EsolveRegistrationResult, EsolveResetPasswordResult, EsolveResponseHandlerService, EsolveResponseResult, EsolveResult, EsolveSEOInfo, EsolveSeoService, EsolveSession, EsolveSessionService, EsolveShippingCost, EsolveShippingMethod, EsolveShippingService, EsolveStockBadge, EsolveStockItem, EsolveStockItemList, EsolveStockLocation, EsolveStockLocationAddress, EsolveStockLocationContactInfo, EsolveStockLocationPOBoxAddress, EsolveStockLocationTradingTimes, EsolveStockLocationTradingTimesDay, EsolveStockPrice, EsolveStockService, EsolveTag, EsolveTopic, EsolveTopicService, EsolveTransaction, EsolveTransactionAddress, EsolveTransactionClient, EsolveTransactionItem, EsolveTransactionItemPrice, EsolveTransactionList, EsolveTransactionLocation, EsolveTransactionPaymentMethod, EsolveTransactionShippingMethod, EsolveTransactionUser, EsolveUserAccount, EsolveUserAccountBusiness, EsolveUserAccountContact, EsolveUserAccountResult, EsolveVaultItem, EsolveVaultItemResult, NgEsolveConnectModule };
2996
- //# sourceMappingURL=esolve-ng-esolve-connect.mjs.map