@experteam-mx/ngx-services 20.2.3-dev3.1 → 20.3.0-dev-2.2
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,17 +48,127 @@ class NgxServicesModule {
|
|
|
48
48
|
providers: [provideNgxServices(environment)]
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
52
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
53
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
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.
|
|
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()]
|
|
59
59
|
}]
|
|
60
60
|
}] });
|
|
61
61
|
|
|
62
|
+
class ApiBillingCOService {
|
|
63
|
+
environments = inject(ENVIRONMENT_TOKEN);
|
|
64
|
+
http = inject(HttpClient);
|
|
65
|
+
/**
|
|
66
|
+
* Retrieves the URL for the billing API.
|
|
67
|
+
* If the URL is not defined in the environments configuration, returns an empty string.
|
|
68
|
+
*
|
|
69
|
+
* @returns {string} The billing API URL or an empty string if not set.
|
|
70
|
+
*/
|
|
71
|
+
get url() {
|
|
72
|
+
return this.environments.apiBillingCO ?? '';
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Retrieves the information of a customer by its identifier.
|
|
76
|
+
*
|
|
77
|
+
* @param {number} id - Unique customer identifier.
|
|
78
|
+
* @returns {Observable<CoCustomerOut>}
|
|
79
|
+
* Observable emitting the customer information.
|
|
80
|
+
*/
|
|
81
|
+
getCustomer(id) {
|
|
82
|
+
return this.http.get(`${this.url}/customer/${id}`)
|
|
83
|
+
.pipe(map(({ data }) => data));
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Creates a new customer.
|
|
87
|
+
*
|
|
88
|
+
* @param {CoCustomerIn} body - Customer data to be created.
|
|
89
|
+
* @returns {Observable<CoCustomerOut>}
|
|
90
|
+
* Observable emitting the created customer information.
|
|
91
|
+
*/
|
|
92
|
+
postCustomer(body) {
|
|
93
|
+
return this.http.post(`${this.url}/customer`, body)
|
|
94
|
+
.pipe(map(({ data }) => data));
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Retrieves the list of departments based on the provided query parameters.
|
|
98
|
+
*
|
|
99
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
100
|
+
* @returns {Observable<CoDepartmentsOut>}
|
|
101
|
+
* Observable emitting the departments list.
|
|
102
|
+
*/
|
|
103
|
+
getDepartments(params) {
|
|
104
|
+
return this.http.get(`${this.url}/departments`, { params })
|
|
105
|
+
.pipe(map(({ data }) => data));
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Retrieves the list of municipalities based on the provided query parameters.
|
|
109
|
+
*
|
|
110
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
111
|
+
* @returns {Observable<CoMunicipalitiesOut>}
|
|
112
|
+
* Observable emitting the municipalities list.
|
|
113
|
+
*/
|
|
114
|
+
getMunicipalities(params) {
|
|
115
|
+
return this.http.get(`${this.url}/municipalities`, { params })
|
|
116
|
+
.pipe(map(({ data }) => data));
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Retrieves the list of postal codes based on the provided query parameters.
|
|
120
|
+
*
|
|
121
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
122
|
+
* @returns {Observable<CoPostalCodesOut>}
|
|
123
|
+
* Observable emitting the postal codes list.
|
|
124
|
+
*/
|
|
125
|
+
getPostalCodes(params) {
|
|
126
|
+
return this.http.get(`${this.url}/postal-codes`, { params })
|
|
127
|
+
.pipe(map(({ data }) => data));
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Retrieves the list of fiscal regimes based on the provided query parameters.
|
|
131
|
+
*
|
|
132
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
133
|
+
* @returns {Observable<CoFiscalRegimesOut>}
|
|
134
|
+
* Observable emitting the fiscal regimes list.
|
|
135
|
+
*/
|
|
136
|
+
getFiscalRegimes(params) {
|
|
137
|
+
return this.http.get(`${this.url}/fiscal-regimes`, { params })
|
|
138
|
+
.pipe(map(({ data }) => data));
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Retrieves the list of fiscal responsibilities based on the provided query parameters.
|
|
142
|
+
*
|
|
143
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
144
|
+
* @returns {Observable<CoFiscalResponsibilitiesOut>}
|
|
145
|
+
* Observable emitting the fiscal responsibilities list.
|
|
146
|
+
*/
|
|
147
|
+
getFiscalResponsibilities(params) {
|
|
148
|
+
return this.http.get(`${this.url}/fiscal-responsibilities`, { params })
|
|
149
|
+
.pipe(map(({ data }) => data));
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Retrieves the list of tributes based on the provided query parameters.
|
|
153
|
+
*
|
|
154
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
155
|
+
* @returns {Observable<CoTributesOut>}
|
|
156
|
+
* Observable emitting the tributes list.
|
|
157
|
+
*/
|
|
158
|
+
getTributes(params) {
|
|
159
|
+
return this.http.get(`${this.url}/tributes`, { params })
|
|
160
|
+
.pipe(map(({ data }) => data));
|
|
161
|
+
}
|
|
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
|
+
}
|
|
165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingCOService, decorators: [{
|
|
166
|
+
type: Injectable,
|
|
167
|
+
args: [{
|
|
168
|
+
providedIn: 'root'
|
|
169
|
+
}]
|
|
170
|
+
}] });
|
|
171
|
+
|
|
62
172
|
class ApiBillingDOService {
|
|
63
173
|
environments = inject(ENVIRONMENT_TOKEN);
|
|
64
174
|
http = inject(HttpClient);
|
|
@@ -79,10 +189,10 @@ class ApiBillingDOService {
|
|
|
79
189
|
return this.http.get(`${this.url}/income-types`)
|
|
80
190
|
.pipe(map(({ data }) => data));
|
|
81
191
|
}
|
|
82
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
83
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
84
194
|
}
|
|
85
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingDOService, decorators: [{
|
|
86
196
|
type: Injectable,
|
|
87
197
|
args: [{
|
|
88
198
|
providedIn: 'root'
|
|
@@ -129,10 +239,10 @@ class ApiBillingGtService {
|
|
|
129
239
|
return this.http.post(`${this.url}/locations`, body)
|
|
130
240
|
.pipe(map(({ data }) => data));
|
|
131
241
|
}
|
|
132
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
133
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
134
244
|
}
|
|
135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingGtService, decorators: [{
|
|
136
246
|
type: Injectable,
|
|
137
247
|
args: [{
|
|
138
248
|
providedIn: 'root'
|
|
@@ -180,10 +290,10 @@ class ApiBillingMxService {
|
|
|
180
290
|
return this.http.get(`${this.url}/postal-codes`, { params })
|
|
181
291
|
.pipe(map(({ data }) => data));
|
|
182
292
|
}
|
|
183
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
184
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
185
295
|
}
|
|
186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingMxService, decorators: [{
|
|
187
297
|
type: Injectable,
|
|
188
298
|
args: [{
|
|
189
299
|
providedIn: 'root'
|
|
@@ -274,10 +384,10 @@ class ApiBillingPaService {
|
|
|
274
384
|
return this.http.post(`${this.url}/locations`, body)
|
|
275
385
|
.pipe(map(({ data }) => data));
|
|
276
386
|
}
|
|
277
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
278
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
279
389
|
}
|
|
280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingPaService, decorators: [{
|
|
281
391
|
type: Injectable,
|
|
282
392
|
args: [{
|
|
283
393
|
providedIn: 'root'
|
|
@@ -346,10 +456,10 @@ class ApiBillingSvService {
|
|
|
346
456
|
return this.http.get(`${this.url}/municipalities`, { params })
|
|
347
457
|
.pipe(map(({ data }) => data));
|
|
348
458
|
}
|
|
349
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
350
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
351
461
|
}
|
|
352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiBillingSvService, decorators: [{
|
|
353
463
|
type: Injectable,
|
|
354
464
|
args: [{
|
|
355
465
|
providedIn: 'root'
|
|
@@ -437,10 +547,10 @@ class ApiCashOperationsService {
|
|
|
437
547
|
return this.http.get(`${this.url}/deposits/${id}/slip`)
|
|
438
548
|
.pipe(map(({ data }) => data));
|
|
439
549
|
}
|
|
440
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
441
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
442
552
|
}
|
|
443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCashOperationsService, decorators: [{
|
|
444
554
|
type: Injectable,
|
|
445
555
|
args: [{
|
|
446
556
|
providedIn: 'root'
|
|
@@ -1060,10 +1170,10 @@ class ApiCatalogsService {
|
|
|
1060
1170
|
return this.http.get(`${this.url}/package-locations`, { params })
|
|
1061
1171
|
.pipe(map(({ data }) => data));
|
|
1062
1172
|
}
|
|
1063
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1064
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
1065
1175
|
}
|
|
1066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCatalogsService, decorators: [{
|
|
1067
1177
|
type: Injectable,
|
|
1068
1178
|
args: [{
|
|
1069
1179
|
providedIn: 'root'
|
|
@@ -2137,10 +2247,10 @@ class ApiCompaniesService {
|
|
|
2137
2247
|
}
|
|
2138
2248
|
}).pipe(map(({ data }) => data));
|
|
2139
2249
|
}
|
|
2140
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2141
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2142
2252
|
}
|
|
2143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompaniesService, decorators: [{
|
|
2144
2254
|
type: Injectable,
|
|
2145
2255
|
args: [{
|
|
2146
2256
|
providedIn: 'root'
|
|
@@ -2178,10 +2288,10 @@ class ApiCompositionService {
|
|
|
2178
2288
|
return this.http.get(`${this.url}/country-references`, { params })
|
|
2179
2289
|
.pipe(map(({ data }) => data));
|
|
2180
2290
|
}
|
|
2181
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2182
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2183
2293
|
}
|
|
2184
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCompositionService, decorators: [{
|
|
2185
2295
|
type: Injectable,
|
|
2186
2296
|
args: [{
|
|
2187
2297
|
providedIn: 'root'
|
|
@@ -2324,10 +2434,10 @@ class ApiCustomsService {
|
|
|
2324
2434
|
params
|
|
2325
2435
|
}).pipe(map(({ data }) => data));
|
|
2326
2436
|
}
|
|
2327
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2328
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2329
2439
|
}
|
|
2330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2440
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiCustomsService, decorators: [{
|
|
2331
2441
|
type: Injectable,
|
|
2332
2442
|
args: [{
|
|
2333
2443
|
providedIn: 'root'
|
|
@@ -2555,10 +2665,10 @@ class ApiDiscountsService {
|
|
|
2555
2665
|
return this.http.put(`${this.url}/customer-restrictions/V2/${id}`, body)
|
|
2556
2666
|
.pipe(map(({ data }) => data));
|
|
2557
2667
|
}
|
|
2558
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2559
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2560
2670
|
}
|
|
2561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiDiscountsService, decorators: [{
|
|
2562
2672
|
type: Injectable,
|
|
2563
2673
|
args: [{
|
|
2564
2674
|
providedIn: 'root'
|
|
@@ -2650,10 +2760,10 @@ class ApiEToolsAutoBillingService {
|
|
|
2650
2760
|
return this.http.post(`${this.url}/external-shipments/${id}/re-billing`, body)
|
|
2651
2761
|
.pipe(map(({ data }) => data));
|
|
2652
2762
|
}
|
|
2653
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2654
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2655
2765
|
}
|
|
2656
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2766
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEToolsAutoBillingService, decorators: [{
|
|
2657
2767
|
type: Injectable,
|
|
2658
2768
|
args: [{
|
|
2659
2769
|
providedIn: 'root'
|
|
@@ -2692,10 +2802,10 @@ class ApiEventsService {
|
|
|
2692
2802
|
return this.http.put(`${this.url}/operation-modules/${id}/end`, body)
|
|
2693
2803
|
.pipe(map(({ data }) => data));
|
|
2694
2804
|
}
|
|
2695
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2696
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2697
2807
|
}
|
|
2698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiEventsService, decorators: [{
|
|
2699
2809
|
type: Injectable,
|
|
2700
2810
|
args: [{
|
|
2701
2811
|
providedIn: 'root'
|
|
@@ -2767,10 +2877,10 @@ class ApiExternalOperationsService {
|
|
|
2767
2877
|
getAppKeyHeader() {
|
|
2768
2878
|
return { ...(this.appKey && { AppKey: this.appKey }) };
|
|
2769
2879
|
}
|
|
2770
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2771
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2772
2882
|
}
|
|
2773
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiExternalOperationsService, decorators: [{
|
|
2774
2884
|
type: Injectable,
|
|
2775
2885
|
args: [{
|
|
2776
2886
|
providedIn: 'root'
|
|
@@ -2984,10 +3094,63 @@ class ApiInventoriesService {
|
|
|
2984
3094
|
putReEntryOfMissingPackages(body) {
|
|
2985
3095
|
return this.http.put(`${this.url}/re-entry-of-missing-packages`, body).pipe(map(({ data }) => data));
|
|
2986
3096
|
}
|
|
2987
|
-
|
|
2988
|
-
|
|
3097
|
+
/**
|
|
3098
|
+
* Fetches the packages details based on the provided operation check out ID.
|
|
3099
|
+
*
|
|
3100
|
+
* @param {number} id - The operation check out id
|
|
3101
|
+
* @return {Observable<CourierCheckOutPackesOut>} An observable that emits the packages data.
|
|
3102
|
+
*/
|
|
3103
|
+
getCourierCheckOutPackages(id) {
|
|
3104
|
+
return this.http.get(`${this.url}/courier-check-out/packages/${id}`)
|
|
3105
|
+
.pipe(map(({ data }) => data));
|
|
3106
|
+
}
|
|
3107
|
+
/**
|
|
3108
|
+
* Fetches the statuses based on query parameters.
|
|
3109
|
+
*
|
|
3110
|
+
* @param {QueryParams} params - The query parameters for filtering the statuses.
|
|
3111
|
+
* @return {Observable<StatusesOut>} An observable that emits the statuses.
|
|
3112
|
+
*/
|
|
3113
|
+
getStatuses(params) {
|
|
3114
|
+
return this.http.get(`${this.url}/statuses`, {
|
|
3115
|
+
params
|
|
3116
|
+
}).pipe(map(({ data }) => data));
|
|
3117
|
+
}
|
|
3118
|
+
/**
|
|
3119
|
+
* Fetches the operation types based on query parameters.
|
|
3120
|
+
*
|
|
3121
|
+
* @param {QueryParams} params - The query parameters for filtering the operation types.
|
|
3122
|
+
* @return {Observable<OperationTypesInventoryOut>} An observable that emits the operation types.
|
|
3123
|
+
*/
|
|
3124
|
+
getOperationTypes(params) {
|
|
3125
|
+
return this.http.get(`${this.url}/operation-types`, {
|
|
3126
|
+
params
|
|
3127
|
+
}).pipe(map(({ data }) => data));
|
|
3128
|
+
}
|
|
3129
|
+
/**
|
|
3130
|
+
* Fetches the package in stock details based on query parameters.
|
|
3131
|
+
*
|
|
3132
|
+
* @param {QueryParams} params - The query parameters for get the package in stock.
|
|
3133
|
+
* @return {Observable<PackageInStockDetailOut>} An observable that emits the package detail in stock.
|
|
3134
|
+
*/
|
|
3135
|
+
getPackageInStockDetail(params) {
|
|
3136
|
+
return this.http.get(`${this.url}/packages/in-stock-detail`, {
|
|
3137
|
+
params
|
|
3138
|
+
}).pipe(map(({ data }) => data));
|
|
3139
|
+
}
|
|
3140
|
+
/**
|
|
3141
|
+
* Fetches the packages details based on the provided operation stock update ID.
|
|
3142
|
+
*
|
|
3143
|
+
* @param {number} id - The operation stock update id
|
|
3144
|
+
* @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
|
|
3145
|
+
*/
|
|
3146
|
+
getStockUpdatePackages(id) {
|
|
3147
|
+
return this.http.get(`${this.url}/stock-update/packages/${id}`)
|
|
3148
|
+
.pipe(map(({ data }) => data));
|
|
3149
|
+
}
|
|
3150
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3151
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
|
|
2989
3152
|
}
|
|
2990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, decorators: [{
|
|
2991
3154
|
type: Injectable,
|
|
2992
3155
|
args: [{
|
|
2993
3156
|
providedIn: 'root'
|
|
@@ -3435,10 +3598,10 @@ class ApiInvoicesService {
|
|
|
3435
3598
|
return this.http.get(`${this.url}/country-document-types`, { params })
|
|
3436
3599
|
.pipe(map(({ data }) => data));
|
|
3437
3600
|
}
|
|
3438
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3439
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3601
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3602
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, providedIn: 'root' });
|
|
3440
3603
|
}
|
|
3441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, decorators: [{
|
|
3442
3605
|
type: Injectable,
|
|
3443
3606
|
args: [{
|
|
3444
3607
|
providedIn: 'root'
|
|
@@ -3528,10 +3691,10 @@ class ApiNotificationsService {
|
|
|
3528
3691
|
return this.http.get(`${this.url}/notification-types`, { params })
|
|
3529
3692
|
.pipe(map(({ data }) => data));
|
|
3530
3693
|
}
|
|
3531
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3532
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3694
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3695
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, providedIn: 'root' });
|
|
3533
3696
|
}
|
|
3534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, decorators: [{
|
|
3535
3698
|
type: Injectable,
|
|
3536
3699
|
args: [{
|
|
3537
3700
|
providedIn: 'root'
|
|
@@ -3579,10 +3742,10 @@ class ApiOpenItemsService {
|
|
|
3579
3742
|
return this.http.post(`${this.url}/other-invoices`, body)
|
|
3580
3743
|
.pipe(map(({ data }) => data));
|
|
3581
3744
|
}
|
|
3582
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3583
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3745
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3746
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, providedIn: 'root' });
|
|
3584
3747
|
}
|
|
3585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3748
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, decorators: [{
|
|
3586
3749
|
type: Injectable,
|
|
3587
3750
|
args: [{
|
|
3588
3751
|
providedIn: 'root'
|
|
@@ -3649,10 +3812,10 @@ class ApiQuoteService {
|
|
|
3649
3812
|
return this.http.get(`${this.url}/quote-event-types`, { params })
|
|
3650
3813
|
.pipe(map(({ data }) => data));
|
|
3651
3814
|
}
|
|
3652
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3653
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
3815
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3816
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, providedIn: 'root' });
|
|
3654
3817
|
}
|
|
3655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, decorators: [{
|
|
3656
3819
|
type: Injectable,
|
|
3657
3820
|
args: [{
|
|
3658
3821
|
providedIn: 'root'
|
|
@@ -3860,10 +4023,20 @@ class ApiReportsService {
|
|
|
3860
4023
|
return this.http.get(`${this.url}/inventories-report`, { params })
|
|
3861
4024
|
.pipe(map(({ data }) => data));
|
|
3862
4025
|
}
|
|
3863
|
-
|
|
3864
|
-
|
|
4026
|
+
/**
|
|
4027
|
+
* Retrieves billing details based on the provided query parameters.
|
|
4028
|
+
*
|
|
4029
|
+
* @param params - The query parameters used to filter the billing details.
|
|
4030
|
+
* @returns An observable that emits the billing details.
|
|
4031
|
+
*/
|
|
4032
|
+
getBillingDetails(params) {
|
|
4033
|
+
return this.http.get(`${this.url}/billing-details`, { params })
|
|
4034
|
+
.pipe(map(({ data }) => data));
|
|
4035
|
+
}
|
|
4036
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4037
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, providedIn: 'root' });
|
|
3865
4038
|
}
|
|
3866
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, decorators: [{
|
|
3867
4040
|
type: Injectable,
|
|
3868
4041
|
args: [{
|
|
3869
4042
|
providedIn: 'root'
|
|
@@ -4099,10 +4272,10 @@ class ApiSecurityService {
|
|
|
4099
4272
|
}
|
|
4100
4273
|
}).pipe(map(({ data }) => data));
|
|
4101
4274
|
}
|
|
4102
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4103
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4275
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4276
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, providedIn: 'root' });
|
|
4104
4277
|
}
|
|
4105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, decorators: [{
|
|
4106
4279
|
type: Injectable,
|
|
4107
4280
|
args: [{
|
|
4108
4281
|
providedIn: 'root'
|
|
@@ -4211,10 +4384,10 @@ class ApiServicesService {
|
|
|
4211
4384
|
params: queryParams
|
|
4212
4385
|
}).pipe(map(({ data }) => data));
|
|
4213
4386
|
}
|
|
4214
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4215
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4387
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4388
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, providedIn: 'root' });
|
|
4216
4389
|
}
|
|
4217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, decorators: [{
|
|
4218
4391
|
type: Injectable,
|
|
4219
4392
|
args: [{
|
|
4220
4393
|
providedIn: 'root'
|
|
@@ -4363,10 +4536,10 @@ class ApiShipmentsService {
|
|
|
4363
4536
|
return this.http.put(`${this.url}/signature-page-settings/${id}`, body)
|
|
4364
4537
|
.pipe(map(({ data }) => data));
|
|
4365
4538
|
}
|
|
4366
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4367
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4539
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4540
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, providedIn: 'root' });
|
|
4368
4541
|
}
|
|
4369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, decorators: [{
|
|
4370
4543
|
type: Injectable,
|
|
4371
4544
|
args: [{
|
|
4372
4545
|
providedIn: 'root'
|
|
@@ -4485,10 +4658,10 @@ class ApiSuppliesService {
|
|
|
4485
4658
|
return this.http.get(`${this.url}/supply-locations/export/excel`, { params })
|
|
4486
4659
|
.pipe(map(({ data }) => data));
|
|
4487
4660
|
}
|
|
4488
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4489
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4661
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4662
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, providedIn: 'root' });
|
|
4490
4663
|
}
|
|
4491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, decorators: [{
|
|
4492
4665
|
type: Injectable,
|
|
4493
4666
|
args: [{
|
|
4494
4667
|
providedIn: 'root'
|
|
@@ -4628,10 +4801,10 @@ class ApiSurveysService {
|
|
|
4628
4801
|
headers: this.appKeyHeader(),
|
|
4629
4802
|
}).pipe(map(({ data }) => data));
|
|
4630
4803
|
}
|
|
4631
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4632
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4804
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4805
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, providedIn: 'root' });
|
|
4633
4806
|
}
|
|
4634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, decorators: [{
|
|
4635
4808
|
type: Injectable,
|
|
4636
4809
|
args: [{
|
|
4637
4810
|
providedIn: 'root'
|
|
@@ -4675,6 +4848,15 @@ var AlphaNumeric;
|
|
|
4675
4848
|
AlphaNumeric["alphabetic"] = "alphabetic";
|
|
4676
4849
|
AlphaNumeric["amount"] = "amount";
|
|
4677
4850
|
})(AlphaNumeric || (AlphaNumeric = {}));
|
|
4851
|
+
var Group;
|
|
4852
|
+
(function (Group) {
|
|
4853
|
+
Group["check_in"] = "check_in";
|
|
4854
|
+
Group["check_out"] = "check_out";
|
|
4855
|
+
Group["movement"] = "movement";
|
|
4856
|
+
Group["incident"] = "incident";
|
|
4857
|
+
Group["expiration"] = "expiration";
|
|
4858
|
+
Group["verification"] = "verification";
|
|
4859
|
+
})(Group || (Group = {}));
|
|
4678
4860
|
|
|
4679
4861
|
class WebSocketsService {
|
|
4680
4862
|
pusher;
|
|
@@ -4773,10 +4955,10 @@ class WebSocketsService {
|
|
|
4773
4955
|
const waitTime = 3 * 1000;
|
|
4774
4956
|
return new Promise((resolve) => setTimeout(resolve, waitTime));
|
|
4775
4957
|
}
|
|
4776
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4777
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
4958
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4959
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, providedIn: 'root' });
|
|
4778
4960
|
}
|
|
4779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4961
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, decorators: [{
|
|
4780
4962
|
type: Injectable,
|
|
4781
4963
|
args: [{
|
|
4782
4964
|
providedIn: 'root',
|
|
@@ -4862,10 +5044,10 @@ class CryptoService {
|
|
|
4862
5044
|
}
|
|
4863
5045
|
return bytes.buffer;
|
|
4864
5046
|
}
|
|
4865
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4866
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5047
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5048
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, providedIn: 'root' });
|
|
4867
5049
|
}
|
|
4868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, decorators: [{
|
|
4869
5051
|
type: Injectable,
|
|
4870
5052
|
args: [{
|
|
4871
5053
|
providedIn: 'root'
|
|
@@ -5091,5 +5273,5 @@ const xmlHeaders = (format = 'object') => {
|
|
|
5091
5273
|
* Generated bundle index. Do not edit.
|
|
5092
5274
|
*/
|
|
5093
5275
|
|
|
5094
|
-
export { AlphaNumeric, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5276
|
+
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5095
5277
|
//# sourceMappingURL=experteam-mx-ngx-services.mjs.map
|