@indigina/wms-api 0.0.45 → 0.0.47

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.
@@ -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 Delivery {
15
+ id: string;
16
+ customerCompanyId: string | null;
17
+ supplierCompanyId: string | null;
18
+ ownerCompanyId: string;
19
+ deliveryNumber: string;
20
+ hbRef: string;
21
+ asnDate: string | null;
22
+ warehouseEtaDate: string | null;
23
+ deliveryType: DeliveryType;
24
+ deliveryStatus: OrderStatus;
25
+ dcId: string | null;
26
+ qcType: QcType;
27
+ qcRequired: boolean;
28
+ createdDate: string;
29
+ arrivedDate: string | null;
30
+ receivingStartDate: string | null;
31
+ confirmedDate: string | null;
32
+ recordType: RecordType;
33
+ }
34
+ export declare namespace Delivery {
35
+ }
@@ -8,6 +8,7 @@
8
8
  * Do not edit the class manually.
9
9
  */
10
10
  export interface DeliveryItemView {
11
+ id: string;
11
12
  lineNo: number;
12
13
  productCode: string;
13
14
  ean: string;
package/model/models.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './company';
5
5
  export * from './countingSummary';
6
6
  export * from './currentUser';
7
7
  export * from './deliveries';
8
+ export * from './delivery';
8
9
  export * from './deliveryItemView';
9
10
  export * from './deliveryItems';
10
11
  export * from './deliveryType';
@@ -22,6 +23,12 @@ export * from './noteSourceType';
22
23
  export * from './noteView';
23
24
  export * from './notes';
24
25
  export * from './orderStatus';
26
+ export * from './productMaster';
27
+ export * from './productMasters';
28
+ export * from './qcType';
29
+ export * from './reason';
30
+ export * from './reasonType';
31
+ export * from './reasons';
25
32
  export * from './receivingSummary';
26
33
  export * from './recordType';
27
34
  export * from './replenishmentSummary';
@@ -0,0 +1,19 @@
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
+ export interface ProductMaster {
12
+ id: string;
13
+ productDescription: string;
14
+ productCode: string;
15
+ ownerCompanyId: string;
16
+ status: OrderStatus | null;
17
+ }
18
+ export declare namespace ProductMaster {
19
+ }
@@ -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 { ProductMaster } from './productMaster';
11
+ export interface ProductMasters {
12
+ total: number;
13
+ data: Array<ProductMaster>;
14
+ }
@@ -0,0 +1,13 @@
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 QcType = 'CheckerCount';
11
+ export declare const QcType: {
12
+ CheckerCount: QcType;
13
+ };
@@ -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
+ import { ReasonType } from './reasonType';
11
+ export interface Reason {
12
+ id: string;
13
+ description: string;
14
+ reasonType: ReasonType;
15
+ }
16
+ export declare namespace Reason {
17
+ }
@@ -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
+ export type ReasonType = 'Receipt' | 'InventoryHoldMovement';
11
+ export declare const ReasonType: {
12
+ Receipt: ReasonType;
13
+ InventoryHoldMovement: ReasonType;
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 { Reason } from './reason';
11
+ export interface Reasons {
12
+ total: number;
13
+ data: Array<Reason>;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {