@indigina/wms-api 0.0.36 → 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.
Files changed (76) hide show
  1. package/README.md +35 -27
  2. package/api/api.d.ts +9 -1
  3. package/api/companies.service.d.ts +63 -0
  4. package/api/deliveries.service.d.ts +69 -0
  5. package/api/deliveryItems.service.d.ts +43 -0
  6. package/api/notes.service.d.ts +96 -0
  7. package/fesm2022/indigina-wms-api.mjs +1018 -67
  8. package/fesm2022/indigina-wms-api.mjs.map +1 -1
  9. package/model/applicationSetting.d.ts +0 -1
  10. package/model/commandStatusResult.d.ts +0 -1
  11. package/model/companies.d.ts +14 -0
  12. package/model/company.d.ts +14 -0
  13. package/model/countingSummary.d.ts +0 -1
  14. package/model/currentUser.d.ts +0 -1
  15. package/model/deliveries.d.ts +14 -0
  16. package/model/deliveryItemView.d.ts +23 -0
  17. package/model/deliveryItems.d.ts +14 -0
  18. package/model/deliveryType.d.ts +17 -0
  19. package/model/deliveryView.d.ts +42 -0
  20. package/model/dispatchSummary.d.ts +0 -1
  21. package/model/embedReport.d.ts +0 -1
  22. package/model/embedTokenDto.d.ts +0 -1
  23. package/model/entityList.d.ts +13 -0
  24. package/model/failures.d.ts +0 -1
  25. package/model/group.d.ts +0 -1
  26. package/model/modelError.d.ts +0 -1
  27. package/model/models.d.ts +15 -0
  28. package/model/note.d.ts +20 -0
  29. package/model/noteCategory.d.ts +16 -0
  30. package/model/noteSourceType.d.ts +14 -0
  31. package/model/noteView.d.ts +16 -0
  32. package/model/notes.d.ts +14 -0
  33. package/model/orderStatus.d.ts +30 -0
  34. package/model/receivingSummary.d.ts +0 -1
  35. package/model/recordType.d.ts +14 -0
  36. package/model/replenishmentSummary.d.ts +0 -1
  37. package/model/report.d.ts +0 -1
  38. package/model/setNewFeaturesVisibilityCommand.d.ts +0 -1
  39. package/model/summaryDashboardReports.d.ts +0 -1
  40. package/model/userApplication.d.ts +0 -1
  41. package/model/userApplications.d.ts +0 -1
  42. package/model/userPermissions.d.ts +0 -1
  43. package/package.json +2 -4
  44. package/esm2022/api/analytics.service.mjs +0 -570
  45. package/esm2022/api/api.mjs +0 -14
  46. package/esm2022/api/dcs.service.mjs +0 -274
  47. package/esm2022/api/health.service.mjs +0 -143
  48. package/esm2022/api/permissions.service.mjs +0 -142
  49. package/esm2022/api/summary.service.mjs +0 -142
  50. package/esm2022/api/user.service.mjs +0 -286
  51. package/esm2022/api.module.mjs +0 -40
  52. package/esm2022/configuration.mjs +0 -121
  53. package/esm2022/encoder.mjs +0 -19
  54. package/esm2022/index.mjs +0 -7
  55. package/esm2022/indigina-wms-api.mjs +0 -5
  56. package/esm2022/model/applicationSetting.mjs +0 -12
  57. package/esm2022/model/commandStatusResult.mjs +0 -12
  58. package/esm2022/model/countingSummary.mjs +0 -12
  59. package/esm2022/model/currentUser.mjs +0 -12
  60. package/esm2022/model/dispatchSummary.mjs +0 -12
  61. package/esm2022/model/embedReport.mjs +0 -2
  62. package/esm2022/model/embedTokenDto.mjs +0 -12
  63. package/esm2022/model/failures.mjs +0 -12
  64. package/esm2022/model/group.mjs +0 -2
  65. package/esm2022/model/modelError.mjs +0 -2
  66. package/esm2022/model/models.mjs +0 -19
  67. package/esm2022/model/receivingSummary.mjs +0 -12
  68. package/esm2022/model/replenishmentSummary.mjs +0 -12
  69. package/esm2022/model/report.mjs +0 -12
  70. package/esm2022/model/setNewFeaturesVisibilityCommand.mjs +0 -12
  71. package/esm2022/model/summaryDashboardReports.mjs +0 -2
  72. package/esm2022/model/userApplication.mjs +0 -12
  73. package/esm2022/model/userApplications.mjs +0 -2
  74. package/esm2022/model/userPermissions.mjs +0 -12
  75. package/esm2022/param.mjs +0 -2
  76. package/esm2022/variables.mjs +0 -9
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -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
+ }
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -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
+ }
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -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
+ }
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
package/model/group.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
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
+ };
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -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
+ };
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
package/model/report.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Wms.API.Client
3
- * WMS API Client for Angular applications
4
3
  *
5
4
  *
6
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.36",
3
+ "version": "0.0.38",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "license": "Unlicense",
15
15
  "peerDependencies": {
16
- "@angular/core": "^18.2.6",
16
+ "@angular/core": "^19.2.0",
17
17
  "rxjs": "^7.4.0"
18
18
  },
19
19
  "module": "fesm2022/indigina-wms-api.mjs",
@@ -24,8 +24,6 @@
24
24
  },
25
25
  ".": {
26
26
  "types": "./index.d.ts",
27
- "esm2022": "./esm2022/indigina-wms-api.mjs",
28
- "esm": "./esm2022/indigina-wms-api.mjs",
29
27
  "default": "./fesm2022/indigina-wms-api.mjs"
30
28
  }
31
29
  },