kcommons 5.27.5 → 5.27.7

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.
@@ -15,7 +15,8 @@ export declare enum ASN_STATUS {
15
15
  DRAFT = "DRAFT",
16
16
  DISPATCHED = "DISPATCHED",
17
17
  DELIVERED = "DELIVERED",
18
- CLOSED = "CLOSED"
18
+ CLOSED = "CLOSED",
19
+ CANCELLED = "CANCELLED"
19
20
  }
20
21
  export declare enum ASN_INCLUDE {
21
22
  created_by_vendor = "created_by_vendor",
@@ -105,3 +106,5 @@ export interface IASNItem {
105
106
  }
106
107
  export interface INestedASNItem extends Omit<IASNItem, "company" | "item" | "parent_asn" | "vendor" | "parent_po_item" | "used_in_grn_items" | "po_asn_item_junction"> {
107
108
  }
109
+ export interface ICancelASNInputs extends Pick<IASN, "cancellation_remark" | "cancelled_by_entity" | "cancelled_by_user_id"> {
110
+ }
@@ -12,6 +12,7 @@ var ASN_STATUS;
12
12
  ASN_STATUS["DISPATCHED"] = "DISPATCHED";
13
13
  ASN_STATUS["DELIVERED"] = "DELIVERED";
14
14
  ASN_STATUS["CLOSED"] = "CLOSED";
15
+ ASN_STATUS["CANCELLED"] = "CANCELLED";
15
16
  })(ASN_STATUS || (exports.ASN_STATUS = ASN_STATUS = {}));
16
17
  var ASN_INCLUDE;
17
18
  (function (ASN_INCLUDE) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.27.5",
3
+ "version": "5.27.7",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",