@dynamatix/gb-schemas 2.3.397 → 2.3.398
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.
|
@@ -36,6 +36,7 @@ declare const WelcomeCallModel: mongoose.Model<{
|
|
|
36
36
|
applicantName: string;
|
|
37
37
|
bepReference: string;
|
|
38
38
|
firstCallAttemptDate: string;
|
|
39
|
+
scheduledCallTime: string;
|
|
39
40
|
callCompletedDate: string;
|
|
40
41
|
failedCallReason: string;
|
|
41
42
|
idvStatus: string;
|
|
@@ -91,6 +92,7 @@ declare const WelcomeCallModel: mongoose.Model<{
|
|
|
91
92
|
applicantName: string;
|
|
92
93
|
bepReference: string;
|
|
93
94
|
firstCallAttemptDate: string;
|
|
95
|
+
scheduledCallTime: string;
|
|
94
96
|
callCompletedDate: string;
|
|
95
97
|
failedCallReason: string;
|
|
96
98
|
idvStatus: string;
|
|
@@ -146,6 +148,7 @@ declare const WelcomeCallModel: mongoose.Model<{
|
|
|
146
148
|
applicantName: string;
|
|
147
149
|
bepReference: string;
|
|
148
150
|
firstCallAttemptDate: string;
|
|
151
|
+
scheduledCallTime: string;
|
|
149
152
|
callCompletedDate: string;
|
|
150
153
|
failedCallReason: string;
|
|
151
154
|
idvStatus: string;
|
|
@@ -213,6 +216,7 @@ declare const WelcomeCallModel: mongoose.Model<{
|
|
|
213
216
|
applicantName: string;
|
|
214
217
|
bepReference: string;
|
|
215
218
|
firstCallAttemptDate: string;
|
|
219
|
+
scheduledCallTime: string;
|
|
216
220
|
callCompletedDate: string;
|
|
217
221
|
failedCallReason: string;
|
|
218
222
|
idvStatus: string;
|
|
@@ -268,6 +272,7 @@ declare const WelcomeCallModel: mongoose.Model<{
|
|
|
268
272
|
applicantName: string;
|
|
269
273
|
bepReference: string;
|
|
270
274
|
firstCallAttemptDate: string;
|
|
275
|
+
scheduledCallTime: string;
|
|
271
276
|
callCompletedDate: string;
|
|
272
277
|
failedCallReason: string;
|
|
273
278
|
idvStatus: string;
|
|
@@ -323,6 +328,7 @@ declare const WelcomeCallModel: mongoose.Model<{
|
|
|
323
328
|
applicantName: string;
|
|
324
329
|
bepReference: string;
|
|
325
330
|
firstCallAttemptDate: string;
|
|
331
|
+
scheduledCallTime: string;
|
|
326
332
|
callCompletedDate: string;
|
|
327
333
|
failedCallReason: string;
|
|
328
334
|
idvStatus: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicant-welcome-call.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant-welcome-call.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"applicant-welcome-call.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant-welcome-call.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAkvBhC,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA4D,CAAC;AAEnF,eAAe,gBAAgB,CAAC"}
|
|
@@ -20,6 +20,11 @@ const welcomeCallSchema = new mongoose.Schema({
|
|
|
20
20
|
description: "Call Started Date",
|
|
21
21
|
default: null
|
|
22
22
|
},
|
|
23
|
+
scheduledCallTime: {
|
|
24
|
+
type: String,
|
|
25
|
+
description: "Scheduled Call Time",
|
|
26
|
+
default: null
|
|
27
|
+
},
|
|
23
28
|
callCompletedDate: {
|
|
24
29
|
type: String,
|
|
25
30
|
description: "Call Completed Date / Welcome call end date",
|