@dynamatix/gb-schemas 1.2.41 → 1.2.43
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/applicants/applicant-commitment.model.d.ts +461 -461
- package/dist/applicants/applicant.model.d.ts +938 -938
- package/dist/applications/application-company-model.d.ts +365 -55
- package/dist/applications/application-company-model.d.ts.map +1 -1
- package/dist/applications/application-company-model.js +36 -0
- package/dist/applications/application-direct-debit.model.d.ts +9 -9
- package/dist/applications/application-mortgage.model.d.ts +36 -36
- package/dist/applications/application-product.model.d.ts +12 -12
- package/dist/applications/application-product.model.js +7 -7
- package/dist/applications/application.model.d.ts +6 -6
- package/dist/applications/broker.model.d.ts +6 -6
- package/dist/properties/property.model.d.ts +45 -45
- package/dist/properties/property.model.js +1 -1
- package/dist/properties/security.model.d.ts.map +1 -1
- package/dist/properties/security.model.js +13 -0
- package/package.json +1 -1
|
@@ -27,8 +27,105 @@
|
|
|
27
27
|
import mongoose from "mongoose";
|
|
28
28
|
import { Pound } from "./../value-objects/pound";
|
|
29
29
|
declare const ApplicationCompanyModel: mongoose.Model<{
|
|
30
|
+
createdAt: NativeDate;
|
|
31
|
+
updatedAt: NativeDate;
|
|
32
|
+
} & {
|
|
30
33
|
sicCodes: unknown[];
|
|
31
34
|
applicationId?: unknown;
|
|
35
|
+
createdAt?: {
|
|
36
|
+
toJSON?: {} | null | undefined;
|
|
37
|
+
[Symbol.toPrimitive]?: {} | null | undefined;
|
|
38
|
+
toString?: {} | null | undefined;
|
|
39
|
+
toLocaleString?: {} | null | undefined;
|
|
40
|
+
valueOf?: {} | null | undefined;
|
|
41
|
+
toDateString?: {} | null | undefined;
|
|
42
|
+
toTimeString?: {} | null | undefined;
|
|
43
|
+
toLocaleDateString?: {} | null | undefined;
|
|
44
|
+
toLocaleTimeString?: {} | null | undefined;
|
|
45
|
+
getTime?: {} | null | undefined;
|
|
46
|
+
getFullYear?: {} | null | undefined;
|
|
47
|
+
getUTCFullYear?: {} | null | undefined;
|
|
48
|
+
getMonth?: {} | null | undefined;
|
|
49
|
+
getUTCMonth?: {} | null | undefined;
|
|
50
|
+
getDate?: {} | null | undefined;
|
|
51
|
+
getUTCDate?: {} | null | undefined;
|
|
52
|
+
getDay?: {} | null | undefined;
|
|
53
|
+
getUTCDay?: {} | null | undefined;
|
|
54
|
+
getHours?: {} | null | undefined;
|
|
55
|
+
getUTCHours?: {} | null | undefined;
|
|
56
|
+
getMinutes?: {} | null | undefined;
|
|
57
|
+
getUTCMinutes?: {} | null | undefined;
|
|
58
|
+
getSeconds?: {} | null | undefined;
|
|
59
|
+
getUTCSeconds?: {} | null | undefined;
|
|
60
|
+
getMilliseconds?: {} | null | undefined;
|
|
61
|
+
getUTCMilliseconds?: {} | null | undefined;
|
|
62
|
+
getTimezoneOffset?: {} | null | undefined;
|
|
63
|
+
setTime?: {} | null | undefined;
|
|
64
|
+
setMilliseconds?: {} | null | undefined;
|
|
65
|
+
setUTCMilliseconds?: {} | null | undefined;
|
|
66
|
+
setSeconds?: {} | null | undefined;
|
|
67
|
+
setUTCSeconds?: {} | null | undefined;
|
|
68
|
+
setMinutes?: {} | null | undefined;
|
|
69
|
+
setUTCMinutes?: {} | null | undefined;
|
|
70
|
+
setHours?: {} | null | undefined;
|
|
71
|
+
setUTCHours?: {} | null | undefined;
|
|
72
|
+
setDate?: {} | null | undefined;
|
|
73
|
+
setUTCDate?: {} | null | undefined;
|
|
74
|
+
setMonth?: {} | null | undefined;
|
|
75
|
+
setUTCMonth?: {} | null | undefined;
|
|
76
|
+
setFullYear?: {} | null | undefined;
|
|
77
|
+
setUTCFullYear?: {} | null | undefined;
|
|
78
|
+
toUTCString?: {} | null | undefined;
|
|
79
|
+
toISOString?: {} | null | undefined;
|
|
80
|
+
getVarDate?: {} | null | undefined;
|
|
81
|
+
} | null | undefined;
|
|
82
|
+
updatedAt?: {
|
|
83
|
+
toJSON?: {} | null | undefined;
|
|
84
|
+
[Symbol.toPrimitive]?: {} | null | undefined;
|
|
85
|
+
toString?: {} | null | undefined;
|
|
86
|
+
toLocaleString?: {} | null | undefined;
|
|
87
|
+
valueOf?: {} | null | undefined;
|
|
88
|
+
toDateString?: {} | null | undefined;
|
|
89
|
+
toTimeString?: {} | null | undefined;
|
|
90
|
+
toLocaleDateString?: {} | null | undefined;
|
|
91
|
+
toLocaleTimeString?: {} | null | undefined;
|
|
92
|
+
getTime?: {} | null | undefined;
|
|
93
|
+
getFullYear?: {} | null | undefined;
|
|
94
|
+
getUTCFullYear?: {} | null | undefined;
|
|
95
|
+
getMonth?: {} | null | undefined;
|
|
96
|
+
getUTCMonth?: {} | null | undefined;
|
|
97
|
+
getDate?: {} | null | undefined;
|
|
98
|
+
getUTCDate?: {} | null | undefined;
|
|
99
|
+
getDay?: {} | null | undefined;
|
|
100
|
+
getUTCDay?: {} | null | undefined;
|
|
101
|
+
getHours?: {} | null | undefined;
|
|
102
|
+
getUTCHours?: {} | null | undefined;
|
|
103
|
+
getMinutes?: {} | null | undefined;
|
|
104
|
+
getUTCMinutes?: {} | null | undefined;
|
|
105
|
+
getSeconds?: {} | null | undefined;
|
|
106
|
+
getUTCSeconds?: {} | null | undefined;
|
|
107
|
+
getMilliseconds?: {} | null | undefined;
|
|
108
|
+
getUTCMilliseconds?: {} | null | undefined;
|
|
109
|
+
getTimezoneOffset?: {} | null | undefined;
|
|
110
|
+
setTime?: {} | null | undefined;
|
|
111
|
+
setMilliseconds?: {} | null | undefined;
|
|
112
|
+
setUTCMilliseconds?: {} | null | undefined;
|
|
113
|
+
setSeconds?: {} | null | undefined;
|
|
114
|
+
setUTCSeconds?: {} | null | undefined;
|
|
115
|
+
setMinutes?: {} | null | undefined;
|
|
116
|
+
setUTCMinutes?: {} | null | undefined;
|
|
117
|
+
setHours?: {} | null | undefined;
|
|
118
|
+
setUTCHours?: {} | null | undefined;
|
|
119
|
+
setDate?: {} | null | undefined;
|
|
120
|
+
setUTCDate?: {} | null | undefined;
|
|
121
|
+
setMonth?: {} | null | undefined;
|
|
122
|
+
setUTCMonth?: {} | null | undefined;
|
|
123
|
+
setFullYear?: {} | null | undefined;
|
|
124
|
+
setUTCFullYear?: {} | null | undefined;
|
|
125
|
+
toUTCString?: {} | null | undefined;
|
|
126
|
+
toISOString?: {} | null | undefined;
|
|
127
|
+
getVarDate?: {} | null | undefined;
|
|
128
|
+
} | null | undefined;
|
|
32
129
|
tradingSince?: unknown;
|
|
33
130
|
yearEnd?: unknown;
|
|
34
131
|
turnoverYear1?: {
|
|
@@ -65,15 +162,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
65
162
|
select?: {} | null | undefined;
|
|
66
163
|
immutable?: {} | null | undefined;
|
|
67
164
|
transform?: {} | null | undefined;
|
|
165
|
+
options?: {
|
|
166
|
+
[x: string]: unknown;
|
|
167
|
+
} | null | undefined;
|
|
68
168
|
OptionsConstructor?: {
|
|
69
169
|
[x: string]: unknown;
|
|
70
170
|
} | null | undefined;
|
|
71
171
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
72
172
|
instance?: unknown;
|
|
73
173
|
isRequired?: unknown;
|
|
74
|
-
options?: {
|
|
75
|
-
[x: string]: unknown;
|
|
76
|
-
} | null | undefined;
|
|
77
174
|
path?: unknown;
|
|
78
175
|
validateAll?: {} | null | undefined;
|
|
79
176
|
defaultOptions?: unknown;
|
|
@@ -112,15 +209,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
112
209
|
select?: {} | null | undefined;
|
|
113
210
|
immutable?: {} | null | undefined;
|
|
114
211
|
transform?: {} | null | undefined;
|
|
212
|
+
options?: {
|
|
213
|
+
[x: string]: unknown;
|
|
214
|
+
} | null | undefined;
|
|
115
215
|
OptionsConstructor?: {
|
|
116
216
|
[x: string]: unknown;
|
|
117
217
|
} | null | undefined;
|
|
118
218
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
119
219
|
instance?: unknown;
|
|
120
220
|
isRequired?: unknown;
|
|
121
|
-
options?: {
|
|
122
|
-
[x: string]: unknown;
|
|
123
|
-
} | null | undefined;
|
|
124
221
|
path?: unknown;
|
|
125
222
|
validateAll?: {} | null | undefined;
|
|
126
223
|
defaultOptions?: unknown;
|
|
@@ -159,15 +256,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
159
256
|
select?: {} | null | undefined;
|
|
160
257
|
immutable?: {} | null | undefined;
|
|
161
258
|
transform?: {} | null | undefined;
|
|
259
|
+
options?: {
|
|
260
|
+
[x: string]: unknown;
|
|
261
|
+
} | null | undefined;
|
|
162
262
|
OptionsConstructor?: {
|
|
163
263
|
[x: string]: unknown;
|
|
164
264
|
} | null | undefined;
|
|
165
265
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
166
266
|
instance?: unknown;
|
|
167
267
|
isRequired?: unknown;
|
|
168
|
-
options?: {
|
|
169
|
-
[x: string]: unknown;
|
|
170
|
-
} | null | undefined;
|
|
171
268
|
path?: unknown;
|
|
172
269
|
validateAll?: {} | null | undefined;
|
|
173
270
|
defaultOptions?: unknown;
|
|
@@ -206,15 +303,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
206
303
|
select?: {} | null | undefined;
|
|
207
304
|
immutable?: {} | null | undefined;
|
|
208
305
|
transform?: {} | null | undefined;
|
|
306
|
+
options?: {
|
|
307
|
+
[x: string]: unknown;
|
|
308
|
+
} | null | undefined;
|
|
209
309
|
OptionsConstructor?: {
|
|
210
310
|
[x: string]: unknown;
|
|
211
311
|
} | null | undefined;
|
|
212
312
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
213
313
|
instance?: unknown;
|
|
214
314
|
isRequired?: unknown;
|
|
215
|
-
options?: {
|
|
216
|
-
[x: string]: unknown;
|
|
217
|
-
} | null | undefined;
|
|
218
315
|
path?: unknown;
|
|
219
316
|
validateAll?: {} | null | undefined;
|
|
220
317
|
defaultOptions?: unknown;
|
|
@@ -253,15 +350,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
253
350
|
select?: {} | null | undefined;
|
|
254
351
|
immutable?: {} | null | undefined;
|
|
255
352
|
transform?: {} | null | undefined;
|
|
353
|
+
options?: {
|
|
354
|
+
[x: string]: unknown;
|
|
355
|
+
} | null | undefined;
|
|
256
356
|
OptionsConstructor?: {
|
|
257
357
|
[x: string]: unknown;
|
|
258
358
|
} | null | undefined;
|
|
259
359
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
260
360
|
instance?: unknown;
|
|
261
361
|
isRequired?: unknown;
|
|
262
|
-
options?: {
|
|
263
|
-
[x: string]: unknown;
|
|
264
|
-
} | null | undefined;
|
|
265
362
|
path?: unknown;
|
|
266
363
|
validateAll?: {} | null | undefined;
|
|
267
364
|
defaultOptions?: unknown;
|
|
@@ -300,15 +397,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
300
397
|
select?: {} | null | undefined;
|
|
301
398
|
immutable?: {} | null | undefined;
|
|
302
399
|
transform?: {} | null | undefined;
|
|
400
|
+
options?: {
|
|
401
|
+
[x: string]: unknown;
|
|
402
|
+
} | null | undefined;
|
|
303
403
|
OptionsConstructor?: {
|
|
304
404
|
[x: string]: unknown;
|
|
305
405
|
} | null | undefined;
|
|
306
406
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
307
407
|
instance?: unknown;
|
|
308
408
|
isRequired?: unknown;
|
|
309
|
-
options?: {
|
|
310
|
-
[x: string]: unknown;
|
|
311
|
-
} | null | undefined;
|
|
312
409
|
path?: unknown;
|
|
313
410
|
validateAll?: {} | null | undefined;
|
|
314
411
|
defaultOptions?: unknown;
|
|
@@ -347,8 +444,105 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
347
444
|
companyAnyVoluntaryEnforcedPossessionNo?: unknown;
|
|
348
445
|
doYouKnowRegisteredNumber?: unknown;
|
|
349
446
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
447
|
+
createdAt: NativeDate;
|
|
448
|
+
updatedAt: NativeDate;
|
|
449
|
+
} & {
|
|
350
450
|
sicCodes: unknown[];
|
|
351
451
|
applicationId?: unknown;
|
|
452
|
+
createdAt?: {
|
|
453
|
+
toJSON?: {} | null | undefined;
|
|
454
|
+
[Symbol.toPrimitive]?: {} | null | undefined;
|
|
455
|
+
toString?: {} | null | undefined;
|
|
456
|
+
toLocaleString?: {} | null | undefined;
|
|
457
|
+
valueOf?: {} | null | undefined;
|
|
458
|
+
toDateString?: {} | null | undefined;
|
|
459
|
+
toTimeString?: {} | null | undefined;
|
|
460
|
+
toLocaleDateString?: {} | null | undefined;
|
|
461
|
+
toLocaleTimeString?: {} | null | undefined;
|
|
462
|
+
getTime?: {} | null | undefined;
|
|
463
|
+
getFullYear?: {} | null | undefined;
|
|
464
|
+
getUTCFullYear?: {} | null | undefined;
|
|
465
|
+
getMonth?: {} | null | undefined;
|
|
466
|
+
getUTCMonth?: {} | null | undefined;
|
|
467
|
+
getDate?: {} | null | undefined;
|
|
468
|
+
getUTCDate?: {} | null | undefined;
|
|
469
|
+
getDay?: {} | null | undefined;
|
|
470
|
+
getUTCDay?: {} | null | undefined;
|
|
471
|
+
getHours?: {} | null | undefined;
|
|
472
|
+
getUTCHours?: {} | null | undefined;
|
|
473
|
+
getMinutes?: {} | null | undefined;
|
|
474
|
+
getUTCMinutes?: {} | null | undefined;
|
|
475
|
+
getSeconds?: {} | null | undefined;
|
|
476
|
+
getUTCSeconds?: {} | null | undefined;
|
|
477
|
+
getMilliseconds?: {} | null | undefined;
|
|
478
|
+
getUTCMilliseconds?: {} | null | undefined;
|
|
479
|
+
getTimezoneOffset?: {} | null | undefined;
|
|
480
|
+
setTime?: {} | null | undefined;
|
|
481
|
+
setMilliseconds?: {} | null | undefined;
|
|
482
|
+
setUTCMilliseconds?: {} | null | undefined;
|
|
483
|
+
setSeconds?: {} | null | undefined;
|
|
484
|
+
setUTCSeconds?: {} | null | undefined;
|
|
485
|
+
setMinutes?: {} | null | undefined;
|
|
486
|
+
setUTCMinutes?: {} | null | undefined;
|
|
487
|
+
setHours?: {} | null | undefined;
|
|
488
|
+
setUTCHours?: {} | null | undefined;
|
|
489
|
+
setDate?: {} | null | undefined;
|
|
490
|
+
setUTCDate?: {} | null | undefined;
|
|
491
|
+
setMonth?: {} | null | undefined;
|
|
492
|
+
setUTCMonth?: {} | null | undefined;
|
|
493
|
+
setFullYear?: {} | null | undefined;
|
|
494
|
+
setUTCFullYear?: {} | null | undefined;
|
|
495
|
+
toUTCString?: {} | null | undefined;
|
|
496
|
+
toISOString?: {} | null | undefined;
|
|
497
|
+
getVarDate?: {} | null | undefined;
|
|
498
|
+
} | null | undefined;
|
|
499
|
+
updatedAt?: {
|
|
500
|
+
toJSON?: {} | null | undefined;
|
|
501
|
+
[Symbol.toPrimitive]?: {} | null | undefined;
|
|
502
|
+
toString?: {} | null | undefined;
|
|
503
|
+
toLocaleString?: {} | null | undefined;
|
|
504
|
+
valueOf?: {} | null | undefined;
|
|
505
|
+
toDateString?: {} | null | undefined;
|
|
506
|
+
toTimeString?: {} | null | undefined;
|
|
507
|
+
toLocaleDateString?: {} | null | undefined;
|
|
508
|
+
toLocaleTimeString?: {} | null | undefined;
|
|
509
|
+
getTime?: {} | null | undefined;
|
|
510
|
+
getFullYear?: {} | null | undefined;
|
|
511
|
+
getUTCFullYear?: {} | null | undefined;
|
|
512
|
+
getMonth?: {} | null | undefined;
|
|
513
|
+
getUTCMonth?: {} | null | undefined;
|
|
514
|
+
getDate?: {} | null | undefined;
|
|
515
|
+
getUTCDate?: {} | null | undefined;
|
|
516
|
+
getDay?: {} | null | undefined;
|
|
517
|
+
getUTCDay?: {} | null | undefined;
|
|
518
|
+
getHours?: {} | null | undefined;
|
|
519
|
+
getUTCHours?: {} | null | undefined;
|
|
520
|
+
getMinutes?: {} | null | undefined;
|
|
521
|
+
getUTCMinutes?: {} | null | undefined;
|
|
522
|
+
getSeconds?: {} | null | undefined;
|
|
523
|
+
getUTCSeconds?: {} | null | undefined;
|
|
524
|
+
getMilliseconds?: {} | null | undefined;
|
|
525
|
+
getUTCMilliseconds?: {} | null | undefined;
|
|
526
|
+
getTimezoneOffset?: {} | null | undefined;
|
|
527
|
+
setTime?: {} | null | undefined;
|
|
528
|
+
setMilliseconds?: {} | null | undefined;
|
|
529
|
+
setUTCMilliseconds?: {} | null | undefined;
|
|
530
|
+
setSeconds?: {} | null | undefined;
|
|
531
|
+
setUTCSeconds?: {} | null | undefined;
|
|
532
|
+
setMinutes?: {} | null | undefined;
|
|
533
|
+
setUTCMinutes?: {} | null | undefined;
|
|
534
|
+
setHours?: {} | null | undefined;
|
|
535
|
+
setUTCHours?: {} | null | undefined;
|
|
536
|
+
setDate?: {} | null | undefined;
|
|
537
|
+
setUTCDate?: {} | null | undefined;
|
|
538
|
+
setMonth?: {} | null | undefined;
|
|
539
|
+
setUTCMonth?: {} | null | undefined;
|
|
540
|
+
setFullYear?: {} | null | undefined;
|
|
541
|
+
setUTCFullYear?: {} | null | undefined;
|
|
542
|
+
toUTCString?: {} | null | undefined;
|
|
543
|
+
toISOString?: {} | null | undefined;
|
|
544
|
+
getVarDate?: {} | null | undefined;
|
|
545
|
+
} | null | undefined;
|
|
352
546
|
tradingSince?: unknown;
|
|
353
547
|
yearEnd?: unknown;
|
|
354
548
|
turnoverYear1?: {
|
|
@@ -385,15 +579,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
385
579
|
select?: {} | null | undefined;
|
|
386
580
|
immutable?: {} | null | undefined;
|
|
387
581
|
transform?: {} | null | undefined;
|
|
582
|
+
options?: {
|
|
583
|
+
[x: string]: unknown;
|
|
584
|
+
} | null | undefined;
|
|
388
585
|
OptionsConstructor?: {
|
|
389
586
|
[x: string]: unknown;
|
|
390
587
|
} | null | undefined;
|
|
391
588
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
392
589
|
instance?: unknown;
|
|
393
590
|
isRequired?: unknown;
|
|
394
|
-
options?: {
|
|
395
|
-
[x: string]: unknown;
|
|
396
|
-
} | null | undefined;
|
|
397
591
|
path?: unknown;
|
|
398
592
|
validateAll?: {} | null | undefined;
|
|
399
593
|
defaultOptions?: unknown;
|
|
@@ -432,15 +626,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
432
626
|
select?: {} | null | undefined;
|
|
433
627
|
immutable?: {} | null | undefined;
|
|
434
628
|
transform?: {} | null | undefined;
|
|
629
|
+
options?: {
|
|
630
|
+
[x: string]: unknown;
|
|
631
|
+
} | null | undefined;
|
|
435
632
|
OptionsConstructor?: {
|
|
436
633
|
[x: string]: unknown;
|
|
437
634
|
} | null | undefined;
|
|
438
635
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
439
636
|
instance?: unknown;
|
|
440
637
|
isRequired?: unknown;
|
|
441
|
-
options?: {
|
|
442
|
-
[x: string]: unknown;
|
|
443
|
-
} | null | undefined;
|
|
444
638
|
path?: unknown;
|
|
445
639
|
validateAll?: {} | null | undefined;
|
|
446
640
|
defaultOptions?: unknown;
|
|
@@ -479,15 +673,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
479
673
|
select?: {} | null | undefined;
|
|
480
674
|
immutable?: {} | null | undefined;
|
|
481
675
|
transform?: {} | null | undefined;
|
|
676
|
+
options?: {
|
|
677
|
+
[x: string]: unknown;
|
|
678
|
+
} | null | undefined;
|
|
482
679
|
OptionsConstructor?: {
|
|
483
680
|
[x: string]: unknown;
|
|
484
681
|
} | null | undefined;
|
|
485
682
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
486
683
|
instance?: unknown;
|
|
487
684
|
isRequired?: unknown;
|
|
488
|
-
options?: {
|
|
489
|
-
[x: string]: unknown;
|
|
490
|
-
} | null | undefined;
|
|
491
685
|
path?: unknown;
|
|
492
686
|
validateAll?: {} | null | undefined;
|
|
493
687
|
defaultOptions?: unknown;
|
|
@@ -526,15 +720,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
526
720
|
select?: {} | null | undefined;
|
|
527
721
|
immutable?: {} | null | undefined;
|
|
528
722
|
transform?: {} | null | undefined;
|
|
723
|
+
options?: {
|
|
724
|
+
[x: string]: unknown;
|
|
725
|
+
} | null | undefined;
|
|
529
726
|
OptionsConstructor?: {
|
|
530
727
|
[x: string]: unknown;
|
|
531
728
|
} | null | undefined;
|
|
532
729
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
533
730
|
instance?: unknown;
|
|
534
731
|
isRequired?: unknown;
|
|
535
|
-
options?: {
|
|
536
|
-
[x: string]: unknown;
|
|
537
|
-
} | null | undefined;
|
|
538
732
|
path?: unknown;
|
|
539
733
|
validateAll?: {} | null | undefined;
|
|
540
734
|
defaultOptions?: unknown;
|
|
@@ -573,15 +767,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
573
767
|
select?: {} | null | undefined;
|
|
574
768
|
immutable?: {} | null | undefined;
|
|
575
769
|
transform?: {} | null | undefined;
|
|
770
|
+
options?: {
|
|
771
|
+
[x: string]: unknown;
|
|
772
|
+
} | null | undefined;
|
|
576
773
|
OptionsConstructor?: {
|
|
577
774
|
[x: string]: unknown;
|
|
578
775
|
} | null | undefined;
|
|
579
776
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
580
777
|
instance?: unknown;
|
|
581
778
|
isRequired?: unknown;
|
|
582
|
-
options?: {
|
|
583
|
-
[x: string]: unknown;
|
|
584
|
-
} | null | undefined;
|
|
585
779
|
path?: unknown;
|
|
586
780
|
validateAll?: {} | null | undefined;
|
|
587
781
|
defaultOptions?: unknown;
|
|
@@ -620,15 +814,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
620
814
|
select?: {} | null | undefined;
|
|
621
815
|
immutable?: {} | null | undefined;
|
|
622
816
|
transform?: {} | null | undefined;
|
|
817
|
+
options?: {
|
|
818
|
+
[x: string]: unknown;
|
|
819
|
+
} | null | undefined;
|
|
623
820
|
OptionsConstructor?: {
|
|
624
821
|
[x: string]: unknown;
|
|
625
822
|
} | null | undefined;
|
|
626
823
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
627
824
|
instance?: unknown;
|
|
628
825
|
isRequired?: unknown;
|
|
629
|
-
options?: {
|
|
630
|
-
[x: string]: unknown;
|
|
631
|
-
} | null | undefined;
|
|
632
826
|
path?: unknown;
|
|
633
827
|
validateAll?: {} | null | undefined;
|
|
634
828
|
defaultOptions?: unknown;
|
|
@@ -667,8 +861,105 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
667
861
|
companyAnyVoluntaryEnforcedPossessionNo?: unknown;
|
|
668
862
|
doYouKnowRegisteredNumber?: unknown;
|
|
669
863
|
}> & {
|
|
864
|
+
createdAt: NativeDate;
|
|
865
|
+
updatedAt: NativeDate;
|
|
866
|
+
} & {
|
|
670
867
|
sicCodes: unknown[];
|
|
671
868
|
applicationId?: unknown;
|
|
869
|
+
createdAt?: {
|
|
870
|
+
toJSON?: {} | null | undefined;
|
|
871
|
+
[Symbol.toPrimitive]?: {} | null | undefined;
|
|
872
|
+
toString?: {} | null | undefined;
|
|
873
|
+
toLocaleString?: {} | null | undefined;
|
|
874
|
+
valueOf?: {} | null | undefined;
|
|
875
|
+
toDateString?: {} | null | undefined;
|
|
876
|
+
toTimeString?: {} | null | undefined;
|
|
877
|
+
toLocaleDateString?: {} | null | undefined;
|
|
878
|
+
toLocaleTimeString?: {} | null | undefined;
|
|
879
|
+
getTime?: {} | null | undefined;
|
|
880
|
+
getFullYear?: {} | null | undefined;
|
|
881
|
+
getUTCFullYear?: {} | null | undefined;
|
|
882
|
+
getMonth?: {} | null | undefined;
|
|
883
|
+
getUTCMonth?: {} | null | undefined;
|
|
884
|
+
getDate?: {} | null | undefined;
|
|
885
|
+
getUTCDate?: {} | null | undefined;
|
|
886
|
+
getDay?: {} | null | undefined;
|
|
887
|
+
getUTCDay?: {} | null | undefined;
|
|
888
|
+
getHours?: {} | null | undefined;
|
|
889
|
+
getUTCHours?: {} | null | undefined;
|
|
890
|
+
getMinutes?: {} | null | undefined;
|
|
891
|
+
getUTCMinutes?: {} | null | undefined;
|
|
892
|
+
getSeconds?: {} | null | undefined;
|
|
893
|
+
getUTCSeconds?: {} | null | undefined;
|
|
894
|
+
getMilliseconds?: {} | null | undefined;
|
|
895
|
+
getUTCMilliseconds?: {} | null | undefined;
|
|
896
|
+
getTimezoneOffset?: {} | null | undefined;
|
|
897
|
+
setTime?: {} | null | undefined;
|
|
898
|
+
setMilliseconds?: {} | null | undefined;
|
|
899
|
+
setUTCMilliseconds?: {} | null | undefined;
|
|
900
|
+
setSeconds?: {} | null | undefined;
|
|
901
|
+
setUTCSeconds?: {} | null | undefined;
|
|
902
|
+
setMinutes?: {} | null | undefined;
|
|
903
|
+
setUTCMinutes?: {} | null | undefined;
|
|
904
|
+
setHours?: {} | null | undefined;
|
|
905
|
+
setUTCHours?: {} | null | undefined;
|
|
906
|
+
setDate?: {} | null | undefined;
|
|
907
|
+
setUTCDate?: {} | null | undefined;
|
|
908
|
+
setMonth?: {} | null | undefined;
|
|
909
|
+
setUTCMonth?: {} | null | undefined;
|
|
910
|
+
setFullYear?: {} | null | undefined;
|
|
911
|
+
setUTCFullYear?: {} | null | undefined;
|
|
912
|
+
toUTCString?: {} | null | undefined;
|
|
913
|
+
toISOString?: {} | null | undefined;
|
|
914
|
+
getVarDate?: {} | null | undefined;
|
|
915
|
+
} | null | undefined;
|
|
916
|
+
updatedAt?: {
|
|
917
|
+
toJSON?: {} | null | undefined;
|
|
918
|
+
[Symbol.toPrimitive]?: {} | null | undefined;
|
|
919
|
+
toString?: {} | null | undefined;
|
|
920
|
+
toLocaleString?: {} | null | undefined;
|
|
921
|
+
valueOf?: {} | null | undefined;
|
|
922
|
+
toDateString?: {} | null | undefined;
|
|
923
|
+
toTimeString?: {} | null | undefined;
|
|
924
|
+
toLocaleDateString?: {} | null | undefined;
|
|
925
|
+
toLocaleTimeString?: {} | null | undefined;
|
|
926
|
+
getTime?: {} | null | undefined;
|
|
927
|
+
getFullYear?: {} | null | undefined;
|
|
928
|
+
getUTCFullYear?: {} | null | undefined;
|
|
929
|
+
getMonth?: {} | null | undefined;
|
|
930
|
+
getUTCMonth?: {} | null | undefined;
|
|
931
|
+
getDate?: {} | null | undefined;
|
|
932
|
+
getUTCDate?: {} | null | undefined;
|
|
933
|
+
getDay?: {} | null | undefined;
|
|
934
|
+
getUTCDay?: {} | null | undefined;
|
|
935
|
+
getHours?: {} | null | undefined;
|
|
936
|
+
getUTCHours?: {} | null | undefined;
|
|
937
|
+
getMinutes?: {} | null | undefined;
|
|
938
|
+
getUTCMinutes?: {} | null | undefined;
|
|
939
|
+
getSeconds?: {} | null | undefined;
|
|
940
|
+
getUTCSeconds?: {} | null | undefined;
|
|
941
|
+
getMilliseconds?: {} | null | undefined;
|
|
942
|
+
getUTCMilliseconds?: {} | null | undefined;
|
|
943
|
+
getTimezoneOffset?: {} | null | undefined;
|
|
944
|
+
setTime?: {} | null | undefined;
|
|
945
|
+
setMilliseconds?: {} | null | undefined;
|
|
946
|
+
setUTCMilliseconds?: {} | null | undefined;
|
|
947
|
+
setSeconds?: {} | null | undefined;
|
|
948
|
+
setUTCSeconds?: {} | null | undefined;
|
|
949
|
+
setMinutes?: {} | null | undefined;
|
|
950
|
+
setUTCMinutes?: {} | null | undefined;
|
|
951
|
+
setHours?: {} | null | undefined;
|
|
952
|
+
setUTCHours?: {} | null | undefined;
|
|
953
|
+
setDate?: {} | null | undefined;
|
|
954
|
+
setUTCDate?: {} | null | undefined;
|
|
955
|
+
setMonth?: {} | null | undefined;
|
|
956
|
+
setUTCMonth?: {} | null | undefined;
|
|
957
|
+
setFullYear?: {} | null | undefined;
|
|
958
|
+
setUTCFullYear?: {} | null | undefined;
|
|
959
|
+
toUTCString?: {} | null | undefined;
|
|
960
|
+
toISOString?: {} | null | undefined;
|
|
961
|
+
getVarDate?: {} | null | undefined;
|
|
962
|
+
} | null | undefined;
|
|
672
963
|
tradingSince?: unknown;
|
|
673
964
|
yearEnd?: unknown;
|
|
674
965
|
turnoverYear1?: {
|
|
@@ -705,15 +996,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
705
996
|
select?: {} | null | undefined;
|
|
706
997
|
immutable?: {} | null | undefined;
|
|
707
998
|
transform?: {} | null | undefined;
|
|
999
|
+
options?: {
|
|
1000
|
+
[x: string]: unknown;
|
|
1001
|
+
} | null | undefined;
|
|
708
1002
|
OptionsConstructor?: {
|
|
709
1003
|
[x: string]: unknown;
|
|
710
1004
|
} | null | undefined;
|
|
711
1005
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
712
1006
|
instance?: unknown;
|
|
713
1007
|
isRequired?: unknown;
|
|
714
|
-
options?: {
|
|
715
|
-
[x: string]: unknown;
|
|
716
|
-
} | null | undefined;
|
|
717
1008
|
path?: unknown;
|
|
718
1009
|
validateAll?: {} | null | undefined;
|
|
719
1010
|
defaultOptions?: unknown;
|
|
@@ -752,15 +1043,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
752
1043
|
select?: {} | null | undefined;
|
|
753
1044
|
immutable?: {} | null | undefined;
|
|
754
1045
|
transform?: {} | null | undefined;
|
|
1046
|
+
options?: {
|
|
1047
|
+
[x: string]: unknown;
|
|
1048
|
+
} | null | undefined;
|
|
755
1049
|
OptionsConstructor?: {
|
|
756
1050
|
[x: string]: unknown;
|
|
757
1051
|
} | null | undefined;
|
|
758
1052
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
759
1053
|
instance?: unknown;
|
|
760
1054
|
isRequired?: unknown;
|
|
761
|
-
options?: {
|
|
762
|
-
[x: string]: unknown;
|
|
763
|
-
} | null | undefined;
|
|
764
1055
|
path?: unknown;
|
|
765
1056
|
validateAll?: {} | null | undefined;
|
|
766
1057
|
defaultOptions?: unknown;
|
|
@@ -799,15 +1090,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
799
1090
|
select?: {} | null | undefined;
|
|
800
1091
|
immutable?: {} | null | undefined;
|
|
801
1092
|
transform?: {} | null | undefined;
|
|
1093
|
+
options?: {
|
|
1094
|
+
[x: string]: unknown;
|
|
1095
|
+
} | null | undefined;
|
|
802
1096
|
OptionsConstructor?: {
|
|
803
1097
|
[x: string]: unknown;
|
|
804
1098
|
} | null | undefined;
|
|
805
1099
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
806
1100
|
instance?: unknown;
|
|
807
1101
|
isRequired?: unknown;
|
|
808
|
-
options?: {
|
|
809
|
-
[x: string]: unknown;
|
|
810
|
-
} | null | undefined;
|
|
811
1102
|
path?: unknown;
|
|
812
1103
|
validateAll?: {} | null | undefined;
|
|
813
1104
|
defaultOptions?: unknown;
|
|
@@ -846,15 +1137,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
846
1137
|
select?: {} | null | undefined;
|
|
847
1138
|
immutable?: {} | null | undefined;
|
|
848
1139
|
transform?: {} | null | undefined;
|
|
1140
|
+
options?: {
|
|
1141
|
+
[x: string]: unknown;
|
|
1142
|
+
} | null | undefined;
|
|
849
1143
|
OptionsConstructor?: {
|
|
850
1144
|
[x: string]: unknown;
|
|
851
1145
|
} | null | undefined;
|
|
852
1146
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
853
1147
|
instance?: unknown;
|
|
854
1148
|
isRequired?: unknown;
|
|
855
|
-
options?: {
|
|
856
|
-
[x: string]: unknown;
|
|
857
|
-
} | null | undefined;
|
|
858
1149
|
path?: unknown;
|
|
859
1150
|
validateAll?: {} | null | undefined;
|
|
860
1151
|
defaultOptions?: unknown;
|
|
@@ -893,15 +1184,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
893
1184
|
select?: {} | null | undefined;
|
|
894
1185
|
immutable?: {} | null | undefined;
|
|
895
1186
|
transform?: {} | null | undefined;
|
|
1187
|
+
options?: {
|
|
1188
|
+
[x: string]: unknown;
|
|
1189
|
+
} | null | undefined;
|
|
896
1190
|
OptionsConstructor?: {
|
|
897
1191
|
[x: string]: unknown;
|
|
898
1192
|
} | null | undefined;
|
|
899
1193
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
900
1194
|
instance?: unknown;
|
|
901
1195
|
isRequired?: unknown;
|
|
902
|
-
options?: {
|
|
903
|
-
[x: string]: unknown;
|
|
904
|
-
} | null | undefined;
|
|
905
1196
|
path?: unknown;
|
|
906
1197
|
validateAll?: {} | null | undefined;
|
|
907
1198
|
defaultOptions?: unknown;
|
|
@@ -940,15 +1231,15 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
940
1231
|
select?: {} | null | undefined;
|
|
941
1232
|
immutable?: {} | null | undefined;
|
|
942
1233
|
transform?: {} | null | undefined;
|
|
1234
|
+
options?: {
|
|
1235
|
+
[x: string]: unknown;
|
|
1236
|
+
} | null | undefined;
|
|
943
1237
|
OptionsConstructor?: {
|
|
944
1238
|
[x: string]: unknown;
|
|
945
1239
|
} | null | undefined;
|
|
946
1240
|
getEmbeddedSchemaType?: {} | null | undefined;
|
|
947
1241
|
instance?: unknown;
|
|
948
1242
|
isRequired?: unknown;
|
|
949
|
-
options?: {
|
|
950
|
-
[x: string]: unknown;
|
|
951
|
-
} | null | undefined;
|
|
952
1243
|
path?: unknown;
|
|
953
1244
|
validateAll?: {} | null | undefined;
|
|
954
1245
|
defaultOptions?: unknown;
|
|
@@ -990,7 +1281,20 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
990
1281
|
_id: mongoose.Types.ObjectId;
|
|
991
1282
|
} & {
|
|
992
1283
|
__v: number;
|
|
993
|
-
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {},
|
|
1284
|
+
}, mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
1285
|
+
timestamps: true;
|
|
1286
|
+
toJSON: {
|
|
1287
|
+
virtuals: true;
|
|
1288
|
+
getters: true;
|
|
1289
|
+
};
|
|
1290
|
+
toObject: {
|
|
1291
|
+
virtuals: true;
|
|
1292
|
+
getters: true;
|
|
1293
|
+
};
|
|
1294
|
+
}, {
|
|
1295
|
+
createdAt: NativeDate;
|
|
1296
|
+
updatedAt: NativeDate;
|
|
1297
|
+
} & {
|
|
994
1298
|
tradingSince: string;
|
|
995
1299
|
yearEnd: string;
|
|
996
1300
|
turnoverYear1: Pound;
|
|
@@ -1035,6 +1339,9 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
1035
1339
|
companyAnyVoluntaryEnforcedPossessionNo?: unknown;
|
|
1036
1340
|
doYouKnowRegisteredNumber?: unknown;
|
|
1037
1341
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
1342
|
+
createdAt: NativeDate;
|
|
1343
|
+
updatedAt: NativeDate;
|
|
1344
|
+
} & {
|
|
1038
1345
|
tradingSince: string;
|
|
1039
1346
|
yearEnd: string;
|
|
1040
1347
|
turnoverYear1: Pound;
|
|
@@ -1079,6 +1386,9 @@ declare const ApplicationCompanyModel: mongoose.Model<{
|
|
|
1079
1386
|
companyAnyVoluntaryEnforcedPossessionNo?: unknown;
|
|
1080
1387
|
doYouKnowRegisteredNumber?: unknown;
|
|
1081
1388
|
}>> & mongoose.FlatRecord<{
|
|
1389
|
+
createdAt: NativeDate;
|
|
1390
|
+
updatedAt: NativeDate;
|
|
1391
|
+
} & {
|
|
1082
1392
|
tradingSince: string;
|
|
1083
1393
|
yearEnd: string;
|
|
1084
1394
|
turnoverYear1: Pound;
|
|
@@ -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;AAsLhD,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAsD,CAAC;AACpF,eAAe,uBAAuB,CAAC"}
|