@dynamatix/gb-schemas 2.3.310 → 2.3.312

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.
@@ -190,6 +190,7 @@ 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
+ bankWizardCheck?: unknown;
193
194
  }, {}, {}, {}, mongoose.Document<unknown, {}, {
194
195
  createdAt: NativeDate;
195
196
  updatedAt: NativeDate;
@@ -351,6 +352,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
351
352
  accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
352
353
  accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
353
354
  bankAccountRequired?: unknown;
355
+ bankWizardCheck?: unknown;
354
356
  }, {}> & {
355
357
  createdAt: NativeDate;
356
358
  updatedAt: NativeDate;
@@ -512,6 +514,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
512
514
  accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
513
515
  accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
514
516
  bankAccountRequired?: unknown;
517
+ bankWizardCheck?: unknown;
515
518
  } & {
516
519
  _id: mongoose.Types.ObjectId;
517
520
  } & {
@@ -546,6 +549,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
546
549
  contactPostcode?: string | null | undefined;
547
550
  isConfirmDeclaration?: boolean | null | undefined;
548
551
  selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
552
+ bankWizardCheck?: {
553
+ validation?: string | null | undefined;
554
+ nameAndDobMatch?: string | null | undefined;
555
+ addressMatch?: string | null | undefined;
556
+ ddCapable?: string | null | undefined;
557
+ status?: string | null | undefined;
558
+ failedMessage?: string | null | undefined;
559
+ } | null | undefined;
549
560
  }, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
550
561
  createdAt: NativeDate;
551
562
  updatedAt: NativeDate;
@@ -566,6 +577,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
566
577
  contactPostcode?: string | null | undefined;
567
578
  isConfirmDeclaration?: boolean | null | undefined;
568
579
  selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
580
+ bankWizardCheck?: {
581
+ validation?: string | null | undefined;
582
+ nameAndDobMatch?: string | null | undefined;
583
+ addressMatch?: string | null | undefined;
584
+ ddCapable?: string | null | undefined;
585
+ status?: string | null | undefined;
586
+ failedMessage?: string | null | undefined;
587
+ } | null | undefined;
569
588
  }>, {}> & mongoose.FlatRecord<{
570
589
  createdAt: NativeDate;
571
590
  updatedAt: NativeDate;
@@ -586,6 +605,14 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
586
605
  contactPostcode?: string | null | undefined;
587
606
  isConfirmDeclaration?: boolean | null | undefined;
588
607
  selectedPaymentDayLid?: mongoose.Types.ObjectId | null | undefined;
608
+ bankWizardCheck?: {
609
+ validation?: string | null | undefined;
610
+ nameAndDobMatch?: string | null | undefined;
611
+ addressMatch?: string | null | undefined;
612
+ ddCapable?: string | null | undefined;
613
+ status?: string | null | undefined;
614
+ failedMessage?: string | null | undefined;
615
+ } | null | undefined;
589
616
  }> & {
590
617
  _id: mongoose.Types.ObjectId;
591
618
  } & {
@@ -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;AAwHhE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA0E,CAAC;AAC5G,eAAe,2BAA2B,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;AAgIhE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA0E,CAAC;AAC5G,eAAe,2BAA2B,CAAC"}
@@ -81,6 +81,14 @@ const applicationDirectDebitSchema = new mongoose.Schema({
81
81
  type: Boolean,
82
82
  default: false,
83
83
  },
84
+ bankWizardCheck: {
85
+ nameAndDobMatch: { type: String },
86
+ addressMatch: { type: String },
87
+ ddCapable: { type: String },
88
+ validation: { type: String },
89
+ status: { type: String },
90
+ failedMessage: { type: String },
91
+ },
84
92
  }, {
85
93
  timestamps: true,
86
94
  toJSON: { virtuals: true, getters: true },
@@ -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[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/gb-schemas",
3
- "version": "2.3.310",
3
+ "version": "2.3.312",
4
4
  "description": "All the schemas for gatehouse bank back-end",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",