@dynamatix/gb-schemas 2.3.312 → 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/applications/application-direct-debit.model.d.ts +6 -0
- package/dist/applications/application-direct-debit.model.d.ts.map +1 -1
- package/dist/applications/application-direct-debit.model.js +5 -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/package.json +1 -1
|
@@ -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
|
+
accountErrorMessage?: unknown;
|
|
193
194
|
bankWizardCheck?: unknown;
|
|
194
195
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
195
196
|
createdAt: NativeDate;
|
|
@@ -352,6 +353,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
352
353
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
353
354
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
354
355
|
bankAccountRequired?: unknown;
|
|
356
|
+
accountErrorMessage?: unknown;
|
|
355
357
|
bankWizardCheck?: unknown;
|
|
356
358
|
}, {}> & {
|
|
357
359
|
createdAt: NativeDate;
|
|
@@ -514,6 +516,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
514
516
|
accountErrorLid?: mongoose.Types.ObjectId | null | undefined;
|
|
515
517
|
accountStatusLid?: mongoose.Types.ObjectId | null | undefined;
|
|
516
518
|
bankAccountRequired?: unknown;
|
|
519
|
+
accountErrorMessage?: unknown;
|
|
517
520
|
bankWizardCheck?: unknown;
|
|
518
521
|
} & {
|
|
519
522
|
_id: mongoose.Types.ObjectId;
|
|
@@ -540,6 +543,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
540
543
|
accountErrorLid: mongoose.Types.ObjectId;
|
|
541
544
|
accountStatusLid: mongoose.Types.ObjectId;
|
|
542
545
|
bankAccountRequired: boolean;
|
|
546
|
+
accountErrorMessage: string;
|
|
543
547
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
544
548
|
applicantId?: mongoose.Types.ObjectId | null | undefined;
|
|
545
549
|
addressLine1?: string | null | undefined;
|
|
@@ -568,6 +572,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
568
572
|
accountErrorLid: mongoose.Types.ObjectId;
|
|
569
573
|
accountStatusLid: mongoose.Types.ObjectId;
|
|
570
574
|
bankAccountRequired: boolean;
|
|
575
|
+
accountErrorMessage: string;
|
|
571
576
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
572
577
|
applicantId?: mongoose.Types.ObjectId | null | undefined;
|
|
573
578
|
addressLine1?: string | null | undefined;
|
|
@@ -596,6 +601,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
596
601
|
accountErrorLid: mongoose.Types.ObjectId;
|
|
597
602
|
accountStatusLid: mongoose.Types.ObjectId;
|
|
598
603
|
bankAccountRequired: boolean;
|
|
604
|
+
accountErrorMessage: string;
|
|
599
605
|
applicationId?: mongoose.Types.ObjectId | null | undefined;
|
|
600
606
|
applicantId?: mongoose.Types.ObjectId | null | undefined;
|
|
601
607
|
addressLine1?: string | null | undefined;
|
|
@@ -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,11 @@ 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
|
+
},
|
|
84
89
|
bankWizardCheck: {
|
|
85
90
|
nameAndDobMatch: { type: String },
|
|
86
91
|
addressMatch: { type: String },
|
|
@@ -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"}
|