@indigina/wms-api 0.0.184 → 0.0.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +501 -190
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +3 -2
- package/types/indigina-wms-api.d.ts +319 -65
|
@@ -270,8 +270,8 @@ class Configuration {
|
|
|
270
270
|
* @return True if the given MIME is JSON, false otherwise.
|
|
271
271
|
*/
|
|
272
272
|
isJsonMime(mime) {
|
|
273
|
-
const jsonMime =
|
|
274
|
-
return mime !== null &&
|
|
273
|
+
const jsonMime = /^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$/i;
|
|
274
|
+
return mime !== null && jsonMime.test(mime);
|
|
275
275
|
}
|
|
276
276
|
lookupCredential(key) {
|
|
277
277
|
const value = this.credentials[key];
|
|
@@ -359,17 +359,18 @@ class BaseService {
|
|
|
359
359
|
else if (value instanceof Date) {
|
|
360
360
|
return httpParams.append(key, value.toISOString());
|
|
361
361
|
}
|
|
362
|
-
else if (Array.isArray(value)) {
|
|
363
|
-
// Otherwise, if it's an array, add each element.
|
|
362
|
+
else if (Array.isArray(value) || value instanceof Set) {
|
|
363
|
+
// Otherwise, if it's an array or set, add each element.
|
|
364
|
+
const array = Array.isArray(value) ? value : Array.from(value);
|
|
364
365
|
if (paramStyle === QueryParamStyle.Form) {
|
|
365
|
-
return httpParams.set(key,
|
|
366
|
+
return httpParams.set(key, array, { explode: explode, delimiter: ',' });
|
|
366
367
|
}
|
|
367
368
|
else if (paramStyle === QueryParamStyle.SpaceDelimited) {
|
|
368
|
-
return httpParams.set(key,
|
|
369
|
+
return httpParams.set(key, array, { explode: explode, delimiter: ' ' });
|
|
369
370
|
}
|
|
370
371
|
else {
|
|
371
372
|
// PipeDelimited
|
|
372
|
-
return httpParams.set(key,
|
|
373
|
+
return httpParams.set(key, array, { explode: explode, delimiter: '|' });
|
|
373
374
|
}
|
|
374
375
|
}
|
|
375
376
|
else {
|
|
@@ -505,10 +506,10 @@ class AddressesService extends BaseService {
|
|
|
505
506
|
reportProgress: reportProgress
|
|
506
507
|
});
|
|
507
508
|
}
|
|
508
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
509
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
509
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AddressesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
510
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AddressesService, providedIn: 'root' });
|
|
510
511
|
}
|
|
511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AddressesService, decorators: [{
|
|
512
513
|
type: Injectable,
|
|
513
514
|
args: [{
|
|
514
515
|
providedIn: 'root'
|
|
@@ -910,10 +911,10 @@ class AnalyticsService extends BaseService {
|
|
|
910
911
|
reportProgress: reportProgress
|
|
911
912
|
});
|
|
912
913
|
}
|
|
913
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
914
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
914
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AnalyticsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
915
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AnalyticsService, providedIn: 'root' });
|
|
915
916
|
}
|
|
916
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: AnalyticsService, decorators: [{
|
|
917
918
|
type: Injectable,
|
|
918
919
|
args: [{
|
|
919
920
|
providedIn: 'root'
|
|
@@ -984,10 +985,10 @@ class CarrierProviderIntegrationsService extends BaseService {
|
|
|
984
985
|
reportProgress: reportProgress
|
|
985
986
|
});
|
|
986
987
|
}
|
|
987
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
988
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
988
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarrierProviderIntegrationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
989
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarrierProviderIntegrationsService, providedIn: 'root' });
|
|
989
990
|
}
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarrierProviderIntegrationsService, decorators: [{
|
|
991
992
|
type: Injectable,
|
|
992
993
|
args: [{
|
|
993
994
|
providedIn: 'root'
|
|
@@ -1054,10 +1055,10 @@ class CarrierServiceTypesService extends BaseService {
|
|
|
1054
1055
|
reportProgress: reportProgress
|
|
1055
1056
|
});
|
|
1056
1057
|
}
|
|
1057
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1058
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1058
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarrierServiceTypesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1059
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarrierServiceTypesService, providedIn: 'root' });
|
|
1059
1060
|
}
|
|
1060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarrierServiceTypesService, decorators: [{
|
|
1061
1062
|
type: Injectable,
|
|
1062
1063
|
args: [{
|
|
1063
1064
|
providedIn: 'root'
|
|
@@ -1124,10 +1125,10 @@ class CarriersService extends BaseService {
|
|
|
1124
1125
|
reportProgress: reportProgress
|
|
1125
1126
|
});
|
|
1126
1127
|
}
|
|
1127
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1128
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1128
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarriersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1129
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarriersService, providedIn: 'root' });
|
|
1129
1130
|
}
|
|
1130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CarriersService, decorators: [{
|
|
1131
1132
|
type: Injectable,
|
|
1132
1133
|
args: [{
|
|
1133
1134
|
providedIn: 'root'
|
|
@@ -1279,10 +1280,10 @@ class CartonDeliveryItemsService extends BaseService {
|
|
|
1279
1280
|
reportProgress: reportProgress
|
|
1280
1281
|
});
|
|
1281
1282
|
}
|
|
1282
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1283
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1283
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonDeliveryItemsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1284
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonDeliveryItemsService, providedIn: 'root' });
|
|
1284
1285
|
}
|
|
1285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonDeliveryItemsService, decorators: [{
|
|
1286
1287
|
type: Injectable,
|
|
1287
1288
|
args: [{
|
|
1288
1289
|
providedIn: 'root'
|
|
@@ -1394,10 +1395,10 @@ class CartonMovementHistoriesService extends BaseService {
|
|
|
1394
1395
|
reportProgress: reportProgress
|
|
1395
1396
|
});
|
|
1396
1397
|
}
|
|
1397
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1398
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1398
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonMovementHistoriesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1399
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonMovementHistoriesService, providedIn: 'root' });
|
|
1399
1400
|
}
|
|
1400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonMovementHistoriesService, decorators: [{
|
|
1401
1402
|
type: Injectable,
|
|
1402
1403
|
args: [{
|
|
1403
1404
|
providedIn: 'root'
|
|
@@ -1509,10 +1510,10 @@ class CartonPicksService extends BaseService {
|
|
|
1509
1510
|
reportProgress: reportProgress
|
|
1510
1511
|
});
|
|
1511
1512
|
}
|
|
1512
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1513
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1513
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonPicksService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1514
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonPicksService, providedIn: 'root' });
|
|
1514
1515
|
}
|
|
1515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonPicksService, decorators: [{
|
|
1516
1517
|
type: Injectable,
|
|
1517
1518
|
args: [{
|
|
1518
1519
|
providedIn: 'root'
|
|
@@ -1624,10 +1625,10 @@ class CartonsService extends BaseService {
|
|
|
1624
1625
|
reportProgress: reportProgress
|
|
1625
1626
|
});
|
|
1626
1627
|
}
|
|
1627
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1628
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1628
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1629
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonsService, providedIn: 'root' });
|
|
1629
1630
|
}
|
|
1630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CartonsService, decorators: [{
|
|
1631
1632
|
type: Injectable,
|
|
1632
1633
|
args: [{
|
|
1633
1634
|
providedIn: 'root'
|
|
@@ -1826,10 +1827,10 @@ class ClientWaveConfigurationsService extends BaseService {
|
|
|
1826
1827
|
reportProgress: reportProgress
|
|
1827
1828
|
});
|
|
1828
1829
|
}
|
|
1829
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1830
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1830
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ClientWaveConfigurationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1831
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ClientWaveConfigurationsService, providedIn: 'root' });
|
|
1831
1832
|
}
|
|
1832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ClientWaveConfigurationsService, decorators: [{
|
|
1833
1834
|
type: Injectable,
|
|
1834
1835
|
args: [{
|
|
1835
1836
|
providedIn: 'root'
|
|
@@ -2246,10 +2247,10 @@ class ClusterPackingService extends BaseService {
|
|
|
2246
2247
|
reportProgress: reportProgress
|
|
2247
2248
|
});
|
|
2248
2249
|
}
|
|
2249
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2250
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2250
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ClusterPackingService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2251
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ClusterPackingService, providedIn: 'root' });
|
|
2251
2252
|
}
|
|
2252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ClusterPackingService, decorators: [{
|
|
2253
2254
|
type: Injectable,
|
|
2254
2255
|
args: [{
|
|
2255
2256
|
providedIn: 'root'
|
|
@@ -2440,10 +2441,10 @@ class CompaniesService extends BaseService {
|
|
|
2440
2441
|
reportProgress: reportProgress
|
|
2441
2442
|
});
|
|
2442
2443
|
}
|
|
2443
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2444
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2444
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CompaniesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2445
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CompaniesService, providedIn: 'root' });
|
|
2445
2446
|
}
|
|
2446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CompaniesService, decorators: [{
|
|
2447
2448
|
type: Injectable,
|
|
2448
2449
|
args: [{
|
|
2449
2450
|
providedIn: 'root'
|
|
@@ -2519,10 +2520,10 @@ class ContactsService extends BaseService {
|
|
|
2519
2520
|
reportProgress: reportProgress
|
|
2520
2521
|
});
|
|
2521
2522
|
}
|
|
2522
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2523
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2523
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ContactsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2524
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ContactsService, providedIn: 'root' });
|
|
2524
2525
|
}
|
|
2525
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ContactsService, decorators: [{
|
|
2526
2527
|
type: Injectable,
|
|
2527
2528
|
args: [{
|
|
2528
2529
|
providedIn: 'root'
|
|
@@ -2874,10 +2875,10 @@ class CountContinuousInventoryService extends BaseService {
|
|
|
2874
2875
|
reportProgress: reportProgress
|
|
2875
2876
|
});
|
|
2876
2877
|
}
|
|
2877
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2878
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2878
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CountContinuousInventoryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2879
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CountContinuousInventoryService, providedIn: 'root' });
|
|
2879
2880
|
}
|
|
2880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2881
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CountContinuousInventoryService, decorators: [{
|
|
2881
2882
|
type: Injectable,
|
|
2882
2883
|
args: [{
|
|
2883
2884
|
providedIn: 'root'
|
|
@@ -3124,10 +3125,10 @@ class CountRecordsService extends BaseService {
|
|
|
3124
3125
|
reportProgress: reportProgress
|
|
3125
3126
|
});
|
|
3126
3127
|
}
|
|
3127
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3128
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3128
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CountRecordsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3129
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CountRecordsService, providedIn: 'root' });
|
|
3129
3130
|
}
|
|
3130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: CountRecordsService, decorators: [{
|
|
3131
3132
|
type: Injectable,
|
|
3132
3133
|
args: [{
|
|
3133
3134
|
providedIn: 'root'
|
|
@@ -3198,10 +3199,10 @@ class DcLocationsService extends BaseService {
|
|
|
3198
3199
|
reportProgress: reportProgress
|
|
3199
3200
|
});
|
|
3200
3201
|
}
|
|
3201
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3202
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3202
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcLocationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3203
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcLocationsService, providedIn: 'root' });
|
|
3203
3204
|
}
|
|
3204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcLocationsService, decorators: [{
|
|
3205
3206
|
type: Injectable,
|
|
3206
3207
|
args: [{
|
|
3207
3208
|
providedIn: 'root'
|
|
@@ -3265,10 +3266,10 @@ class DcUnitOfMeasurementService extends BaseService {
|
|
|
3265
3266
|
reportProgress: reportProgress
|
|
3266
3267
|
});
|
|
3267
3268
|
}
|
|
3268
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3269
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3269
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcUnitOfMeasurementService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3270
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcUnitOfMeasurementService, providedIn: 'root' });
|
|
3270
3271
|
}
|
|
3271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcUnitOfMeasurementService, decorators: [{
|
|
3272
3273
|
type: Injectable,
|
|
3273
3274
|
args: [{
|
|
3274
3275
|
providedIn: 'root'
|
|
@@ -3535,10 +3536,10 @@ class DcsService extends BaseService {
|
|
|
3535
3536
|
reportProgress: reportProgress
|
|
3536
3537
|
});
|
|
3537
3538
|
}
|
|
3538
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3539
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3539
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3540
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcsService, providedIn: 'root' });
|
|
3540
3541
|
}
|
|
3541
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DcsService, decorators: [{
|
|
3542
3543
|
type: Injectable,
|
|
3543
3544
|
args: [{
|
|
3544
3545
|
providedIn: 'root'
|
|
@@ -4003,10 +4004,10 @@ class DeliveriesService extends BaseService {
|
|
|
4003
4004
|
reportProgress: reportProgress
|
|
4004
4005
|
});
|
|
4005
4006
|
}
|
|
4006
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4007
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4007
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DeliveriesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4008
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DeliveriesService, providedIn: 'root' });
|
|
4008
4009
|
}
|
|
4009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DeliveriesService, decorators: [{
|
|
4010
4011
|
type: Injectable,
|
|
4011
4012
|
args: [{
|
|
4012
4013
|
providedIn: 'root'
|
|
@@ -4247,10 +4248,10 @@ class DeliveryItemsService extends BaseService {
|
|
|
4247
4248
|
reportProgress: reportProgress
|
|
4248
4249
|
});
|
|
4249
4250
|
}
|
|
4250
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4251
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4251
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DeliveryItemsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4252
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DeliveryItemsService, providedIn: 'root' });
|
|
4252
4253
|
}
|
|
4253
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DeliveryItemsService, decorators: [{
|
|
4254
4255
|
type: Injectable,
|
|
4255
4256
|
args: [{
|
|
4256
4257
|
providedIn: 'root'
|
|
@@ -4487,10 +4488,10 @@ class DispatchBoxTypesService extends BaseService {
|
|
|
4487
4488
|
reportProgress: reportProgress
|
|
4488
4489
|
});
|
|
4489
4490
|
}
|
|
4490
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4491
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4491
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchBoxTypesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4492
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchBoxTypesService, providedIn: 'root' });
|
|
4492
4493
|
}
|
|
4493
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4494
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchBoxTypesService, decorators: [{
|
|
4494
4495
|
type: Injectable,
|
|
4495
4496
|
args: [{
|
|
4496
4497
|
providedIn: 'root'
|
|
@@ -4602,10 +4603,10 @@ class DispatchBoxesService extends BaseService {
|
|
|
4602
4603
|
reportProgress: reportProgress
|
|
4603
4604
|
});
|
|
4604
4605
|
}
|
|
4605
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4606
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4606
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchBoxesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4607
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchBoxesService, providedIn: 'root' });
|
|
4607
4608
|
}
|
|
4608
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchBoxesService, decorators: [{
|
|
4609
4610
|
type: Injectable,
|
|
4610
4611
|
args: [{
|
|
4611
4612
|
providedIn: 'root'
|
|
@@ -4750,10 +4751,10 @@ class DispatchCarriersService extends BaseService {
|
|
|
4750
4751
|
reportProgress: reportProgress
|
|
4751
4752
|
});
|
|
4752
4753
|
}
|
|
4753
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4754
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4754
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchCarriersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4755
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchCarriersService, providedIn: 'root' });
|
|
4755
4756
|
}
|
|
4756
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchCarriersService, decorators: [{
|
|
4757
4758
|
type: Injectable,
|
|
4758
4759
|
args: [{
|
|
4759
4760
|
providedIn: 'root'
|
|
@@ -4865,10 +4866,10 @@ class DispatchItemQuantityChangesService extends BaseService {
|
|
|
4865
4866
|
reportProgress: reportProgress
|
|
4866
4867
|
});
|
|
4867
4868
|
}
|
|
4868
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4869
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4869
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchItemQuantityChangesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4870
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchItemQuantityChangesService, providedIn: 'root' });
|
|
4870
4871
|
}
|
|
4871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchItemQuantityChangesService, decorators: [{
|
|
4872
4873
|
type: Injectable,
|
|
4873
4874
|
args: [{
|
|
4874
4875
|
providedIn: 'root'
|
|
@@ -4942,10 +4943,10 @@ class DispatchItemsService extends BaseService {
|
|
|
4942
4943
|
reportProgress: reportProgress
|
|
4943
4944
|
});
|
|
4944
4945
|
}
|
|
4945
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4946
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4946
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchItemsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4947
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchItemsService, providedIn: 'root' });
|
|
4947
4948
|
}
|
|
4948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4949
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchItemsService, decorators: [{
|
|
4949
4950
|
type: Injectable,
|
|
4950
4951
|
args: [{
|
|
4951
4952
|
providedIn: 'root'
|
|
@@ -5013,6 +5014,44 @@ class DispatchesService extends BaseService {
|
|
|
5013
5014
|
reportProgress: reportProgress
|
|
5014
5015
|
});
|
|
5015
5016
|
}
|
|
5017
|
+
confirmDispatchRequests(ids, observe = 'body', reportProgress = false, options) {
|
|
5018
|
+
if (ids === null || ids === undefined) {
|
|
5019
|
+
throw new Error('Required parameter ids was null or undefined when calling confirmDispatchRequests.');
|
|
5020
|
+
}
|
|
5021
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
5022
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ids', ids, QueryParamStyle.Form, true);
|
|
5023
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5024
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
5025
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5026
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5027
|
+
}
|
|
5028
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5029
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5030
|
+
let responseType_ = 'json';
|
|
5031
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5032
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5033
|
+
responseType_ = 'text';
|
|
5034
|
+
}
|
|
5035
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5036
|
+
responseType_ = 'json';
|
|
5037
|
+
}
|
|
5038
|
+
else {
|
|
5039
|
+
responseType_ = 'blob';
|
|
5040
|
+
}
|
|
5041
|
+
}
|
|
5042
|
+
let localVarPath = `/dispatches/confirm-requests`;
|
|
5043
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5044
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
5045
|
+
context: localVarHttpContext,
|
|
5046
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
5047
|
+
responseType: responseType_,
|
|
5048
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5049
|
+
headers: localVarHeaders,
|
|
5050
|
+
observe: observe,
|
|
5051
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
5052
|
+
reportProgress: reportProgress
|
|
5053
|
+
});
|
|
5054
|
+
}
|
|
5016
5055
|
confirmDispatches(ids, dispatchDate, observe = 'body', reportProgress = false, options) {
|
|
5017
5056
|
if (ids === null || ids === undefined) {
|
|
5018
5057
|
throw new Error('Required parameter ids was null or undefined when calling confirmDispatches.');
|
|
@@ -5055,6 +5094,41 @@ class DispatchesService extends BaseService {
|
|
|
5055
5094
|
reportProgress: reportProgress
|
|
5056
5095
|
});
|
|
5057
5096
|
}
|
|
5097
|
+
deleteDispatch(id, observe = 'body', reportProgress = false, options) {
|
|
5098
|
+
if (id === null || id === undefined) {
|
|
5099
|
+
throw new Error('Required parameter id was null or undefined when calling deleteDispatch.');
|
|
5100
|
+
}
|
|
5101
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5102
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
5103
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5104
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5105
|
+
}
|
|
5106
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5107
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5108
|
+
let responseType_ = 'json';
|
|
5109
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5110
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5111
|
+
responseType_ = 'text';
|
|
5112
|
+
}
|
|
5113
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5114
|
+
responseType_ = 'json';
|
|
5115
|
+
}
|
|
5116
|
+
else {
|
|
5117
|
+
responseType_ = 'blob';
|
|
5118
|
+
}
|
|
5119
|
+
}
|
|
5120
|
+
let localVarPath = `/dispatches/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
5121
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5122
|
+
return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
|
|
5123
|
+
context: localVarHttpContext,
|
|
5124
|
+
responseType: responseType_,
|
|
5125
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5126
|
+
headers: localVarHeaders,
|
|
5127
|
+
observe: observe,
|
|
5128
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
5129
|
+
reportProgress: reportProgress
|
|
5130
|
+
});
|
|
5131
|
+
}
|
|
5058
5132
|
getCarrierLabels(requestBody, observe = 'body', reportProgress = false, options) {
|
|
5059
5133
|
if (requestBody === null || requestBody === undefined) {
|
|
5060
5134
|
throw new Error('Required parameter requestBody was null or undefined when calling getCarrierLabels.');
|
|
@@ -5206,13 +5280,14 @@ class DispatchesService extends BaseService {
|
|
|
5206
5280
|
reportProgress: reportProgress
|
|
5207
5281
|
});
|
|
5208
5282
|
}
|
|
5209
|
-
getDispatchesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
5283
|
+
getDispatchesFromIndex($skip, $top, $orderby, $filter, searchTerm, tabName, observe = 'body', reportProgress = false, options) {
|
|
5210
5284
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
5211
5285
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
5212
5286
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
5213
5287
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
5214
5288
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
5215
5289
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
5290
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'tabName', tabName, QueryParamStyle.Form, true);
|
|
5216
5291
|
let localVarHeaders = this.defaultHeaders;
|
|
5217
5292
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5218
5293
|
'application/json'
|
|
@@ -5361,10 +5436,10 @@ class DispatchesService extends BaseService {
|
|
|
5361
5436
|
reportProgress: reportProgress
|
|
5362
5437
|
});
|
|
5363
5438
|
}
|
|
5364
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5365
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5439
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5440
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchesService, providedIn: 'root' });
|
|
5366
5441
|
}
|
|
5367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: DispatchesService, decorators: [{
|
|
5368
5443
|
type: Injectable,
|
|
5369
5444
|
args: [{
|
|
5370
5445
|
providedIn: 'root'
|
|
@@ -5429,10 +5504,10 @@ class HealthService extends BaseService {
|
|
|
5429
5504
|
reportProgress: reportProgress
|
|
5430
5505
|
});
|
|
5431
5506
|
}
|
|
5432
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5433
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5507
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: HealthService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5508
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: HealthService, providedIn: 'root' });
|
|
5434
5509
|
}
|
|
5435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: HealthService, decorators: [{
|
|
5436
5511
|
type: Injectable,
|
|
5437
5512
|
args: [{
|
|
5438
5513
|
providedIn: 'root'
|
|
@@ -5544,10 +5619,10 @@ class LicencePlateSerialsService extends BaseService {
|
|
|
5544
5619
|
reportProgress: reportProgress
|
|
5545
5620
|
});
|
|
5546
5621
|
}
|
|
5547
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5548
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5622
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: LicencePlateSerialsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5623
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: LicencePlateSerialsService, providedIn: 'root' });
|
|
5549
5624
|
}
|
|
5550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: LicencePlateSerialsService, decorators: [{
|
|
5551
5626
|
type: Injectable,
|
|
5552
5627
|
args: [{
|
|
5553
5628
|
providedIn: 'root'
|
|
@@ -5787,10 +5862,10 @@ class NotesService extends BaseService {
|
|
|
5787
5862
|
reportProgress: reportProgress
|
|
5788
5863
|
});
|
|
5789
5864
|
}
|
|
5790
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5791
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5865
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: NotesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5866
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: NotesService, providedIn: 'root' });
|
|
5792
5867
|
}
|
|
5793
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: NotesService, decorators: [{
|
|
5794
5869
|
type: Injectable,
|
|
5795
5870
|
args: [{
|
|
5796
5871
|
providedIn: 'root'
|
|
@@ -5854,10 +5929,10 @@ class PackageTypesService extends BaseService {
|
|
|
5854
5929
|
reportProgress: reportProgress
|
|
5855
5930
|
});
|
|
5856
5931
|
}
|
|
5857
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5858
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5932
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PackageTypesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5933
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PackageTypesService, providedIn: 'root' });
|
|
5859
5934
|
}
|
|
5860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PackageTypesService, decorators: [{
|
|
5861
5936
|
type: Injectable,
|
|
5862
5937
|
args: [{
|
|
5863
5938
|
providedIn: 'root'
|
|
@@ -5921,10 +5996,10 @@ class PendoService extends BaseService {
|
|
|
5921
5996
|
reportProgress: reportProgress
|
|
5922
5997
|
});
|
|
5923
5998
|
}
|
|
5924
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5925
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
5999
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PendoService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6000
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PendoService, providedIn: 'root' });
|
|
5926
6001
|
}
|
|
5927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PendoService, decorators: [{
|
|
5928
6003
|
type: Injectable,
|
|
5929
6004
|
args: [{
|
|
5930
6005
|
providedIn: 'root'
|
|
@@ -5988,10 +6063,10 @@ class PermissionsService extends BaseService {
|
|
|
5988
6063
|
reportProgress: reportProgress
|
|
5989
6064
|
});
|
|
5990
6065
|
}
|
|
5991
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5992
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6066
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PermissionsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6067
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PermissionsService, providedIn: 'root' });
|
|
5993
6068
|
}
|
|
5994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PermissionsService, decorators: [{
|
|
5995
6070
|
type: Injectable,
|
|
5996
6071
|
args: [{
|
|
5997
6072
|
providedIn: 'root'
|
|
@@ -6069,10 +6144,10 @@ class PickSummariesService extends BaseService {
|
|
|
6069
6144
|
reportProgress: reportProgress
|
|
6070
6145
|
});
|
|
6071
6146
|
}
|
|
6072
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6073
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6147
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PickSummariesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6148
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PickSummariesService, providedIn: 'root' });
|
|
6074
6149
|
}
|
|
6075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PickSummariesService, decorators: [{
|
|
6076
6151
|
type: Injectable,
|
|
6077
6152
|
args: [{
|
|
6078
6153
|
providedIn: 'root'
|
|
@@ -6635,10 +6710,10 @@ class PrintersService extends BaseService {
|
|
|
6635
6710
|
reportProgress: reportProgress
|
|
6636
6711
|
});
|
|
6637
6712
|
}
|
|
6638
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6639
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6713
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PrintersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6714
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PrintersService, providedIn: 'root' });
|
|
6640
6715
|
}
|
|
6641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6716
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: PrintersService, decorators: [{
|
|
6642
6717
|
type: Injectable,
|
|
6643
6718
|
args: [{
|
|
6644
6719
|
providedIn: 'root'
|
|
@@ -6709,10 +6784,10 @@ class ProductMasterSuppliersService extends BaseService {
|
|
|
6709
6784
|
reportProgress: reportProgress
|
|
6710
6785
|
});
|
|
6711
6786
|
}
|
|
6712
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6713
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6787
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductMasterSuppliersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6788
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductMasterSuppliersService, providedIn: 'root' });
|
|
6714
6789
|
}
|
|
6715
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductMasterSuppliersService, decorators: [{
|
|
6716
6791
|
type: Injectable,
|
|
6717
6792
|
args: [{
|
|
6718
6793
|
providedIn: 'root'
|
|
@@ -6782,10 +6857,10 @@ class ProductMastersService extends BaseService {
|
|
|
6782
6857
|
reportProgress: reportProgress
|
|
6783
6858
|
});
|
|
6784
6859
|
}
|
|
6785
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6786
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6860
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductMastersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6861
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductMastersService, providedIn: 'root' });
|
|
6787
6862
|
}
|
|
6788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6863
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductMastersService, decorators: [{
|
|
6789
6864
|
type: Injectable,
|
|
6790
6865
|
args: [{
|
|
6791
6866
|
providedIn: 'root'
|
|
@@ -6856,10 +6931,10 @@ class ProductQuantitiesService extends BaseService {
|
|
|
6856
6931
|
reportProgress: reportProgress
|
|
6857
6932
|
});
|
|
6858
6933
|
}
|
|
6859
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6860
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
6934
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductQuantitiesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6935
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductQuantitiesService, providedIn: 'root' });
|
|
6861
6936
|
}
|
|
6862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
6937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ProductQuantitiesService, decorators: [{
|
|
6863
6938
|
type: Injectable,
|
|
6864
6939
|
args: [{
|
|
6865
6940
|
providedIn: 'root'
|
|
@@ -6930,10 +7005,10 @@ class ReasonsService extends BaseService {
|
|
|
6930
7005
|
reportProgress: reportProgress
|
|
6931
7006
|
});
|
|
6932
7007
|
}
|
|
6933
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
6934
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
7008
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReasonsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7009
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReasonsService, providedIn: 'root' });
|
|
6935
7010
|
}
|
|
6936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
7011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReasonsService, decorators: [{
|
|
6937
7012
|
type: Injectable,
|
|
6938
7013
|
args: [{
|
|
6939
7014
|
providedIn: 'root'
|
|
@@ -7214,10 +7289,10 @@ class ReplenishmentAccessService extends BaseService {
|
|
|
7214
7289
|
reportProgress: reportProgress
|
|
7215
7290
|
});
|
|
7216
7291
|
}
|
|
7217
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
7218
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
7292
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReplenishmentAccessService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7293
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReplenishmentAccessService, providedIn: 'root' });
|
|
7219
7294
|
}
|
|
7220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
7295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReplenishmentAccessService, decorators: [{
|
|
7221
7296
|
type: Injectable,
|
|
7222
7297
|
args: [{
|
|
7223
7298
|
providedIn: 'root'
|
|
@@ -7399,10 +7474,10 @@ class ReplenishmentRecordsService extends BaseService {
|
|
|
7399
7474
|
reportProgress: reportProgress
|
|
7400
7475
|
});
|
|
7401
7476
|
}
|
|
7402
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
7403
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
7477
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReplenishmentRecordsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7478
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReplenishmentRecordsService, providedIn: 'root' });
|
|
7404
7479
|
}
|
|
7405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
7480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReplenishmentRecordsService, decorators: [{
|
|
7406
7481
|
type: Injectable,
|
|
7407
7482
|
args: [{
|
|
7408
7483
|
providedIn: 'root'
|
|
@@ -7514,10 +7589,10 @@ class ReturnedItemsService extends BaseService {
|
|
|
7514
7589
|
reportProgress: reportProgress
|
|
7515
7590
|
});
|
|
7516
7591
|
}
|
|
7517
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
7518
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
7592
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReturnedItemsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7593
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReturnedItemsService, providedIn: 'root' });
|
|
7519
7594
|
}
|
|
7520
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
7595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ReturnedItemsService, decorators: [{
|
|
7521
7596
|
type: Injectable,
|
|
7522
7597
|
args: [{
|
|
7523
7598
|
providedIn: 'root'
|
|
@@ -7760,10 +7835,10 @@ class SalesOrderItemsService extends BaseService {
|
|
|
7760
7835
|
reportProgress: reportProgress
|
|
7761
7836
|
});
|
|
7762
7837
|
}
|
|
7763
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
7764
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
7838
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SalesOrderItemsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7839
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SalesOrderItemsService, providedIn: 'root' });
|
|
7765
7840
|
}
|
|
7766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
7841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SalesOrderItemsService, decorators: [{
|
|
7767
7842
|
type: Injectable,
|
|
7768
7843
|
args: [{
|
|
7769
7844
|
providedIn: 'root'
|
|
@@ -7793,6 +7868,87 @@ class SalesOrdersService extends BaseService {
|
|
|
7793
7868
|
super(basePath, configuration);
|
|
7794
7869
|
this.httpClient = httpClient;
|
|
7795
7870
|
}
|
|
7871
|
+
cloneSalesOrder(id, salesOrderNumber, observe = 'body', reportProgress = false, options) {
|
|
7872
|
+
if (id === null || id === undefined) {
|
|
7873
|
+
throw new Error('Required parameter id was null or undefined when calling cloneSalesOrder.');
|
|
7874
|
+
}
|
|
7875
|
+
if (salesOrderNumber === null || salesOrderNumber === undefined) {
|
|
7876
|
+
throw new Error('Required parameter salesOrderNumber was null or undefined when calling cloneSalesOrder.');
|
|
7877
|
+
}
|
|
7878
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7879
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'salesOrderNumber', salesOrderNumber, QueryParamStyle.Form, true);
|
|
7880
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7881
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7882
|
+
'application/json'
|
|
7883
|
+
]);
|
|
7884
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7885
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7886
|
+
}
|
|
7887
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7888
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7889
|
+
let responseType_ = 'json';
|
|
7890
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7891
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7892
|
+
responseType_ = 'text';
|
|
7893
|
+
}
|
|
7894
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7895
|
+
responseType_ = 'json';
|
|
7896
|
+
}
|
|
7897
|
+
else {
|
|
7898
|
+
responseType_ = 'blob';
|
|
7899
|
+
}
|
|
7900
|
+
}
|
|
7901
|
+
let localVarPath = `/salesOrders/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/clone`;
|
|
7902
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7903
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
7904
|
+
context: localVarHttpContext,
|
|
7905
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7906
|
+
responseType: responseType_,
|
|
7907
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7908
|
+
headers: localVarHeaders,
|
|
7909
|
+
observe: observe,
|
|
7910
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7911
|
+
reportProgress: reportProgress
|
|
7912
|
+
});
|
|
7913
|
+
}
|
|
7914
|
+
commitSalesOrders(ids, observe = 'body', reportProgress = false, options) {
|
|
7915
|
+
if (ids === null || ids === undefined) {
|
|
7916
|
+
throw new Error('Required parameter ids was null or undefined when calling commitSalesOrders.');
|
|
7917
|
+
}
|
|
7918
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7919
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ids', ids, QueryParamStyle.Form, true);
|
|
7920
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7921
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
7922
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7923
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7924
|
+
}
|
|
7925
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7926
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7927
|
+
let responseType_ = 'json';
|
|
7928
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7929
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7930
|
+
responseType_ = 'text';
|
|
7931
|
+
}
|
|
7932
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7933
|
+
responseType_ = 'json';
|
|
7934
|
+
}
|
|
7935
|
+
else {
|
|
7936
|
+
responseType_ = 'blob';
|
|
7937
|
+
}
|
|
7938
|
+
}
|
|
7939
|
+
let localVarPath = `/salesOrders/commit`;
|
|
7940
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7941
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
7942
|
+
context: localVarHttpContext,
|
|
7943
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7944
|
+
responseType: responseType_,
|
|
7945
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7946
|
+
headers: localVarHeaders,
|
|
7947
|
+
observe: observe,
|
|
7948
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7949
|
+
reportProgress: reportProgress
|
|
7950
|
+
});
|
|
7951
|
+
}
|
|
7796
7952
|
createSalesOrder(salesOrderHeaderCreateModel, observe = 'body', reportProgress = false, options) {
|
|
7797
7953
|
if (salesOrderHeaderCreateModel === null || salesOrderHeaderCreateModel === undefined) {
|
|
7798
7954
|
throw new Error('Required parameter salesOrderHeaderCreateModel was null or undefined when calling createSalesOrder.');
|
|
@@ -7839,6 +7995,41 @@ class SalesOrdersService extends BaseService {
|
|
|
7839
7995
|
reportProgress: reportProgress
|
|
7840
7996
|
});
|
|
7841
7997
|
}
|
|
7998
|
+
deleteSalesOrder(id, observe = 'body', reportProgress = false, options) {
|
|
7999
|
+
if (id === null || id === undefined) {
|
|
8000
|
+
throw new Error('Required parameter id was null or undefined when calling deleteSalesOrder.');
|
|
8001
|
+
}
|
|
8002
|
+
let localVarHeaders = this.defaultHeaders;
|
|
8003
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
8004
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
8005
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
8006
|
+
}
|
|
8007
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
8008
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
8009
|
+
let responseType_ = 'json';
|
|
8010
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
8011
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
8012
|
+
responseType_ = 'text';
|
|
8013
|
+
}
|
|
8014
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
8015
|
+
responseType_ = 'json';
|
|
8016
|
+
}
|
|
8017
|
+
else {
|
|
8018
|
+
responseType_ = 'blob';
|
|
8019
|
+
}
|
|
8020
|
+
}
|
|
8021
|
+
let localVarPath = `/salesOrders/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
8022
|
+
const { basePath, withCredentials } = this.configuration;
|
|
8023
|
+
return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
|
|
8024
|
+
context: localVarHttpContext,
|
|
8025
|
+
responseType: responseType_,
|
|
8026
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
8027
|
+
headers: localVarHeaders,
|
|
8028
|
+
observe: observe,
|
|
8029
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
8030
|
+
reportProgress: reportProgress
|
|
8031
|
+
});
|
|
8032
|
+
}
|
|
7842
8033
|
getSalesOrder(id, observe = 'body', reportProgress = false, options) {
|
|
7843
8034
|
if (id === null || id === undefined) {
|
|
7844
8035
|
throw new Error('Required parameter id was null or undefined when calling getSalesOrder.');
|
|
@@ -7919,6 +8110,96 @@ class SalesOrdersService extends BaseService {
|
|
|
7919
8110
|
reportProgress: reportProgress
|
|
7920
8111
|
});
|
|
7921
8112
|
}
|
|
8113
|
+
getSalesOrders(tab, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
8114
|
+
if (tab === null || tab === undefined) {
|
|
8115
|
+
throw new Error('Required parameter tab was null or undefined when calling getSalesOrders.');
|
|
8116
|
+
}
|
|
8117
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
8118
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
8119
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
8120
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
8121
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
8122
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
8123
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'tab', tab, QueryParamStyle.Form, true);
|
|
8124
|
+
let localVarHeaders = this.defaultHeaders;
|
|
8125
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
8126
|
+
'application/json'
|
|
8127
|
+
]);
|
|
8128
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
8129
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
8130
|
+
}
|
|
8131
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
8132
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
8133
|
+
let responseType_ = 'json';
|
|
8134
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
8135
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
8136
|
+
responseType_ = 'text';
|
|
8137
|
+
}
|
|
8138
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
8139
|
+
responseType_ = 'json';
|
|
8140
|
+
}
|
|
8141
|
+
else {
|
|
8142
|
+
responseType_ = 'blob';
|
|
8143
|
+
}
|
|
8144
|
+
}
|
|
8145
|
+
let localVarPath = `/salesOrders`;
|
|
8146
|
+
const { basePath, withCredentials } = this.configuration;
|
|
8147
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
8148
|
+
context: localVarHttpContext,
|
|
8149
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
8150
|
+
responseType: responseType_,
|
|
8151
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
8152
|
+
headers: localVarHeaders,
|
|
8153
|
+
observe: observe,
|
|
8154
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
8155
|
+
reportProgress: reportProgress
|
|
8156
|
+
});
|
|
8157
|
+
}
|
|
8158
|
+
getSalesOrdersFromIndex(tab, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
8159
|
+
if (tab === null || tab === undefined) {
|
|
8160
|
+
throw new Error('Required parameter tab was null or undefined when calling getSalesOrdersFromIndex.');
|
|
8161
|
+
}
|
|
8162
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
8163
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
8164
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
8165
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
8166
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
8167
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
8168
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'tab', tab, QueryParamStyle.Form, true);
|
|
8169
|
+
let localVarHeaders = this.defaultHeaders;
|
|
8170
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
8171
|
+
'application/json'
|
|
8172
|
+
]);
|
|
8173
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
8174
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
8175
|
+
}
|
|
8176
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
8177
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
8178
|
+
let responseType_ = 'json';
|
|
8179
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
8180
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
8181
|
+
responseType_ = 'text';
|
|
8182
|
+
}
|
|
8183
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
8184
|
+
responseType_ = 'json';
|
|
8185
|
+
}
|
|
8186
|
+
else {
|
|
8187
|
+
responseType_ = 'blob';
|
|
8188
|
+
}
|
|
8189
|
+
}
|
|
8190
|
+
let localVarPath = `/salesOrders/search`;
|
|
8191
|
+
const { basePath, withCredentials } = this.configuration;
|
|
8192
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
8193
|
+
context: localVarHttpContext,
|
|
8194
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
8195
|
+
responseType: responseType_,
|
|
8196
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
8197
|
+
headers: localVarHeaders,
|
|
8198
|
+
observe: observe,
|
|
8199
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
8200
|
+
reportProgress: reportProgress
|
|
8201
|
+
});
|
|
8202
|
+
}
|
|
7922
8203
|
updateSalesOrder(id, salesOrderHeaderUpdateModel, observe = 'body', reportProgress = false, options) {
|
|
7923
8204
|
if (id === null || id === undefined) {
|
|
7924
8205
|
throw new Error('Required parameter id was null or undefined when calling updateSalesOrder.');
|
|
@@ -7968,10 +8249,10 @@ class SalesOrdersService extends BaseService {
|
|
|
7968
8249
|
reportProgress: reportProgress
|
|
7969
8250
|
});
|
|
7970
8251
|
}
|
|
7971
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
7972
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8252
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SalesOrdersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8253
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SalesOrdersService, providedIn: 'root' });
|
|
7973
8254
|
}
|
|
7974
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SalesOrdersService, decorators: [{
|
|
7975
8256
|
type: Injectable,
|
|
7976
8257
|
args: [{
|
|
7977
8258
|
providedIn: 'root'
|
|
@@ -8237,10 +8518,10 @@ class SettingsService extends BaseService {
|
|
|
8237
8518
|
reportProgress: reportProgress
|
|
8238
8519
|
});
|
|
8239
8520
|
}
|
|
8240
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8241
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8521
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SettingsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8522
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SettingsService, providedIn: 'root' });
|
|
8242
8523
|
}
|
|
8243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SettingsService, decorators: [{
|
|
8244
8525
|
type: Injectable,
|
|
8245
8526
|
args: [{
|
|
8246
8527
|
providedIn: 'root'
|
|
@@ -8307,10 +8588,10 @@ class SummaryService extends BaseService {
|
|
|
8307
8588
|
reportProgress: reportProgress
|
|
8308
8589
|
});
|
|
8309
8590
|
}
|
|
8310
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8311
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8591
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SummaryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8592
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SummaryService, providedIn: 'root' });
|
|
8312
8593
|
}
|
|
8313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8594
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: SummaryService, decorators: [{
|
|
8314
8595
|
type: Injectable,
|
|
8315
8596
|
args: [{
|
|
8316
8597
|
providedIn: 'root'
|
|
@@ -8548,10 +8829,10 @@ class TaskCompletionTimeService extends BaseService {
|
|
|
8548
8829
|
reportProgress: reportProgress
|
|
8549
8830
|
});
|
|
8550
8831
|
}
|
|
8551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8552
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
8832
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskCompletionTimeService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8833
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskCompletionTimeService, providedIn: 'root' });
|
|
8553
8834
|
}
|
|
8554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
8835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskCompletionTimeService, decorators: [{
|
|
8555
8836
|
type: Injectable,
|
|
8556
8837
|
args: [{
|
|
8557
8838
|
providedIn: 'root'
|
|
@@ -8789,10 +9070,10 @@ class TaskOperationsService extends BaseService {
|
|
|
8789
9070
|
reportProgress: reportProgress
|
|
8790
9071
|
});
|
|
8791
9072
|
}
|
|
8792
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
8793
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9073
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskOperationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9074
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskOperationsService, providedIn: 'root' });
|
|
8794
9075
|
}
|
|
8795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9076
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskOperationsService, decorators: [{
|
|
8796
9077
|
type: Injectable,
|
|
8797
9078
|
args: [{
|
|
8798
9079
|
providedIn: 'root'
|
|
@@ -9201,10 +9482,10 @@ class TaskUserRecordsService extends BaseService {
|
|
|
9201
9482
|
reportProgress: reportProgress
|
|
9202
9483
|
});
|
|
9203
9484
|
}
|
|
9204
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9205
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9485
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskUserRecordsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9486
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskUserRecordsService, providedIn: 'root' });
|
|
9206
9487
|
}
|
|
9207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: TaskUserRecordsService, decorators: [{
|
|
9208
9489
|
type: Injectable,
|
|
9209
9490
|
args: [{
|
|
9210
9491
|
providedIn: 'root'
|
|
@@ -9382,10 +9663,10 @@ class UserService extends BaseService {
|
|
|
9382
9663
|
reportProgress: reportProgress
|
|
9383
9664
|
});
|
|
9384
9665
|
}
|
|
9385
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9386
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9666
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9667
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
9387
9668
|
}
|
|
9388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserService, decorators: [{
|
|
9389
9670
|
type: Injectable,
|
|
9390
9671
|
args: [{
|
|
9391
9672
|
providedIn: 'root'
|
|
@@ -9456,10 +9737,10 @@ class UserCompaniesService extends BaseService {
|
|
|
9456
9737
|
reportProgress: reportProgress
|
|
9457
9738
|
});
|
|
9458
9739
|
}
|
|
9459
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9460
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9740
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserCompaniesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9741
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserCompaniesService, providedIn: 'root' });
|
|
9461
9742
|
}
|
|
9462
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserCompaniesService, decorators: [{
|
|
9463
9744
|
type: Injectable,
|
|
9464
9745
|
args: [{
|
|
9465
9746
|
providedIn: 'root'
|
|
@@ -9571,10 +9852,10 @@ class UserPrintersService extends BaseService {
|
|
|
9571
9852
|
reportProgress: reportProgress
|
|
9572
9853
|
});
|
|
9573
9854
|
}
|
|
9574
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9575
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9855
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserPrintersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9856
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserPrintersService, providedIn: 'root' });
|
|
9576
9857
|
}
|
|
9577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UserPrintersService, decorators: [{
|
|
9578
9859
|
type: Injectable,
|
|
9579
9860
|
args: [{
|
|
9580
9861
|
providedIn: 'root'
|
|
@@ -9645,10 +9926,10 @@ class UsersInternalService extends BaseService {
|
|
|
9645
9926
|
reportProgress: reportProgress
|
|
9646
9927
|
});
|
|
9647
9928
|
}
|
|
9648
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9649
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
9929
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UsersInternalService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9930
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UsersInternalService, providedIn: 'root' });
|
|
9650
9931
|
}
|
|
9651
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
9932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: UsersInternalService, decorators: [{
|
|
9652
9933
|
type: Injectable,
|
|
9653
9934
|
args: [{
|
|
9654
9935
|
providedIn: 'root'
|
|
@@ -10136,10 +10417,10 @@ class WaveConfigGroupsService extends BaseService {
|
|
|
10136
10417
|
reportProgress: reportProgress
|
|
10137
10418
|
});
|
|
10138
10419
|
}
|
|
10139
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10140
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10420
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveConfigGroupsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10421
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveConfigGroupsService, providedIn: 'root' });
|
|
10141
10422
|
}
|
|
10142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveConfigGroupsService, decorators: [{
|
|
10143
10424
|
type: Injectable,
|
|
10144
10425
|
args: [{
|
|
10145
10426
|
providedIn: 'root'
|
|
@@ -10292,10 +10573,10 @@ class WaveConfigurationsService extends BaseService {
|
|
|
10292
10573
|
reportProgress: reportProgress
|
|
10293
10574
|
});
|
|
10294
10575
|
}
|
|
10295
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10296
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10576
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveConfigurationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10577
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveConfigurationsService, providedIn: 'root' });
|
|
10297
10578
|
}
|
|
10298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveConfigurationsService, decorators: [{
|
|
10299
10580
|
type: Injectable,
|
|
10300
10581
|
args: [{
|
|
10301
10582
|
providedIn: 'root'
|
|
@@ -10450,10 +10731,10 @@ class WaveHistoryService extends BaseService {
|
|
|
10450
10731
|
reportProgress: reportProgress
|
|
10451
10732
|
});
|
|
10452
10733
|
}
|
|
10453
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10454
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10734
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveHistoryService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10735
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveHistoryService, providedIn: 'root' });
|
|
10455
10736
|
}
|
|
10456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10737
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveHistoryService, decorators: [{
|
|
10457
10738
|
type: Injectable,
|
|
10458
10739
|
args: [{
|
|
10459
10740
|
providedIn: 'root'
|
|
@@ -10571,10 +10852,10 @@ class WavePickReleasesService extends BaseService {
|
|
|
10571
10852
|
reportProgress: reportProgress
|
|
10572
10853
|
});
|
|
10573
10854
|
}
|
|
10574
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10575
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
10855
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavePickReleasesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10856
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavePickReleasesService, providedIn: 'root' });
|
|
10576
10857
|
}
|
|
10577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
10858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavePickReleasesService, decorators: [{
|
|
10578
10859
|
type: Injectable,
|
|
10579
10860
|
args: [{
|
|
10580
10861
|
providedIn: 'root'
|
|
@@ -10855,10 +11136,10 @@ class WavePickingAccessService extends BaseService {
|
|
|
10855
11136
|
reportProgress: reportProgress
|
|
10856
11137
|
});
|
|
10857
11138
|
}
|
|
10858
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10859
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11139
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavePickingAccessService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11140
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavePickingAccessService, providedIn: 'root' });
|
|
10860
11141
|
}
|
|
10861
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavePickingAccessService, decorators: [{
|
|
10862
11143
|
type: Injectable,
|
|
10863
11144
|
args: [{
|
|
10864
11145
|
providedIn: 'root'
|
|
@@ -10970,10 +11251,10 @@ class WaveSummariesService extends BaseService {
|
|
|
10970
11251
|
reportProgress: reportProgress
|
|
10971
11252
|
});
|
|
10972
11253
|
}
|
|
10973
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
10974
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11254
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveSummariesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11255
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveSummariesService, providedIn: 'root' });
|
|
10975
11256
|
}
|
|
10976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WaveSummariesService, decorators: [{
|
|
10977
11258
|
type: Injectable,
|
|
10978
11259
|
args: [{
|
|
10979
11260
|
providedIn: 'root'
|
|
@@ -11047,10 +11328,10 @@ class WavesByPickReleaseIdService extends BaseService {
|
|
|
11047
11328
|
reportProgress: reportProgress
|
|
11048
11329
|
});
|
|
11049
11330
|
}
|
|
11050
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11051
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
11331
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavesByPickReleaseIdService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11332
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavesByPickReleaseIdService, providedIn: 'root' });
|
|
11052
11333
|
}
|
|
11053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
11334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: WavesByPickReleaseIdService, decorators: [{
|
|
11054
11335
|
type: Injectable,
|
|
11055
11336
|
args: [{
|
|
11056
11337
|
providedIn: 'root'
|
|
@@ -12116,6 +12397,21 @@ const ReprintStatuses = {
|
|
|
12116
12397
|
Completed: 'Completed'
|
|
12117
12398
|
};
|
|
12118
12399
|
|
|
12400
|
+
/**
|
|
12401
|
+
* Wms.API.Client
|
|
12402
|
+
*
|
|
12403
|
+
*
|
|
12404
|
+
*
|
|
12405
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12406
|
+
* https://openapi-generator.tech
|
|
12407
|
+
* Do not edit the class manually.
|
|
12408
|
+
*/
|
|
12409
|
+
const SalesOrderCompletionIssue = {
|
|
12410
|
+
LineItemsRequired: 'LineItemsRequired',
|
|
12411
|
+
PostCodeRequired: 'PostCodeRequired',
|
|
12412
|
+
CountryRequired: 'CountryRequired'
|
|
12413
|
+
};
|
|
12414
|
+
|
|
12119
12415
|
/**
|
|
12120
12416
|
* Wms.API.Client
|
|
12121
12417
|
*
|
|
@@ -12156,6 +12452,21 @@ const ReprintStatuses = {
|
|
|
12156
12452
|
* Do not edit the class manually.
|
|
12157
12453
|
*/
|
|
12158
12454
|
|
|
12455
|
+
/**
|
|
12456
|
+
* Wms.API.Client
|
|
12457
|
+
*
|
|
12458
|
+
*
|
|
12459
|
+
*
|
|
12460
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12461
|
+
* https://openapi-generator.tech
|
|
12462
|
+
* Do not edit the class manually.
|
|
12463
|
+
*/
|
|
12464
|
+
const SalesOrderTab = {
|
|
12465
|
+
All: 'All',
|
|
12466
|
+
ToBeCommitted: 'ToBeCommitted',
|
|
12467
|
+
Committed: 'Committed'
|
|
12468
|
+
};
|
|
12469
|
+
|
|
12159
12470
|
/**
|
|
12160
12471
|
* Wms.API.Client
|
|
12161
12472
|
*
|
|
@@ -12492,11 +12803,11 @@ class ApiModule {
|
|
|
12492
12803
|
'See also https://github.com/angular/angular/issues/20575');
|
|
12493
12804
|
}
|
|
12494
12805
|
}
|
|
12495
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
12496
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
12497
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
12806
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
12807
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.1.1", ngImport: i0, type: ApiModule });
|
|
12808
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ApiModule });
|
|
12498
12809
|
}
|
|
12499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.1", ngImport: i0, type: ApiModule, decorators: [{
|
|
12500
12811
|
type: NgModule,
|
|
12501
12812
|
args: [{
|
|
12502
12813
|
imports: [],
|
|
@@ -12528,5 +12839,5 @@ function provideApi(configOrBasePath) {
|
|
|
12528
12839
|
* Generated bundle index. Do not edit.
|
|
12529
12840
|
*/
|
|
12530
12841
|
|
|
12531
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
12842
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
12532
12843
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|