kcommons 18.9.15 → 18.9.16

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.
@@ -79,6 +79,8 @@ export interface IInvoiceMatchingRecordItems {
79
79
  quantity: number;
80
80
  initial_per_unit_rate: number;
81
81
  per_unit_rate: number;
82
+ initial_total: number;
83
+ total: number;
82
84
  created_at: string;
83
85
  updated_at: string;
84
86
  parent_imr: INestedInvoiceMatchingRecord | null;
@@ -98,7 +100,8 @@ export declare enum INVOICE_MATCHING_RECORD_CHANGELOG_INCLUDES {
98
100
  }
99
101
  export declare enum INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE {
100
102
  RATE = "RATE",
101
- QUANTITY = "QUANTITY"
103
+ QUANTITY = "QUANTITY",
104
+ ITEM_TOTAL = "ITEM_TOTAL"
102
105
  }
103
106
  export interface IInvoiceMatchingRecordChangelog {
104
107
  id: string;
@@ -42,6 +42,7 @@ var INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE;
42
42
  (function (INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE) {
43
43
  INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE["RATE"] = "RATE";
44
44
  INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE["QUANTITY"] = "QUANTITY";
45
+ INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE["ITEM_TOTAL"] = "ITEM_TOTAL";
45
46
  })(INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE || (exports.INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE = INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE = {}));
46
47
  var INVOICE_MATCHING_RECORD_METAFIELDS_INCLUDE;
47
48
  (function (INVOICE_MATCHING_RECORD_METAFIELDS_INCLUDE) {
@@ -18,7 +18,9 @@ import { INestedQualityClearanceDocument, INestedQualityClearanceDocumentItem }
18
18
  export declare enum GRN_LIST_TYPES {
19
19
  ALL = "ALL",
20
20
  CREATED_BY_ME = "CREATED_BY_ME",
21
- MY_APPROVALS = "MY_APPROVALS"
21
+ MY_APPROVALS = "MY_APPROVALS",
22
+ FOR_QUALITY = "FOR_QUALITY",
23
+ FOR_STORE = "FOR_STORE"
22
24
  }
23
25
  export declare enum GRN_TABS {
24
26
  ITEMS = "ITEMS",
@@ -6,6 +6,8 @@ var GRN_LIST_TYPES;
6
6
  GRN_LIST_TYPES["ALL"] = "ALL";
7
7
  GRN_LIST_TYPES["CREATED_BY_ME"] = "CREATED_BY_ME";
8
8
  GRN_LIST_TYPES["MY_APPROVALS"] = "MY_APPROVALS";
9
+ GRN_LIST_TYPES["FOR_QUALITY"] = "FOR_QUALITY";
10
+ GRN_LIST_TYPES["FOR_STORE"] = "FOR_STORE";
9
11
  })(GRN_LIST_TYPES || (exports.GRN_LIST_TYPES = GRN_LIST_TYPES = {}));
10
12
  var GRN_TABS;
11
13
  (function (GRN_TABS) {
@@ -50,50 +50,3 @@ export interface IGSTVerifyResponse {
50
50
  centerJurisdiction: string;
51
51
  eInvoiceStatus: string;
52
52
  }
53
- export interface IGstVerificationResponsePeriOne {
54
- status_cd: string;
55
- data: PeriOneGSTData;
56
- }
57
- export interface PeriOneGSTData {
58
- stjCd: string;
59
- stj: string;
60
- dty: string;
61
- lgnm: string;
62
- adadr: IAdditionalAddress[];
63
- cxdt: string;
64
- nba: string[];
65
- gstin: string;
66
- lstupdt: string;
67
- rgdt: string;
68
- ctb: string;
69
- pradr: IPrimaryAddress;
70
- sts: string;
71
- ctjCd: string;
72
- tradeNam: string;
73
- ctj: string;
74
- einvoiceStatus: string;
75
- }
76
- interface IAdditionalAddress {
77
- addr: IGstAddress;
78
- ntr: string;
79
- }
80
- interface IPrimaryAddress {
81
- addr: IGstAddress;
82
- ntr: string;
83
- }
84
- interface IGstAddress {
85
- bnm: string;
86
- st: string;
87
- loc: string;
88
- bno: string;
89
- dst: string;
90
- lt: string;
91
- locality: string;
92
- pncd: string;
93
- landMark: string;
94
- stcd: string;
95
- geocodelvl: string;
96
- flno: string;
97
- lg: string;
98
- }
99
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "18.9.15",
3
+ "version": "18.9.16",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",