drapcode-constant 1.3.1 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -120,6 +120,7 @@ exports.primaryBodyJS = __spreadArray(__spreadArray([
120
120
  '<script type="text/javascript" src="/resources/dataLoader.min.js"></script>',
121
121
  '<script type="text/javascript" src="/resources/drapcode.body.min.js"></script>',
122
122
  '<script type="text/javascript" src="/resources/drapcode.modal.min.js"></script>',
123
+ '<script type="text/javascript" src="/resources/action/awsSnsActions.js"></script>',
123
124
  '<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"></script>',
124
125
  '<script src="https://unpkg.com/@popperjs/core@2"></script>',
125
126
  '<script src="https://unpkg.com/tippy.js@6"></script>',
@@ -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" };
@@ -4,6 +4,7 @@ export declare const pluginCode: {
4
4
  GOOGLE_ANALYTICS: string;
5
5
  TRUSTPILOT_WIDGET: string;
6
6
  TWILIO: string;
7
+ AWS_SNS: string;
7
8
  TWITTER_WIDGET: string;
8
9
  ELFSIGHT_WIDGET: string;
9
10
  GETSITECONTROL: string;
@@ -47,6 +48,7 @@ export declare const pluginCode: {
47
48
  FILE_ACTIVITY_TRACKER: string;
48
49
  USER_ACTIVITY_TRACKER: string;
49
50
  AWS_S3: string;
51
+ LOAN_MANAGEMENT: string;
50
52
  };
51
53
  export declare const loginPluginCode: string[];
52
54
  export declare const chatGptModels: {
@@ -7,6 +7,7 @@ exports.pluginCode = {
7
7
  GOOGLE_ANALYTICS: "GOOGLE_ANALYTICS",
8
8
  TRUSTPILOT_WIDGET: "TRUSTPILOT_WIDGET",
9
9
  TWILIO: "TWILIO",
10
+ AWS_SNS: "AWS_SNS",
10
11
  TWITTER_WIDGET: "TWITTER_WIDGET",
11
12
  ELFSIGHT_WIDGET: "ELFSIGHT_WIDGET",
12
13
  GETSITECONTROL: "GETSITECONTROL",
@@ -50,6 +51,7 @@ exports.pluginCode = {
50
51
  FILE_ACTIVITY_TRACKER: "FILE_ACTIVITY_TRACKER",
51
52
  USER_ACTIVITY_TRACKER: "USER_ACTIVITY_TRACKER",
52
53
  AWS_S3: "AWS_S3",
54
+ LOAN_MANAGEMENT: "LOAN_MANAGEMENT",
53
55
  };
54
56
  exports.loginPluginCode = [
55
57
  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.3",
4
4
  "description": "Drapcode Constants",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",