@indigina/wms-api 0.0.77 → 0.0.79

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.
@@ -7,11 +7,11 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { PickingProcesses } from './pickingProcesses';
10
11
  import { OrderStatus } from './orderStatus';
11
- import { PickingProcess } from './pickingProcess';
12
12
  import { OrderType } from './orderType';
13
+ import { PackingProcesses } from './packingProcesses';
13
14
  import { RecordType } from './recordType';
14
- import { PackingProcess } from './packingProcess';
15
15
  export interface DispatchGridView {
16
16
  id: string;
17
17
  customer?: string;
@@ -46,8 +46,8 @@ export interface DispatchGridView {
46
46
  orderStatus: OrderStatus;
47
47
  orderType?: OrderType;
48
48
  recordType?: RecordType;
49
- pickingProcess?: PickingProcess;
50
- packingProcess?: PackingProcess;
49
+ pickingProcess?: PickingProcesses;
50
+ packingProcess?: PackingProcesses;
51
51
  ownerCompanyId: string;
52
52
  lineItemCountOrdered?: number | null;
53
53
  totalUnitsOrdered?: number | null;
@@ -7,11 +7,11 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { PickingProcesses } from './pickingProcesses';
10
11
  import { OrderStatus } from './orderStatus';
11
- import { PickingProcess } from './pickingProcess';
12
12
  import { OrderType } from './orderType';
13
+ import { PackingProcesses } from './packingProcesses';
13
14
  import { RecordType } from './recordType';
14
- import { PackingProcess } from './packingProcess';
15
15
  export interface DispatchSummaryView {
16
16
  id: string;
17
17
  customer?: string;
@@ -46,8 +46,8 @@ export interface DispatchSummaryView {
46
46
  orderStatus: OrderStatus;
47
47
  orderType?: OrderType;
48
48
  recordType?: RecordType;
49
- pickingProcess?: PickingProcess;
50
- packingProcess?: PackingProcess;
49
+ pickingProcess?: PickingProcesses;
50
+ packingProcess?: PackingProcesses;
51
51
  shipToContactId?: string | null;
52
52
  shipToFirstName?: string;
53
53
  shipToLastName?: string;
@@ -7,11 +7,11 @@
7
7
  * https://openapi-generator.tech
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { PickingProcesses } from './pickingProcesses';
10
11
  import { OrderStatus } from './orderStatus';
11
- import { PickingProcess } from './pickingProcess';
12
12
  import { OrderType } from './orderType';
13
+ import { PackingProcesses } from './packingProcesses';
13
14
  import { RecordType } from './recordType';
14
- import { PackingProcess } from './packingProcess';
15
15
  export interface DispatchView {
16
16
  id: string;
17
17
  customer?: string;
@@ -46,8 +46,8 @@ export interface DispatchView {
46
46
  orderStatus: OrderStatus;
47
47
  orderType?: OrderType;
48
48
  recordType?: RecordType;
49
- pickingProcess?: PickingProcess;
50
- packingProcess?: PackingProcess;
49
+ pickingProcess?: PickingProcesses;
50
+ packingProcess?: PackingProcesses;
51
51
  }
52
52
  export declare namespace DispatchView {
53
53
  }
package/model/models.d.ts CHANGED
@@ -39,8 +39,8 @@ export * from './noteView';
39
39
  export * from './notes';
40
40
  export * from './orderStatus';
41
41
  export * from './orderType';
42
- export * from './packingProcess';
43
- export * from './pickingProcess';
42
+ export * from './packingProcesses';
43
+ export * from './pickingProcesses';
44
44
  export * from './productMaster';
45
45
  export * from './productMasters';
46
46
  export * from './productQuantities';
@@ -51,6 +51,9 @@ export * from './reasonType';
51
51
  export * from './reasons';
52
52
  export * from './receivingSummary';
53
53
  export * from './recordType';
54
+ export * from './replenishmentAccess';
55
+ export * from './replenishmentAccessGridView';
56
+ export * from './replenishmentAccessView';
54
57
  export * from './replenishmentSummary';
55
58
  export * from './report';
56
59
  export * from './setNewFeaturesVisibilityCommand';
@@ -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 PackingProcesses = 'OrderPacking' | 'WebOrderPacking' | 'ClusterPacking' | 'DispatchPacking' | 'SkuPacking' | 'PickPack' | 'PickPackBySku' | 'BatchPicking';
11
+ export declare const PackingProcesses: {
12
+ OrderPacking: PackingProcesses;
13
+ WebOrderPacking: PackingProcesses;
14
+ ClusterPacking: PackingProcesses;
15
+ DispatchPacking: PackingProcesses;
16
+ SkuPacking: PackingProcesses;
17
+ PickPack: PackingProcesses;
18
+ PickPackBySku: PackingProcesses;
19
+ BatchPicking: PackingProcesses;
20
+ };
@@ -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 PickingProcesses = 'OrderPicking' | 'OrderPickingToTempBin' | 'WavePicking' | 'FastDispatch' | 'PickBySku' | 'PickPack' | 'PickPackBySku' | 'BatchPicking';
11
+ export declare const PickingProcesses: {
12
+ OrderPicking: PickingProcesses;
13
+ OrderPickingToTempBin: PickingProcesses;
14
+ WavePicking: PickingProcesses;
15
+ FastDispatch: PickingProcesses;
16
+ PickBySku: PickingProcesses;
17
+ PickPack: PickingProcesses;
18
+ PickPackBySku: PickingProcesses;
19
+ BatchPicking: PickingProcesses;
20
+ };
@@ -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 { ReplenishmentAccessGridView } from './replenishmentAccessGridView';
11
+ export interface ReplenishmentAccess {
12
+ total: number;
13
+ data: Array<ReplenishmentAccessGridView>;
14
+ }
@@ -0,0 +1,18 @@
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 ReplenishmentAccessGridView {
11
+ id: string;
12
+ clientId: string;
13
+ createUserId: string;
14
+ client: string;
15
+ systemReplenishment: boolean;
16
+ createDate: string;
17
+ createdBy: string;
18
+ }
@@ -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 interface ReplenishmentAccessView {
11
+ id: string;
12
+ clientId: string;
13
+ createUserId: string;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.77",
3
+ "version": "0.0.79",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,17 +0,0 @@
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
- };
@@ -1,17 +0,0 @@
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
- };