@indigina/wms-api 0.0.48 → 0.0.50

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/model/dc.d.ts ADDED
@@ -0,0 +1,16 @@
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 Dc {
11
+ id: string;
12
+ ownerCompanyId: string;
13
+ companyId: string;
14
+ countryOfOriginId?: string | null;
15
+ description: string;
16
+ }
package/model/dcs.d.ts ADDED
@@ -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 { Dc } from './dc';
11
+ export interface Dcs {
12
+ total: number;
13
+ data: Array<Dc>;
14
+ }
@@ -7,8 +7,8 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { DeliveryView } from './deliveryView';
10
+ import { DeliveryGridView } from './deliveryGridView';
11
11
  export interface Deliveries {
12
12
  total: number;
13
- data: Array<DeliveryView>;
13
+ data: Array<DeliveryGridView>;
14
14
  }
@@ -0,0 +1,43 @@
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 { RecordType } from './recordType';
12
+ import { DeliveryType } from './deliveryType';
13
+ export interface DeliveryGridView {
14
+ id: string;
15
+ customer: string;
16
+ supplier: string;
17
+ deliveryNumber: string;
18
+ hbRef: string;
19
+ asnDate: string | null;
20
+ warehouseEtaDate: string | null;
21
+ deliveryType: DeliveryType;
22
+ deliveryStatus: OrderStatus;
23
+ createdDate: string;
24
+ arrivedDate: string | null;
25
+ receivingStartDate: string | null;
26
+ confirmedDate: string | null;
27
+ recordType: RecordType;
28
+ receiptReason: string;
29
+ qcRequired: boolean;
30
+ createdFromShortReceipt: boolean;
31
+ supplierCompliance: boolean | null;
32
+ useDirectivePutAway: boolean;
33
+ directivePutAwayComplete: boolean;
34
+ isStockAdjustment: boolean | null;
35
+ asnQty: number;
36
+ grnQty: number;
37
+ lineItemCount: number;
38
+ rma: string;
39
+ putAway: boolean;
40
+ supplierComplianceSet: boolean;
41
+ }
42
+ export declare namespace DeliveryGridView {
43
+ }
@@ -7,6 +7,7 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { QcType } from './qcType';
10
11
  export interface DeliveryItem {
11
12
  id?: string;
12
13
  deliveryId: string;
@@ -23,4 +24,7 @@ export interface DeliveryItem {
23
24
  productMasterEanId?: string | null;
24
25
  channelId?: string | null;
25
26
  bestBeforeDate?: string | null;
27
+ qcType?: QcType | null;
28
+ }
29
+ export declare namespace DeliveryItem {
26
30
  }
@@ -7,6 +7,7 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { QcType } from './qcType';
10
11
  export interface DeliveryItemView {
11
12
  id: string;
12
13
  lineNo: number;
@@ -21,4 +22,8 @@ export interface DeliveryItemView {
21
22
  returnReason: string;
22
23
  qcPercentage: number | null;
23
24
  qcControlled: boolean;
25
+ bestBeforeDate: string | null;
26
+ qcType: QcType | null;
27
+ }
28
+ export declare namespace DeliveryItemView {
24
29
  }
@@ -0,0 +1,35 @@
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 { RecordType } from './recordType';
12
+ import { DeliveryType } from './deliveryType';
13
+ import { QcType } from './qcType';
14
+ export interface DeliverySummary {
15
+ id: string;
16
+ customer: string;
17
+ supplier: string;
18
+ deliveryNumber: string;
19
+ hbRef: string;
20
+ asnDate: string | null;
21
+ warehouseEtaDate: string | null;
22
+ deliveryType: DeliveryType;
23
+ deliveryStatus: OrderStatus;
24
+ createdDate: string;
25
+ arrivedDate: string | null;
26
+ receivingStartDate: string | null;
27
+ confirmedDate: string | null;
28
+ recordType: RecordType;
29
+ receiptReason: string;
30
+ dcId: string | null;
31
+ dcName: string;
32
+ qcType: QcType | null;
33
+ }
34
+ export declare namespace DeliverySummary {
35
+ }
@@ -20,24 +20,12 @@ export interface DeliveryView {
20
20
  warehouseEtaDate: string | null;
21
21
  deliveryType: DeliveryType;
22
22
  deliveryStatus: OrderStatus;
23
- qcRequired: boolean;
24
- createdFromShortReceipt: boolean;
25
- supplierCompliance: boolean | null;
26
- useDirectivePutAway: boolean;
27
- directivePutAwayComplete: boolean;
28
- isStockAdjustment: boolean | null;
29
23
  createdDate: string;
30
24
  arrivedDate: string | null;
31
25
  receivingStartDate: string | null;
32
26
  confirmedDate: string | null;
33
27
  recordType: RecordType;
34
- asnQty: number;
35
- grnQty: number;
36
- lineItemCount: number;
37
- rma: string;
38
28
  receiptReason: string;
39
- putAway: boolean;
40
- supplierComplianceSet: boolean;
41
29
  }
42
30
  export declare namespace DeliveryView {
43
31
  }
package/model/models.d.ts CHANGED
@@ -4,11 +4,15 @@ export * from './companies';
4
4
  export * from './company';
5
5
  export * from './countingSummary';
6
6
  export * from './currentUser';
7
+ export * from './dc';
8
+ export * from './dcs';
7
9
  export * from './deliveries';
8
10
  export * from './delivery';
11
+ export * from './deliveryGridView';
9
12
  export * from './deliveryItem';
10
13
  export * from './deliveryItemView';
11
14
  export * from './deliveryItems';
15
+ export * from './deliverySummary';
12
16
  export * from './deliveryType';
13
17
  export * from './deliveryView';
14
18
  export * from './dispatchSummary';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.48",
3
+ "version": "0.0.50",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {