@dynamatix/gb-schemas 2.3.387 → 2.3.388
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.
|
@@ -571,6 +571,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
571
571
|
failedMessage?: string | null | undefined;
|
|
572
572
|
nameAddressOverride?: {
|
|
573
573
|
isInitialSearchCompleted: boolean;
|
|
574
|
+
isNameAddressOverridden: boolean;
|
|
574
575
|
addressLine2?: string | null | undefined;
|
|
575
576
|
city?: string | null | undefined;
|
|
576
577
|
firstName?: string | null | undefined;
|
|
@@ -616,6 +617,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
616
617
|
failedMessage?: string | null | undefined;
|
|
617
618
|
nameAddressOverride?: {
|
|
618
619
|
isInitialSearchCompleted: boolean;
|
|
620
|
+
isNameAddressOverridden: boolean;
|
|
619
621
|
addressLine2?: string | null | undefined;
|
|
620
622
|
city?: string | null | undefined;
|
|
621
623
|
firstName?: string | null | undefined;
|
|
@@ -661,6 +663,7 @@ declare const ApplicationDirectDebitModel: mongoose.Model<{
|
|
|
661
663
|
failedMessage?: string | null | undefined;
|
|
662
664
|
nameAddressOverride?: {
|
|
663
665
|
isInitialSearchCompleted: boolean;
|
|
666
|
+
isNameAddressOverridden: boolean;
|
|
664
667
|
addressLine2?: string | null | undefined;
|
|
665
668
|
city?: string | null | undefined;
|
|
666
669
|
firstName?: 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;AA6JhE,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA0E,CAAC;AAC5G,eAAe,2BAA2B,CAAC"}
|
|
@@ -112,7 +112,8 @@ const applicationDirectDebitSchema = new mongoose.Schema({
|
|
|
112
112
|
city: { type: String },
|
|
113
113
|
country: { type: String },
|
|
114
114
|
postcode: { type: String },
|
|
115
|
-
isInitialSearchCompleted: { type: Boolean, default: false }
|
|
115
|
+
isInitialSearchCompleted: { type: Boolean, default: false },
|
|
116
|
+
isNameAddressOverridden: { type: Boolean, default: false }
|
|
116
117
|
}
|
|
117
118
|
},
|
|
118
119
|
}, {
|