@experteam-mx/ngx-services 20.3.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,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,10 @@ 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
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2988
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
2989
3099
|
}
|
|
2990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInventoriesService, decorators: [{
|
|
2991
3101
|
type: Injectable,
|
|
2992
3102
|
args: [{
|
|
2993
3103
|
providedIn: 'root'
|
|
@@ -3435,10 +3545,10 @@ class ApiInvoicesService {
|
|
|
3435
3545
|
return this.http.get(`${this.url}/country-document-types`, { params })
|
|
3436
3546
|
.pipe(map(({ data }) => data));
|
|
3437
3547
|
}
|
|
3438
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3439
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
3440
3550
|
}
|
|
3441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, decorators: [{
|
|
3442
3552
|
type: Injectable,
|
|
3443
3553
|
args: [{
|
|
3444
3554
|
providedIn: 'root'
|
|
@@ -3528,10 +3638,10 @@ class ApiNotificationsService {
|
|
|
3528
3638
|
return this.http.get(`${this.url}/notification-types`, { params })
|
|
3529
3639
|
.pipe(map(({ data }) => data));
|
|
3530
3640
|
}
|
|
3531
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3532
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
3533
3643
|
}
|
|
3534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiNotificationsService, decorators: [{
|
|
3535
3645
|
type: Injectable,
|
|
3536
3646
|
args: [{
|
|
3537
3647
|
providedIn: 'root'
|
|
@@ -3579,10 +3689,10 @@ class ApiOpenItemsService {
|
|
|
3579
3689
|
return this.http.post(`${this.url}/other-invoices`, body)
|
|
3580
3690
|
.pipe(map(({ data }) => data));
|
|
3581
3691
|
}
|
|
3582
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3583
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
3584
3694
|
}
|
|
3585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiOpenItemsService, decorators: [{
|
|
3586
3696
|
type: Injectable,
|
|
3587
3697
|
args: [{
|
|
3588
3698
|
providedIn: 'root'
|
|
@@ -3649,10 +3759,10 @@ class ApiQuoteService {
|
|
|
3649
3759
|
return this.http.get(`${this.url}/quote-event-types`, { params })
|
|
3650
3760
|
.pipe(map(({ data }) => data));
|
|
3651
3761
|
}
|
|
3652
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3653
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
3654
3764
|
}
|
|
3655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiQuoteService, decorators: [{
|
|
3656
3766
|
type: Injectable,
|
|
3657
3767
|
args: [{
|
|
3658
3768
|
providedIn: 'root'
|
|
@@ -3860,10 +3970,10 @@ class ApiReportsService {
|
|
|
3860
3970
|
return this.http.get(`${this.url}/inventories-report`, { params })
|
|
3861
3971
|
.pipe(map(({ data }) => data));
|
|
3862
3972
|
}
|
|
3863
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3864
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
3865
3975
|
}
|
|
3866
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiReportsService, decorators: [{
|
|
3867
3977
|
type: Injectable,
|
|
3868
3978
|
args: [{
|
|
3869
3979
|
providedIn: 'root'
|
|
@@ -4099,10 +4209,10 @@ class ApiSecurityService {
|
|
|
4099
4209
|
}
|
|
4100
4210
|
}).pipe(map(({ data }) => data));
|
|
4101
4211
|
}
|
|
4102
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4103
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4104
4214
|
}
|
|
4105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSecurityService, decorators: [{
|
|
4106
4216
|
type: Injectable,
|
|
4107
4217
|
args: [{
|
|
4108
4218
|
providedIn: 'root'
|
|
@@ -4211,10 +4321,10 @@ class ApiServicesService {
|
|
|
4211
4321
|
params: queryParams
|
|
4212
4322
|
}).pipe(map(({ data }) => data));
|
|
4213
4323
|
}
|
|
4214
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4215
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4216
4326
|
}
|
|
4217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiServicesService, decorators: [{
|
|
4218
4328
|
type: Injectable,
|
|
4219
4329
|
args: [{
|
|
4220
4330
|
providedIn: 'root'
|
|
@@ -4363,10 +4473,10 @@ class ApiShipmentsService {
|
|
|
4363
4473
|
return this.http.put(`${this.url}/signature-page-settings/${id}`, body)
|
|
4364
4474
|
.pipe(map(({ data }) => data));
|
|
4365
4475
|
}
|
|
4366
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4367
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4368
4478
|
}
|
|
4369
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiShipmentsService, decorators: [{
|
|
4370
4480
|
type: Injectable,
|
|
4371
4481
|
args: [{
|
|
4372
4482
|
providedIn: 'root'
|
|
@@ -4485,10 +4595,10 @@ class ApiSuppliesService {
|
|
|
4485
4595
|
return this.http.get(`${this.url}/supply-locations/export/excel`, { params })
|
|
4486
4596
|
.pipe(map(({ data }) => data));
|
|
4487
4597
|
}
|
|
4488
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4489
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4490
4600
|
}
|
|
4491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSuppliesService, decorators: [{
|
|
4492
4602
|
type: Injectable,
|
|
4493
4603
|
args: [{
|
|
4494
4604
|
providedIn: 'root'
|
|
@@ -4628,10 +4738,10 @@ class ApiSurveysService {
|
|
|
4628
4738
|
headers: this.appKeyHeader(),
|
|
4629
4739
|
}).pipe(map(({ data }) => data));
|
|
4630
4740
|
}
|
|
4631
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4632
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4633
4743
|
}
|
|
4634
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiSurveysService, decorators: [{
|
|
4635
4745
|
type: Injectable,
|
|
4636
4746
|
args: [{
|
|
4637
4747
|
providedIn: 'root'
|
|
@@ -4773,10 +4883,10 @@ class WebSocketsService {
|
|
|
4773
4883
|
const waitTime = 3 * 1000;
|
|
4774
4884
|
return new Promise((resolve) => setTimeout(resolve, waitTime));
|
|
4775
4885
|
}
|
|
4776
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4777
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4778
4888
|
}
|
|
4779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: WebSocketsService, decorators: [{
|
|
4780
4890
|
type: Injectable,
|
|
4781
4891
|
args: [{
|
|
4782
4892
|
providedIn: 'root',
|
|
@@ -4862,10 +4972,10 @@ class CryptoService {
|
|
|
4862
4972
|
}
|
|
4863
4973
|
return bytes.buffer;
|
|
4864
4974
|
}
|
|
4865
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4866
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
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' });
|
|
4867
4977
|
}
|
|
4868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: CryptoService, decorators: [{
|
|
4869
4979
|
type: Injectable,
|
|
4870
4980
|
args: [{
|
|
4871
4981
|
providedIn: 'root'
|
|
@@ -5091,5 +5201,5 @@ const xmlHeaders = (format = 'object') => {
|
|
|
5091
5201
|
* Generated bundle index. Do not edit.
|
|
5092
5202
|
*/
|
|
5093
5203
|
|
|
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 };
|
|
5204
|
+
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, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5095
5205
|
//# sourceMappingURL=experteam-mx-ngx-services.mjs.map
|