@dynamatix/gb-schemas 2.3.372 → 2.3.373
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.
|
@@ -434,6 +434,7 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
434
434
|
registeredNumber?: unknown;
|
|
435
435
|
isRegisteredNumber?: unknown;
|
|
436
436
|
companyHouseLink?: unknown;
|
|
437
|
+
epcSearchByPostCodeLink?: unknown;
|
|
437
438
|
taxJurisdictionLid?: unknown;
|
|
438
439
|
natureOfBusiness?: unknown;
|
|
439
440
|
addressPostCode?: unknown;
|
|
@@ -867,6 +868,7 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
867
868
|
registeredNumber?: unknown;
|
|
868
869
|
isRegisteredNumber?: unknown;
|
|
869
870
|
companyHouseLink?: unknown;
|
|
871
|
+
epcSearchByPostCodeLink?: unknown;
|
|
870
872
|
taxJurisdictionLid?: unknown;
|
|
871
873
|
natureOfBusiness?: unknown;
|
|
872
874
|
addressPostCode?: unknown;
|
|
@@ -1300,6 +1302,7 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
1300
1302
|
registeredNumber?: unknown;
|
|
1301
1303
|
isRegisteredNumber?: unknown;
|
|
1302
1304
|
companyHouseLink?: unknown;
|
|
1305
|
+
epcSearchByPostCodeLink?: unknown;
|
|
1303
1306
|
taxJurisdictionLid?: unknown;
|
|
1304
1307
|
natureOfBusiness?: unknown;
|
|
1305
1308
|
addressPostCode?: unknown;
|
|
@@ -1380,6 +1383,7 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
1380
1383
|
registeredNumber?: unknown;
|
|
1381
1384
|
isRegisteredNumber?: unknown;
|
|
1382
1385
|
companyHouseLink?: unknown;
|
|
1386
|
+
epcSearchByPostCodeLink?: unknown;
|
|
1383
1387
|
taxJurisdictionLid?: unknown;
|
|
1384
1388
|
natureOfBusiness?: unknown;
|
|
1385
1389
|
addressPostCode?: unknown;
|
|
@@ -1446,6 +1450,7 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
1446
1450
|
registeredNumber?: unknown;
|
|
1447
1451
|
isRegisteredNumber?: unknown;
|
|
1448
1452
|
companyHouseLink?: unknown;
|
|
1453
|
+
epcSearchByPostCodeLink?: unknown;
|
|
1449
1454
|
taxJurisdictionLid?: unknown;
|
|
1450
1455
|
natureOfBusiness?: unknown;
|
|
1451
1456
|
addressPostCode?: unknown;
|
|
@@ -1512,6 +1517,7 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
1512
1517
|
registeredNumber?: unknown;
|
|
1513
1518
|
isRegisteredNumber?: unknown;
|
|
1514
1519
|
companyHouseLink?: unknown;
|
|
1520
|
+
epcSearchByPostCodeLink?: unknown;
|
|
1515
1521
|
taxJurisdictionLid?: unknown;
|
|
1516
1522
|
natureOfBusiness?: unknown;
|
|
1517
1523
|
addressPostCode?: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-company-model.d.ts","sourceRoot":"","sources":["../../applications/application-company-model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,KAAK,EAAe,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"application-company-model.d.ts","sourceRoot":"","sources":["../../applications/application-company-model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,KAAK,EAAe,MAAM,0BAA0B,CAAA;AA2J7D,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAsD,CAAC;AACpF,eAAe,uBAAuB,CAAC"}
|
|
@@ -19,6 +19,7 @@ const companySchema = new mongoose.Schema({
|
|
|
19
19
|
registeredNumber: { type: AccountNumber, max: 99999999, default: 0 }, // form
|
|
20
20
|
isRegisteredNumber: { type: Boolean, default: false, }, // form
|
|
21
21
|
companyHouseLink: { type: String, default: '' }, // form
|
|
22
|
+
epcSearchByPostCodeLink: { type: String, default: '' },
|
|
22
23
|
taxJurisdictionLid: { type: mongoose.Schema.Types.ObjectId, ref: "Lookup", required: true }, // form
|
|
23
24
|
tradingSince: { type: String, default: null }, // form
|
|
24
25
|
natureOfBusiness: { type: String, maxlength: 100, default: '' }, // form
|