@indigina/wms-api 0.0.93 → 0.0.95
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 +277 -6
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +483 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -521,9 +521,180 @@ declare class CarrierProviderIntegrationsService extends BaseService {
|
|
|
521
521
|
* https://openapi-generator.tech
|
|
522
522
|
* Do not edit the class manually.
|
|
523
523
|
*/
|
|
524
|
+
declare const DcLocationStatus: {
|
|
525
|
+
readonly Active: "Active";
|
|
526
|
+
readonly Suspended: "Suspended";
|
|
527
|
+
readonly Closed: "Closed";
|
|
528
|
+
};
|
|
529
|
+
type DcLocationStatus = typeof DcLocationStatus[keyof typeof DcLocationStatus];
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* Wms.API.Client
|
|
533
|
+
*
|
|
534
|
+
*
|
|
535
|
+
*
|
|
536
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
537
|
+
* https://openapi-generator.tech
|
|
538
|
+
* Do not edit the class manually.
|
|
539
|
+
*/
|
|
540
|
+
declare const StorageType: {
|
|
541
|
+
readonly PickFace: "PickFace";
|
|
542
|
+
readonly Bulk: "Bulk";
|
|
543
|
+
readonly CrossDock: "CrossDock";
|
|
544
|
+
};
|
|
545
|
+
type StorageType = typeof StorageType[keyof typeof StorageType];
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* Wms.API.Client
|
|
549
|
+
*
|
|
550
|
+
*
|
|
551
|
+
*
|
|
552
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
553
|
+
* https://openapi-generator.tech
|
|
554
|
+
* Do not edit the class manually.
|
|
555
|
+
*/
|
|
556
|
+
interface Channel {
|
|
557
|
+
channelName?: string;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Wms.API.Client
|
|
562
|
+
*
|
|
563
|
+
*
|
|
564
|
+
*
|
|
565
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
566
|
+
* https://openapi-generator.tech
|
|
567
|
+
* Do not edit the class manually.
|
|
568
|
+
*/
|
|
569
|
+
interface ProductMaster1 {
|
|
570
|
+
ownerCompanyId?: string;
|
|
571
|
+
productDescription?: string;
|
|
572
|
+
productCode?: string;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
/**
|
|
576
|
+
* Wms.API.Client
|
|
577
|
+
*
|
|
578
|
+
*
|
|
579
|
+
*
|
|
580
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
581
|
+
* https://openapi-generator.tech
|
|
582
|
+
* Do not edit the class manually.
|
|
583
|
+
*/
|
|
584
|
+
|
|
585
|
+
interface ProductMasterSystemEan {
|
|
586
|
+
productMaster?: ProductMaster1;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Wms.API.Client
|
|
591
|
+
*
|
|
592
|
+
*
|
|
593
|
+
*
|
|
594
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
595
|
+
* https://openapi-generator.tech
|
|
596
|
+
* Do not edit the class manually.
|
|
597
|
+
*/
|
|
598
|
+
|
|
599
|
+
interface CartonDeliveryItemCarton {
|
|
600
|
+
bestBeforeDate?: string | null;
|
|
601
|
+
lotNo?: string;
|
|
602
|
+
number: number;
|
|
603
|
+
productMasterSystemEan?: ProductMasterSystemEan;
|
|
604
|
+
channel?: Channel;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Wms.API.Client
|
|
609
|
+
*
|
|
610
|
+
*
|
|
611
|
+
*
|
|
612
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
613
|
+
* https://openapi-generator.tech
|
|
614
|
+
* Do not edit the class manually.
|
|
615
|
+
*/
|
|
616
|
+
declare const LocationType: {
|
|
617
|
+
readonly AvailableStock: "AvailableStock";
|
|
618
|
+
readonly CrossDock: "CrossDock";
|
|
619
|
+
readonly Quarantine: "Quarantine";
|
|
620
|
+
readonly Returns: "Returns";
|
|
621
|
+
readonly WebStock: "WebStock";
|
|
622
|
+
readonly BulkStock: "BulkStock";
|
|
623
|
+
readonly Qc: "QC";
|
|
624
|
+
readonly Query: "Query";
|
|
625
|
+
readonly TestCode: "TestCode";
|
|
626
|
+
};
|
|
627
|
+
type LocationType = typeof LocationType[keyof typeof LocationType];
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
* Wms.API.Client
|
|
631
|
+
*
|
|
632
|
+
*
|
|
633
|
+
*
|
|
634
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
635
|
+
* https://openapi-generator.tech
|
|
636
|
+
* Do not edit the class manually.
|
|
637
|
+
*/
|
|
638
|
+
interface CartonDeliveryItemDelivery {
|
|
639
|
+
deliveryNumber?: string;
|
|
640
|
+
hbRef?: string;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* Wms.API.Client
|
|
645
|
+
*
|
|
646
|
+
*
|
|
647
|
+
*
|
|
648
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
649
|
+
* https://openapi-generator.tech
|
|
650
|
+
* Do not edit the class manually.
|
|
651
|
+
*/
|
|
652
|
+
|
|
653
|
+
interface CartonDeliveryItemDeliveryItem {
|
|
654
|
+
lineNo: number;
|
|
655
|
+
delivery?: CartonDeliveryItemDelivery;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* Wms.API.Client
|
|
660
|
+
*
|
|
661
|
+
*
|
|
662
|
+
*
|
|
663
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
664
|
+
* https://openapi-generator.tech
|
|
665
|
+
* Do not edit the class manually.
|
|
666
|
+
*/
|
|
667
|
+
|
|
668
|
+
interface CartonDeliveryItemGridView {
|
|
669
|
+
id: string;
|
|
670
|
+
quantity: number;
|
|
671
|
+
createdDate: string;
|
|
672
|
+
client?: string;
|
|
673
|
+
clientId: number;
|
|
674
|
+
createdByUser: string;
|
|
675
|
+
carton?: CartonDeliveryItemCarton;
|
|
676
|
+
deliveryItem?: CartonDeliveryItemDeliveryItem;
|
|
677
|
+
fullLocationPath?: string;
|
|
678
|
+
storageType?: StorageType;
|
|
679
|
+
dcLocationStatus?: DcLocationStatus;
|
|
680
|
+
locationType?: LocationType;
|
|
681
|
+
}
|
|
682
|
+
declare namespace CartonDeliveryItemGridView {
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* Wms.API.Client
|
|
687
|
+
*
|
|
688
|
+
*
|
|
689
|
+
*
|
|
690
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
691
|
+
* https://openapi-generator.tech
|
|
692
|
+
* Do not edit the class manually.
|
|
693
|
+
*/
|
|
694
|
+
|
|
524
695
|
interface CartonDeliveryItems {
|
|
525
696
|
total: number;
|
|
526
|
-
data: Array<
|
|
697
|
+
data: Array<CartonDeliveryItemGridView>;
|
|
527
698
|
}
|
|
528
699
|
|
|
529
700
|
declare class CartonDeliveryItemsService extends BaseService {
|
|
@@ -592,9 +763,48 @@ declare class CartonDeliveryItemsService extends BaseService {
|
|
|
592
763
|
* https://openapi-generator.tech
|
|
593
764
|
* Do not edit the class manually.
|
|
594
765
|
*/
|
|
766
|
+
|
|
767
|
+
interface CartonGridView {
|
|
768
|
+
id: string;
|
|
769
|
+
clientName: string;
|
|
770
|
+
number: number;
|
|
771
|
+
quantity: number;
|
|
772
|
+
qtyOnHand: number;
|
|
773
|
+
confirmedGrnQuantity: number;
|
|
774
|
+
unconfirmedGrnQuantity: number;
|
|
775
|
+
pickedQuantity: number;
|
|
776
|
+
waveAllocatedQuantity: number;
|
|
777
|
+
replenishmentToQuantity: number;
|
|
778
|
+
replenishmentFromQuantity: number;
|
|
779
|
+
bestBeforeDate?: string | null;
|
|
780
|
+
lotNo?: string;
|
|
781
|
+
lastDeliveryDate?: string | null;
|
|
782
|
+
lastPickDate?: string | null;
|
|
783
|
+
createdDate: string;
|
|
784
|
+
suspended: boolean;
|
|
785
|
+
dcLocationId?: string;
|
|
786
|
+
productMasterSystemEan?: ProductMasterSystemEan;
|
|
787
|
+
fullLocationPath?: string;
|
|
788
|
+
storageType?: StorageType;
|
|
789
|
+
dcLocationStatus?: DcLocationStatus;
|
|
790
|
+
locationType?: LocationType;
|
|
791
|
+
}
|
|
792
|
+
declare namespace CartonGridView {
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* Wms.API.Client
|
|
797
|
+
*
|
|
798
|
+
*
|
|
799
|
+
*
|
|
800
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
801
|
+
* https://openapi-generator.tech
|
|
802
|
+
* Do not edit the class manually.
|
|
803
|
+
*/
|
|
804
|
+
|
|
595
805
|
interface Cartons {
|
|
596
806
|
total: number;
|
|
597
|
-
data: Array<
|
|
807
|
+
data: Array<CartonGridView>;
|
|
598
808
|
}
|
|
599
809
|
|
|
600
810
|
declare class CartonsService extends BaseService {
|
|
@@ -783,6 +993,69 @@ declare class DcLocationsService extends BaseService {
|
|
|
783
993
|
static ɵprov: i0.ɵɵInjectableDeclaration<DcLocationsService>;
|
|
784
994
|
}
|
|
785
995
|
|
|
996
|
+
/**
|
|
997
|
+
* Wms.API.Client
|
|
998
|
+
*
|
|
999
|
+
*
|
|
1000
|
+
*
|
|
1001
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1002
|
+
* https://openapi-generator.tech
|
|
1003
|
+
* Do not edit the class manually.
|
|
1004
|
+
*/
|
|
1005
|
+
declare const UnitOfMeasurementTypes: {
|
|
1006
|
+
readonly Inches: "Inches";
|
|
1007
|
+
readonly Kilogram: "Kilogram";
|
|
1008
|
+
readonly Centimeter: "Centimeter";
|
|
1009
|
+
readonly Pound: "Pound";
|
|
1010
|
+
readonly Cbm: "CBM";
|
|
1011
|
+
readonly Mtq: "MTQ";
|
|
1012
|
+
};
|
|
1013
|
+
type UnitOfMeasurementTypes = typeof UnitOfMeasurementTypes[keyof typeof UnitOfMeasurementTypes];
|
|
1014
|
+
|
|
1015
|
+
/**
|
|
1016
|
+
* Wms.API.Client
|
|
1017
|
+
*
|
|
1018
|
+
*
|
|
1019
|
+
*
|
|
1020
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1021
|
+
* https://openapi-generator.tech
|
|
1022
|
+
* Do not edit the class manually.
|
|
1023
|
+
*/
|
|
1024
|
+
|
|
1025
|
+
interface MeasurementModel {
|
|
1026
|
+
weightUnitOfMeasure?: UnitOfMeasurementTypes;
|
|
1027
|
+
dimensionUnitOfMeasure?: UnitOfMeasurementTypes;
|
|
1028
|
+
}
|
|
1029
|
+
declare namespace MeasurementModel {
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
declare class DcUnitOfMeasurementService extends BaseService {
|
|
1033
|
+
protected httpClient: HttpClient;
|
|
1034
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
1035
|
+
/**
|
|
1036
|
+
* Getting dcUnitOfMeasurement
|
|
1037
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1038
|
+
* @param reportProgress flag to report request and response progress.
|
|
1039
|
+
*/
|
|
1040
|
+
getDcUnitOfMeasurement(observe?: 'body', reportProgress?: boolean, options?: {
|
|
1041
|
+
httpHeaderAccept?: 'application/json';
|
|
1042
|
+
context?: HttpContext;
|
|
1043
|
+
transferCache?: boolean;
|
|
1044
|
+
}): Observable<MeasurementModel>;
|
|
1045
|
+
getDcUnitOfMeasurement(observe?: 'response', reportProgress?: boolean, options?: {
|
|
1046
|
+
httpHeaderAccept?: 'application/json';
|
|
1047
|
+
context?: HttpContext;
|
|
1048
|
+
transferCache?: boolean;
|
|
1049
|
+
}): Observable<HttpResponse<MeasurementModel>>;
|
|
1050
|
+
getDcUnitOfMeasurement(observe?: 'events', reportProgress?: boolean, options?: {
|
|
1051
|
+
httpHeaderAccept?: 'application/json';
|
|
1052
|
+
context?: HttpContext;
|
|
1053
|
+
transferCache?: boolean;
|
|
1054
|
+
}): Observable<HttpEvent<MeasurementModel>>;
|
|
1055
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DcUnitOfMeasurementService, [null, { optional: true; }, { optional: true; }]>;
|
|
1056
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DcUnitOfMeasurementService>;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
786
1059
|
/**
|
|
787
1060
|
* Wms.API.Client
|
|
788
1061
|
*
|
|
@@ -1201,6 +1474,44 @@ interface Delivery {
|
|
|
1201
1474
|
declare namespace Delivery {
|
|
1202
1475
|
}
|
|
1203
1476
|
|
|
1477
|
+
/**
|
|
1478
|
+
* Wms.API.Client
|
|
1479
|
+
*
|
|
1480
|
+
*
|
|
1481
|
+
*
|
|
1482
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1483
|
+
* https://openapi-generator.tech
|
|
1484
|
+
* Do not edit the class manually.
|
|
1485
|
+
*/
|
|
1486
|
+
|
|
1487
|
+
interface DeliveryDataModel {
|
|
1488
|
+
customerCompanyId?: string | null;
|
|
1489
|
+
supplierCompanyId?: string | null;
|
|
1490
|
+
useDirectivePutAway: boolean;
|
|
1491
|
+
ownerCompanyId: string;
|
|
1492
|
+
deliveryNumber: string;
|
|
1493
|
+
hbRef: string;
|
|
1494
|
+
asnDate?: string | null;
|
|
1495
|
+
warehouseEtaDate?: string | null;
|
|
1496
|
+
deliveryType: DeliveryType;
|
|
1497
|
+
deliveryStatus: OrderStatus;
|
|
1498
|
+
dcId?: string | null;
|
|
1499
|
+
qcType?: QcType;
|
|
1500
|
+
qcRequired: boolean;
|
|
1501
|
+
createdDate: string;
|
|
1502
|
+
arrivedDate?: string | null;
|
|
1503
|
+
receivingStartDate?: string | null;
|
|
1504
|
+
confirmedDate?: string | null;
|
|
1505
|
+
recordType: RecordType;
|
|
1506
|
+
receiptReasonId?: string | null;
|
|
1507
|
+
supplierCompliance?: boolean | null;
|
|
1508
|
+
directivePutAwayComplete: boolean;
|
|
1509
|
+
isStockAdjustment?: boolean | null;
|
|
1510
|
+
createdFromShortReceipt: boolean;
|
|
1511
|
+
}
|
|
1512
|
+
declare namespace DeliveryDataModel {
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1204
1515
|
/**
|
|
1205
1516
|
* Wms.API.Client
|
|
1206
1517
|
*
|
|
@@ -1303,21 +1614,21 @@ declare class DeliveriesService extends BaseService {
|
|
|
1303
1614
|
}): Observable<HttpEvent<any>>;
|
|
1304
1615
|
/**
|
|
1305
1616
|
* Create a specific delivery
|
|
1306
|
-
* @param
|
|
1617
|
+
* @param deliveryDataModel
|
|
1307
1618
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1308
1619
|
* @param reportProgress flag to report request and response progress.
|
|
1309
1620
|
*/
|
|
1310
|
-
createDelivery(
|
|
1621
|
+
createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1311
1622
|
httpHeaderAccept?: 'application/json';
|
|
1312
1623
|
context?: HttpContext;
|
|
1313
1624
|
transferCache?: boolean;
|
|
1314
1625
|
}): Observable<Delivery>;
|
|
1315
|
-
createDelivery(
|
|
1626
|
+
createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1316
1627
|
httpHeaderAccept?: 'application/json';
|
|
1317
1628
|
context?: HttpContext;
|
|
1318
1629
|
transferCache?: boolean;
|
|
1319
1630
|
}): Observable<HttpResponse<Delivery>>;
|
|
1320
|
-
createDelivery(
|
|
1631
|
+
createDelivery(deliveryDataModel: DeliveryDataModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1321
1632
|
httpHeaderAccept?: 'application/json';
|
|
1322
1633
|
context?: HttpContext;
|
|
1323
1634
|
transferCache?: boolean;
|
|
@@ -1706,6 +2017,116 @@ declare class DeliveryItemsService extends BaseService {
|
|
|
1706
2017
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryItemsService>;
|
|
1707
2018
|
}
|
|
1708
2019
|
|
|
2020
|
+
/**
|
|
2021
|
+
* Wms.API.Client
|
|
2022
|
+
*
|
|
2023
|
+
*
|
|
2024
|
+
*
|
|
2025
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2026
|
+
* https://openapi-generator.tech
|
|
2027
|
+
* Do not edit the class manually.
|
|
2028
|
+
*/
|
|
2029
|
+
interface DispatchBoxDispatchHeaderModel {
|
|
2030
|
+
ownerCompanyId?: string;
|
|
2031
|
+
dispatchNumber: string;
|
|
2032
|
+
salesOrderNumberList: string;
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
/**
|
|
2036
|
+
* Wms.API.Client
|
|
2037
|
+
*
|
|
2038
|
+
*
|
|
2039
|
+
*
|
|
2040
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2041
|
+
* https://openapi-generator.tech
|
|
2042
|
+
* Do not edit the class manually.
|
|
2043
|
+
*/
|
|
2044
|
+
|
|
2045
|
+
interface DispatchBoxViewModel {
|
|
2046
|
+
id: string;
|
|
2047
|
+
number: number;
|
|
2048
|
+
companyDescription: string;
|
|
2049
|
+
length?: number | null;
|
|
2050
|
+
width?: number | null;
|
|
2051
|
+
height?: number | null;
|
|
2052
|
+
weight?: number | null;
|
|
2053
|
+
dispatchBoxTotalQuantity: number;
|
|
2054
|
+
createdDate: string;
|
|
2055
|
+
dispatchHeader?: DispatchBoxDispatchHeaderModel;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
/**
|
|
2059
|
+
* Wms.API.Client
|
|
2060
|
+
*
|
|
2061
|
+
*
|
|
2062
|
+
*
|
|
2063
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2064
|
+
* https://openapi-generator.tech
|
|
2065
|
+
* Do not edit the class manually.
|
|
2066
|
+
*/
|
|
2067
|
+
|
|
2068
|
+
interface DispatchBoxes {
|
|
2069
|
+
total: number;
|
|
2070
|
+
data: Array<DispatchBoxViewModel>;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
declare class DispatchBoxesService extends BaseService {
|
|
2074
|
+
protected httpClient: HttpClient;
|
|
2075
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2076
|
+
/**
|
|
2077
|
+
* Getting dispatchBoxes
|
|
2078
|
+
* @param $skip
|
|
2079
|
+
* @param $top
|
|
2080
|
+
* @param $orderby
|
|
2081
|
+
* @param $filter
|
|
2082
|
+
* @param $search
|
|
2083
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2084
|
+
* @param reportProgress flag to report request and response progress.
|
|
2085
|
+
*/
|
|
2086
|
+
getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2087
|
+
httpHeaderAccept?: 'application/json';
|
|
2088
|
+
context?: HttpContext;
|
|
2089
|
+
transferCache?: boolean;
|
|
2090
|
+
}): Observable<DispatchBoxes>;
|
|
2091
|
+
getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2092
|
+
httpHeaderAccept?: 'application/json';
|
|
2093
|
+
context?: HttpContext;
|
|
2094
|
+
transferCache?: boolean;
|
|
2095
|
+
}): Observable<HttpResponse<DispatchBoxes>>;
|
|
2096
|
+
getDispatchBoxes($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2097
|
+
httpHeaderAccept?: 'application/json';
|
|
2098
|
+
context?: HttpContext;
|
|
2099
|
+
transferCache?: boolean;
|
|
2100
|
+
}): Observable<HttpEvent<DispatchBoxes>>;
|
|
2101
|
+
/**
|
|
2102
|
+
* DispatchBoxes list
|
|
2103
|
+
* @param $skip
|
|
2104
|
+
* @param $top
|
|
2105
|
+
* @param $orderby
|
|
2106
|
+
* @param $filter
|
|
2107
|
+
* @param searchTerm
|
|
2108
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2109
|
+
* @param reportProgress flag to report request and response progress.
|
|
2110
|
+
*/
|
|
2111
|
+
getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2112
|
+
httpHeaderAccept?: 'application/json';
|
|
2113
|
+
context?: HttpContext;
|
|
2114
|
+
transferCache?: boolean;
|
|
2115
|
+
}): Observable<DispatchBoxes>;
|
|
2116
|
+
getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2117
|
+
httpHeaderAccept?: 'application/json';
|
|
2118
|
+
context?: HttpContext;
|
|
2119
|
+
transferCache?: boolean;
|
|
2120
|
+
}): Observable<HttpResponse<DispatchBoxes>>;
|
|
2121
|
+
getDispatchBoxesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2122
|
+
httpHeaderAccept?: 'application/json';
|
|
2123
|
+
context?: HttpContext;
|
|
2124
|
+
transferCache?: boolean;
|
|
2125
|
+
}): Observable<HttpEvent<DispatchBoxes>>;
|
|
2126
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchBoxesService, [null, { optional: true; }, { optional: true; }]>;
|
|
2127
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxesService>;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
1709
2130
|
/**
|
|
1710
2131
|
* Wms.API.Client
|
|
1711
2132
|
*
|
|
@@ -4001,7 +4422,60 @@ declare class UsersInternalService extends BaseService {
|
|
|
4001
4422
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
4002
4423
|
}
|
|
4003
4424
|
|
|
4004
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4425
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
4426
|
+
|
|
4427
|
+
/**
|
|
4428
|
+
* Wms.API.Client
|
|
4429
|
+
*
|
|
4430
|
+
*
|
|
4431
|
+
*
|
|
4432
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4433
|
+
* https://openapi-generator.tech
|
|
4434
|
+
* Do not edit the class manually.
|
|
4435
|
+
*/
|
|
4436
|
+
|
|
4437
|
+
interface CartonDeliveryItemView {
|
|
4438
|
+
id: string;
|
|
4439
|
+
quantity: number;
|
|
4440
|
+
createdDate: string;
|
|
4441
|
+
client?: string;
|
|
4442
|
+
clientId: number;
|
|
4443
|
+
createdByUser: string;
|
|
4444
|
+
carton?: CartonDeliveryItemCarton;
|
|
4445
|
+
deliveryItem?: CartonDeliveryItemDeliveryItem;
|
|
4446
|
+
}
|
|
4447
|
+
|
|
4448
|
+
/**
|
|
4449
|
+
* Wms.API.Client
|
|
4450
|
+
*
|
|
4451
|
+
*
|
|
4452
|
+
*
|
|
4453
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4454
|
+
* https://openapi-generator.tech
|
|
4455
|
+
* Do not edit the class manually.
|
|
4456
|
+
*/
|
|
4457
|
+
|
|
4458
|
+
interface CartonView {
|
|
4459
|
+
id: string;
|
|
4460
|
+
clientName: string;
|
|
4461
|
+
number: number;
|
|
4462
|
+
quantity: number;
|
|
4463
|
+
qtyOnHand: number;
|
|
4464
|
+
confirmedGrnQuantity: number;
|
|
4465
|
+
unconfirmedGrnQuantity: number;
|
|
4466
|
+
pickedQuantity: number;
|
|
4467
|
+
waveAllocatedQuantity: number;
|
|
4468
|
+
replenishmentToQuantity: number;
|
|
4469
|
+
replenishmentFromQuantity: number;
|
|
4470
|
+
bestBeforeDate?: string | null;
|
|
4471
|
+
lotNo?: string;
|
|
4472
|
+
lastDeliveryDate?: string | null;
|
|
4473
|
+
lastPickDate?: string | null;
|
|
4474
|
+
createdDate: string;
|
|
4475
|
+
suspended: boolean;
|
|
4476
|
+
dcLocationId?: string;
|
|
4477
|
+
productMasterSystemEan?: ProductMasterSystemEan;
|
|
4478
|
+
}
|
|
4005
4479
|
|
|
4006
4480
|
/**
|
|
4007
4481
|
* Wms.API.Client
|
|
@@ -4133,5 +4607,5 @@ declare class ApiModule {
|
|
|
4133
4607
|
|
|
4134
4608
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
4135
4609
|
|
|
4136
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4137
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItems, Cartons, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|
|
4610
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
4611
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|