gemcap-be-common 1.4.126 → 1.4.127

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.
@@ -26,7 +26,7 @@ import mongoose, { Model } from 'mongoose';
26
26
  export interface IFinancialSpreadingSummary {
27
27
  borrowerId: mongoose.Types.ObjectId;
28
28
  rawData: string;
29
- result: string;
29
+ summary: string;
30
30
  }
31
31
  export interface IFinancialSpreadingSummaryDoc extends IFinancialSpreadingSummary, Document {
32
32
  _id: mongoose.Types.ObjectId;
@@ -15,7 +15,7 @@ exports.FinancialSpreadingSummarySchema = new mongoose_1.default.Schema({
15
15
  rawData: {
16
16
  type: mongoose_1.default.Schema.Types.Mixed,
17
17
  },
18
- result: {
18
+ summary: {
19
19
  type: String,
20
20
  },
21
21
  }, {
@@ -5,7 +5,7 @@ import { MODEL_NAMES } from './_models';
5
5
  export interface IFinancialSpreadingSummary {
6
6
  borrowerId: mongoose.Types.ObjectId;
7
7
  rawData: string;
8
- result: string;
8
+ summary: string;
9
9
  }
10
10
 
11
11
  export interface IFinancialSpreadingSummaryDoc extends IFinancialSpreadingSummary, Document {
@@ -39,7 +39,7 @@ export const FinancialSpreadingSummarySchema = new mongoose.Schema<IFinancialSpr
39
39
  rawData: {
40
40
  type: mongoose.Schema.Types.Mixed,
41
41
  },
42
- result: {
42
+ summary: {
43
43
  type: String,
44
44
  },
45
45
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.126",
3
+ "version": "1.4.127",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {