@dynamatix/gb-schemas 2.3.318 → 2.3.319

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.
@@ -54,6 +54,7 @@ declare const ApplicationsTaskModel: mongoose.Model<{
54
54
  };
55
55
  statusDate: string;
56
56
  statusReason: string;
57
+ comments: string[];
57
58
  status?: number | null | undefined;
58
59
  checkflowId?: string | null | undefined;
59
60
  instanceId?: string | null | undefined;
@@ -84,6 +85,7 @@ declare const ApplicationsTaskModel: mongoose.Model<{
84
85
  };
85
86
  statusDate: string;
86
87
  statusReason: string;
88
+ comments: string[];
87
89
  status?: number | null | undefined;
88
90
  checkflowId?: string | null | undefined;
89
91
  instanceId?: string | null | undefined;
@@ -114,6 +116,7 @@ declare const ApplicationsTaskModel: mongoose.Model<{
114
116
  };
115
117
  statusDate: string;
116
118
  statusReason: string;
119
+ comments: string[];
117
120
  status?: number | null | undefined;
118
121
  checkflowId?: string | null | undefined;
119
122
  instanceId?: string | null | undefined;
@@ -150,6 +153,7 @@ declare const ApplicationsTaskModel: mongoose.Model<{
150
153
  };
151
154
  statusDate: string;
152
155
  statusReason: string;
156
+ comments: string[];
153
157
  status?: number | null | undefined;
154
158
  checkflowId?: string | null | undefined;
155
159
  instanceId?: string | null | undefined;
@@ -180,6 +184,7 @@ declare const ApplicationsTaskModel: mongoose.Model<{
180
184
  };
181
185
  statusDate: string;
182
186
  statusReason: string;
187
+ comments: string[];
183
188
  status?: number | null | undefined;
184
189
  checkflowId?: string | null | undefined;
185
190
  instanceId?: string | null | undefined;
@@ -210,6 +215,7 @@ declare const ApplicationsTaskModel: mongoose.Model<{
210
215
  };
211
216
  statusDate: string;
212
217
  statusReason: string;
218
+ comments: string[];
213
219
  status?: number | null | undefined;
214
220
  checkflowId?: string | null | undefined;
215
221
  instanceId?: string | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"applications-task.model.d.ts","sourceRoot":"","sources":["../../applications/applications-task.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AA+ChC,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA6D,CAAC;AACzF,eAAe,qBAAqB,CAAC"}
1
+ {"version":3,"file":"applications-task.model.d.ts","sourceRoot":"","sources":["../../applications/applications-task.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAgDhC,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA6D,CAAC;AACzF,eAAe,qBAAqB,CAAC"}
@@ -33,6 +33,7 @@ const applicationsTaskSchema = new mongoose.Schema({
33
33
  statusReason: { type: String, default: "" },
34
34
  statusDate: { type: String, default: null },
35
35
  additionalData: { type: additionalDataSchema, required: true },
36
+ comments: [{ type: String, default: "", maxlength: 2000 }],
36
37
  createdOn: { type: String, required: true, default: () => new Date().toISOString() }
37
38
  }, { timestamps: true });
38
39
  applyAuditMiddleware(applicationsTaskSchema, "ApplicationsTask");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "2.3.318",
3
+ "version": "2.3.319",
4
4
  "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",