kcommons 18.9.14 → 18.9.15
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,8 +79,6 @@ 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;
|
|
84
82
|
created_at: string;
|
|
85
83
|
updated_at: string;
|
|
86
84
|
parent_imr: INestedInvoiceMatchingRecord | null;
|
|
@@ -100,8 +98,7 @@ export declare enum INVOICE_MATCHING_RECORD_CHANGELOG_INCLUDES {
|
|
|
100
98
|
}
|
|
101
99
|
export declare enum INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE {
|
|
102
100
|
RATE = "RATE",
|
|
103
|
-
QUANTITY = "QUANTITY"
|
|
104
|
-
ITEM_TOTAL = "ITEM_TOTAL"
|
|
101
|
+
QUANTITY = "QUANTITY"
|
|
105
102
|
}
|
|
106
103
|
export interface IInvoiceMatchingRecordChangelog {
|
|
107
104
|
id: string;
|
|
@@ -42,7 +42,6 @@ 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";
|
|
46
45
|
})(INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE || (exports.INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE = INVOICE_MATCHING_RECORD_EDITABLE_PROPERTY_TYPE = {}));
|
|
47
46
|
var INVOICE_MATCHING_RECORD_METAFIELDS_INCLUDE;
|
|
48
47
|
(function (INVOICE_MATCHING_RECORD_METAFIELDS_INCLUDE) {
|
|
@@ -50,3 +50,50 @@ 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 {};
|