@dynamatix/gb-schemas 2.3.311 → 2.3.313
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.
- package/dist/applicants/applicant-direct-debit.model.d.ts +0 -24
- package/dist/applicants/applicant-direct-debit.model.d.ts.map +1 -1
- package/dist/applicants/applicant-direct-debit.model.js +1 -9
- package/dist/applicants/applicant.model.d.ts +0 -24
- package/dist/applicants/applicant.model.d.ts.map +1 -1
- package/dist/applications/application-direct-debit.model.d.ts +33 -0
- package/dist/applications/application-direct-debit.model.d.ts.map +1 -1
- package/dist/applications/application-direct-debit.model.js +13 -0
- package/dist/applications/application-direct-debit.type.d.ts +1 -0
- package/dist/applications/application-direct-debit.type.d.ts.map +1 -1
- package/dist/users/user.model.d.ts +6 -6
- package/package.json +1 -1
|
@@ -45,14 +45,6 @@ declare const applicantDirectDebitSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
45
45
|
sortCode?: string | null | undefined;
|
|
46
46
|
selectedPaymentDay?: string | null | undefined;
|
|
47
47
|
Applicants?: string | null | undefined;
|
|
48
|
-
bankWizardCheck?: {
|
|
49
|
-
validation?: string | null | undefined;
|
|
50
|
-
status?: string | null | undefined;
|
|
51
|
-
nameAndDobMatch?: string | null | undefined;
|
|
52
|
-
addressMatch?: string | null | undefined;
|
|
53
|
-
ddCapable?: string | null | undefined;
|
|
54
|
-
failedMessage?: string | null | undefined;
|
|
55
|
-
} | null | undefined;
|
|
56
48
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
57
49
|
createdAt: NativeDate;
|
|
58
50
|
updatedAt: NativeDate;
|
|
@@ -69,14 +61,6 @@ declare const applicantDirectDebitSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
69
61
|
sortCode?: string | null | undefined;
|
|
70
62
|
selectedPaymentDay?: string | null | undefined;
|
|
71
63
|
Applicants?: string | null | undefined;
|
|
72
|
-
bankWizardCheck?: {
|
|
73
|
-
validation?: string | null | undefined;
|
|
74
|
-
status?: string | null | undefined;
|
|
75
|
-
nameAndDobMatch?: string | null | undefined;
|
|
76
|
-
addressMatch?: string | null | undefined;
|
|
77
|
-
ddCapable?: string | null | undefined;
|
|
78
|
-
failedMessage?: string | null | undefined;
|
|
79
|
-
} | null | undefined;
|
|
80
64
|
}>, {}> & mongoose.FlatRecord<{
|
|
81
65
|
createdAt: NativeDate;
|
|
82
66
|
updatedAt: NativeDate;
|
|
@@ -93,14 +77,6 @@ declare const applicantDirectDebitSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
93
77
|
sortCode?: string | null | undefined;
|
|
94
78
|
selectedPaymentDay?: string | null | undefined;
|
|
95
79
|
Applicants?: string | null | undefined;
|
|
96
|
-
bankWizardCheck?: {
|
|
97
|
-
validation?: string | null | undefined;
|
|
98
|
-
status?: string | null | undefined;
|
|
99
|
-
nameAndDobMatch?: string | null | undefined;
|
|
100
|
-
addressMatch?: string | null | undefined;
|
|
101
|
-
ddCapable?: string | null | undefined;
|
|
102
|
-
failedMessage?: string | null | undefined;
|
|
103
|
-
} | null | undefined;
|
|
104
80
|
}> & {
|
|
105
81
|
_id: mongoose.Types.ObjectId;
|
|
106
82
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicant-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAGhC,QAAA,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"applicant-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAGhC,QAAA,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaR,CAAC;AAEzB,eAAe,0BAA0B,CAAC"}
|
|
@@ -11,14 +11,6 @@ const applicantDirectDebitSchema = new mongoose.Schema({
|
|
|
11
11
|
isConfirmDeclaration: { type: String, default: false },
|
|
12
12
|
nameOfAccountHolder: { type: String },
|
|
13
13
|
selectedPaymentDay: { type: String },
|
|
14
|
-
sortCode: { type: String }
|
|
15
|
-
bankWizardCheck: {
|
|
16
|
-
nameAndDobMatch: { type: String },
|
|
17
|
-
addressMatch: { type: String },
|
|
18
|
-
ddCapable: { type: String },
|
|
19
|
-
validation: { type: String },
|
|
20
|
-
status: { type: String },
|
|
21
|
-
failedMessage: { type: String },
|
|
22
|
-
},
|
|
14
|
+
sortCode: { type: String }
|
|
23
15
|
}, { timestamps: true });
|
|
24
16
|
export default applicantDirectDebitSchema;
|
|
@@ -1247,14 +1247,6 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1247
1247
|
sortCode?: string | null | undefined;
|
|
1248
1248
|
selectedPaymentDay?: string | null | undefined;
|
|
1249
1249
|
Applicants?: string | null | undefined;
|
|
1250
|
-
bankWizardCheck?: {
|
|
1251
|
-
validation?: string | null | undefined;
|
|
1252
|
-
status?: string | null | undefined;
|
|
1253
|
-
nameAndDobMatch?: string | null | undefined;
|
|
1254
|
-
addressMatch?: string | null | undefined;
|
|
1255
|
-
ddCapable?: string | null | undefined;
|
|
1256
|
-
failedMessage?: string | null | undefined;
|
|
1257
|
-
} | null | undefined;
|
|
1258
1250
|
}) | null | undefined;
|
|
1259
1251
|
serialName?: string | null | undefined;
|
|
1260
1252
|
ukPassportProfessionLid?: mongoose.Types.ObjectId | null | undefined;
|
|
@@ -1410,14 +1402,6 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1410
1402
|
sortCode?: string | null | undefined;
|
|
1411
1403
|
selectedPaymentDay?: string | null | undefined;
|
|
1412
1404
|
Applicants?: string | null | undefined;
|
|
1413
|
-
bankWizardCheck?: {
|
|
1414
|
-
validation?: string | null | undefined;
|
|
1415
|
-
status?: string | null | undefined;
|
|
1416
|
-
nameAndDobMatch?: string | null | undefined;
|
|
1417
|
-
addressMatch?: string | null | undefined;
|
|
1418
|
-
ddCapable?: string | null | undefined;
|
|
1419
|
-
failedMessage?: string | null | undefined;
|
|
1420
|
-
} | null | undefined;
|
|
1421
1405
|
}) | null | undefined;
|
|
1422
1406
|
serialName?: string | null | undefined;
|
|
1423
1407
|
ukPassportProfessionLid?: mongoose.Types.ObjectId | null | undefined;
|
|
@@ -1573,14 +1557,6 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1573
1557
|
sortCode?: string | null | undefined;
|
|
1574
1558
|
selectedPaymentDay?: string | null | undefined;
|
|
1575
1559
|
Applicants?: string | null | undefined;
|
|
1576
|
-
bankWizardCheck?: {
|
|
1577
|
-
validation?: string | null | undefined;
|
|
1578
|
-
status?: string | null | undefined;
|
|
1579
|
-
nameAndDobMatch?: string | null | undefined;
|
|
1580
|
-
addressMatch?: string | null | undefined;
|
|
1581
|
-
ddCapable?: string | null | undefined;
|
|
1582
|
-
failedMessage?: string | null | undefined;
|
|
1583
|
-
} | null | undefined;
|
|
1584
1560
|
}) | null | undefined;
|
|
1585
1561
|
serialName?: string | null | undefined;
|
|
1586
1562
|
ukPassportProfessionLid?: mongoose.Types.ObjectId | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicant.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAOhC,OAAO,EAAE,KAAK,EAAe,MAAM,wBAAwB,CAAC;AAwR5D,QAAA,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"applicant.model.d.ts","sourceRoot":"","sources":["../../applicants/applicant.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAOhC,OAAO,EAAE,KAAK,EAAe,MAAM,wBAAwB,CAAC;AAwR5D,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA+C,CAAC;AACpE,eAAe,cAAc,CAAC"}
|
|
@@ -190,6 +190,8 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
190
190
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
191
191
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
192
192
|
bankAccountRequired?: unknown;
|
|
193
|
+
accountErrorMessage?: unknown;
|
|
194
|
+
bankWizardCheck?: unknown;
|
|
193
195
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
194
196
|
createdAt: NativeDate;
|
|
195
197
|
updatedAt: NativeDate;
|
|
@@ -351,6 +353,8 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
351
353
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
352
354
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
353
355
|
bankAccountRequired?: unknown;
|
|
356
|
+
accountErrorMessage?: unknown;
|
|
357
|
+
bankWizardCheck?: unknown;
|
|
354
358
|
}, {}> & {
|
|
355
359
|
createdAt: NativeDate;
|
|
356
360
|
updatedAt: NativeDate;
|
|
@@ -512,6 +516,8 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
512
516
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
513
517
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
514
518
|
bankAccountRequired?: unknown;
|
|
519
|
+
accountErrorMessage?: unknown;
|
|
520
|
+
bankWizardCheck?: unknown;
|
|
515
521
|
} & {
|
|
516
522
|
_id: mongoose.Types.ObjectId;
|
|
517
523
|
} & {
|
|
@@ -537,6 +543,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
537
543
|
accountErrorLid: mongoose.Types.ObjectId;
|
|
538
544
|
accountStatusLid: mongoose.Types.ObjectId;
|
|
539
545
|
bankAccountRequired: boolean;
|
|
546
|
+
accountErrorMessage: string;
|
|
540
547
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
541
548
|
applicantId?: mongoose.Types.ObjectId | null | undefined;
|
|
542
549
|
addressLine1?: string | null | undefined;
|
|
@@ -546,6 +553,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
546
553
|
contactPostcode?: string | null | undefined;
|
|
547
554
|
isConfirmDeclaration?: boolean | null | undefined;
|
|
548
555
|
selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
|
|
556
|
+
bankWizardCheck?: {
|
|
557
|
+
validation?: string | null | undefined;
|
|
558
|
+
nameAndDobMatch?: string | null | undefined;
|
|
559
|
+
addressMatch?: string | null | undefined;
|
|
560
|
+
ddCapable?: string | null | undefined;
|
|
561
|
+
status?: string | null | undefined;
|
|
562
|
+
failedMessage?: string | null | undefined;
|
|
563
|
+
} | null | undefined;
|
|
549
564
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
550
565
|
createdAt: NativeDate;
|
|
551
566
|
updatedAt: NativeDate;
|
|
@@ -557,6 +572,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
557
572
|
accountErrorLid: mongoose.Types.ObjectId;
|
|
558
573
|
accountStatusLid: mongoose.Types.ObjectId;
|
|
559
574
|
bankAccountRequired: boolean;
|
|
575
|
+
accountErrorMessage: string;
|
|
560
576
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
561
577
|
applicantId?: mongoose.Types.ObjectId | null | undefined;
|
|
562
578
|
addressLine1?: string | null | undefined;
|
|
@@ -566,6 +582,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
566
582
|
contactPostcode?: string | null | undefined;
|
|
567
583
|
isConfirmDeclaration?: boolean | null | undefined;
|
|
568
584
|
selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
|
|
585
|
+
bankWizardCheck?: {
|
|
586
|
+
validation?: string | null | undefined;
|
|
587
|
+
nameAndDobMatch?: string | null | undefined;
|
|
588
|
+
addressMatch?: string | null | undefined;
|
|
589
|
+
ddCapable?: string | null | undefined;
|
|
590
|
+
status?: string | null | undefined;
|
|
591
|
+
failedMessage?: string | null | undefined;
|
|
592
|
+
} | null | undefined;
|
|
569
593
|
}>, {}> & mongoose.FlatRecord<{
|
|
570
594
|
createdAt: NativeDate;
|
|
571
595
|
updatedAt: NativeDate;
|
|
@@ -577,6 +601,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
577
601
|
accountErrorLid: mongoose.Types.ObjectId;
|
|
578
602
|
accountStatusLid: mongoose.Types.ObjectId;
|
|
579
603
|
bankAccountRequired: boolean;
|
|
604
|
+
accountErrorMessage: string;
|
|
580
605
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
581
606
|
applicantId?: mongoose.Types.ObjectId | null | undefined;
|
|
582
607
|
addressLine1?: string | null | undefined;
|
|
@@ -586,6 +611,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
586
611
|
contactPostcode?: string | null | undefined;
|
|
587
612
|
isConfirmDeclaration?: boolean | null | undefined;
|
|
588
613
|
selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
|
|
614
|
+
bankWizardCheck?: {
|
|
615
|
+
validation?: string | null | undefined;
|
|
616
|
+
nameAndDobMatch?: string | null | undefined;
|
|
617
|
+
addressMatch?: string | null | undefined;
|
|
618
|
+
ddCapable?: string | null | undefined;
|
|
619
|
+
status?: string | null | undefined;
|
|
620
|
+
failedMessage?: string | null | undefined;
|
|
621
|
+
} | null | undefined;
|
|
589
622
|
}> & {
|
|
590
623
|
_id: mongoose.Types.ObjectId;
|
|
591
624
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applications/application-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"application-direct-debit.model.d.ts","sourceRoot":"","sources":["../../applications/application-direct-debit.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAqIhE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA0E,CAAC;AAC5G,eAAe,2BAA2B,CAAC"}
|
|
@@ -81,6 +81,19 @@ const applicationDirectDebitSchema = new mongoose.Schema({
|
|
|
81
81
|
type: Boolean,
|
|
82
82
|
default: false,
|
|
83
83
|
},
|
|
84
|
+
accountErrorMessage: {
|
|
85
|
+
type: String,
|
|
86
|
+
default: "",
|
|
87
|
+
description: 'Error message for the account error for algbra',
|
|
88
|
+
},
|
|
89
|
+
bankWizardCheck: {
|
|
90
|
+
nameAndDobMatch: { type: String },
|
|
91
|
+
addressMatch: { type: String },
|
|
92
|
+
ddCapable: { type: String },
|
|
93
|
+
validation: { type: String },
|
|
94
|
+
status: { type: String },
|
|
95
|
+
failedMessage: { type: String },
|
|
96
|
+
},
|
|
84
97
|
}, {
|
|
85
98
|
timestamps: true,
|
|
86
99
|
toJSON: { virtuals: true, getters: true },
|
|
@@ -45,6 +45,7 @@ export default interface IApplicationDirectDebit extends IBaseType {
|
|
|
45
45
|
accountErrorLid?: Types.ObjectId | null;
|
|
46
46
|
accountStatusLid?: Types.ObjectId | null;
|
|
47
47
|
bankAccountRequired?: boolean;
|
|
48
|
+
accountErrorMessage?: string;
|
|
48
49
|
selectedPaymentDay?: string;
|
|
49
50
|
applicants?: string;
|
|
50
51
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-direct-debit.type.d.ts","sourceRoot":"","sources":["../../applications/application-direct-debit.type.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,MAAM,CAAC,OAAO,WAAW,uBAAwB,SAAQ,SAAS;IAChE,aAAa,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qBAAqB,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IACvC,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IACxC,gBAAgB,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IACzC,mBAAmB,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"application-direct-debit.type.d.ts","sourceRoot":"","sources":["../../applications/application-direct-debit.type.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,MAAM,CAAC,OAAO,WAAW,uBAAwB,SAAQ,SAAS;IAChE,aAAa,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qBAAqB,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC;IACvC,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IACxC,gBAAgB,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;IACzC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAG7B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB"}
|
|
@@ -32,8 +32,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
32
32
|
updatedAt: NativeDate;
|
|
33
33
|
} & {
|
|
34
34
|
accountId: number;
|
|
35
|
-
fullName: string;
|
|
36
35
|
status: string;
|
|
36
|
+
fullName: string;
|
|
37
37
|
email: string;
|
|
38
38
|
password: string;
|
|
39
39
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -61,8 +61,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
61
61
|
updatedAt: NativeDate;
|
|
62
62
|
} & {
|
|
63
63
|
accountId: number;
|
|
64
|
-
fullName: string;
|
|
65
64
|
status: string;
|
|
65
|
+
fullName: string;
|
|
66
66
|
email: string;
|
|
67
67
|
password: string;
|
|
68
68
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -90,8 +90,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
90
90
|
updatedAt: NativeDate;
|
|
91
91
|
} & {
|
|
92
92
|
accountId: number;
|
|
93
|
-
fullName: string;
|
|
94
93
|
status: string;
|
|
94
|
+
fullName: string;
|
|
95
95
|
email: string;
|
|
96
96
|
password: string;
|
|
97
97
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -125,8 +125,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
125
125
|
updatedAt: NativeDate;
|
|
126
126
|
} & {
|
|
127
127
|
accountId: number;
|
|
128
|
-
fullName: string;
|
|
129
128
|
status: string;
|
|
129
|
+
fullName: string;
|
|
130
130
|
email: string;
|
|
131
131
|
password: string;
|
|
132
132
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -154,8 +154,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
154
154
|
updatedAt: NativeDate;
|
|
155
155
|
} & {
|
|
156
156
|
accountId: number;
|
|
157
|
-
fullName: string;
|
|
158
157
|
status: string;
|
|
158
|
+
fullName: string;
|
|
159
159
|
email: string;
|
|
160
160
|
password: string;
|
|
161
161
|
groups: mongoose.Types.ObjectId[];
|
|
@@ -183,8 +183,8 @@ declare const UserModel: mongoose.Model<{
|
|
|
183
183
|
updatedAt: NativeDate;
|
|
184
184
|
} & {
|
|
185
185
|
accountId: number;
|
|
186
|
-
fullName: string;
|
|
187
186
|
status: string;
|
|
187
|
+
fullName: string;
|
|
188
188
|
email: string;
|
|
189
189
|
password: string;
|
|
190
190
|
groups: mongoose.Types.ObjectId[];
|