@indigina/wms-api 0.0.176 → 0.0.178
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 +262 -14
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +288 -27
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.178
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.178 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -413,7 +413,7 @@ class AddressesService extends BaseService {
|
|
|
413
413
|
super(basePath, configuration);
|
|
414
414
|
this.httpClient = httpClient;
|
|
415
415
|
}
|
|
416
|
-
getAddressesByCompany(companyId, addressType, $skip, $top, $orderby, $filter,
|
|
416
|
+
getAddressesByCompany(companyId, addressType, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
417
417
|
if (companyId === null || companyId === undefined) {
|
|
418
418
|
throw new Error('Required parameter companyId was null or undefined when calling getAddressesByCompany.');
|
|
419
419
|
}
|
|
@@ -425,7 +425,6 @@ class AddressesService extends BaseService {
|
|
|
425
425
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
426
426
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
427
427
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
428
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
429
428
|
let localVarHeaders = this.defaultHeaders;
|
|
430
429
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
431
430
|
'application/json'
|
|
@@ -460,7 +459,7 @@ class AddressesService extends BaseService {
|
|
|
460
459
|
reportProgress: reportProgress
|
|
461
460
|
});
|
|
462
461
|
}
|
|
463
|
-
getAddressesByPerson(personId, addressType, $skip, $top, $orderby, $filter,
|
|
462
|
+
getAddressesByPerson(personId, addressType, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
464
463
|
if (personId === null || personId === undefined) {
|
|
465
464
|
throw new Error('Required parameter personId was null or undefined when calling getAddressesByPerson.');
|
|
466
465
|
}
|
|
@@ -472,7 +471,6 @@ class AddressesService extends BaseService {
|
|
|
472
471
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
473
472
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
474
473
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
475
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
476
474
|
let localVarHeaders = this.defaultHeaders;
|
|
477
475
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
478
476
|
'application/json'
|
|
@@ -2252,7 +2250,7 @@ class CompaniesService extends BaseService {
|
|
|
2252
2250
|
reportProgress: reportProgress
|
|
2253
2251
|
});
|
|
2254
2252
|
}
|
|
2255
|
-
getCompaniesByCompanyType(companyType, $skip, $top, $orderby, $filter,
|
|
2253
|
+
getCompaniesByCompanyType(companyType, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
2256
2254
|
if (companyType === null || companyType === undefined) {
|
|
2257
2255
|
throw new Error('Required parameter companyType was null or undefined when calling getCompaniesByCompanyType.');
|
|
2258
2256
|
}
|
|
@@ -2261,7 +2259,6 @@ class CompaniesService extends BaseService {
|
|
|
2261
2259
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
2262
2260
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
2263
2261
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
2264
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
2265
2262
|
let localVarHeaders = this.defaultHeaders;
|
|
2266
2263
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2267
2264
|
'application/json'
|
|
@@ -2366,7 +2363,7 @@ class ContactsService extends BaseService {
|
|
|
2366
2363
|
super(basePath, configuration);
|
|
2367
2364
|
this.httpClient = httpClient;
|
|
2368
2365
|
}
|
|
2369
|
-
getContactsByCompany(companyId, contactType, $skip, $top, $orderby, $filter,
|
|
2366
|
+
getContactsByCompany(companyId, contactType, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
2370
2367
|
if (companyId === null || companyId === undefined) {
|
|
2371
2368
|
throw new Error('Required parameter companyId was null or undefined when calling getContactsByCompany.');
|
|
2372
2369
|
}
|
|
@@ -2378,7 +2375,6 @@ class ContactsService extends BaseService {
|
|
|
2378
2375
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
2379
2376
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
2380
2377
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
2381
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
2382
2378
|
let localVarHeaders = this.defaultHeaders;
|
|
2383
2379
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2384
2380
|
'application/json'
|
|
@@ -2430,6 +2426,211 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
2430
2426
|
type: Optional
|
|
2431
2427
|
}] }] });
|
|
2432
2428
|
|
|
2429
|
+
/**
|
|
2430
|
+
* Wms.API.Client
|
|
2431
|
+
*
|
|
2432
|
+
*
|
|
2433
|
+
*
|
|
2434
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2435
|
+
* https://openapi-generator.tech
|
|
2436
|
+
* Do not edit the class manually.
|
|
2437
|
+
*/
|
|
2438
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
2439
|
+
class CountRecordsService extends BaseService {
|
|
2440
|
+
httpClient;
|
|
2441
|
+
constructor(httpClient, basePath, configuration) {
|
|
2442
|
+
super(basePath, configuration);
|
|
2443
|
+
this.httpClient = httpClient;
|
|
2444
|
+
}
|
|
2445
|
+
cancelCountRecords(ids, observe = 'body', reportProgress = false, options) {
|
|
2446
|
+
if (ids === null || ids === undefined) {
|
|
2447
|
+
throw new Error('Required parameter ids was null or undefined when calling cancelCountRecords.');
|
|
2448
|
+
}
|
|
2449
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2450
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ids', ids, QueryParamStyle.Form, true);
|
|
2451
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2452
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
2453
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2454
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2455
|
+
}
|
|
2456
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2457
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2458
|
+
let responseType_ = 'json';
|
|
2459
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2460
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2461
|
+
responseType_ = 'text';
|
|
2462
|
+
}
|
|
2463
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2464
|
+
responseType_ = 'json';
|
|
2465
|
+
}
|
|
2466
|
+
else {
|
|
2467
|
+
responseType_ = 'blob';
|
|
2468
|
+
}
|
|
2469
|
+
}
|
|
2470
|
+
let localVarPath = `/CountRecords/cancel`;
|
|
2471
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2472
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
2473
|
+
context: localVarHttpContext,
|
|
2474
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
2475
|
+
responseType: responseType_,
|
|
2476
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2477
|
+
headers: localVarHeaders,
|
|
2478
|
+
observe: observe,
|
|
2479
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2480
|
+
reportProgress: reportProgress
|
|
2481
|
+
});
|
|
2482
|
+
}
|
|
2483
|
+
getCountRecordClients(statusGroup, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
2484
|
+
if (statusGroup === null || statusGroup === undefined) {
|
|
2485
|
+
throw new Error('Required parameter statusGroup was null or undefined when calling getCountRecordClients.');
|
|
2486
|
+
}
|
|
2487
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2488
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
2489
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
2490
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
2491
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
2492
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
2493
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'statusGroup', statusGroup, QueryParamStyle.Form, true);
|
|
2494
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2495
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2496
|
+
'application/json'
|
|
2497
|
+
]);
|
|
2498
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2499
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2500
|
+
}
|
|
2501
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2502
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2503
|
+
let responseType_ = 'json';
|
|
2504
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2505
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2506
|
+
responseType_ = 'text';
|
|
2507
|
+
}
|
|
2508
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2509
|
+
responseType_ = 'json';
|
|
2510
|
+
}
|
|
2511
|
+
else {
|
|
2512
|
+
responseType_ = 'blob';
|
|
2513
|
+
}
|
|
2514
|
+
}
|
|
2515
|
+
let localVarPath = `/CountRecords/clients`;
|
|
2516
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2517
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2518
|
+
context: localVarHttpContext,
|
|
2519
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
2520
|
+
responseType: responseType_,
|
|
2521
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2522
|
+
headers: localVarHeaders,
|
|
2523
|
+
observe: observe,
|
|
2524
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2525
|
+
reportProgress: reportProgress
|
|
2526
|
+
});
|
|
2527
|
+
}
|
|
2528
|
+
getCountRecords(statusGroup, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
2529
|
+
if (statusGroup === null || statusGroup === undefined) {
|
|
2530
|
+
throw new Error('Required parameter statusGroup was null or undefined when calling getCountRecords.');
|
|
2531
|
+
}
|
|
2532
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2533
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
2534
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
2535
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
2536
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
2537
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
2538
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'statusGroup', statusGroup, QueryParamStyle.Form, true);
|
|
2539
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2540
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2541
|
+
'application/json'
|
|
2542
|
+
]);
|
|
2543
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2544
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2545
|
+
}
|
|
2546
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2547
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2548
|
+
let responseType_ = 'json';
|
|
2549
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2550
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2551
|
+
responseType_ = 'text';
|
|
2552
|
+
}
|
|
2553
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2554
|
+
responseType_ = 'json';
|
|
2555
|
+
}
|
|
2556
|
+
else {
|
|
2557
|
+
responseType_ = 'blob';
|
|
2558
|
+
}
|
|
2559
|
+
}
|
|
2560
|
+
let localVarPath = `/CountRecords`;
|
|
2561
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2562
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2563
|
+
context: localVarHttpContext,
|
|
2564
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
2565
|
+
responseType: responseType_,
|
|
2566
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2567
|
+
headers: localVarHeaders,
|
|
2568
|
+
observe: observe,
|
|
2569
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2570
|
+
reportProgress: reportProgress
|
|
2571
|
+
});
|
|
2572
|
+
}
|
|
2573
|
+
getOperatorCounts(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
2574
|
+
if (id === null || id === undefined) {
|
|
2575
|
+
throw new Error('Required parameter id was null or undefined when calling getOperatorCounts.');
|
|
2576
|
+
}
|
|
2577
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2578
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
2579
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
2580
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
2581
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
2582
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
2583
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2584
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2585
|
+
'application/json'
|
|
2586
|
+
]);
|
|
2587
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2588
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2589
|
+
}
|
|
2590
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2591
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2592
|
+
let responseType_ = 'json';
|
|
2593
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2594
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2595
|
+
responseType_ = 'text';
|
|
2596
|
+
}
|
|
2597
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2598
|
+
responseType_ = 'json';
|
|
2599
|
+
}
|
|
2600
|
+
else {
|
|
2601
|
+
responseType_ = 'blob';
|
|
2602
|
+
}
|
|
2603
|
+
}
|
|
2604
|
+
let localVarPath = `/CountRecords/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/operatorCounts`;
|
|
2605
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2606
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2607
|
+
context: localVarHttpContext,
|
|
2608
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
2609
|
+
responseType: responseType_,
|
|
2610
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2611
|
+
headers: localVarHeaders,
|
|
2612
|
+
observe: observe,
|
|
2613
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2614
|
+
reportProgress: reportProgress
|
|
2615
|
+
});
|
|
2616
|
+
}
|
|
2617
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountRecordsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2618
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountRecordsService, providedIn: 'root' });
|
|
2619
|
+
}
|
|
2620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountRecordsService, decorators: [{
|
|
2621
|
+
type: Injectable,
|
|
2622
|
+
args: [{
|
|
2623
|
+
providedIn: 'root'
|
|
2624
|
+
}]
|
|
2625
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2626
|
+
type: Optional
|
|
2627
|
+
}, {
|
|
2628
|
+
type: Inject,
|
|
2629
|
+
args: [BASE_PATH]
|
|
2630
|
+
}] }, { type: Configuration, decorators: [{
|
|
2631
|
+
type: Optional
|
|
2632
|
+
}] }] });
|
|
2633
|
+
|
|
2433
2634
|
/**
|
|
2434
2635
|
* Wms.API.Client
|
|
2435
2636
|
*
|
|
@@ -5654,13 +5855,12 @@ class ProductMastersService extends BaseService {
|
|
|
5654
5855
|
super(basePath, configuration);
|
|
5655
5856
|
this.httpClient = httpClient;
|
|
5656
5857
|
}
|
|
5657
|
-
getProductMasters($skip, $top, $orderby, $filter,
|
|
5858
|
+
getProductMasters($skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
5658
5859
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
5659
5860
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
5660
5861
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
5661
5862
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
5662
5863
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
5663
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
5664
5864
|
let localVarHeaders = this.defaultHeaders;
|
|
5665
5865
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5666
5866
|
'application/json'
|
|
@@ -6789,7 +6989,7 @@ class SalesOrdersService extends BaseService {
|
|
|
6789
6989
|
reportProgress: reportProgress
|
|
6790
6990
|
});
|
|
6791
6991
|
}
|
|
6792
|
-
getSalesOrderItems(id, $skip, $top, $orderby, $filter,
|
|
6992
|
+
getSalesOrderItems(id, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
6793
6993
|
if (id === null || id === undefined) {
|
|
6794
6994
|
throw new Error('Required parameter id was null or undefined when calling getSalesOrderItems.');
|
|
6795
6995
|
}
|
|
@@ -6798,7 +6998,6 @@ class SalesOrdersService extends BaseService {
|
|
|
6798
6998
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6799
6999
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6800
7000
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6801
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
6802
7001
|
let localVarHeaders = this.defaultHeaders;
|
|
6803
7002
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6804
7003
|
'application/json'
|
|
@@ -9978,7 +10177,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
9978
10177
|
type: Optional
|
|
9979
10178
|
}] }] });
|
|
9980
10179
|
|
|
9981
|
-
const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
10180
|
+
const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
9982
10181
|
|
|
9983
10182
|
/**
|
|
9984
10183
|
* Wms.API.Client
|
|
@@ -10263,6 +10462,55 @@ const CompanyType = {
|
|
|
10263
10462
|
* Do not edit the class manually.
|
|
10264
10463
|
*/
|
|
10265
10464
|
|
|
10465
|
+
/**
|
|
10466
|
+
* Wms.API.Client
|
|
10467
|
+
*
|
|
10468
|
+
*
|
|
10469
|
+
*
|
|
10470
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10471
|
+
* https://openapi-generator.tech
|
|
10472
|
+
* Do not edit the class manually.
|
|
10473
|
+
*/
|
|
10474
|
+
const CountStatusGroup = {
|
|
10475
|
+
Open: 'Open',
|
|
10476
|
+
Closed: 'Closed'
|
|
10477
|
+
};
|
|
10478
|
+
|
|
10479
|
+
/**
|
|
10480
|
+
* Wms.API.Client
|
|
10481
|
+
*
|
|
10482
|
+
*
|
|
10483
|
+
*
|
|
10484
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10485
|
+
* https://openapi-generator.tech
|
|
10486
|
+
* Do not edit the class manually.
|
|
10487
|
+
*/
|
|
10488
|
+
const CountStatuses = {
|
|
10489
|
+
Any: 'Any',
|
|
10490
|
+
Active: 'Active',
|
|
10491
|
+
Complete: 'Complete',
|
|
10492
|
+
Recount: 'Recount',
|
|
10493
|
+
Cancel: 'Cancel'
|
|
10494
|
+
};
|
|
10495
|
+
|
|
10496
|
+
/**
|
|
10497
|
+
* Wms.API.Client
|
|
10498
|
+
*
|
|
10499
|
+
*
|
|
10500
|
+
*
|
|
10501
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10502
|
+
* https://openapi-generator.tech
|
|
10503
|
+
* Do not edit the class manually.
|
|
10504
|
+
*/
|
|
10505
|
+
const CountType = {
|
|
10506
|
+
Any: 'Any',
|
|
10507
|
+
MovementException: 'MovementException',
|
|
10508
|
+
PickDenial: 'PickDenial',
|
|
10509
|
+
ContinuousInventory: 'ContinuousInventory',
|
|
10510
|
+
PlannedCount: 'PlannedCount',
|
|
10511
|
+
FreeCount: 'FreeCount'
|
|
10512
|
+
};
|
|
10513
|
+
|
|
10266
10514
|
/**
|
|
10267
10515
|
* Wms.API.Client
|
|
10268
10516
|
*
|
|
@@ -11289,5 +11537,5 @@ function provideApi(configOrBasePath) {
|
|
|
11289
11537
|
* Generated bundle index. Do not edit.
|
|
11290
11538
|
*/
|
|
11291
11539
|
|
|
11292
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, 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, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
11540
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, 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, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
11293
11541
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|