@dynamatix/gb-schemas 2.3.401 → 2.3.403
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.
|
@@ -194,6 +194,7 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
194
194
|
isFirstApplicant?: unknown;
|
|
195
195
|
isUkPassport?: unknown;
|
|
196
196
|
previousIsUkResident?: unknown;
|
|
197
|
+
isOnsDataUpdated?: unknown;
|
|
197
198
|
classLid?: mongoose.Types.ObjectId | null | undefined;
|
|
198
199
|
linkedJurisdictionCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
199
200
|
linkedJurisdictionDetails?: unknown;
|
|
@@ -546,6 +547,7 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
546
547
|
isFirstApplicant?: unknown;
|
|
547
548
|
isUkPassport?: unknown;
|
|
548
549
|
previousIsUkResident?: unknown;
|
|
550
|
+
isOnsDataUpdated?: unknown;
|
|
549
551
|
classLid?: mongoose.Types.ObjectId | null | undefined;
|
|
550
552
|
linkedJurisdictionCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
551
553
|
linkedJurisdictionDetails?: unknown;
|
|
@@ -898,6 +900,7 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
898
900
|
isFirstApplicant?: unknown;
|
|
899
901
|
isUkPassport?: unknown;
|
|
900
902
|
previousIsUkResident?: unknown;
|
|
903
|
+
isOnsDataUpdated?: unknown;
|
|
901
904
|
classLid?: mongoose.Types.ObjectId | null | undefined;
|
|
902
905
|
linkedJurisdictionCountryLid?: mongoose.Types.ObjectId | null | undefined;
|
|
903
906
|
linkedJurisdictionDetails?: unknown;
|
|
@@ -1163,6 +1166,7 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1163
1166
|
isFirstApplicant: boolean;
|
|
1164
1167
|
isUkPassport: boolean;
|
|
1165
1168
|
previousIsUkResident: boolean;
|
|
1169
|
+
isOnsDataUpdated: boolean;
|
|
1166
1170
|
classLid: mongoose.Types.ObjectId;
|
|
1167
1171
|
linkedJurisdictionCountryLid: mongoose.Types.ObjectId;
|
|
1168
1172
|
linkedJurisdictionDetails: string;
|
|
@@ -1319,6 +1323,7 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1319
1323
|
isFirstApplicant: boolean;
|
|
1320
1324
|
isUkPassport: boolean;
|
|
1321
1325
|
previousIsUkResident: boolean;
|
|
1326
|
+
isOnsDataUpdated: boolean;
|
|
1322
1327
|
classLid: mongoose.Types.ObjectId;
|
|
1323
1328
|
linkedJurisdictionCountryLid: mongoose.Types.ObjectId;
|
|
1324
1329
|
linkedJurisdictionDetails: string;
|
|
@@ -1475,6 +1480,7 @@ declare const ApplicantModel: mongoose.Model<{
|
|
|
1475
1480
|
isFirstApplicant: boolean;
|
|
1476
1481
|
isUkPassport: boolean;
|
|
1477
1482
|
previousIsUkResident: boolean;
|
|
1483
|
+
isOnsDataUpdated: boolean;
|
|
1478
1484
|
classLid: mongoose.Types.ObjectId;
|
|
1479
1485
|
linkedJurisdictionCountryLid: mongoose.Types.ObjectId;
|
|
1480
1486
|
linkedJurisdictionDetails: string;
|
|
@@ -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;
|
|
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;AAgS5D,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA+C,CAAC;AACpE,eAAe,cAAc,CAAC"}
|
|
@@ -107,6 +107,10 @@ const applicantSchema = new mongoose.Schema({
|
|
|
107
107
|
type: Boolean,
|
|
108
108
|
default: false,
|
|
109
109
|
},
|
|
110
|
+
isOnsDataUpdated: {
|
|
111
|
+
type: Boolean,
|
|
112
|
+
default: false
|
|
113
|
+
},
|
|
110
114
|
classLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", default: null },
|
|
111
115
|
isExpenseOwner: Boolean,
|
|
112
116
|
pageValidFlag: { type: Boolean, default: false },
|