@indigina/wms-api 0.0.52 → 0.0.53
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/api/api.d.ts +5 -1
- package/api/dispatch.service.d.ts +67 -0
- package/api/dispatchItems.service.d.ts +43 -0
- package/fesm2022/indigina-wms-api.mjs +420 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/dispatch.d.ts +85 -0
- package/model/dispatchGridView.d.ts +58 -0
- package/model/dispatchItemView.d.ts +32 -0
- package/model/dispatchItems.d.ts +14 -0
- package/model/dispatches.d.ts +14 -0
- package/model/models.d.ts +8 -0
- package/model/orderType.d.ts +20 -0
- package/model/packingProcess.d.ts +17 -0
- package/model/pickingProcess.d.ts +17 -0
- package/model/productMaster.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { OrderType } from './orderType';
|
|
11
|
+
import { RecordType } from './recordType';
|
|
12
|
+
export interface Dispatch {
|
|
13
|
+
id: string;
|
|
14
|
+
dispatchOrderStatusId: string;
|
|
15
|
+
courierReference?: string;
|
|
16
|
+
dispatchNumber: string;
|
|
17
|
+
dcId?: string | null;
|
|
18
|
+
ownerCompanyId: string;
|
|
19
|
+
locationTypeId?: string | null;
|
|
20
|
+
deliveryOptionId?: string | null;
|
|
21
|
+
recordType?: RecordType;
|
|
22
|
+
dispatchNumberUnique?: number;
|
|
23
|
+
carrierConsignmentNumber?: string;
|
|
24
|
+
cancellationStatus?: number;
|
|
25
|
+
notificationMethod?: string;
|
|
26
|
+
salesOrderNumberList?: string;
|
|
27
|
+
carrierServiceName?: string;
|
|
28
|
+
salesOrderReferenceList?: string;
|
|
29
|
+
isStockAdjustment?: boolean | null;
|
|
30
|
+
onHold?: boolean | null;
|
|
31
|
+
shipToCompanyId?: string | null;
|
|
32
|
+
shipToCountryId?: string | null;
|
|
33
|
+
shipToContactId?: string | null;
|
|
34
|
+
createdDate: string;
|
|
35
|
+
scheduledShipDate?: string | null;
|
|
36
|
+
pickStartDate?: string | null;
|
|
37
|
+
pickCompleteDate?: string | null;
|
|
38
|
+
packedDate?: string | null;
|
|
39
|
+
packCompleteDate?: string | null;
|
|
40
|
+
dispatchDate?: string | null;
|
|
41
|
+
systemDispatchDate?: string | null;
|
|
42
|
+
requestedCarrierId?: string | null;
|
|
43
|
+
requestedServiceName?: string;
|
|
44
|
+
carrierId?: string | null;
|
|
45
|
+
pickNotePrinted?: boolean | null;
|
|
46
|
+
shipToPostCodeZip?: string;
|
|
47
|
+
orderType?: OrderType;
|
|
48
|
+
subTotal?: number | null;
|
|
49
|
+
taxTotal?: number | null;
|
|
50
|
+
shippingTotal?: number | null;
|
|
51
|
+
currencyId?: string | null;
|
|
52
|
+
totalWeight?: number | null;
|
|
53
|
+
totalWeightUomId?: string | null;
|
|
54
|
+
requestedCarrierServiceTypeId?: string | null;
|
|
55
|
+
carrierServiceTypeId?: string | null;
|
|
56
|
+
dispatchBoxCount?: number | null;
|
|
57
|
+
totalWeightKg?: number | null;
|
|
58
|
+
salesInvoiceNumber?: string;
|
|
59
|
+
nifNumber?: string;
|
|
60
|
+
shippingVat?: number | null;
|
|
61
|
+
shippingExVat?: number | null;
|
|
62
|
+
customsValueTotal?: number | null;
|
|
63
|
+
discountPriceTotal?: number | null;
|
|
64
|
+
giftWrap?: boolean;
|
|
65
|
+
shippingTerm?: string;
|
|
66
|
+
shippingTermLocation?: string;
|
|
67
|
+
courierShopId?: string;
|
|
68
|
+
totalUnits?: number | null;
|
|
69
|
+
documentsToBeGenerated?: boolean;
|
|
70
|
+
orderImported?: boolean;
|
|
71
|
+
noOfLines?: number | null;
|
|
72
|
+
nonStandardRequirement?: boolean | null;
|
|
73
|
+
bypassTrigger?: boolean | null;
|
|
74
|
+
waveId?: string | null;
|
|
75
|
+
purchaseOrderNumber?: string;
|
|
76
|
+
star?: boolean;
|
|
77
|
+
pickingProcessId?: number | null;
|
|
78
|
+
packingProcessId?: number | null;
|
|
79
|
+
noOfLinesOrdered?: number | null;
|
|
80
|
+
totalUnitsOrdered?: number | null;
|
|
81
|
+
containsBuildKit?: boolean;
|
|
82
|
+
groupReference?: string;
|
|
83
|
+
}
|
|
84
|
+
export declare namespace Dispatch {
|
|
85
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { OrderStatus } from './orderStatus';
|
|
11
|
+
import { PickingProcess } from './pickingProcess';
|
|
12
|
+
import { OrderType } from './orderType';
|
|
13
|
+
import { RecordType } from './recordType';
|
|
14
|
+
import { PackingProcess } from './packingProcess';
|
|
15
|
+
export interface DispatchGridView {
|
|
16
|
+
id: string;
|
|
17
|
+
ownerCompanyId: string;
|
|
18
|
+
customer?: string;
|
|
19
|
+
dispatchNumber: string;
|
|
20
|
+
salesOrderNumberList?: string;
|
|
21
|
+
salesOrderReferenceList?: string;
|
|
22
|
+
lineItemCount?: number | null;
|
|
23
|
+
totalUnits?: number | null;
|
|
24
|
+
lineItemCountOrdered?: number | null;
|
|
25
|
+
totalUnitsOrdered?: number | null;
|
|
26
|
+
packedUnits?: number | null;
|
|
27
|
+
shipToCompanyName?: string;
|
|
28
|
+
shipToAddress?: string;
|
|
29
|
+
shipToCountry?: string;
|
|
30
|
+
shippingTerm?: string;
|
|
31
|
+
requestedCarrier?: string;
|
|
32
|
+
requestedService?: string;
|
|
33
|
+
carrier?: string;
|
|
34
|
+
courierServiceName?: string;
|
|
35
|
+
courierReference?: string;
|
|
36
|
+
pickNotePrinted?: string;
|
|
37
|
+
cancellation?: string;
|
|
38
|
+
createdDate: string;
|
|
39
|
+
scheduledShipDate?: string | null;
|
|
40
|
+
pickStartDate?: string | null;
|
|
41
|
+
pickCompleteDate?: string | null;
|
|
42
|
+
packCompleteDate?: string | null;
|
|
43
|
+
dispatchDate?: string | null;
|
|
44
|
+
sysDispatchDate?: string | null;
|
|
45
|
+
waveNumber?: number | null;
|
|
46
|
+
groupReference?: string;
|
|
47
|
+
dispatchNumberUnique?: number;
|
|
48
|
+
isStockAdjustment?: boolean | null;
|
|
49
|
+
orderStatus: OrderStatus;
|
|
50
|
+
orderType?: OrderType;
|
|
51
|
+
recordType?: RecordType;
|
|
52
|
+
pickingProcess?: PickingProcess;
|
|
53
|
+
packingProcess?: PackingProcess;
|
|
54
|
+
canPick?: boolean;
|
|
55
|
+
hasTrackUrl?: boolean;
|
|
56
|
+
}
|
|
57
|
+
export declare namespace DispatchGridView {
|
|
58
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export interface DispatchItemView {
|
|
11
|
+
id: string;
|
|
12
|
+
productMasterId: string;
|
|
13
|
+
systemEanId?: string | null;
|
|
14
|
+
lineNo: number;
|
|
15
|
+
productCode: string;
|
|
16
|
+
productDescription: string;
|
|
17
|
+
attributeList?: string;
|
|
18
|
+
soQuantity: number;
|
|
19
|
+
drQuantity: number;
|
|
20
|
+
dispatchQuantity: number;
|
|
21
|
+
dispatchedQuantity: number;
|
|
22
|
+
salesOrderNumber: string;
|
|
23
|
+
salesOrderLineNo: number;
|
|
24
|
+
unitCurrency?: string;
|
|
25
|
+
unitPrice?: number | null;
|
|
26
|
+
unitVat?: number | null;
|
|
27
|
+
unitCustomsValue?: number | null;
|
|
28
|
+
buildKit?: boolean;
|
|
29
|
+
isComponentSku?: boolean;
|
|
30
|
+
htsCode?: string;
|
|
31
|
+
styleCode?: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { DispatchItemView } from './dispatchItemView';
|
|
11
|
+
export interface DispatchItems {
|
|
12
|
+
total: number;
|
|
13
|
+
data: Array<DispatchItemView>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { DispatchGridView } from './dispatchGridView';
|
|
11
|
+
export interface Dispatches {
|
|
12
|
+
total: number;
|
|
13
|
+
data: Array<DispatchGridView>;
|
|
14
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -16,7 +16,12 @@ export * from './deliverySummary';
|
|
|
16
16
|
export * from './deliveryType';
|
|
17
17
|
export * from './deliveryView';
|
|
18
18
|
export * from './deviceType';
|
|
19
|
+
export * from './dispatch';
|
|
20
|
+
export * from './dispatchGridView';
|
|
21
|
+
export * from './dispatchItemView';
|
|
22
|
+
export * from './dispatchItems';
|
|
19
23
|
export * from './dispatchSummary';
|
|
24
|
+
export * from './dispatches';
|
|
20
25
|
export * from './embedReport';
|
|
21
26
|
export * from './embedTokenDto';
|
|
22
27
|
export * from './entityList';
|
|
@@ -29,6 +34,9 @@ export * from './noteSourceType';
|
|
|
29
34
|
export * from './noteView';
|
|
30
35
|
export * from './notes';
|
|
31
36
|
export * from './orderStatus';
|
|
37
|
+
export * from './orderType';
|
|
38
|
+
export * from './packingProcess';
|
|
39
|
+
export * from './pickingProcess';
|
|
32
40
|
export * from './productMaster';
|
|
33
41
|
export * from './productMasters';
|
|
34
42
|
export * from './productQuantities';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export type OrderType = 'Standard' | 'Web' | 'Expedited' | 'Ground' | 'EcomCrossDock' | 'WorkOrder' | 'Wholesale' | 'Retail';
|
|
11
|
+
export declare const OrderType: {
|
|
12
|
+
Standard: OrderType;
|
|
13
|
+
Web: OrderType;
|
|
14
|
+
Expedited: OrderType;
|
|
15
|
+
Ground: OrderType;
|
|
16
|
+
EcomCrossDock: OrderType;
|
|
17
|
+
WorkOrder: OrderType;
|
|
18
|
+
Wholesale: OrderType;
|
|
19
|
+
Retail: OrderType;
|
|
20
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export type PackingProcess = 'OrderPacking' | 'WebOrderPacking' | 'ClusterPacking' | 'DispatchPacking' | 'SkuPacking';
|
|
11
|
+
export declare const PackingProcess: {
|
|
12
|
+
OrderPacking: PackingProcess;
|
|
13
|
+
WebOrderPacking: PackingProcess;
|
|
14
|
+
ClusterPacking: PackingProcess;
|
|
15
|
+
DispatchPacking: PackingProcess;
|
|
16
|
+
SkuPacking: PackingProcess;
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export type PickingProcess = 'OrderPicking' | 'OrderPickingToTempBin' | 'WavePicking' | 'FastDispatch' | 'PickBySku';
|
|
11
|
+
export declare const PickingProcess: {
|
|
12
|
+
OrderPicking: PickingProcess;
|
|
13
|
+
OrderPickingToTempBin: PickingProcess;
|
|
14
|
+
WavePicking: PickingProcess;
|
|
15
|
+
FastDispatch: PickingProcess;
|
|
16
|
+
PickBySku: PickingProcess;
|
|
17
|
+
};
|
package/model/productMaster.d.ts
CHANGED