@indigina/wms-api 0.0.182 → 0.0.184
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 +477 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +390 -17
package/package.json
CHANGED
|
@@ -712,6 +712,65 @@ declare class CarrierProviderIntegrationsService extends BaseService {
|
|
|
712
712
|
static ɵprov: i0.ɵɵInjectableDeclaration<CarrierProviderIntegrationsService>;
|
|
713
713
|
}
|
|
714
714
|
|
|
715
|
+
/**
|
|
716
|
+
* Wms.API.Client
|
|
717
|
+
*
|
|
718
|
+
*
|
|
719
|
+
*
|
|
720
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
721
|
+
* https://openapi-generator.tech
|
|
722
|
+
* Do not edit the class manually.
|
|
723
|
+
*/
|
|
724
|
+
interface CarrierServiceType {
|
|
725
|
+
id: string;
|
|
726
|
+
serviceName?: string;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* Wms.API.Client
|
|
731
|
+
*
|
|
732
|
+
*
|
|
733
|
+
*
|
|
734
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
735
|
+
* https://openapi-generator.tech
|
|
736
|
+
* Do not edit the class manually.
|
|
737
|
+
*/
|
|
738
|
+
|
|
739
|
+
interface CarrierServiceTypes {
|
|
740
|
+
total: number;
|
|
741
|
+
data: Array<CarrierServiceType>;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
declare class CarrierServiceTypesService extends BaseService {
|
|
745
|
+
protected httpClient: HttpClient;
|
|
746
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
747
|
+
/**
|
|
748
|
+
* Get the services for a carrier
|
|
749
|
+
* @endpoint get /carrierServiceTypes/{carrierId}
|
|
750
|
+
* @param carrierId
|
|
751
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
752
|
+
* @param reportProgress flag to report request and response progress.
|
|
753
|
+
* @param options additional options
|
|
754
|
+
*/
|
|
755
|
+
getCarrierServiceTypes(carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
756
|
+
httpHeaderAccept?: 'application/json';
|
|
757
|
+
context?: HttpContext;
|
|
758
|
+
transferCache?: boolean;
|
|
759
|
+
}): Observable<CarrierServiceTypes>;
|
|
760
|
+
getCarrierServiceTypes(carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
761
|
+
httpHeaderAccept?: 'application/json';
|
|
762
|
+
context?: HttpContext;
|
|
763
|
+
transferCache?: boolean;
|
|
764
|
+
}): Observable<HttpResponse<CarrierServiceTypes>>;
|
|
765
|
+
getCarrierServiceTypes(carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
766
|
+
httpHeaderAccept?: 'application/json';
|
|
767
|
+
context?: HttpContext;
|
|
768
|
+
transferCache?: boolean;
|
|
769
|
+
}): Observable<HttpEvent<CarrierServiceTypes>>;
|
|
770
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarrierServiceTypesService, [null, { optional: true; }, { optional: true; }]>;
|
|
771
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CarrierServiceTypesService>;
|
|
772
|
+
}
|
|
773
|
+
|
|
715
774
|
/**
|
|
716
775
|
* Wms.API.Client
|
|
717
776
|
*
|
|
@@ -2372,6 +2431,334 @@ declare class ContactsService extends BaseService {
|
|
|
2372
2431
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsService>;
|
|
2373
2432
|
}
|
|
2374
2433
|
|
|
2434
|
+
/**
|
|
2435
|
+
* Wms.API.Client
|
|
2436
|
+
*
|
|
2437
|
+
*
|
|
2438
|
+
*
|
|
2439
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2440
|
+
* https://openapi-generator.tech
|
|
2441
|
+
* Do not edit the class manually.
|
|
2442
|
+
*/
|
|
2443
|
+
interface CountContinuousInventoryGridView {
|
|
2444
|
+
id: string;
|
|
2445
|
+
paused: boolean;
|
|
2446
|
+
clientId: string;
|
|
2447
|
+
client: string;
|
|
2448
|
+
nextRunDate?: string | null;
|
|
2449
|
+
numberOfReleases: number;
|
|
2450
|
+
includeWeekends: boolean;
|
|
2451
|
+
includeBulk: boolean;
|
|
2452
|
+
includeEmptyLocations: boolean;
|
|
2453
|
+
createDate: string;
|
|
2454
|
+
createdByUser: string;
|
|
2455
|
+
lastModifiedDate?: string | null;
|
|
2456
|
+
lastModifiedUser?: string;
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
/**
|
|
2460
|
+
* Wms.API.Client
|
|
2461
|
+
*
|
|
2462
|
+
*
|
|
2463
|
+
*
|
|
2464
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2465
|
+
* https://openapi-generator.tech
|
|
2466
|
+
* Do not edit the class manually.
|
|
2467
|
+
*/
|
|
2468
|
+
|
|
2469
|
+
interface CountContinuousInventories {
|
|
2470
|
+
total: number;
|
|
2471
|
+
data: Array<CountContinuousInventoryGridView>;
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
/**
|
|
2475
|
+
* Wms.API.Client
|
|
2476
|
+
*
|
|
2477
|
+
*
|
|
2478
|
+
*
|
|
2479
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2480
|
+
* https://openapi-generator.tech
|
|
2481
|
+
* Do not edit the class manually.
|
|
2482
|
+
*/
|
|
2483
|
+
interface CountContinuousInventory {
|
|
2484
|
+
id: string;
|
|
2485
|
+
dcId: string;
|
|
2486
|
+
clientId: string;
|
|
2487
|
+
numberOfReleases: number;
|
|
2488
|
+
includeWeekends: boolean;
|
|
2489
|
+
includeBulk: boolean;
|
|
2490
|
+
includeEmptyLocations: boolean;
|
|
2491
|
+
paused: boolean;
|
|
2492
|
+
nextRunDate?: string | null;
|
|
2493
|
+
lastPausedDate?: string | null;
|
|
2494
|
+
lastPausedUserId?: string | null;
|
|
2495
|
+
createDate: string;
|
|
2496
|
+
createUserId: string;
|
|
2497
|
+
lastModifiedDate?: string | null;
|
|
2498
|
+
lastModifiedUserId?: string | null;
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
/**
|
|
2502
|
+
* Wms.API.Client
|
|
2503
|
+
*
|
|
2504
|
+
*
|
|
2505
|
+
*
|
|
2506
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2507
|
+
* https://openapi-generator.tech
|
|
2508
|
+
* Do not edit the class manually.
|
|
2509
|
+
*/
|
|
2510
|
+
interface CountContinuousInventoryClient {
|
|
2511
|
+
id: string;
|
|
2512
|
+
companyDescription: string;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
/**
|
|
2516
|
+
* Wms.API.Client
|
|
2517
|
+
*
|
|
2518
|
+
*
|
|
2519
|
+
*
|
|
2520
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2521
|
+
* https://openapi-generator.tech
|
|
2522
|
+
* Do not edit the class manually.
|
|
2523
|
+
*/
|
|
2524
|
+
|
|
2525
|
+
interface CountContinuousInventoryClients {
|
|
2526
|
+
total: number;
|
|
2527
|
+
data: Array<CountContinuousInventoryClient>;
|
|
2528
|
+
}
|
|
2529
|
+
|
|
2530
|
+
/**
|
|
2531
|
+
* Wms.API.Client
|
|
2532
|
+
*
|
|
2533
|
+
*
|
|
2534
|
+
*
|
|
2535
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2536
|
+
* https://openapi-generator.tech
|
|
2537
|
+
* Do not edit the class manually.
|
|
2538
|
+
*/
|
|
2539
|
+
interface CreateCountContinuousInventory {
|
|
2540
|
+
clientId: string;
|
|
2541
|
+
numberOfReleases: number;
|
|
2542
|
+
includeWeekends: boolean;
|
|
2543
|
+
includeBulk: boolean;
|
|
2544
|
+
includeEmptyLocations: boolean;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
/**
|
|
2548
|
+
* Wms.API.Client
|
|
2549
|
+
*
|
|
2550
|
+
*
|
|
2551
|
+
*
|
|
2552
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2553
|
+
* https://openapi-generator.tech
|
|
2554
|
+
* Do not edit the class manually.
|
|
2555
|
+
*/
|
|
2556
|
+
interface UpdateCountContinuousInventory {
|
|
2557
|
+
numberOfReleases: number;
|
|
2558
|
+
includeWeekends: boolean;
|
|
2559
|
+
includeBulk: boolean;
|
|
2560
|
+
includeEmptyLocations: boolean;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
declare class CountContinuousInventoryService extends BaseService {
|
|
2564
|
+
protected httpClient: HttpClient;
|
|
2565
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2566
|
+
/**
|
|
2567
|
+
* Activate a paused continuous inventory record
|
|
2568
|
+
* @endpoint put /CountContinuousInventories/{id}/activate
|
|
2569
|
+
* @param id
|
|
2570
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2571
|
+
* @param reportProgress flag to report request and response progress.
|
|
2572
|
+
* @param options additional options
|
|
2573
|
+
*/
|
|
2574
|
+
activateCountContinuousInventory(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2575
|
+
httpHeaderAccept?: 'application/json';
|
|
2576
|
+
context?: HttpContext;
|
|
2577
|
+
transferCache?: boolean;
|
|
2578
|
+
}): Observable<any>;
|
|
2579
|
+
activateCountContinuousInventory(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2580
|
+
httpHeaderAccept?: 'application/json';
|
|
2581
|
+
context?: HttpContext;
|
|
2582
|
+
transferCache?: boolean;
|
|
2583
|
+
}): Observable<HttpResponse<any>>;
|
|
2584
|
+
activateCountContinuousInventory(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2585
|
+
httpHeaderAccept?: 'application/json';
|
|
2586
|
+
context?: HttpContext;
|
|
2587
|
+
transferCache?: boolean;
|
|
2588
|
+
}): Observable<HttpEvent<any>>;
|
|
2589
|
+
/**
|
|
2590
|
+
* Create a continuous inventory record
|
|
2591
|
+
* @endpoint post /CountContinuousInventories
|
|
2592
|
+
* @param createCountContinuousInventory
|
|
2593
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2594
|
+
* @param reportProgress flag to report request and response progress.
|
|
2595
|
+
* @param options additional options
|
|
2596
|
+
*/
|
|
2597
|
+
createCountContinuousInventory(createCountContinuousInventory: CreateCountContinuousInventory, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2598
|
+
httpHeaderAccept?: 'application/json';
|
|
2599
|
+
context?: HttpContext;
|
|
2600
|
+
transferCache?: boolean;
|
|
2601
|
+
}): Observable<CountContinuousInventory>;
|
|
2602
|
+
createCountContinuousInventory(createCountContinuousInventory: CreateCountContinuousInventory, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2603
|
+
httpHeaderAccept?: 'application/json';
|
|
2604
|
+
context?: HttpContext;
|
|
2605
|
+
transferCache?: boolean;
|
|
2606
|
+
}): Observable<HttpResponse<CountContinuousInventory>>;
|
|
2607
|
+
createCountContinuousInventory(createCountContinuousInventory: CreateCountContinuousInventory, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2608
|
+
httpHeaderAccept?: 'application/json';
|
|
2609
|
+
context?: HttpContext;
|
|
2610
|
+
transferCache?: boolean;
|
|
2611
|
+
}): Observable<HttpEvent<CountContinuousInventory>>;
|
|
2612
|
+
/**
|
|
2613
|
+
* Delete a continuous inventory record
|
|
2614
|
+
* @endpoint delete /CountContinuousInventories/{id}
|
|
2615
|
+
* @param id
|
|
2616
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2617
|
+
* @param reportProgress flag to report request and response progress.
|
|
2618
|
+
* @param options additional options
|
|
2619
|
+
*/
|
|
2620
|
+
deleteCountContinuousInventory(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2621
|
+
httpHeaderAccept?: 'application/json';
|
|
2622
|
+
context?: HttpContext;
|
|
2623
|
+
transferCache?: boolean;
|
|
2624
|
+
}): Observable<any>;
|
|
2625
|
+
deleteCountContinuousInventory(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2626
|
+
httpHeaderAccept?: 'application/json';
|
|
2627
|
+
context?: HttpContext;
|
|
2628
|
+
transferCache?: boolean;
|
|
2629
|
+
}): Observable<HttpResponse<any>>;
|
|
2630
|
+
deleteCountContinuousInventory(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2631
|
+
httpHeaderAccept?: 'application/json';
|
|
2632
|
+
context?: HttpContext;
|
|
2633
|
+
transferCache?: boolean;
|
|
2634
|
+
}): Observable<HttpEvent<any>>;
|
|
2635
|
+
/**
|
|
2636
|
+
* Getting continuous inventory records
|
|
2637
|
+
* @endpoint get /CountContinuousInventories
|
|
2638
|
+
* @param $skip
|
|
2639
|
+
* @param $top
|
|
2640
|
+
* @param $orderby
|
|
2641
|
+
* @param $filter
|
|
2642
|
+
* @param $search
|
|
2643
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2644
|
+
* @param reportProgress flag to report request and response progress.
|
|
2645
|
+
* @param options additional options
|
|
2646
|
+
*/
|
|
2647
|
+
getCountContinuousInventories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2648
|
+
httpHeaderAccept?: 'application/json';
|
|
2649
|
+
context?: HttpContext;
|
|
2650
|
+
transferCache?: boolean;
|
|
2651
|
+
}): Observable<CountContinuousInventories>;
|
|
2652
|
+
getCountContinuousInventories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2653
|
+
httpHeaderAccept?: 'application/json';
|
|
2654
|
+
context?: HttpContext;
|
|
2655
|
+
transferCache?: boolean;
|
|
2656
|
+
}): Observable<HttpResponse<CountContinuousInventories>>;
|
|
2657
|
+
getCountContinuousInventories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2658
|
+
httpHeaderAccept?: 'application/json';
|
|
2659
|
+
context?: HttpContext;
|
|
2660
|
+
transferCache?: boolean;
|
|
2661
|
+
}): Observable<HttpEvent<CountContinuousInventories>>;
|
|
2662
|
+
/**
|
|
2663
|
+
* CountContinuousInventories list
|
|
2664
|
+
* @endpoint get /CountContinuousInventories/search
|
|
2665
|
+
* @param $skip
|
|
2666
|
+
* @param $top
|
|
2667
|
+
* @param $orderby
|
|
2668
|
+
* @param $filter
|
|
2669
|
+
* @param searchTerm
|
|
2670
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2671
|
+
* @param reportProgress flag to report request and response progress.
|
|
2672
|
+
* @param options additional options
|
|
2673
|
+
*/
|
|
2674
|
+
getCountContinuousInventoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2675
|
+
httpHeaderAccept?: 'application/json';
|
|
2676
|
+
context?: HttpContext;
|
|
2677
|
+
transferCache?: boolean;
|
|
2678
|
+
}): Observable<CountContinuousInventories>;
|
|
2679
|
+
getCountContinuousInventoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2680
|
+
httpHeaderAccept?: 'application/json';
|
|
2681
|
+
context?: HttpContext;
|
|
2682
|
+
transferCache?: boolean;
|
|
2683
|
+
}): Observable<HttpResponse<CountContinuousInventories>>;
|
|
2684
|
+
getCountContinuousInventoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2685
|
+
httpHeaderAccept?: 'application/json';
|
|
2686
|
+
context?: HttpContext;
|
|
2687
|
+
transferCache?: boolean;
|
|
2688
|
+
}): Observable<HttpEvent<CountContinuousInventories>>;
|
|
2689
|
+
/**
|
|
2690
|
+
* Get the clients that can still be given continuous inventory in the current DC
|
|
2691
|
+
* @endpoint get /CountContinuousInventories/clients
|
|
2692
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2693
|
+
* @param reportProgress flag to report request and response progress.
|
|
2694
|
+
* @param options additional options
|
|
2695
|
+
*/
|
|
2696
|
+
getCountContinuousInventoryClients(observe?: 'body', reportProgress?: boolean, options?: {
|
|
2697
|
+
httpHeaderAccept?: 'application/json';
|
|
2698
|
+
context?: HttpContext;
|
|
2699
|
+
transferCache?: boolean;
|
|
2700
|
+
}): Observable<CountContinuousInventoryClients>;
|
|
2701
|
+
getCountContinuousInventoryClients(observe?: 'response', reportProgress?: boolean, options?: {
|
|
2702
|
+
httpHeaderAccept?: 'application/json';
|
|
2703
|
+
context?: HttpContext;
|
|
2704
|
+
transferCache?: boolean;
|
|
2705
|
+
}): Observable<HttpResponse<CountContinuousInventoryClients>>;
|
|
2706
|
+
getCountContinuousInventoryClients(observe?: 'events', reportProgress?: boolean, options?: {
|
|
2707
|
+
httpHeaderAccept?: 'application/json';
|
|
2708
|
+
context?: HttpContext;
|
|
2709
|
+
transferCache?: boolean;
|
|
2710
|
+
}): Observable<HttpEvent<CountContinuousInventoryClients>>;
|
|
2711
|
+
/**
|
|
2712
|
+
* Pause a continuous inventory record
|
|
2713
|
+
* @endpoint put /CountContinuousInventories/{id}/pause
|
|
2714
|
+
* @param id
|
|
2715
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2716
|
+
* @param reportProgress flag to report request and response progress.
|
|
2717
|
+
* @param options additional options
|
|
2718
|
+
*/
|
|
2719
|
+
pauseCountContinuousInventory(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2720
|
+
httpHeaderAccept?: 'application/json';
|
|
2721
|
+
context?: HttpContext;
|
|
2722
|
+
transferCache?: boolean;
|
|
2723
|
+
}): Observable<any>;
|
|
2724
|
+
pauseCountContinuousInventory(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2725
|
+
httpHeaderAccept?: 'application/json';
|
|
2726
|
+
context?: HttpContext;
|
|
2727
|
+
transferCache?: boolean;
|
|
2728
|
+
}): Observable<HttpResponse<any>>;
|
|
2729
|
+
pauseCountContinuousInventory(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2730
|
+
httpHeaderAccept?: 'application/json';
|
|
2731
|
+
context?: HttpContext;
|
|
2732
|
+
transferCache?: boolean;
|
|
2733
|
+
}): Observable<HttpEvent<any>>;
|
|
2734
|
+
/**
|
|
2735
|
+
* Update a continuous inventory record
|
|
2736
|
+
* @endpoint put /CountContinuousInventories/{id}
|
|
2737
|
+
* @param id
|
|
2738
|
+
* @param updateCountContinuousInventory
|
|
2739
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2740
|
+
* @param reportProgress flag to report request and response progress.
|
|
2741
|
+
* @param options additional options
|
|
2742
|
+
*/
|
|
2743
|
+
updateCountContinuousInventory(id: string, updateCountContinuousInventory: UpdateCountContinuousInventory, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2744
|
+
httpHeaderAccept?: 'application/json';
|
|
2745
|
+
context?: HttpContext;
|
|
2746
|
+
transferCache?: boolean;
|
|
2747
|
+
}): Observable<CountContinuousInventory>;
|
|
2748
|
+
updateCountContinuousInventory(id: string, updateCountContinuousInventory: UpdateCountContinuousInventory, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2749
|
+
httpHeaderAccept?: 'application/json';
|
|
2750
|
+
context?: HttpContext;
|
|
2751
|
+
transferCache?: boolean;
|
|
2752
|
+
}): Observable<HttpResponse<CountContinuousInventory>>;
|
|
2753
|
+
updateCountContinuousInventory(id: string, updateCountContinuousInventory: UpdateCountContinuousInventory, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2754
|
+
httpHeaderAccept?: 'application/json';
|
|
2755
|
+
context?: HttpContext;
|
|
2756
|
+
transferCache?: boolean;
|
|
2757
|
+
}): Observable<HttpEvent<CountContinuousInventory>>;
|
|
2758
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CountContinuousInventoryService, [null, { optional: true; }, { optional: true; }]>;
|
|
2759
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CountContinuousInventoryService>;
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2375
2762
|
/**
|
|
2376
2763
|
* Wms.API.Client
|
|
2377
2764
|
*
|
|
@@ -3792,20 +4179,6 @@ declare class DeliveryItemsService extends BaseService {
|
|
|
3792
4179
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryItemsService>;
|
|
3793
4180
|
}
|
|
3794
4181
|
|
|
3795
|
-
/**
|
|
3796
|
-
* Wms.API.Client
|
|
3797
|
-
*
|
|
3798
|
-
*
|
|
3799
|
-
*
|
|
3800
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3801
|
-
* https://openapi-generator.tech
|
|
3802
|
-
* Do not edit the class manually.
|
|
3803
|
-
*/
|
|
3804
|
-
interface CarrierServiceType {
|
|
3805
|
-
id: string;
|
|
3806
|
-
serviceName?: string;
|
|
3807
|
-
}
|
|
3808
|
-
|
|
3809
4182
|
/**
|
|
3810
4183
|
* Wms.API.Client
|
|
3811
4184
|
*
|
|
@@ -10139,7 +10512,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
10139
10512
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
10140
10513
|
}
|
|
10141
10514
|
|
|
10142
|
-
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
10515
|
+
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarrierServiceTypesService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountContinuousInventoryService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
10143
10516
|
|
|
10144
10517
|
/**
|
|
10145
10518
|
* Wms.API.Client
|
|
@@ -10455,5 +10828,5 @@ declare class ApiModule {
|
|
|
10455
10828
|
|
|
10456
10829
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
10457
10830
|
|
|
10458
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
10459
|
-
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountRecords, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|
|
10831
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
10832
|
+
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|