@indigina/wms-api 0.0.67 → 0.0.69
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/dispatch.service.d.ts +22 -0
- package/fesm2022/indigina-wms-api.mjs +49 -1
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/dispatchGridView.d.ts +5 -5
- package/model/dispatchSummaryView.d.ts +85 -0
- package/model/dispatchView.d.ts +53 -0
- package/model/models.d.ts +2 -0
- package/model/noteSourceType.d.ts +2 -1
- package/model/taskUserRecord.d.ts +1 -1
- package/model/taskUserRecordSelf.d.ts +1 -1
- package/model/taskUserRecordView.d.ts +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@ import { RecordType } from './recordType';
|
|
|
14
14
|
import { PackingProcess } from './packingProcess';
|
|
15
15
|
export interface DispatchGridView {
|
|
16
16
|
id: string;
|
|
17
|
-
ownerCompanyId: string;
|
|
18
17
|
customer?: string;
|
|
19
18
|
dispatchNumber: string;
|
|
20
19
|
carrierConsignmentNumber?: string;
|
|
@@ -22,11 +21,7 @@ export interface DispatchGridView {
|
|
|
22
21
|
salesOrderReferenceList?: string;
|
|
23
22
|
lineItemCount?: number | null;
|
|
24
23
|
totalUnits?: number | null;
|
|
25
|
-
lineItemCountOrdered?: number | null;
|
|
26
|
-
totalUnitsOrdered?: number | null;
|
|
27
|
-
packedUnits?: number | null;
|
|
28
24
|
shipToCompanyName?: string;
|
|
29
|
-
shipToAddress?: string;
|
|
30
25
|
shipToCountry?: string;
|
|
31
26
|
shippingTerm?: string;
|
|
32
27
|
requestedCarrier?: string;
|
|
@@ -53,6 +48,11 @@ export interface DispatchGridView {
|
|
|
53
48
|
recordType?: RecordType;
|
|
54
49
|
pickingProcess?: PickingProcess;
|
|
55
50
|
packingProcess?: PackingProcess;
|
|
51
|
+
ownerCompanyId: string;
|
|
52
|
+
lineItemCountOrdered?: number | null;
|
|
53
|
+
totalUnitsOrdered?: number | null;
|
|
54
|
+
packedUnits?: number | null;
|
|
55
|
+
shipToAddress?: string;
|
|
56
56
|
canPick?: boolean;
|
|
57
57
|
hasTrackUrl?: boolean;
|
|
58
58
|
}
|
|
@@ -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 { 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 DispatchSummaryView {
|
|
16
|
+
id: string;
|
|
17
|
+
customer?: string;
|
|
18
|
+
dispatchNumber: string;
|
|
19
|
+
carrierConsignmentNumber?: string;
|
|
20
|
+
salesOrderNumberList?: string;
|
|
21
|
+
salesOrderReferenceList?: string;
|
|
22
|
+
lineItemCount?: number | null;
|
|
23
|
+
totalUnits?: number | null;
|
|
24
|
+
shipToCompanyName?: string;
|
|
25
|
+
shipToCountry?: string;
|
|
26
|
+
shippingTerm?: string;
|
|
27
|
+
requestedCarrier?: string;
|
|
28
|
+
requestedService?: string;
|
|
29
|
+
carrier?: string;
|
|
30
|
+
courierServiceName?: string;
|
|
31
|
+
courierReference?: string;
|
|
32
|
+
pickNotePrinted?: string;
|
|
33
|
+
cancellation?: string;
|
|
34
|
+
createdDate: string;
|
|
35
|
+
scheduledShipDate?: string | null;
|
|
36
|
+
pickStartDate?: string | null;
|
|
37
|
+
pickCompleteDate?: string | null;
|
|
38
|
+
packCompleteDate?: string | null;
|
|
39
|
+
packedDate?: string | null;
|
|
40
|
+
dispatchDate?: string | null;
|
|
41
|
+
sysDispatchDate?: string | null;
|
|
42
|
+
waveNumber?: number | null;
|
|
43
|
+
groupReference?: string;
|
|
44
|
+
dispatchNumberUnique?: number;
|
|
45
|
+
isStockAdjustment?: boolean | null;
|
|
46
|
+
orderStatus: OrderStatus;
|
|
47
|
+
orderType?: OrderType;
|
|
48
|
+
recordType?: RecordType;
|
|
49
|
+
pickingProcess?: PickingProcess;
|
|
50
|
+
packingProcess?: PackingProcess;
|
|
51
|
+
shipToContactId?: string | null;
|
|
52
|
+
shipToFirstName?: string;
|
|
53
|
+
shipToLastName?: string;
|
|
54
|
+
postCodeZip?: string;
|
|
55
|
+
salesInvoiceNumber?: string;
|
|
56
|
+
contactId?: string | null;
|
|
57
|
+
waveId?: string | null;
|
|
58
|
+
plateId?: number | null;
|
|
59
|
+
extPlateNumber?: string;
|
|
60
|
+
showRetailCompliance?: boolean;
|
|
61
|
+
gs1Prefix?: string;
|
|
62
|
+
markForDcCode?: string;
|
|
63
|
+
markForDcName?: string;
|
|
64
|
+
markForDcDept?: string;
|
|
65
|
+
markForDcLine1?: string;
|
|
66
|
+
markForDcLine2?: string;
|
|
67
|
+
markForDcCity?: string;
|
|
68
|
+
markForDcCountyState?: string;
|
|
69
|
+
markForDcPostCodeZip?: string;
|
|
70
|
+
markForDcCountry?: string;
|
|
71
|
+
poDate?: string | null;
|
|
72
|
+
shipByDate?: string | null;
|
|
73
|
+
shipAfterDate?: string | null;
|
|
74
|
+
arriveByDate?: string | null;
|
|
75
|
+
cancelByDate?: string | null;
|
|
76
|
+
routedDate?: string | null;
|
|
77
|
+
routingId?: string;
|
|
78
|
+
siteId?: string;
|
|
79
|
+
storeId?: string;
|
|
80
|
+
storeName?: string;
|
|
81
|
+
shipToDcCode?: string;
|
|
82
|
+
shipToDcDeptNo?: string;
|
|
83
|
+
}
|
|
84
|
+
export declare namespace DispatchSummaryView {
|
|
85
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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 DispatchView {
|
|
16
|
+
id: string;
|
|
17
|
+
customer?: string;
|
|
18
|
+
dispatchNumber: string;
|
|
19
|
+
carrierConsignmentNumber?: string;
|
|
20
|
+
salesOrderNumberList?: string;
|
|
21
|
+
salesOrderReferenceList?: string;
|
|
22
|
+
lineItemCount?: number | null;
|
|
23
|
+
totalUnits?: number | null;
|
|
24
|
+
shipToCompanyName?: string;
|
|
25
|
+
shipToCountry?: string;
|
|
26
|
+
shippingTerm?: string;
|
|
27
|
+
requestedCarrier?: string;
|
|
28
|
+
requestedService?: string;
|
|
29
|
+
carrier?: string;
|
|
30
|
+
courierServiceName?: string;
|
|
31
|
+
courierReference?: string;
|
|
32
|
+
pickNotePrinted?: string;
|
|
33
|
+
cancellation?: string;
|
|
34
|
+
createdDate: string;
|
|
35
|
+
scheduledShipDate?: string | null;
|
|
36
|
+
pickStartDate?: string | null;
|
|
37
|
+
pickCompleteDate?: string | null;
|
|
38
|
+
packCompleteDate?: string | null;
|
|
39
|
+
packedDate?: string | null;
|
|
40
|
+
dispatchDate?: string | null;
|
|
41
|
+
sysDispatchDate?: string | null;
|
|
42
|
+
waveNumber?: number | null;
|
|
43
|
+
groupReference?: string;
|
|
44
|
+
dispatchNumberUnique?: number;
|
|
45
|
+
isStockAdjustment?: boolean | null;
|
|
46
|
+
orderStatus: OrderStatus;
|
|
47
|
+
orderType?: OrderType;
|
|
48
|
+
recordType?: RecordType;
|
|
49
|
+
pickingProcess?: PickingProcess;
|
|
50
|
+
packingProcess?: PackingProcess;
|
|
51
|
+
}
|
|
52
|
+
export declare namespace DispatchView {
|
|
53
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -21,6 +21,8 @@ export * from './dispatchGridView';
|
|
|
21
21
|
export * from './dispatchItemView';
|
|
22
22
|
export * from './dispatchItems';
|
|
23
23
|
export * from './dispatchSummary';
|
|
24
|
+
export * from './dispatchSummaryView';
|
|
25
|
+
export * from './dispatchView';
|
|
24
26
|
export * from './dispatches';
|
|
25
27
|
export * from './embedReport';
|
|
26
28
|
export * from './embedTokenDto';
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
* https://openapi-generator.tech
|
|
8
8
|
* Do not edit the class manually.
|
|
9
9
|
*/
|
|
10
|
-
export type NoteSourceType = 'Delivery';
|
|
10
|
+
export type NoteSourceType = 'Delivery' | 'DispatchHeader';
|
|
11
11
|
export declare const NoteSourceType: {
|
|
12
12
|
Delivery: NoteSourceType;
|
|
13
|
+
DispatchHeader: NoteSourceType;
|
|
13
14
|
};
|