drapcode-constant 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
1
+ export declare const repaymentTypes: {
2
+ SIMPLE_INTEREST: string;
3
+ COMPOUND_INTEREST: string;
4
+ };
5
+ export declare const repaymentStatus: {
6
+ PAID: string;
7
+ PENDING: string;
8
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.repaymentStatus = exports.repaymentTypes = void 0;
4
+ exports.repaymentTypes = {
5
+ SIMPLE_INTEREST: "SIMPLE_INTEREST",
6
+ COMPOUND_INTEREST: "COMPOUND_INTEREST",
7
+ };
8
+ exports.repaymentStatus = { PAID: "PAID", PENDING: "PENDING" };
@@ -47,6 +47,7 @@ export declare const pluginCode: {
47
47
  FILE_ACTIVITY_TRACKER: string;
48
48
  USER_ACTIVITY_TRACKER: string;
49
49
  AWS_S3: string;
50
+ LOAN_MANAGEMENT: string;
50
51
  };
51
52
  export declare const loginPluginCode: string[];
52
53
  export declare const chatGptModels: {
@@ -50,6 +50,7 @@ exports.pluginCode = {
50
50
  FILE_ACTIVITY_TRACKER: "FILE_ACTIVITY_TRACKER",
51
51
  USER_ACTIVITY_TRACKER: "USER_ACTIVITY_TRACKER",
52
52
  AWS_S3: "AWS_S3",
53
+ LOAN_MANAGEMENT: "LOAN_MANAGEMENT",
53
54
  };
54
55
  exports.loginPluginCode = [
55
56
  exports.pluginCode.LOGIN,
package/build/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from "./constants/externalApi";
6
6
  export * from "./constants/FieldTypes";
7
7
  export * from "./constants/collection";
8
8
  export * from "./constants/messages";
9
+ export * from "./constants/loan";
package/build/index.js CHANGED
@@ -22,3 +22,4 @@ __exportStar(require("./constants/externalApi"), exports);
22
22
  __exportStar(require("./constants/FieldTypes"), exports);
23
23
  __exportStar(require("./constants/collection"), exports);
24
24
  __exportStar(require("./constants/messages"), exports);
25
+ __exportStar(require("./constants/loan"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drapcode-constant",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Drapcode Constants",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",