@indigina/wms-api 0.0.37 → 0.0.38

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,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 { Company } from './company';
11
+ export interface Companies {
12
+ total: number;
13
+ data: Array<Company>;
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
+ export interface Company {
11
+ id: number;
12
+ companyDescription: string | null;
13
+ companyCode: string;
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 { DeliveryView } from './deliveryView';
11
+ export interface Deliveries {
12
+ total: number;
13
+ data: Array<DeliveryView>;
14
+ }
@@ -0,0 +1,23 @@
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 DeliveryItemView {
11
+ lineNo: number;
12
+ productCode: string;
13
+ ean: string;
14
+ productDescription: string;
15
+ productQuantityName: string;
16
+ attributeList: string;
17
+ asnQuantity: number;
18
+ grnQuantity: number;
19
+ putAway: boolean;
20
+ returnReason: string;
21
+ qcPercentage: number | null;
22
+ qcControlled: boolean;
23
+ }
@@ -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 { DeliveryItemView } from './deliveryItemView';
11
+ export interface DeliveryItems {
12
+ total: number;
13
+ data: Array<DeliveryItemView>;
14
+ }
@@ -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 DeliveryType = 'Standard' | 'Return' | 'EcomCrossDock' | 'Internal' | 'WorkOrder';
11
+ export declare const DeliveryType: {
12
+ Standard: DeliveryType;
13
+ Return: DeliveryType;
14
+ EcomCrossDock: DeliveryType;
15
+ Internal: DeliveryType;
16
+ WorkOrder: DeliveryType;
17
+ };
@@ -0,0 +1,42 @@
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 DeliveryView {
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
+ qcRequired: boolean;
24
+ createdFromShortReceipt: boolean;
25
+ supplierCompliance: boolean | null;
26
+ useDirectivePutAway: boolean;
27
+ directivePutAwayComplete: boolean;
28
+ isStockAdjustment: boolean | null;
29
+ arrivedDate: string | null;
30
+ receivingStartDate: string | null;
31
+ confirmedDate: string | null;
32
+ recordType: RecordType;
33
+ asnQty: number;
34
+ grnQty: number;
35
+ lineItemCount: number;
36
+ rma: string;
37
+ receiptReason: string;
38
+ putAway: boolean;
39
+ supplierComplianceSet: boolean;
40
+ }
41
+ export declare namespace DeliveryView {
42
+ }
@@ -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 interface EntityList {
11
+ total: number;
12
+ data: Array<object>;
13
+ }
package/model/models.d.ts CHANGED
@@ -1,14 +1,29 @@
1
1
  export * from './applicationSetting';
2
2
  export * from './commandStatusResult';
3
+ export * from './companies';
4
+ export * from './company';
3
5
  export * from './countingSummary';
4
6
  export * from './currentUser';
7
+ export * from './deliveries';
8
+ export * from './deliveryItemView';
9
+ export * from './deliveryItems';
10
+ export * from './deliveryType';
11
+ export * from './deliveryView';
5
12
  export * from './dispatchSummary';
6
13
  export * from './embedReport';
7
14
  export * from './embedTokenDto';
15
+ export * from './entityList';
8
16
  export * from './failures';
9
17
  export * from './group';
10
18
  export * from './modelError';
19
+ export * from './note';
20
+ export * from './noteCategory';
21
+ export * from './noteSourceType';
22
+ export * from './noteView';
23
+ export * from './notes';
24
+ export * from './orderStatus';
11
25
  export * from './receivingSummary';
26
+ export * from './recordType';
12
27
  export * from './replenishmentSummary';
13
28
  export * from './report';
14
29
  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
+ import { NoteSourceType } from './noteSourceType';
11
+ import { NoteCategory } from './noteCategory';
12
+ export interface Note {
13
+ id: string;
14
+ sourceId: string;
15
+ notes: string;
16
+ noteCategory: NoteCategory;
17
+ sourceType: NoteSourceType;
18
+ }
19
+ export declare namespace Note {
20
+ }
@@ -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 type NoteCategory = 'Notes' | 'ShippingMarks' | 'SpecialInstructions' | 'Comments';
11
+ export declare const NoteCategory: {
12
+ Notes: NoteCategory;
13
+ ShippingMarks: NoteCategory;
14
+ SpecialInstructions: NoteCategory;
15
+ Comments: NoteCategory;
16
+ };
@@ -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 NoteSourceType = 'Shipment' | 'Delivery';
11
+ export declare const NoteSourceType: {
12
+ Shipment: NoteSourceType;
13
+ Delivery: NoteSourceType;
14
+ };
@@ -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 NoteView {
11
+ id: string;
12
+ createdUserFullName: string;
13
+ createdDate: string;
14
+ createdByCompany: string;
15
+ notes: string;
16
+ }
@@ -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 { NoteView } from './noteView';
11
+ export interface Notes {
12
+ total: number;
13
+ data: Array<NoteView>;
14
+ }
@@ -0,0 +1,30 @@
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 OrderStatus = 'PickComplete' | 'SentToSupplier' | 'UpdatedBySupplier' | 'Confirmed' | 'CompletedBySupplier' | 'InProgress' | 'Arrived' | 'BeingPacked' | 'BeingPicked' | 'ToDispatch' | 'InProduction' | 'Authorised' | 'Create' | 'Commit' | 'Dispatched' | 'TempWebOrder' | 'Cancelled' | 'Booked';
11
+ export declare const OrderStatus: {
12
+ PickComplete: OrderStatus;
13
+ SentToSupplier: OrderStatus;
14
+ UpdatedBySupplier: OrderStatus;
15
+ Confirmed: OrderStatus;
16
+ CompletedBySupplier: OrderStatus;
17
+ InProgress: OrderStatus;
18
+ Arrived: OrderStatus;
19
+ BeingPacked: OrderStatus;
20
+ BeingPicked: OrderStatus;
21
+ ToDispatch: OrderStatus;
22
+ InProduction: OrderStatus;
23
+ Authorised: OrderStatus;
24
+ Create: OrderStatus;
25
+ Commit: OrderStatus;
26
+ Dispatched: OrderStatus;
27
+ TempWebOrder: OrderStatus;
28
+ Cancelled: OrderStatus;
29
+ Booked: OrderStatus;
30
+ };
@@ -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 RecordType = 'Web' | 'Hub';
11
+ export declare const RecordType: {
12
+ Web: RecordType;
13
+ Hub: RecordType;
14
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.37",
3
+ "version": "0.0.38",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {