@experteam-mx/ngx-services 20.3.1-dev3.0 → 20.3.1-dev3.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.
@@ -48,11 +48,11 @@ class NgxServicesModule {
48
48
  providers: [provideNgxServices(environment)]
49
49
  };
50
50
  }
51
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NgxServicesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
52
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.18", ngImport: i0, type: NgxServicesModule });
53
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NgxServicesModule, providers: [provideHttpClient()] });
51
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: NgxServicesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
52
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.21", ngImport: i0, type: NgxServicesModule });
53
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: NgxServicesModule, providers: [provideHttpClient()] });
54
54
  }
55
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NgxServicesModule, decorators: [{
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: NgxServicesModule, decorators: [{
56
56
  type: NgModule,
57
57
  args: [{
58
58
  providers: [provideHttpClient()]
@@ -75,7 +75,7 @@ class ApiBillingCOService {
75
75
  * Retrieves the information of a customer by its identifier.
76
76
  *
77
77
  * @param {number} id - Unique customer identifier.
78
- * @returns {Observable<BillingCoCustomerOut>}
78
+ * @returns {Observable<CoCustomerOut>}
79
79
  * Observable emitting the customer information.
80
80
  */
81
81
  getCustomer(id) {
@@ -85,8 +85,8 @@ class ApiBillingCOService {
85
85
  /**
86
86
  * Creates a new customer.
87
87
  *
88
- * @param {BillingCOCustomerIn} body - Customer data to be created.
89
- * @returns {Observable<BillingCoCustomerOut>}
88
+ * @param {CoCustomerIn} body - Customer data to be created.
89
+ * @returns {Observable<CoCustomerOut>}
90
90
  * Observable emitting the created customer information.
91
91
  */
92
92
  postCustomer(body) {
@@ -97,7 +97,7 @@ class ApiBillingCOService {
97
97
  * Retrieves the list of departments based on the provided query parameters.
98
98
  *
99
99
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
100
- * @returns {Observable<DepartmentCoOut>}
100
+ * @returns {Observable<CoDepartmentsOut>}
101
101
  * Observable emitting the departments list.
102
102
  */
103
103
  getDepartments(params) {
@@ -108,7 +108,7 @@ class ApiBillingCOService {
108
108
  * Retrieves the list of municipalities based on the provided query parameters.
109
109
  *
110
110
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
111
- * @returns {Observable<MunicipalityCoOut>}
111
+ * @returns {Observable<CoMunicipalitiesOut>}
112
112
  * Observable emitting the municipalities list.
113
113
  */
114
114
  getMunicipalities(params) {
@@ -119,7 +119,7 @@ class ApiBillingCOService {
119
119
  * Retrieves the list of postal codes based on the provided query parameters.
120
120
  *
121
121
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
122
- * @returns {Observable<PostalCodeCoOut>}
122
+ * @returns {Observable<CoPostalCodesOut>}
123
123
  * Observable emitting the postal codes list.
124
124
  */
125
125
  getPostalCodes(params) {
@@ -130,7 +130,7 @@ class ApiBillingCOService {
130
130
  * Retrieves the list of fiscal regimes based on the provided query parameters.
131
131
  *
132
132
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
133
- * @returns {Observable<FiscalRegimeCoOut>}
133
+ * @returns {Observable<CoFiscalRegimesOut>}
134
134
  * Observable emitting the fiscal regimes list.
135
135
  */
136
136
  getFiscalRegimes(params) {
@@ -141,7 +141,7 @@ class ApiBillingCOService {
141
141
  * Retrieves the list of fiscal responsibilities based on the provided query parameters.
142
142
  *
143
143
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
144
- * @returns {Observable<FiscalResponsibilityCoOut>}
144
+ * @returns {Observable<CoFiscalResponsibilitiesOut>}
145
145
  * Observable emitting the fiscal responsibilities list.
146
146
  */
147
147
  getFiscalResponsibilities(params) {
@@ -152,17 +152,17 @@ class ApiBillingCOService {
152
152
  * Retrieves the list of tributes based on the provided query parameters.
153
153
  *
154
154
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
155
- * @returns {Observable<TributeCoOut>}
155
+ * @returns {Observable<CoTributesOut>}
156
156
  * Observable emitting the tributes list.
157
157
  */
158
158
  getTributes(params) {
159
159
  return this.http.get(`${this.url}/tributes`, { params })
160
160
  .pipe(map(({ data }) => data));
161
161
  }
162
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingCOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
163
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingCOService, providedIn: 'root' });
162
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingCOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
163
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingCOService, providedIn: 'root' });
164
164
  }
165
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingCOService, decorators: [{
165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingCOService, decorators: [{
166
166
  type: Injectable,
167
167
  args: [{
168
168
  providedIn: 'root'
@@ -189,10 +189,10 @@ class ApiBillingDOService {
189
189
  return this.http.get(`${this.url}/income-types`)
190
190
  .pipe(map(({ data }) => data));
191
191
  }
192
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingDOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
193
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingDOService, providedIn: 'root' });
192
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingDOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
193
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingDOService, providedIn: 'root' });
194
194
  }
195
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingDOService, decorators: [{
195
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingDOService, decorators: [{
196
196
  type: Injectable,
197
197
  args: [{
198
198
  providedIn: 'root'
@@ -239,10 +239,10 @@ class ApiBillingGtService {
239
239
  return this.http.post(`${this.url}/locations`, body)
240
240
  .pipe(map(({ data }) => data));
241
241
  }
242
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingGtService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
243
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingGtService, providedIn: 'root' });
242
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingGtService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
243
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingGtService, providedIn: 'root' });
244
244
  }
245
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingGtService, decorators: [{
245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingGtService, decorators: [{
246
246
  type: Injectable,
247
247
  args: [{
248
248
  providedIn: 'root'
@@ -290,10 +290,10 @@ class ApiBillingMxService {
290
290
  return this.http.get(`${this.url}/postal-codes`, { params })
291
291
  .pipe(map(({ data }) => data));
292
292
  }
293
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingMxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
294
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingMxService, providedIn: 'root' });
293
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingMxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
294
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingMxService, providedIn: 'root' });
295
295
  }
296
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingMxService, decorators: [{
296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingMxService, decorators: [{
297
297
  type: Injectable,
298
298
  args: [{
299
299
  providedIn: 'root'
@@ -384,10 +384,10 @@ class ApiBillingPaService {
384
384
  return this.http.post(`${this.url}/locations`, body)
385
385
  .pipe(map(({ data }) => data));
386
386
  }
387
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingPaService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
388
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingPaService, providedIn: 'root' });
387
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingPaService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
388
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingPaService, providedIn: 'root' });
389
389
  }
390
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingPaService, decorators: [{
390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingPaService, decorators: [{
391
391
  type: Injectable,
392
392
  args: [{
393
393
  providedIn: 'root'
@@ -456,10 +456,10 @@ class ApiBillingSvService {
456
456
  return this.http.get(`${this.url}/municipalities`, { params })
457
457
  .pipe(map(({ data }) => data));
458
458
  }
459
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingSvService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
460
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingSvService, providedIn: 'root' });
459
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingSvService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
460
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingSvService, providedIn: 'root' });
461
461
  }
462
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiBillingSvService, decorators: [{
462
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingSvService, decorators: [{
463
463
  type: Injectable,
464
464
  args: [{
465
465
  providedIn: 'root'
@@ -547,10 +547,10 @@ class ApiCashOperationsService {
547
547
  return this.http.get(`${this.url}/deposits/${id}/slip`)
548
548
  .pipe(map(({ data }) => data));
549
549
  }
550
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCashOperationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
551
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCashOperationsService, providedIn: 'root' });
550
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCashOperationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
551
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCashOperationsService, providedIn: 'root' });
552
552
  }
553
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCashOperationsService, decorators: [{
553
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCashOperationsService, decorators: [{
554
554
  type: Injectable,
555
555
  args: [{
556
556
  providedIn: 'root'
@@ -1170,10 +1170,10 @@ class ApiCatalogsService {
1170
1170
  return this.http.get(`${this.url}/package-locations`, { params })
1171
1171
  .pipe(map(({ data }) => data));
1172
1172
  }
1173
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCatalogsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1174
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCatalogsService, providedIn: 'root' });
1173
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCatalogsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1174
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCatalogsService, providedIn: 'root' });
1175
1175
  }
1176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCatalogsService, decorators: [{
1176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCatalogsService, decorators: [{
1177
1177
  type: Injectable,
1178
1178
  args: [{
1179
1179
  providedIn: 'root'
@@ -2247,10 +2247,10 @@ class ApiCompaniesService {
2247
2247
  }
2248
2248
  }).pipe(map(({ data }) => data));
2249
2249
  }
2250
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCompaniesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2251
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCompaniesService, providedIn: 'root' });
2250
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompaniesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2251
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompaniesService, providedIn: 'root' });
2252
2252
  }
2253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCompaniesService, decorators: [{
2253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompaniesService, decorators: [{
2254
2254
  type: Injectable,
2255
2255
  args: [{
2256
2256
  providedIn: 'root'
@@ -2288,10 +2288,10 @@ class ApiCompositionService {
2288
2288
  return this.http.get(`${this.url}/country-references`, { params })
2289
2289
  .pipe(map(({ data }) => data));
2290
2290
  }
2291
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCompositionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2292
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCompositionService, providedIn: 'root' });
2291
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompositionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2292
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompositionService, providedIn: 'root' });
2293
2293
  }
2294
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCompositionService, decorators: [{
2294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompositionService, decorators: [{
2295
2295
  type: Injectable,
2296
2296
  args: [{
2297
2297
  providedIn: 'root'
@@ -2434,10 +2434,10 @@ class ApiCustomsService {
2434
2434
  params
2435
2435
  }).pipe(map(({ data }) => data));
2436
2436
  }
2437
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCustomsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2438
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCustomsService, providedIn: 'root' });
2437
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCustomsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2438
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCustomsService, providedIn: 'root' });
2439
2439
  }
2440
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiCustomsService, decorators: [{
2440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCustomsService, decorators: [{
2441
2441
  type: Injectable,
2442
2442
  args: [{
2443
2443
  providedIn: 'root'
@@ -2665,10 +2665,10 @@ class ApiDiscountsService {
2665
2665
  return this.http.put(`${this.url}/customer-restrictions/V2/${id}`, body)
2666
2666
  .pipe(map(({ data }) => data));
2667
2667
  }
2668
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiDiscountsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2669
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiDiscountsService, providedIn: 'root' });
2668
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiDiscountsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2669
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiDiscountsService, providedIn: 'root' });
2670
2670
  }
2671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiDiscountsService, decorators: [{
2671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiDiscountsService, decorators: [{
2672
2672
  type: Injectable,
2673
2673
  args: [{
2674
2674
  providedIn: 'root'
@@ -2760,10 +2760,10 @@ class ApiEToolsAutoBillingService {
2760
2760
  return this.http.post(`${this.url}/external-shipments/${id}/re-billing`, body)
2761
2761
  .pipe(map(({ data }) => data));
2762
2762
  }
2763
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiEToolsAutoBillingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2764
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiEToolsAutoBillingService, providedIn: 'root' });
2763
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEToolsAutoBillingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2764
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEToolsAutoBillingService, providedIn: 'root' });
2765
2765
  }
2766
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiEToolsAutoBillingService, decorators: [{
2766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEToolsAutoBillingService, decorators: [{
2767
2767
  type: Injectable,
2768
2768
  args: [{
2769
2769
  providedIn: 'root'
@@ -2802,10 +2802,10 @@ class ApiEventsService {
2802
2802
  return this.http.put(`${this.url}/operation-modules/${id}/end`, body)
2803
2803
  .pipe(map(({ data }) => data));
2804
2804
  }
2805
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiEventsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2806
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiEventsService, providedIn: 'root' });
2805
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEventsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2806
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEventsService, providedIn: 'root' });
2807
2807
  }
2808
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiEventsService, decorators: [{
2808
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEventsService, decorators: [{
2809
2809
  type: Injectable,
2810
2810
  args: [{
2811
2811
  providedIn: 'root'
@@ -2877,10 +2877,10 @@ class ApiExternalOperationsService {
2877
2877
  getAppKeyHeader() {
2878
2878
  return { ...(this.appKey && { AppKey: this.appKey }) };
2879
2879
  }
2880
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiExternalOperationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2881
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiExternalOperationsService, providedIn: 'root' });
2880
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiExternalOperationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2881
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiExternalOperationsService, providedIn: 'root' });
2882
2882
  }
2883
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiExternalOperationsService, decorators: [{
2883
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiExternalOperationsService, decorators: [{
2884
2884
  type: Injectable,
2885
2885
  args: [{
2886
2886
  providedIn: 'root'
@@ -3094,10 +3094,10 @@ class ApiInventoriesService {
3094
3094
  putReEntryOfMissingPackages(body) {
3095
3095
  return this.http.put(`${this.url}/re-entry-of-missing-packages`, body).pipe(map(({ data }) => data));
3096
3096
  }
3097
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3098
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
3097
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3098
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
3099
3099
  }
3100
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiInventoriesService, decorators: [{
3100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, decorators: [{
3101
3101
  type: Injectable,
3102
3102
  args: [{
3103
3103
  providedIn: 'root'
@@ -3545,10 +3545,10 @@ class ApiInvoicesService {
3545
3545
  return this.http.get(`${this.url}/country-document-types`, { params })
3546
3546
  .pipe(map(({ data }) => data));
3547
3547
  }
3548
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiInvoicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3549
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiInvoicesService, providedIn: 'root' });
3548
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3549
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, providedIn: 'root' });
3550
3550
  }
3551
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiInvoicesService, decorators: [{
3551
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, decorators: [{
3552
3552
  type: Injectable,
3553
3553
  args: [{
3554
3554
  providedIn: 'root'
@@ -3638,10 +3638,10 @@ class ApiNotificationsService {
3638
3638
  return this.http.get(`${this.url}/notification-types`, { params })
3639
3639
  .pipe(map(({ data }) => data));
3640
3640
  }
3641
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiNotificationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3642
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiNotificationsService, providedIn: 'root' });
3641
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3642
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, providedIn: 'root' });
3643
3643
  }
3644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiNotificationsService, decorators: [{
3644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, decorators: [{
3645
3645
  type: Injectable,
3646
3646
  args: [{
3647
3647
  providedIn: 'root'
@@ -3689,10 +3689,10 @@ class ApiOpenItemsService {
3689
3689
  return this.http.post(`${this.url}/other-invoices`, body)
3690
3690
  .pipe(map(({ data }) => data));
3691
3691
  }
3692
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiOpenItemsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3693
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiOpenItemsService, providedIn: 'root' });
3692
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3693
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, providedIn: 'root' });
3694
3694
  }
3695
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiOpenItemsService, decorators: [{
3695
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, decorators: [{
3696
3696
  type: Injectable,
3697
3697
  args: [{
3698
3698
  providedIn: 'root'
@@ -3759,10 +3759,10 @@ class ApiQuoteService {
3759
3759
  return this.http.get(`${this.url}/quote-event-types`, { params })
3760
3760
  .pipe(map(({ data }) => data));
3761
3761
  }
3762
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiQuoteService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3763
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiQuoteService, providedIn: 'root' });
3762
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3763
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, providedIn: 'root' });
3764
3764
  }
3765
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiQuoteService, decorators: [{
3765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, decorators: [{
3766
3766
  type: Injectable,
3767
3767
  args: [{
3768
3768
  providedIn: 'root'
@@ -3970,10 +3970,10 @@ class ApiReportsService {
3970
3970
  return this.http.get(`${this.url}/inventories-report`, { params })
3971
3971
  .pipe(map(({ data }) => data));
3972
3972
  }
3973
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiReportsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3974
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiReportsService, providedIn: 'root' });
3973
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3974
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, providedIn: 'root' });
3975
3975
  }
3976
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiReportsService, decorators: [{
3976
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, decorators: [{
3977
3977
  type: Injectable,
3978
3978
  args: [{
3979
3979
  providedIn: 'root'
@@ -4209,10 +4209,10 @@ class ApiSecurityService {
4209
4209
  }
4210
4210
  }).pipe(map(({ data }) => data));
4211
4211
  }
4212
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSecurityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4213
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSecurityService, providedIn: 'root' });
4212
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4213
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, providedIn: 'root' });
4214
4214
  }
4215
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSecurityService, decorators: [{
4215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, decorators: [{
4216
4216
  type: Injectable,
4217
4217
  args: [{
4218
4218
  providedIn: 'root'
@@ -4321,10 +4321,10 @@ class ApiServicesService {
4321
4321
  params: queryParams
4322
4322
  }).pipe(map(({ data }) => data));
4323
4323
  }
4324
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiServicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4325
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiServicesService, providedIn: 'root' });
4324
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4325
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, providedIn: 'root' });
4326
4326
  }
4327
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiServicesService, decorators: [{
4327
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, decorators: [{
4328
4328
  type: Injectable,
4329
4329
  args: [{
4330
4330
  providedIn: 'root'
@@ -4473,10 +4473,10 @@ class ApiShipmentsService {
4473
4473
  return this.http.put(`${this.url}/signature-page-settings/${id}`, body)
4474
4474
  .pipe(map(({ data }) => data));
4475
4475
  }
4476
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiShipmentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4477
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiShipmentsService, providedIn: 'root' });
4476
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4477
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, providedIn: 'root' });
4478
4478
  }
4479
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiShipmentsService, decorators: [{
4479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, decorators: [{
4480
4480
  type: Injectable,
4481
4481
  args: [{
4482
4482
  providedIn: 'root'
@@ -4595,10 +4595,10 @@ class ApiSuppliesService {
4595
4595
  return this.http.get(`${this.url}/supply-locations/export/excel`, { params })
4596
4596
  .pipe(map(({ data }) => data));
4597
4597
  }
4598
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSuppliesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4599
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSuppliesService, providedIn: 'root' });
4598
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4599
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, providedIn: 'root' });
4600
4600
  }
4601
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSuppliesService, decorators: [{
4601
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, decorators: [{
4602
4602
  type: Injectable,
4603
4603
  args: [{
4604
4604
  providedIn: 'root'
@@ -4608,6 +4608,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImpo
4608
4608
  class ApiSurveysService {
4609
4609
  environments = inject(ENVIRONMENT_TOKEN);
4610
4610
  http = inject(HttpClient);
4611
+ appKey = this.environments.apiSurveysKey ?? '';
4611
4612
  /**
4612
4613
  * Base URL for surveys API endpoints.
4613
4614
  * @returns The configured surveys API URL or an empty string.
@@ -4615,6 +4616,9 @@ class ApiSurveysService {
4615
4616
  get url() {
4616
4617
  return this.environments.apiSurveysUrl ?? '';
4617
4618
  }
4619
+ appKeyHeader() {
4620
+ return { ...(this.appKey && { AppKey: this.appKey }) };
4621
+ }
4618
4622
  /**
4619
4623
  * Retrieves surveys list based on query parameters.
4620
4624
  * @param params Query parameters used to filter, paginate, or sort surveys.
@@ -4702,10 +4706,42 @@ class ApiSurveysService {
4702
4706
  return this.http.get(`${this.url}/question-types`, { params })
4703
4707
  .pipe(map(({ data }) => data));
4704
4708
  }
4705
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSurveysService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4706
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSurveysService, providedIn: 'root' });
4709
+ /**
4710
+ * Retrieves a customer survey by UUID.
4711
+ * @param uuid Customer survey identifier.
4712
+ * @returns Observable stream with customer survey data.
4713
+ */
4714
+ getCustomerSurvey(uuid) {
4715
+ return this.http.get(`${this.url}/customer-surveys/${uuid}`, {
4716
+ headers: this.appKeyHeader(),
4717
+ }).pipe(map(({ data }) => data));
4718
+ }
4719
+ /**
4720
+ * Updates an existing customer survey by UUID.
4721
+ * @param uuid Customer survey identifier.
4722
+ * @param body Customer survey payload used to update the resource.
4723
+ * @returns Observable stream with updated customer survey data.
4724
+ */
4725
+ putCustomerSurvey(uuid, body) {
4726
+ return this.http.put(`${this.url}/customer-surveys/${uuid}`, body, {
4727
+ headers: this.appKeyHeader(),
4728
+ }).pipe(map(({ data }) => data));
4729
+ }
4730
+ /**
4731
+ * Marks a customer survey as finished by UUID.
4732
+ * @param uuid Customer survey identifier.
4733
+ * @param body Customer survey finish payload.
4734
+ * @returns Observable stream with updated customer survey data.
4735
+ */
4736
+ postCustomerSurveyFinish(uuid, body) {
4737
+ return this.http.post(`${this.url}/customer-surveys/${uuid}/finish`, body, {
4738
+ headers: this.appKeyHeader(),
4739
+ }).pipe(map(({ data }) => data));
4740
+ }
4741
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4742
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, providedIn: 'root' });
4707
4743
  }
4708
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: ApiSurveysService, decorators: [{
4744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, decorators: [{
4709
4745
  type: Injectable,
4710
4746
  args: [{
4711
4747
  providedIn: 'root'
@@ -4847,10 +4883,10 @@ class WebSocketsService {
4847
4883
  const waitTime = 3 * 1000;
4848
4884
  return new Promise((resolve) => setTimeout(resolve, waitTime));
4849
4885
  }
4850
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: WebSocketsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4851
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: WebSocketsService, providedIn: 'root' });
4886
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4887
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, providedIn: 'root' });
4852
4888
  }
4853
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: WebSocketsService, decorators: [{
4889
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, decorators: [{
4854
4890
  type: Injectable,
4855
4891
  args: [{
4856
4892
  providedIn: 'root',
@@ -4936,10 +4972,10 @@ class CryptoService {
4936
4972
  }
4937
4973
  return bytes.buffer;
4938
4974
  }
4939
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: CryptoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4940
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: CryptoService, providedIn: 'root' });
4975
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4976
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, providedIn: 'root' });
4941
4977
  }
4942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: CryptoService, decorators: [{
4978
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, decorators: [{
4943
4979
  type: Injectable,
4944
4980
  args: [{
4945
4981
  providedIn: 'root'