kcommons 10.5.0 → 10.7.0

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.
package/build/index.d.ts CHANGED
@@ -83,6 +83,7 @@ export * from "./utils/convertDurationToreadableFormat.util";
83
83
  export * from "./typings/verification_apis/pincode.typings";
84
84
  export * from "./typings/verification_apis/gstVerification.typings";
85
85
  export * from "./typings/verification_apis/udyamVerification.typings";
86
+ export * from "./typings/verification_apis/gstReturns.typings";
86
87
  export * from "./typings/kpis/basKPIS.typings";
87
88
  export * from "./typings/kpis/company/main/purchase/totalSavings.typings";
88
89
  export * from "./typings/kpis/company/main/purchase/purchaseTrend.typings";
package/build/index.js CHANGED
@@ -107,6 +107,7 @@ __exportStar(require("./utils/convertDurationToreadableFormat.util"), exports);
107
107
  __exportStar(require("./typings/verification_apis/pincode.typings"), exports);
108
108
  __exportStar(require("./typings/verification_apis/gstVerification.typings"), exports);
109
109
  __exportStar(require("./typings/verification_apis/udyamVerification.typings"), exports);
110
+ __exportStar(require("./typings/verification_apis/gstReturns.typings"), exports);
110
111
  // KPIs
111
112
  __exportStar(require("./typings/kpis/basKPIS.typings"), exports);
112
113
  // Main Dashboard KPIS
@@ -16,8 +16,11 @@ export declare enum LIFECYCLE_LOGS_ENTITY_TYPE {
16
16
  }
17
17
  export declare enum LIFECYCLE_LOG_ACTIONS {
18
18
  CREATED = "CREATED",
19
+ CREATED_BY_VENDOR = "CREATED_BY_VENDOR",
19
20
  UPDATED = "UPDATED",
21
+ UPDATED_BY_VENDOR = "UPDATED_BY_VENDOR",
20
22
  DELETED = "DELETED",
23
+ DELETED_BY_VENDOR = "DELETED_BY_VENDOR",
21
24
  APPROVED = "APPROVED",
22
25
  APPROVED_BY_EVERYONE = "APPROVED_BY_EVERYONE",
23
26
  CLOSED = "CLOSED",
@@ -17,8 +17,11 @@ var LIFECYCLE_LOGS_ENTITY_TYPE;
17
17
  var LIFECYCLE_LOG_ACTIONS;
18
18
  (function (LIFECYCLE_LOG_ACTIONS) {
19
19
  LIFECYCLE_LOG_ACTIONS["CREATED"] = "CREATED";
20
+ LIFECYCLE_LOG_ACTIONS["CREATED_BY_VENDOR"] = "CREATED_BY_VENDOR";
20
21
  LIFECYCLE_LOG_ACTIONS["UPDATED"] = "UPDATED";
22
+ LIFECYCLE_LOG_ACTIONS["UPDATED_BY_VENDOR"] = "UPDATED_BY_VENDOR";
21
23
  LIFECYCLE_LOG_ACTIONS["DELETED"] = "DELETED";
24
+ LIFECYCLE_LOG_ACTIONS["DELETED_BY_VENDOR"] = "DELETED_BY_VENDOR";
22
25
  LIFECYCLE_LOG_ACTIONS["APPROVED"] = "APPROVED";
23
26
  LIFECYCLE_LOG_ACTIONS["APPROVED_BY_EVERYONE"] = "APPROVED_BY_EVERYONE";
24
27
  LIFECYCLE_LOG_ACTIONS["CLOSED"] = "CLOSED";
@@ -0,0 +1,45 @@
1
+ export interface IGSTReturnFilingFrequencyResponseUnit {
2
+ quarter: string;
3
+ preference: string;
4
+ }
5
+ export interface IGSTReturnFilingFrequencyResponse {
6
+ status: number;
7
+ data: {
8
+ response: IGSTReturnFilingFrequencyResponseUnit[];
9
+ };
10
+ }
11
+ export interface IGSTReturnFilingFrequencyReq {
12
+ fy: string;
13
+ gstin: string;
14
+ }
15
+ export interface IGSTReturnFilingStatusResponseUnit {
16
+ fy: string;
17
+ taxp: string;
18
+ mof: string;
19
+ dof: string;
20
+ rtntype: string;
21
+ arn: string;
22
+ status: string;
23
+ }
24
+ export interface IGSTReturnFilingStatusResponse {
25
+ filingStatus: IGSTReturnFilingStatusResponseUnit[][];
26
+ }
27
+ export interface IGSTReturnFilingStatusReq {
28
+ gstin: string;
29
+ fy: string;
30
+ }
31
+ export interface IGSTGoodsAndServicesReq {
32
+ gstin: string;
33
+ }
34
+ export interface IGSTGoodsAndServicesResponseGoodUnit {
35
+ gdes: string;
36
+ hsncd: string;
37
+ }
38
+ export interface IGSTGoodsAndServicesResponseServiceUnit {
39
+ saccd: string;
40
+ sdes: string;
41
+ }
42
+ export interface IGSTGoodsAndServicesResponse {
43
+ bzgddtls: IGSTGoodsAndServicesResponseGoodUnit[];
44
+ bzsdtls: IGSTGoodsAndServicesResponseServiceUnit[];
45
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "10.5.0",
3
+ "version": "10.7.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",