@next-degree/pickle-shared-js 0.7.51 → 0.7.52
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/components/jobPost/JobPost.d.cts +1 -1
- package/dist/components/jobPost/JobPost.d.ts +1 -1
- package/dist/components/primitives/command.d.cts +2 -2
- package/dist/components/primitives/command.d.ts +2 -2
- package/dist/components/primitives/input-otp.d.cts +2 -2
- package/dist/components/primitives/input-otp.d.ts +2 -2
- package/dist/components/ui/buttonShadcn.d.cts +1 -1
- package/dist/components/ui/buttonShadcn.d.ts +1 -1
- package/dist/{displayText-CQRZ2fOT.d.cts → displayText-6TMMBOmQ.d.cts} +2 -2
- package/dist/{displayText-LlsLfkTS.d.ts → displayText-BCC_oy5I.d.ts} +2 -2
- package/dist/hooks/useDisplayText.d.cts +3 -3
- package/dist/hooks/useDisplayText.d.ts +3 -3
- package/dist/index.cjs +284 -96
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +255 -68
- package/dist/index.js.map +1 -1
- package/dist/lib/locations.d.cts +2 -2
- package/dist/lib/locations.d.ts +2 -2
- package/dist/lib/mappings.d.cts +3 -3
- package/dist/lib/mappings.d.ts +3 -3
- package/dist/lib/salaryRange.d.cts +1 -1
- package/dist/lib/salaryRange.d.ts +1 -1
- package/dist/services/displayText.d.cts +3 -3
- package/dist/services/displayText.d.ts +3 -3
- package/dist/types/data/company_service_latest.d.cts +1 -1
- package/dist/types/data/company_service_latest.d.ts +1 -1
- package/dist/types/data/job_posting_service_latest.d.cts +1 -1
- package/dist/types/data/job_posting_service_latest.d.ts +1 -1
- package/dist/types/data/shared_pickle_output_latest.d.cts +1 -1
- package/dist/types/data/shared_pickle_output_latest.d.ts +1 -1
- package/package.json +1 -1
- package/dist/{company_service_latest-8IMr2hMZ.d.cts → company_service_latest-BUKbZgpZ.d.cts} +229 -229
- package/dist/{company_service_latest-8IMr2hMZ.d.ts → company_service_latest-BUKbZgpZ.d.ts} +229 -229
- package/dist/{job_posting_service_latest-CKITrYyz.d.cts → job_posting_service_latest-2KcpupDl.d.cts} +209 -209
- package/dist/{job_posting_service_latest-CKITrYyz.d.ts → job_posting_service_latest-2KcpupDl.d.ts} +209 -209
- package/dist/{shared_pickle_output_latest-Cwf2EMdH.d.cts → shared_pickle_output_latest-D2n-PRlx.d.cts} +17 -17
- package/dist/{shared_pickle_output_latest-Cwf2EMdH.d.ts → shared_pickle_output_latest-D2n-PRlx.d.ts} +17 -17
package/dist/{company_service_latest-8IMr2hMZ.d.cts → company_service_latest-BUKbZgpZ.d.cts}
RENAMED
|
@@ -26,14 +26,14 @@ declare const companyBenefitsSchema: z.ZodObject<{
|
|
|
26
26
|
description: z.ZodOptional<z.ZodString>;
|
|
27
27
|
category: z.ZodEnum<["FINANCIAL", "HEALTH", "PROFESSIONAL_DEVELOPMENT", "WORK_LIFE_BALANCE"]>;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
|
-
title: string;
|
|
30
29
|
type: string;
|
|
31
30
|
version: "1.0.0";
|
|
31
|
+
title: string;
|
|
32
32
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
33
33
|
description?: string | undefined;
|
|
34
34
|
}, {
|
|
35
|
-
title: string;
|
|
36
35
|
type: string;
|
|
36
|
+
title: string;
|
|
37
37
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
38
38
|
version?: "1.0.0" | undefined;
|
|
39
39
|
description?: string | undefined;
|
|
@@ -66,10 +66,10 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
66
66
|
url: z.ZodOptional<z.ZodString>;
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
68
|
version: "1.0.0";
|
|
69
|
-
label?: string | undefined;
|
|
70
|
-
title?: string | undefined;
|
|
71
69
|
path?: string | undefined;
|
|
72
70
|
size?: number | undefined;
|
|
71
|
+
label?: string | undefined;
|
|
72
|
+
title?: string | undefined;
|
|
73
73
|
url?: string | undefined;
|
|
74
74
|
description?: string | undefined;
|
|
75
75
|
altText?: string | undefined;
|
|
@@ -80,11 +80,11 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
80
80
|
sha1Hash?: string | undefined;
|
|
81
81
|
uploadId?: string | undefined;
|
|
82
82
|
}, {
|
|
83
|
-
label?: string | undefined;
|
|
84
|
-
title?: string | undefined;
|
|
85
83
|
path?: string | undefined;
|
|
86
84
|
version?: "1.0.0" | undefined;
|
|
87
85
|
size?: number | undefined;
|
|
86
|
+
label?: string | undefined;
|
|
87
|
+
title?: string | undefined;
|
|
88
88
|
url?: string | undefined;
|
|
89
89
|
description?: string | undefined;
|
|
90
90
|
altText?: string | undefined;
|
|
@@ -100,10 +100,10 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
100
100
|
version: "1.0.0";
|
|
101
101
|
asset?: {
|
|
102
102
|
version: "1.0.0";
|
|
103
|
-
label?: string | undefined;
|
|
104
|
-
title?: string | undefined;
|
|
105
103
|
path?: string | undefined;
|
|
106
104
|
size?: number | undefined;
|
|
105
|
+
label?: string | undefined;
|
|
106
|
+
title?: string | undefined;
|
|
107
107
|
url?: string | undefined;
|
|
108
108
|
description?: string | undefined;
|
|
109
109
|
altText?: string | undefined;
|
|
@@ -118,11 +118,11 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
118
118
|
type: string;
|
|
119
119
|
version?: "1.0.0" | undefined;
|
|
120
120
|
asset?: {
|
|
121
|
-
label?: string | undefined;
|
|
122
|
-
title?: string | undefined;
|
|
123
121
|
path?: string | undefined;
|
|
124
122
|
version?: "1.0.0" | undefined;
|
|
125
123
|
size?: number | undefined;
|
|
124
|
+
label?: string | undefined;
|
|
125
|
+
title?: string | undefined;
|
|
126
126
|
url?: string | undefined;
|
|
127
127
|
description?: string | undefined;
|
|
128
128
|
altText?: string | undefined;
|
|
@@ -145,10 +145,10 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
145
145
|
version: "1.0.0";
|
|
146
146
|
asset?: {
|
|
147
147
|
version: "1.0.0";
|
|
148
|
-
label?: string | undefined;
|
|
149
|
-
title?: string | undefined;
|
|
150
148
|
path?: string | undefined;
|
|
151
149
|
size?: number | undefined;
|
|
150
|
+
label?: string | undefined;
|
|
151
|
+
title?: string | undefined;
|
|
152
152
|
url?: string | undefined;
|
|
153
153
|
description?: string | undefined;
|
|
154
154
|
altText?: string | undefined;
|
|
@@ -170,11 +170,11 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
170
170
|
type: string;
|
|
171
171
|
version?: "1.0.0" | undefined;
|
|
172
172
|
asset?: {
|
|
173
|
-
label?: string | undefined;
|
|
174
|
-
title?: string | undefined;
|
|
175
173
|
path?: string | undefined;
|
|
176
174
|
version?: "1.0.0" | undefined;
|
|
177
175
|
size?: number | undefined;
|
|
176
|
+
label?: string | undefined;
|
|
177
|
+
title?: string | undefined;
|
|
178
178
|
url?: string | undefined;
|
|
179
179
|
description?: string | undefined;
|
|
180
180
|
altText?: string | undefined;
|
|
@@ -220,10 +220,10 @@ declare const personSchema: z.ZodObject<{
|
|
|
220
220
|
url: z.ZodOptional<z.ZodString>;
|
|
221
221
|
}, "strip", z.ZodTypeAny, {
|
|
222
222
|
version: "1.0.0";
|
|
223
|
-
label?: string | undefined;
|
|
224
|
-
title?: string | undefined;
|
|
225
223
|
path?: string | undefined;
|
|
226
224
|
size?: number | undefined;
|
|
225
|
+
label?: string | undefined;
|
|
226
|
+
title?: string | undefined;
|
|
227
227
|
url?: string | undefined;
|
|
228
228
|
description?: string | undefined;
|
|
229
229
|
altText?: string | undefined;
|
|
@@ -234,11 +234,11 @@ declare const personSchema: z.ZodObject<{
|
|
|
234
234
|
sha1Hash?: string | undefined;
|
|
235
235
|
uploadId?: string | undefined;
|
|
236
236
|
}, {
|
|
237
|
-
label?: string | undefined;
|
|
238
|
-
title?: string | undefined;
|
|
239
237
|
path?: string | undefined;
|
|
240
238
|
version?: "1.0.0" | undefined;
|
|
241
239
|
size?: number | undefined;
|
|
240
|
+
label?: string | undefined;
|
|
241
|
+
title?: string | undefined;
|
|
242
242
|
url?: string | undefined;
|
|
243
243
|
description?: string | undefined;
|
|
244
244
|
altText?: string | undefined;
|
|
@@ -254,10 +254,10 @@ declare const personSchema: z.ZodObject<{
|
|
|
254
254
|
version: "1.0.0";
|
|
255
255
|
asset?: {
|
|
256
256
|
version: "1.0.0";
|
|
257
|
-
label?: string | undefined;
|
|
258
|
-
title?: string | undefined;
|
|
259
257
|
path?: string | undefined;
|
|
260
258
|
size?: number | undefined;
|
|
259
|
+
label?: string | undefined;
|
|
260
|
+
title?: string | undefined;
|
|
261
261
|
url?: string | undefined;
|
|
262
262
|
description?: string | undefined;
|
|
263
263
|
altText?: string | undefined;
|
|
@@ -272,11 +272,11 @@ declare const personSchema: z.ZodObject<{
|
|
|
272
272
|
type: string;
|
|
273
273
|
version?: "1.0.0" | undefined;
|
|
274
274
|
asset?: {
|
|
275
|
-
label?: string | undefined;
|
|
276
|
-
title?: string | undefined;
|
|
277
275
|
path?: string | undefined;
|
|
278
276
|
version?: "1.0.0" | undefined;
|
|
279
277
|
size?: number | undefined;
|
|
278
|
+
label?: string | undefined;
|
|
279
|
+
title?: string | undefined;
|
|
280
280
|
url?: string | undefined;
|
|
281
281
|
description?: string | undefined;
|
|
282
282
|
altText?: string | undefined;
|
|
@@ -357,6 +357,7 @@ declare const personSchema: z.ZodObject<{
|
|
|
357
357
|
latitude?: number | undefined;
|
|
358
358
|
longitude?: number | undefined;
|
|
359
359
|
}, {
|
|
360
|
+
version?: "1.0.0" | undefined;
|
|
360
361
|
address?: {
|
|
361
362
|
type: string;
|
|
362
363
|
addressCountry: string;
|
|
@@ -368,7 +369,6 @@ declare const personSchema: z.ZodObject<{
|
|
|
368
369
|
streetNumber?: string | undefined;
|
|
369
370
|
postalCode?: string | undefined;
|
|
370
371
|
} | undefined;
|
|
371
|
-
version?: "1.0.0" | undefined;
|
|
372
372
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
373
373
|
latitude?: number | undefined;
|
|
374
374
|
longitude?: number | undefined;
|
|
@@ -402,10 +402,10 @@ declare const personSchema: z.ZodObject<{
|
|
|
402
402
|
version: "1.0.0";
|
|
403
403
|
asset?: {
|
|
404
404
|
version: "1.0.0";
|
|
405
|
-
label?: string | undefined;
|
|
406
|
-
title?: string | undefined;
|
|
407
405
|
path?: string | undefined;
|
|
408
406
|
size?: number | undefined;
|
|
407
|
+
label?: string | undefined;
|
|
408
|
+
title?: string | undefined;
|
|
409
409
|
url?: string | undefined;
|
|
410
410
|
description?: string | undefined;
|
|
411
411
|
altText?: string | undefined;
|
|
@@ -434,7 +434,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
434
434
|
firstName: string;
|
|
435
435
|
lastName: string;
|
|
436
436
|
slug: string;
|
|
437
|
+
version?: "1.0.0" | undefined;
|
|
437
438
|
address?: {
|
|
439
|
+
version?: "1.0.0" | undefined;
|
|
438
440
|
address?: {
|
|
439
441
|
type: string;
|
|
440
442
|
addressCountry: string;
|
|
@@ -446,7 +448,6 @@ declare const personSchema: z.ZodObject<{
|
|
|
446
448
|
streetNumber?: string | undefined;
|
|
447
449
|
postalCode?: string | undefined;
|
|
448
450
|
} | undefined;
|
|
449
|
-
version?: "1.0.0" | undefined;
|
|
450
451
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
451
452
|
latitude?: number | undefined;
|
|
452
453
|
longitude?: number | undefined;
|
|
@@ -456,11 +457,11 @@ declare const personSchema: z.ZodObject<{
|
|
|
456
457
|
type: string;
|
|
457
458
|
version?: "1.0.0" | undefined;
|
|
458
459
|
asset?: {
|
|
459
|
-
label?: string | undefined;
|
|
460
|
-
title?: string | undefined;
|
|
461
460
|
path?: string | undefined;
|
|
462
461
|
version?: "1.0.0" | undefined;
|
|
463
462
|
size?: number | undefined;
|
|
463
|
+
label?: string | undefined;
|
|
464
|
+
title?: string | undefined;
|
|
464
465
|
url?: string | undefined;
|
|
465
466
|
description?: string | undefined;
|
|
466
467
|
altText?: string | undefined;
|
|
@@ -472,7 +473,6 @@ declare const personSchema: z.ZodObject<{
|
|
|
472
473
|
uploadId?: string | undefined;
|
|
473
474
|
} | undefined;
|
|
474
475
|
} | undefined;
|
|
475
|
-
version?: "1.0.0" | undefined;
|
|
476
476
|
url?: string | undefined;
|
|
477
477
|
email?: string | undefined;
|
|
478
478
|
jobTitle?: string | undefined;
|
|
@@ -516,10 +516,10 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
516
516
|
url: z.ZodOptional<z.ZodString>;
|
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
|
518
518
|
version: "1.0.0";
|
|
519
|
-
label?: string | undefined;
|
|
520
|
-
title?: string | undefined;
|
|
521
519
|
path?: string | undefined;
|
|
522
520
|
size?: number | undefined;
|
|
521
|
+
label?: string | undefined;
|
|
522
|
+
title?: string | undefined;
|
|
523
523
|
url?: string | undefined;
|
|
524
524
|
description?: string | undefined;
|
|
525
525
|
altText?: string | undefined;
|
|
@@ -530,11 +530,11 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
530
530
|
sha1Hash?: string | undefined;
|
|
531
531
|
uploadId?: string | undefined;
|
|
532
532
|
}, {
|
|
533
|
-
label?: string | undefined;
|
|
534
|
-
title?: string | undefined;
|
|
535
533
|
path?: string | undefined;
|
|
536
534
|
version?: "1.0.0" | undefined;
|
|
537
535
|
size?: number | undefined;
|
|
536
|
+
label?: string | undefined;
|
|
537
|
+
title?: string | undefined;
|
|
538
538
|
url?: string | undefined;
|
|
539
539
|
description?: string | undefined;
|
|
540
540
|
altText?: string | undefined;
|
|
@@ -550,10 +550,10 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
550
550
|
version: "1.0.0";
|
|
551
551
|
asset?: {
|
|
552
552
|
version: "1.0.0";
|
|
553
|
-
label?: string | undefined;
|
|
554
|
-
title?: string | undefined;
|
|
555
553
|
path?: string | undefined;
|
|
556
554
|
size?: number | undefined;
|
|
555
|
+
label?: string | undefined;
|
|
556
|
+
title?: string | undefined;
|
|
557
557
|
url?: string | undefined;
|
|
558
558
|
description?: string | undefined;
|
|
559
559
|
altText?: string | undefined;
|
|
@@ -568,11 +568,11 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
568
568
|
type: string;
|
|
569
569
|
version?: "1.0.0" | undefined;
|
|
570
570
|
asset?: {
|
|
571
|
-
label?: string | undefined;
|
|
572
|
-
title?: string | undefined;
|
|
573
571
|
path?: string | undefined;
|
|
574
572
|
version?: "1.0.0" | undefined;
|
|
575
573
|
size?: number | undefined;
|
|
574
|
+
label?: string | undefined;
|
|
575
|
+
title?: string | undefined;
|
|
576
576
|
url?: string | undefined;
|
|
577
577
|
description?: string | undefined;
|
|
578
578
|
altText?: string | undefined;
|
|
@@ -595,10 +595,10 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
595
595
|
version: "1.0.0";
|
|
596
596
|
asset?: {
|
|
597
597
|
version: "1.0.0";
|
|
598
|
-
label?: string | undefined;
|
|
599
|
-
title?: string | undefined;
|
|
600
598
|
path?: string | undefined;
|
|
601
599
|
size?: number | undefined;
|
|
600
|
+
label?: string | undefined;
|
|
601
|
+
title?: string | undefined;
|
|
602
602
|
url?: string | undefined;
|
|
603
603
|
description?: string | undefined;
|
|
604
604
|
altText?: string | undefined;
|
|
@@ -620,11 +620,11 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
620
620
|
type: string;
|
|
621
621
|
version?: "1.0.0" | undefined;
|
|
622
622
|
asset?: {
|
|
623
|
-
label?: string | undefined;
|
|
624
|
-
title?: string | undefined;
|
|
625
623
|
path?: string | undefined;
|
|
626
624
|
version?: "1.0.0" | undefined;
|
|
627
625
|
size?: number | undefined;
|
|
626
|
+
label?: string | undefined;
|
|
627
|
+
title?: string | undefined;
|
|
628
628
|
url?: string | undefined;
|
|
629
629
|
description?: string | undefined;
|
|
630
630
|
altText?: string | undefined;
|
|
@@ -646,14 +646,14 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
646
646
|
description: z.ZodOptional<z.ZodString>;
|
|
647
647
|
category: z.ZodEnum<["FINANCIAL", "HEALTH", "PROFESSIONAL_DEVELOPMENT", "WORK_LIFE_BALANCE"]>;
|
|
648
648
|
}, "strip", z.ZodTypeAny, {
|
|
649
|
-
title: string;
|
|
650
649
|
type: string;
|
|
651
650
|
version: "1.0.0";
|
|
651
|
+
title: string;
|
|
652
652
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
653
653
|
description?: string | undefined;
|
|
654
654
|
}, {
|
|
655
|
-
title: string;
|
|
656
655
|
type: string;
|
|
656
|
+
title: string;
|
|
657
657
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
658
658
|
version?: "1.0.0" | undefined;
|
|
659
659
|
description?: string | undefined;
|
|
@@ -672,10 +672,10 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
672
672
|
version: "1.0.0";
|
|
673
673
|
asset?: {
|
|
674
674
|
version: "1.0.0";
|
|
675
|
-
label?: string | undefined;
|
|
676
|
-
title?: string | undefined;
|
|
677
675
|
path?: string | undefined;
|
|
678
676
|
size?: number | undefined;
|
|
677
|
+
label?: string | undefined;
|
|
678
|
+
title?: string | undefined;
|
|
679
679
|
url?: string | undefined;
|
|
680
680
|
description?: string | undefined;
|
|
681
681
|
altText?: string | undefined;
|
|
@@ -691,9 +691,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
691
691
|
} | undefined;
|
|
692
692
|
jobBoardSlug?: string[] | undefined;
|
|
693
693
|
companyBenefits?: {
|
|
694
|
-
title: string;
|
|
695
694
|
type: string;
|
|
696
695
|
version: "1.0.0";
|
|
696
|
+
title: string;
|
|
697
697
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
698
698
|
description?: string | undefined;
|
|
699
699
|
}[] | undefined;
|
|
@@ -710,11 +710,11 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
710
710
|
type: string;
|
|
711
711
|
version?: "1.0.0" | undefined;
|
|
712
712
|
asset?: {
|
|
713
|
-
label?: string | undefined;
|
|
714
|
-
title?: string | undefined;
|
|
715
713
|
path?: string | undefined;
|
|
716
714
|
version?: "1.0.0" | undefined;
|
|
717
715
|
size?: number | undefined;
|
|
716
|
+
label?: string | undefined;
|
|
717
|
+
title?: string | undefined;
|
|
718
718
|
url?: string | undefined;
|
|
719
719
|
description?: string | undefined;
|
|
720
720
|
altText?: string | undefined;
|
|
@@ -730,8 +730,8 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
730
730
|
} | undefined;
|
|
731
731
|
jobBoardSlug?: string[] | undefined;
|
|
732
732
|
companyBenefits?: {
|
|
733
|
-
title: string;
|
|
734
733
|
type: string;
|
|
734
|
+
title: string;
|
|
735
735
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
736
736
|
version?: "1.0.0" | undefined;
|
|
737
737
|
description?: string | undefined;
|
|
@@ -818,10 +818,10 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
818
818
|
url: z.ZodOptional<z.ZodString>;
|
|
819
819
|
}, "strip", z.ZodTypeAny, {
|
|
820
820
|
version: "1.0.0";
|
|
821
|
-
label?: string | undefined;
|
|
822
|
-
title?: string | undefined;
|
|
823
821
|
path?: string | undefined;
|
|
824
822
|
size?: number | undefined;
|
|
823
|
+
label?: string | undefined;
|
|
824
|
+
title?: string | undefined;
|
|
825
825
|
url?: string | undefined;
|
|
826
826
|
description?: string | undefined;
|
|
827
827
|
altText?: string | undefined;
|
|
@@ -832,11 +832,11 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
832
832
|
sha1Hash?: string | undefined;
|
|
833
833
|
uploadId?: string | undefined;
|
|
834
834
|
}, {
|
|
835
|
-
label?: string | undefined;
|
|
836
|
-
title?: string | undefined;
|
|
837
835
|
path?: string | undefined;
|
|
838
836
|
version?: "1.0.0" | undefined;
|
|
839
837
|
size?: number | undefined;
|
|
838
|
+
label?: string | undefined;
|
|
839
|
+
title?: string | undefined;
|
|
840
840
|
url?: string | undefined;
|
|
841
841
|
description?: string | undefined;
|
|
842
842
|
altText?: string | undefined;
|
|
@@ -852,10 +852,10 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
852
852
|
version: "1.0.0";
|
|
853
853
|
asset?: {
|
|
854
854
|
version: "1.0.0";
|
|
855
|
-
label?: string | undefined;
|
|
856
|
-
title?: string | undefined;
|
|
857
855
|
path?: string | undefined;
|
|
858
856
|
size?: number | undefined;
|
|
857
|
+
label?: string | undefined;
|
|
858
|
+
title?: string | undefined;
|
|
859
859
|
url?: string | undefined;
|
|
860
860
|
description?: string | undefined;
|
|
861
861
|
altText?: string | undefined;
|
|
@@ -870,11 +870,11 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
870
870
|
type: string;
|
|
871
871
|
version?: "1.0.0" | undefined;
|
|
872
872
|
asset?: {
|
|
873
|
-
label?: string | undefined;
|
|
874
|
-
title?: string | undefined;
|
|
875
873
|
path?: string | undefined;
|
|
876
874
|
version?: "1.0.0" | undefined;
|
|
877
875
|
size?: number | undefined;
|
|
876
|
+
label?: string | undefined;
|
|
877
|
+
title?: string | undefined;
|
|
878
878
|
url?: string | undefined;
|
|
879
879
|
description?: string | undefined;
|
|
880
880
|
altText?: string | undefined;
|
|
@@ -955,6 +955,7 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
955
955
|
latitude?: number | undefined;
|
|
956
956
|
longitude?: number | undefined;
|
|
957
957
|
}, {
|
|
958
|
+
version?: "1.0.0" | undefined;
|
|
958
959
|
address?: {
|
|
959
960
|
type: string;
|
|
960
961
|
addressCountry: string;
|
|
@@ -966,7 +967,6 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
966
967
|
streetNumber?: string | undefined;
|
|
967
968
|
postalCode?: string | undefined;
|
|
968
969
|
} | undefined;
|
|
969
|
-
version?: "1.0.0" | undefined;
|
|
970
970
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
971
971
|
latitude?: number | undefined;
|
|
972
972
|
longitude?: number | undefined;
|
|
@@ -1000,10 +1000,10 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1000
1000
|
version: "1.0.0";
|
|
1001
1001
|
asset?: {
|
|
1002
1002
|
version: "1.0.0";
|
|
1003
|
-
label?: string | undefined;
|
|
1004
|
-
title?: string | undefined;
|
|
1005
1003
|
path?: string | undefined;
|
|
1006
1004
|
size?: number | undefined;
|
|
1005
|
+
label?: string | undefined;
|
|
1006
|
+
title?: string | undefined;
|
|
1007
1007
|
url?: string | undefined;
|
|
1008
1008
|
description?: string | undefined;
|
|
1009
1009
|
altText?: string | undefined;
|
|
@@ -1032,7 +1032,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1032
1032
|
firstName: string;
|
|
1033
1033
|
lastName: string;
|
|
1034
1034
|
slug: string;
|
|
1035
|
+
version?: "1.0.0" | undefined;
|
|
1035
1036
|
address?: {
|
|
1037
|
+
version?: "1.0.0" | undefined;
|
|
1036
1038
|
address?: {
|
|
1037
1039
|
type: string;
|
|
1038
1040
|
addressCountry: string;
|
|
@@ -1044,7 +1046,6 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1044
1046
|
streetNumber?: string | undefined;
|
|
1045
1047
|
postalCode?: string | undefined;
|
|
1046
1048
|
} | undefined;
|
|
1047
|
-
version?: "1.0.0" | undefined;
|
|
1048
1049
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
1049
1050
|
latitude?: number | undefined;
|
|
1050
1051
|
longitude?: number | undefined;
|
|
@@ -1054,11 +1055,11 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1054
1055
|
type: string;
|
|
1055
1056
|
version?: "1.0.0" | undefined;
|
|
1056
1057
|
asset?: {
|
|
1057
|
-
label?: string | undefined;
|
|
1058
|
-
title?: string | undefined;
|
|
1059
1058
|
path?: string | undefined;
|
|
1060
1059
|
version?: "1.0.0" | undefined;
|
|
1061
1060
|
size?: number | undefined;
|
|
1061
|
+
label?: string | undefined;
|
|
1062
|
+
title?: string | undefined;
|
|
1062
1063
|
url?: string | undefined;
|
|
1063
1064
|
description?: string | undefined;
|
|
1064
1065
|
altText?: string | undefined;
|
|
@@ -1070,7 +1071,6 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1070
1071
|
uploadId?: string | undefined;
|
|
1071
1072
|
} | undefined;
|
|
1072
1073
|
} | undefined;
|
|
1073
|
-
version?: "1.0.0" | undefined;
|
|
1074
1074
|
url?: string | undefined;
|
|
1075
1075
|
email?: string | undefined;
|
|
1076
1076
|
jobTitle?: string | undefined;
|
|
@@ -1119,10 +1119,10 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1119
1119
|
version: "1.0.0";
|
|
1120
1120
|
asset?: {
|
|
1121
1121
|
version: "1.0.0";
|
|
1122
|
-
label?: string | undefined;
|
|
1123
|
-
title?: string | undefined;
|
|
1124
1122
|
path?: string | undefined;
|
|
1125
1123
|
size?: number | undefined;
|
|
1124
|
+
label?: string | undefined;
|
|
1125
|
+
title?: string | undefined;
|
|
1126
1126
|
url?: string | undefined;
|
|
1127
1127
|
description?: string | undefined;
|
|
1128
1128
|
altText?: string | undefined;
|
|
@@ -1158,7 +1158,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1158
1158
|
firstName: string;
|
|
1159
1159
|
lastName: string;
|
|
1160
1160
|
slug: string;
|
|
1161
|
+
version?: "1.0.0" | undefined;
|
|
1161
1162
|
address?: {
|
|
1163
|
+
version?: "1.0.0" | undefined;
|
|
1162
1164
|
address?: {
|
|
1163
1165
|
type: string;
|
|
1164
1166
|
addressCountry: string;
|
|
@@ -1170,7 +1172,6 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1170
1172
|
streetNumber?: string | undefined;
|
|
1171
1173
|
postalCode?: string | undefined;
|
|
1172
1174
|
} | undefined;
|
|
1173
|
-
version?: "1.0.0" | undefined;
|
|
1174
1175
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
1175
1176
|
latitude?: number | undefined;
|
|
1176
1177
|
longitude?: number | undefined;
|
|
@@ -1180,11 +1181,11 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1180
1181
|
type: string;
|
|
1181
1182
|
version?: "1.0.0" | undefined;
|
|
1182
1183
|
asset?: {
|
|
1183
|
-
label?: string | undefined;
|
|
1184
|
-
title?: string | undefined;
|
|
1185
1184
|
path?: string | undefined;
|
|
1186
1185
|
version?: "1.0.0" | undefined;
|
|
1187
1186
|
size?: number | undefined;
|
|
1187
|
+
label?: string | undefined;
|
|
1188
|
+
title?: string | undefined;
|
|
1188
1189
|
url?: string | undefined;
|
|
1189
1190
|
description?: string | undefined;
|
|
1190
1191
|
altText?: string | undefined;
|
|
@@ -1196,7 +1197,6 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1196
1197
|
uploadId?: string | undefined;
|
|
1197
1198
|
} | undefined;
|
|
1198
1199
|
} | undefined;
|
|
1199
|
-
version?: "1.0.0" | undefined;
|
|
1200
1200
|
url?: string | undefined;
|
|
1201
1201
|
email?: string | undefined;
|
|
1202
1202
|
jobTitle?: string | undefined;
|
|
@@ -1269,10 +1269,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1269
1269
|
url: z.ZodOptional<z.ZodString>;
|
|
1270
1270
|
}, "strip", z.ZodTypeAny, {
|
|
1271
1271
|
version: "1.0.0";
|
|
1272
|
-
label?: string | undefined;
|
|
1273
|
-
title?: string | undefined;
|
|
1274
1272
|
path?: string | undefined;
|
|
1275
1273
|
size?: number | undefined;
|
|
1274
|
+
label?: string | undefined;
|
|
1275
|
+
title?: string | undefined;
|
|
1276
1276
|
url?: string | undefined;
|
|
1277
1277
|
description?: string | undefined;
|
|
1278
1278
|
altText?: string | undefined;
|
|
@@ -1283,11 +1283,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1283
1283
|
sha1Hash?: string | undefined;
|
|
1284
1284
|
uploadId?: string | undefined;
|
|
1285
1285
|
}, {
|
|
1286
|
-
label?: string | undefined;
|
|
1287
|
-
title?: string | undefined;
|
|
1288
1286
|
path?: string | undefined;
|
|
1289
1287
|
version?: "1.0.0" | undefined;
|
|
1290
1288
|
size?: number | undefined;
|
|
1289
|
+
label?: string | undefined;
|
|
1290
|
+
title?: string | undefined;
|
|
1291
1291
|
url?: string | undefined;
|
|
1292
1292
|
description?: string | undefined;
|
|
1293
1293
|
altText?: string | undefined;
|
|
@@ -1303,10 +1303,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1303
1303
|
version: "1.0.0";
|
|
1304
1304
|
asset?: {
|
|
1305
1305
|
version: "1.0.0";
|
|
1306
|
-
label?: string | undefined;
|
|
1307
|
-
title?: string | undefined;
|
|
1308
1306
|
path?: string | undefined;
|
|
1309
1307
|
size?: number | undefined;
|
|
1308
|
+
label?: string | undefined;
|
|
1309
|
+
title?: string | undefined;
|
|
1310
1310
|
url?: string | undefined;
|
|
1311
1311
|
description?: string | undefined;
|
|
1312
1312
|
altText?: string | undefined;
|
|
@@ -1321,11 +1321,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1321
1321
|
type: string;
|
|
1322
1322
|
version?: "1.0.0" | undefined;
|
|
1323
1323
|
asset?: {
|
|
1324
|
-
label?: string | undefined;
|
|
1325
|
-
title?: string | undefined;
|
|
1326
1324
|
path?: string | undefined;
|
|
1327
1325
|
version?: "1.0.0" | undefined;
|
|
1328
1326
|
size?: number | undefined;
|
|
1327
|
+
label?: string | undefined;
|
|
1328
|
+
title?: string | undefined;
|
|
1329
1329
|
url?: string | undefined;
|
|
1330
1330
|
description?: string | undefined;
|
|
1331
1331
|
altText?: string | undefined;
|
|
@@ -1381,10 +1381,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1381
1381
|
url: z.ZodOptional<z.ZodString>;
|
|
1382
1382
|
}, "strip", z.ZodTypeAny, {
|
|
1383
1383
|
version: "1.0.0";
|
|
1384
|
-
label?: string | undefined;
|
|
1385
|
-
title?: string | undefined;
|
|
1386
1384
|
path?: string | undefined;
|
|
1387
1385
|
size?: number | undefined;
|
|
1386
|
+
label?: string | undefined;
|
|
1387
|
+
title?: string | undefined;
|
|
1388
1388
|
url?: string | undefined;
|
|
1389
1389
|
description?: string | undefined;
|
|
1390
1390
|
altText?: string | undefined;
|
|
@@ -1395,11 +1395,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1395
1395
|
sha1Hash?: string | undefined;
|
|
1396
1396
|
uploadId?: string | undefined;
|
|
1397
1397
|
}, {
|
|
1398
|
-
label?: string | undefined;
|
|
1399
|
-
title?: string | undefined;
|
|
1400
1398
|
path?: string | undefined;
|
|
1401
1399
|
version?: "1.0.0" | undefined;
|
|
1402
1400
|
size?: number | undefined;
|
|
1401
|
+
label?: string | undefined;
|
|
1402
|
+
title?: string | undefined;
|
|
1403
1403
|
url?: string | undefined;
|
|
1404
1404
|
description?: string | undefined;
|
|
1405
1405
|
altText?: string | undefined;
|
|
@@ -1415,10 +1415,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1415
1415
|
version: "1.0.0";
|
|
1416
1416
|
asset?: {
|
|
1417
1417
|
version: "1.0.0";
|
|
1418
|
-
label?: string | undefined;
|
|
1419
|
-
title?: string | undefined;
|
|
1420
1418
|
path?: string | undefined;
|
|
1421
1419
|
size?: number | undefined;
|
|
1420
|
+
label?: string | undefined;
|
|
1421
|
+
title?: string | undefined;
|
|
1422
1422
|
url?: string | undefined;
|
|
1423
1423
|
description?: string | undefined;
|
|
1424
1424
|
altText?: string | undefined;
|
|
@@ -1433,11 +1433,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1433
1433
|
type: string;
|
|
1434
1434
|
version?: "1.0.0" | undefined;
|
|
1435
1435
|
asset?: {
|
|
1436
|
-
label?: string | undefined;
|
|
1437
|
-
title?: string | undefined;
|
|
1438
1436
|
path?: string | undefined;
|
|
1439
1437
|
version?: "1.0.0" | undefined;
|
|
1440
1438
|
size?: number | undefined;
|
|
1439
|
+
label?: string | undefined;
|
|
1440
|
+
title?: string | undefined;
|
|
1441
1441
|
url?: string | undefined;
|
|
1442
1442
|
description?: string | undefined;
|
|
1443
1443
|
altText?: string | undefined;
|
|
@@ -1460,10 +1460,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1460
1460
|
version: "1.0.0";
|
|
1461
1461
|
asset?: {
|
|
1462
1462
|
version: "1.0.0";
|
|
1463
|
-
label?: string | undefined;
|
|
1464
|
-
title?: string | undefined;
|
|
1465
1463
|
path?: string | undefined;
|
|
1466
1464
|
size?: number | undefined;
|
|
1465
|
+
label?: string | undefined;
|
|
1466
|
+
title?: string | undefined;
|
|
1467
1467
|
url?: string | undefined;
|
|
1468
1468
|
description?: string | undefined;
|
|
1469
1469
|
altText?: string | undefined;
|
|
@@ -1485,11 +1485,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1485
1485
|
type: string;
|
|
1486
1486
|
version?: "1.0.0" | undefined;
|
|
1487
1487
|
asset?: {
|
|
1488
|
-
label?: string | undefined;
|
|
1489
|
-
title?: string | undefined;
|
|
1490
1488
|
path?: string | undefined;
|
|
1491
1489
|
version?: "1.0.0" | undefined;
|
|
1492
1490
|
size?: number | undefined;
|
|
1491
|
+
label?: string | undefined;
|
|
1492
|
+
title?: string | undefined;
|
|
1493
1493
|
url?: string | undefined;
|
|
1494
1494
|
description?: string | undefined;
|
|
1495
1495
|
altText?: string | undefined;
|
|
@@ -1511,14 +1511,14 @@ declare const companySchema: z.ZodObject<{
|
|
|
1511
1511
|
description: z.ZodOptional<z.ZodString>;
|
|
1512
1512
|
category: z.ZodEnum<["FINANCIAL", "HEALTH", "PROFESSIONAL_DEVELOPMENT", "WORK_LIFE_BALANCE"]>;
|
|
1513
1513
|
}, "strip", z.ZodTypeAny, {
|
|
1514
|
-
title: string;
|
|
1515
1514
|
type: string;
|
|
1516
1515
|
version: "1.0.0";
|
|
1516
|
+
title: string;
|
|
1517
1517
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1518
1518
|
description?: string | undefined;
|
|
1519
1519
|
}, {
|
|
1520
|
-
title: string;
|
|
1521
1520
|
type: string;
|
|
1521
|
+
title: string;
|
|
1522
1522
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1523
1523
|
version?: "1.0.0" | undefined;
|
|
1524
1524
|
description?: string | undefined;
|
|
@@ -1537,10 +1537,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1537
1537
|
version: "1.0.0";
|
|
1538
1538
|
asset?: {
|
|
1539
1539
|
version: "1.0.0";
|
|
1540
|
-
label?: string | undefined;
|
|
1541
|
-
title?: string | undefined;
|
|
1542
1540
|
path?: string | undefined;
|
|
1543
1541
|
size?: number | undefined;
|
|
1542
|
+
label?: string | undefined;
|
|
1543
|
+
title?: string | undefined;
|
|
1544
1544
|
url?: string | undefined;
|
|
1545
1545
|
description?: string | undefined;
|
|
1546
1546
|
altText?: string | undefined;
|
|
@@ -1556,9 +1556,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1556
1556
|
} | undefined;
|
|
1557
1557
|
jobBoardSlug?: string[] | undefined;
|
|
1558
1558
|
companyBenefits?: {
|
|
1559
|
-
title: string;
|
|
1560
1559
|
type: string;
|
|
1561
1560
|
version: "1.0.0";
|
|
1561
|
+
title: string;
|
|
1562
1562
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1563
1563
|
description?: string | undefined;
|
|
1564
1564
|
}[] | undefined;
|
|
@@ -1575,11 +1575,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1575
1575
|
type: string;
|
|
1576
1576
|
version?: "1.0.0" | undefined;
|
|
1577
1577
|
asset?: {
|
|
1578
|
-
label?: string | undefined;
|
|
1579
|
-
title?: string | undefined;
|
|
1580
1578
|
path?: string | undefined;
|
|
1581
1579
|
version?: "1.0.0" | undefined;
|
|
1582
1580
|
size?: number | undefined;
|
|
1581
|
+
label?: string | undefined;
|
|
1582
|
+
title?: string | undefined;
|
|
1583
1583
|
url?: string | undefined;
|
|
1584
1584
|
description?: string | undefined;
|
|
1585
1585
|
altText?: string | undefined;
|
|
@@ -1595,8 +1595,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1595
1595
|
} | undefined;
|
|
1596
1596
|
jobBoardSlug?: string[] | undefined;
|
|
1597
1597
|
companyBenefits?: {
|
|
1598
|
-
title: string;
|
|
1599
1598
|
type: string;
|
|
1599
|
+
title: string;
|
|
1600
1600
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1601
1601
|
version?: "1.0.0" | undefined;
|
|
1602
1602
|
description?: string | undefined;
|
|
@@ -1680,10 +1680,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1680
1680
|
url: z.ZodOptional<z.ZodString>;
|
|
1681
1681
|
}, "strip", z.ZodTypeAny, {
|
|
1682
1682
|
version: "1.0.0";
|
|
1683
|
-
label?: string | undefined;
|
|
1684
|
-
title?: string | undefined;
|
|
1685
1683
|
path?: string | undefined;
|
|
1686
1684
|
size?: number | undefined;
|
|
1685
|
+
label?: string | undefined;
|
|
1686
|
+
title?: string | undefined;
|
|
1687
1687
|
url?: string | undefined;
|
|
1688
1688
|
description?: string | undefined;
|
|
1689
1689
|
altText?: string | undefined;
|
|
@@ -1694,11 +1694,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1694
1694
|
sha1Hash?: string | undefined;
|
|
1695
1695
|
uploadId?: string | undefined;
|
|
1696
1696
|
}, {
|
|
1697
|
-
label?: string | undefined;
|
|
1698
|
-
title?: string | undefined;
|
|
1699
1697
|
path?: string | undefined;
|
|
1700
1698
|
version?: "1.0.0" | undefined;
|
|
1701
1699
|
size?: number | undefined;
|
|
1700
|
+
label?: string | undefined;
|
|
1701
|
+
title?: string | undefined;
|
|
1702
1702
|
url?: string | undefined;
|
|
1703
1703
|
description?: string | undefined;
|
|
1704
1704
|
altText?: string | undefined;
|
|
@@ -1714,10 +1714,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1714
1714
|
version: "1.0.0";
|
|
1715
1715
|
asset?: {
|
|
1716
1716
|
version: "1.0.0";
|
|
1717
|
-
label?: string | undefined;
|
|
1718
|
-
title?: string | undefined;
|
|
1719
1717
|
path?: string | undefined;
|
|
1720
1718
|
size?: number | undefined;
|
|
1719
|
+
label?: string | undefined;
|
|
1720
|
+
title?: string | undefined;
|
|
1721
1721
|
url?: string | undefined;
|
|
1722
1722
|
description?: string | undefined;
|
|
1723
1723
|
altText?: string | undefined;
|
|
@@ -1732,11 +1732,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1732
1732
|
type: string;
|
|
1733
1733
|
version?: "1.0.0" | undefined;
|
|
1734
1734
|
asset?: {
|
|
1735
|
-
label?: string | undefined;
|
|
1736
|
-
title?: string | undefined;
|
|
1737
1735
|
path?: string | undefined;
|
|
1738
1736
|
version?: "1.0.0" | undefined;
|
|
1739
1737
|
size?: number | undefined;
|
|
1738
|
+
label?: string | undefined;
|
|
1739
|
+
title?: string | undefined;
|
|
1740
1740
|
url?: string | undefined;
|
|
1741
1741
|
description?: string | undefined;
|
|
1742
1742
|
altText?: string | undefined;
|
|
@@ -1817,6 +1817,7 @@ declare const companySchema: z.ZodObject<{
|
|
|
1817
1817
|
latitude?: number | undefined;
|
|
1818
1818
|
longitude?: number | undefined;
|
|
1819
1819
|
}, {
|
|
1820
|
+
version?: "1.0.0" | undefined;
|
|
1820
1821
|
address?: {
|
|
1821
1822
|
type: string;
|
|
1822
1823
|
addressCountry: string;
|
|
@@ -1828,7 +1829,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
1828
1829
|
streetNumber?: string | undefined;
|
|
1829
1830
|
postalCode?: string | undefined;
|
|
1830
1831
|
} | undefined;
|
|
1831
|
-
version?: "1.0.0" | undefined;
|
|
1832
1832
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
1833
1833
|
latitude?: number | undefined;
|
|
1834
1834
|
longitude?: number | undefined;
|
|
@@ -1862,10 +1862,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1862
1862
|
version: "1.0.0";
|
|
1863
1863
|
asset?: {
|
|
1864
1864
|
version: "1.0.0";
|
|
1865
|
-
label?: string | undefined;
|
|
1866
|
-
title?: string | undefined;
|
|
1867
1865
|
path?: string | undefined;
|
|
1868
1866
|
size?: number | undefined;
|
|
1867
|
+
label?: string | undefined;
|
|
1868
|
+
title?: string | undefined;
|
|
1869
1869
|
url?: string | undefined;
|
|
1870
1870
|
description?: string | undefined;
|
|
1871
1871
|
altText?: string | undefined;
|
|
@@ -1894,7 +1894,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1894
1894
|
firstName: string;
|
|
1895
1895
|
lastName: string;
|
|
1896
1896
|
slug: string;
|
|
1897
|
+
version?: "1.0.0" | undefined;
|
|
1897
1898
|
address?: {
|
|
1899
|
+
version?: "1.0.0" | undefined;
|
|
1898
1900
|
address?: {
|
|
1899
1901
|
type: string;
|
|
1900
1902
|
addressCountry: string;
|
|
@@ -1906,7 +1908,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
1906
1908
|
streetNumber?: string | undefined;
|
|
1907
1909
|
postalCode?: string | undefined;
|
|
1908
1910
|
} | undefined;
|
|
1909
|
-
version?: "1.0.0" | undefined;
|
|
1910
1911
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
1911
1912
|
latitude?: number | undefined;
|
|
1912
1913
|
longitude?: number | undefined;
|
|
@@ -1916,11 +1917,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
1916
1917
|
type: string;
|
|
1917
1918
|
version?: "1.0.0" | undefined;
|
|
1918
1919
|
asset?: {
|
|
1919
|
-
label?: string | undefined;
|
|
1920
|
-
title?: string | undefined;
|
|
1921
1920
|
path?: string | undefined;
|
|
1922
1921
|
version?: "1.0.0" | undefined;
|
|
1923
1922
|
size?: number | undefined;
|
|
1923
|
+
label?: string | undefined;
|
|
1924
|
+
title?: string | undefined;
|
|
1924
1925
|
url?: string | undefined;
|
|
1925
1926
|
description?: string | undefined;
|
|
1926
1927
|
altText?: string | undefined;
|
|
@@ -1932,7 +1933,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
1932
1933
|
uploadId?: string | undefined;
|
|
1933
1934
|
} | undefined;
|
|
1934
1935
|
} | undefined;
|
|
1935
|
-
version?: "1.0.0" | undefined;
|
|
1936
1936
|
url?: string | undefined;
|
|
1937
1937
|
email?: string | undefined;
|
|
1938
1938
|
jobTitle?: string | undefined;
|
|
@@ -1981,10 +1981,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
1981
1981
|
version: "1.0.0";
|
|
1982
1982
|
asset?: {
|
|
1983
1983
|
version: "1.0.0";
|
|
1984
|
-
label?: string | undefined;
|
|
1985
|
-
title?: string | undefined;
|
|
1986
1984
|
path?: string | undefined;
|
|
1987
1985
|
size?: number | undefined;
|
|
1986
|
+
label?: string | undefined;
|
|
1987
|
+
title?: string | undefined;
|
|
1988
1988
|
url?: string | undefined;
|
|
1989
1989
|
description?: string | undefined;
|
|
1990
1990
|
altText?: string | undefined;
|
|
@@ -2020,7 +2020,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2020
2020
|
firstName: string;
|
|
2021
2021
|
lastName: string;
|
|
2022
2022
|
slug: string;
|
|
2023
|
+
version?: "1.0.0" | undefined;
|
|
2023
2024
|
address?: {
|
|
2025
|
+
version?: "1.0.0" | undefined;
|
|
2024
2026
|
address?: {
|
|
2025
2027
|
type: string;
|
|
2026
2028
|
addressCountry: string;
|
|
@@ -2032,7 +2034,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
2032
2034
|
streetNumber?: string | undefined;
|
|
2033
2035
|
postalCode?: string | undefined;
|
|
2034
2036
|
} | undefined;
|
|
2035
|
-
version?: "1.0.0" | undefined;
|
|
2036
2037
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
2037
2038
|
latitude?: number | undefined;
|
|
2038
2039
|
longitude?: number | undefined;
|
|
@@ -2042,11 +2043,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
2042
2043
|
type: string;
|
|
2043
2044
|
version?: "1.0.0" | undefined;
|
|
2044
2045
|
asset?: {
|
|
2045
|
-
label?: string | undefined;
|
|
2046
|
-
title?: string | undefined;
|
|
2047
2046
|
path?: string | undefined;
|
|
2048
2047
|
version?: "1.0.0" | undefined;
|
|
2049
2048
|
size?: number | undefined;
|
|
2049
|
+
label?: string | undefined;
|
|
2050
|
+
title?: string | undefined;
|
|
2050
2051
|
url?: string | undefined;
|
|
2051
2052
|
description?: string | undefined;
|
|
2052
2053
|
altText?: string | undefined;
|
|
@@ -2058,7 +2059,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
2058
2059
|
uploadId?: string | undefined;
|
|
2059
2060
|
} | undefined;
|
|
2060
2061
|
} | undefined;
|
|
2061
|
-
version?: "1.0.0" | undefined;
|
|
2062
2062
|
url?: string | undefined;
|
|
2063
2063
|
email?: string | undefined;
|
|
2064
2064
|
jobTitle?: string | undefined;
|
|
@@ -2126,6 +2126,7 @@ declare const companySchema: z.ZodObject<{
|
|
|
2126
2126
|
latitude?: number | undefined;
|
|
2127
2127
|
longitude?: number | undefined;
|
|
2128
2128
|
}, {
|
|
2129
|
+
version?: "1.0.0" | undefined;
|
|
2129
2130
|
address?: {
|
|
2130
2131
|
type: string;
|
|
2131
2132
|
addressCountry: string;
|
|
@@ -2137,7 +2138,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
2137
2138
|
streetNumber?: string | undefined;
|
|
2138
2139
|
postalCode?: string | undefined;
|
|
2139
2140
|
} | undefined;
|
|
2140
|
-
version?: "1.0.0" | undefined;
|
|
2141
2141
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
2142
2142
|
latitude?: number | undefined;
|
|
2143
2143
|
longitude?: number | undefined;
|
|
@@ -2173,8 +2173,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2173
2173
|
isScrapeManaged?: boolean | undefined;
|
|
2174
2174
|
}>>;
|
|
2175
2175
|
}, "strip", z.ZodTypeAny, {
|
|
2176
|
-
type: string;
|
|
2177
2176
|
id: string;
|
|
2177
|
+
type: string;
|
|
2178
2178
|
version: "1.0.0";
|
|
2179
2179
|
slug: string;
|
|
2180
2180
|
createdAt: string;
|
|
@@ -2185,10 +2185,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
2185
2185
|
version: "1.0.0";
|
|
2186
2186
|
asset?: {
|
|
2187
2187
|
version: "1.0.0";
|
|
2188
|
-
label?: string | undefined;
|
|
2189
|
-
title?: string | undefined;
|
|
2190
2188
|
path?: string | undefined;
|
|
2191
2189
|
size?: number | undefined;
|
|
2190
|
+
label?: string | undefined;
|
|
2191
|
+
title?: string | undefined;
|
|
2192
2192
|
url?: string | undefined;
|
|
2193
2193
|
description?: string | undefined;
|
|
2194
2194
|
altText?: string | undefined;
|
|
@@ -2221,10 +2221,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
2221
2221
|
version: "1.0.0";
|
|
2222
2222
|
asset?: {
|
|
2223
2223
|
version: "1.0.0";
|
|
2224
|
-
label?: string | undefined;
|
|
2225
|
-
title?: string | undefined;
|
|
2226
2224
|
path?: string | undefined;
|
|
2227
2225
|
size?: number | undefined;
|
|
2226
|
+
label?: string | undefined;
|
|
2227
|
+
title?: string | undefined;
|
|
2228
2228
|
url?: string | undefined;
|
|
2229
2229
|
description?: string | undefined;
|
|
2230
2230
|
altText?: string | undefined;
|
|
@@ -2240,9 +2240,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2240
2240
|
} | undefined;
|
|
2241
2241
|
jobBoardSlug?: string[] | undefined;
|
|
2242
2242
|
companyBenefits?: {
|
|
2243
|
-
title: string;
|
|
2244
2243
|
type: string;
|
|
2245
2244
|
version: "1.0.0";
|
|
2245
|
+
title: string;
|
|
2246
2246
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2247
2247
|
description?: string | undefined;
|
|
2248
2248
|
}[] | undefined;
|
|
@@ -2297,10 +2297,10 @@ declare const companySchema: z.ZodObject<{
|
|
|
2297
2297
|
version: "1.0.0";
|
|
2298
2298
|
asset?: {
|
|
2299
2299
|
version: "1.0.0";
|
|
2300
|
-
label?: string | undefined;
|
|
2301
|
-
title?: string | undefined;
|
|
2302
2300
|
path?: string | undefined;
|
|
2303
2301
|
size?: number | undefined;
|
|
2302
|
+
label?: string | undefined;
|
|
2303
|
+
title?: string | undefined;
|
|
2304
2304
|
url?: string | undefined;
|
|
2305
2305
|
description?: string | undefined;
|
|
2306
2306
|
altText?: string | undefined;
|
|
@@ -2356,8 +2356,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2356
2356
|
postProcessorUniqueRunId?: string | undefined;
|
|
2357
2357
|
} | undefined;
|
|
2358
2358
|
}, {
|
|
2359
|
-
type: string;
|
|
2360
2359
|
id: string;
|
|
2360
|
+
type: string;
|
|
2361
2361
|
slug: string;
|
|
2362
2362
|
createdAt: string;
|
|
2363
2363
|
updatedAt: string;
|
|
@@ -2367,11 +2367,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
2367
2367
|
type: string;
|
|
2368
2368
|
version?: "1.0.0" | undefined;
|
|
2369
2369
|
asset?: {
|
|
2370
|
-
label?: string | undefined;
|
|
2371
|
-
title?: string | undefined;
|
|
2372
2370
|
path?: string | undefined;
|
|
2373
2371
|
version?: "1.0.0" | undefined;
|
|
2374
2372
|
size?: number | undefined;
|
|
2373
|
+
label?: string | undefined;
|
|
2374
|
+
title?: string | undefined;
|
|
2375
2375
|
url?: string | undefined;
|
|
2376
2376
|
description?: string | undefined;
|
|
2377
2377
|
altText?: string | undefined;
|
|
@@ -2403,11 +2403,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
2403
2403
|
type: string;
|
|
2404
2404
|
version?: "1.0.0" | undefined;
|
|
2405
2405
|
asset?: {
|
|
2406
|
-
label?: string | undefined;
|
|
2407
|
-
title?: string | undefined;
|
|
2408
2406
|
path?: string | undefined;
|
|
2409
2407
|
version?: "1.0.0" | undefined;
|
|
2410
2408
|
size?: number | undefined;
|
|
2409
|
+
label?: string | undefined;
|
|
2410
|
+
title?: string | undefined;
|
|
2411
2411
|
url?: string | undefined;
|
|
2412
2412
|
description?: string | undefined;
|
|
2413
2413
|
altText?: string | undefined;
|
|
@@ -2423,8 +2423,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2423
2423
|
} | undefined;
|
|
2424
2424
|
jobBoardSlug?: string[] | undefined;
|
|
2425
2425
|
companyBenefits?: {
|
|
2426
|
-
title: string;
|
|
2427
2426
|
type: string;
|
|
2427
|
+
title: string;
|
|
2428
2428
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2429
2429
|
version?: "1.0.0" | undefined;
|
|
2430
2430
|
description?: string | undefined;
|
|
@@ -2456,7 +2456,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2456
2456
|
firstName: string;
|
|
2457
2457
|
lastName: string;
|
|
2458
2458
|
slug: string;
|
|
2459
|
+
version?: "1.0.0" | undefined;
|
|
2459
2460
|
address?: {
|
|
2461
|
+
version?: "1.0.0" | undefined;
|
|
2460
2462
|
address?: {
|
|
2461
2463
|
type: string;
|
|
2462
2464
|
addressCountry: string;
|
|
@@ -2468,7 +2470,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
2468
2470
|
streetNumber?: string | undefined;
|
|
2469
2471
|
postalCode?: string | undefined;
|
|
2470
2472
|
} | undefined;
|
|
2471
|
-
version?: "1.0.0" | undefined;
|
|
2472
2473
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
2473
2474
|
latitude?: number | undefined;
|
|
2474
2475
|
longitude?: number | undefined;
|
|
@@ -2478,11 +2479,11 @@ declare const companySchema: z.ZodObject<{
|
|
|
2478
2479
|
type: string;
|
|
2479
2480
|
version?: "1.0.0" | undefined;
|
|
2480
2481
|
asset?: {
|
|
2481
|
-
label?: string | undefined;
|
|
2482
|
-
title?: string | undefined;
|
|
2483
2482
|
path?: string | undefined;
|
|
2484
2483
|
version?: "1.0.0" | undefined;
|
|
2485
2484
|
size?: number | undefined;
|
|
2485
|
+
label?: string | undefined;
|
|
2486
|
+
title?: string | undefined;
|
|
2486
2487
|
url?: string | undefined;
|
|
2487
2488
|
description?: string | undefined;
|
|
2488
2489
|
altText?: string | undefined;
|
|
@@ -2494,7 +2495,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
2494
2495
|
uploadId?: string | undefined;
|
|
2495
2496
|
} | undefined;
|
|
2496
2497
|
} | undefined;
|
|
2497
|
-
version?: "1.0.0" | undefined;
|
|
2498
2498
|
url?: string | undefined;
|
|
2499
2499
|
email?: string | undefined;
|
|
2500
2500
|
jobTitle?: string | undefined;
|
|
@@ -2510,6 +2510,7 @@ declare const companySchema: z.ZodObject<{
|
|
|
2510
2510
|
}[] | undefined;
|
|
2511
2511
|
} | undefined;
|
|
2512
2512
|
headquartersLocation?: {
|
|
2513
|
+
version?: "1.0.0" | undefined;
|
|
2513
2514
|
address?: {
|
|
2514
2515
|
type: string;
|
|
2515
2516
|
addressCountry: string;
|
|
@@ -2521,7 +2522,6 @@ declare const companySchema: z.ZodObject<{
|
|
|
2521
2522
|
streetNumber?: string | undefined;
|
|
2522
2523
|
postalCode?: string | undefined;
|
|
2523
2524
|
} | undefined;
|
|
2524
|
-
version?: "1.0.0" | undefined;
|
|
2525
2525
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
2526
2526
|
latitude?: number | undefined;
|
|
2527
2527
|
longitude?: number | undefined;
|
|
@@ -2573,10 +2573,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2573
2573
|
url: z.ZodOptional<z.ZodString>;
|
|
2574
2574
|
}, "strip", z.ZodTypeAny, {
|
|
2575
2575
|
version: "1.0.0";
|
|
2576
|
-
label?: string | undefined;
|
|
2577
|
-
title?: string | undefined;
|
|
2578
2576
|
path?: string | undefined;
|
|
2579
2577
|
size?: number | undefined;
|
|
2578
|
+
label?: string | undefined;
|
|
2579
|
+
title?: string | undefined;
|
|
2580
2580
|
url?: string | undefined;
|
|
2581
2581
|
description?: string | undefined;
|
|
2582
2582
|
altText?: string | undefined;
|
|
@@ -2587,11 +2587,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2587
2587
|
sha1Hash?: string | undefined;
|
|
2588
2588
|
uploadId?: string | undefined;
|
|
2589
2589
|
}, {
|
|
2590
|
-
label?: string | undefined;
|
|
2591
|
-
title?: string | undefined;
|
|
2592
2590
|
path?: string | undefined;
|
|
2593
2591
|
version?: "1.0.0" | undefined;
|
|
2594
2592
|
size?: number | undefined;
|
|
2593
|
+
label?: string | undefined;
|
|
2594
|
+
title?: string | undefined;
|
|
2595
2595
|
url?: string | undefined;
|
|
2596
2596
|
description?: string | undefined;
|
|
2597
2597
|
altText?: string | undefined;
|
|
@@ -2607,10 +2607,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2607
2607
|
version: "1.0.0";
|
|
2608
2608
|
asset?: {
|
|
2609
2609
|
version: "1.0.0";
|
|
2610
|
-
label?: string | undefined;
|
|
2611
|
-
title?: string | undefined;
|
|
2612
2610
|
path?: string | undefined;
|
|
2613
2611
|
size?: number | undefined;
|
|
2612
|
+
label?: string | undefined;
|
|
2613
|
+
title?: string | undefined;
|
|
2614
2614
|
url?: string | undefined;
|
|
2615
2615
|
description?: string | undefined;
|
|
2616
2616
|
altText?: string | undefined;
|
|
@@ -2625,11 +2625,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2625
2625
|
type: string;
|
|
2626
2626
|
version?: "1.0.0" | undefined;
|
|
2627
2627
|
asset?: {
|
|
2628
|
-
label?: string | undefined;
|
|
2629
|
-
title?: string | undefined;
|
|
2630
2628
|
path?: string | undefined;
|
|
2631
2629
|
version?: "1.0.0" | undefined;
|
|
2632
2630
|
size?: number | undefined;
|
|
2631
|
+
label?: string | undefined;
|
|
2632
|
+
title?: string | undefined;
|
|
2633
2633
|
url?: string | undefined;
|
|
2634
2634
|
description?: string | undefined;
|
|
2635
2635
|
altText?: string | undefined;
|
|
@@ -2685,10 +2685,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2685
2685
|
url: z.ZodOptional<z.ZodString>;
|
|
2686
2686
|
}, "strip", z.ZodTypeAny, {
|
|
2687
2687
|
version: "1.0.0";
|
|
2688
|
-
label?: string | undefined;
|
|
2689
|
-
title?: string | undefined;
|
|
2690
2688
|
path?: string | undefined;
|
|
2691
2689
|
size?: number | undefined;
|
|
2690
|
+
label?: string | undefined;
|
|
2691
|
+
title?: string | undefined;
|
|
2692
2692
|
url?: string | undefined;
|
|
2693
2693
|
description?: string | undefined;
|
|
2694
2694
|
altText?: string | undefined;
|
|
@@ -2699,11 +2699,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2699
2699
|
sha1Hash?: string | undefined;
|
|
2700
2700
|
uploadId?: string | undefined;
|
|
2701
2701
|
}, {
|
|
2702
|
-
label?: string | undefined;
|
|
2703
|
-
title?: string | undefined;
|
|
2704
2702
|
path?: string | undefined;
|
|
2705
2703
|
version?: "1.0.0" | undefined;
|
|
2706
2704
|
size?: number | undefined;
|
|
2705
|
+
label?: string | undefined;
|
|
2706
|
+
title?: string | undefined;
|
|
2707
2707
|
url?: string | undefined;
|
|
2708
2708
|
description?: string | undefined;
|
|
2709
2709
|
altText?: string | undefined;
|
|
@@ -2719,10 +2719,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2719
2719
|
version: "1.0.0";
|
|
2720
2720
|
asset?: {
|
|
2721
2721
|
version: "1.0.0";
|
|
2722
|
-
label?: string | undefined;
|
|
2723
|
-
title?: string | undefined;
|
|
2724
2722
|
path?: string | undefined;
|
|
2725
2723
|
size?: number | undefined;
|
|
2724
|
+
label?: string | undefined;
|
|
2725
|
+
title?: string | undefined;
|
|
2726
2726
|
url?: string | undefined;
|
|
2727
2727
|
description?: string | undefined;
|
|
2728
2728
|
altText?: string | undefined;
|
|
@@ -2737,11 +2737,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2737
2737
|
type: string;
|
|
2738
2738
|
version?: "1.0.0" | undefined;
|
|
2739
2739
|
asset?: {
|
|
2740
|
-
label?: string | undefined;
|
|
2741
|
-
title?: string | undefined;
|
|
2742
2740
|
path?: string | undefined;
|
|
2743
2741
|
version?: "1.0.0" | undefined;
|
|
2744
2742
|
size?: number | undefined;
|
|
2743
|
+
label?: string | undefined;
|
|
2744
|
+
title?: string | undefined;
|
|
2745
2745
|
url?: string | undefined;
|
|
2746
2746
|
description?: string | undefined;
|
|
2747
2747
|
altText?: string | undefined;
|
|
@@ -2764,10 +2764,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2764
2764
|
version: "1.0.0";
|
|
2765
2765
|
asset?: {
|
|
2766
2766
|
version: "1.0.0";
|
|
2767
|
-
label?: string | undefined;
|
|
2768
|
-
title?: string | undefined;
|
|
2769
2767
|
path?: string | undefined;
|
|
2770
2768
|
size?: number | undefined;
|
|
2769
|
+
label?: string | undefined;
|
|
2770
|
+
title?: string | undefined;
|
|
2771
2771
|
url?: string | undefined;
|
|
2772
2772
|
description?: string | undefined;
|
|
2773
2773
|
altText?: string | undefined;
|
|
@@ -2789,11 +2789,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2789
2789
|
type: string;
|
|
2790
2790
|
version?: "1.0.0" | undefined;
|
|
2791
2791
|
asset?: {
|
|
2792
|
-
label?: string | undefined;
|
|
2793
|
-
title?: string | undefined;
|
|
2794
2792
|
path?: string | undefined;
|
|
2795
2793
|
version?: "1.0.0" | undefined;
|
|
2796
2794
|
size?: number | undefined;
|
|
2795
|
+
label?: string | undefined;
|
|
2796
|
+
title?: string | undefined;
|
|
2797
2797
|
url?: string | undefined;
|
|
2798
2798
|
description?: string | undefined;
|
|
2799
2799
|
altText?: string | undefined;
|
|
@@ -2815,14 +2815,14 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2815
2815
|
description: z.ZodOptional<z.ZodString>;
|
|
2816
2816
|
category: z.ZodEnum<["FINANCIAL", "HEALTH", "PROFESSIONAL_DEVELOPMENT", "WORK_LIFE_BALANCE"]>;
|
|
2817
2817
|
}, "strip", z.ZodTypeAny, {
|
|
2818
|
-
title: string;
|
|
2819
2818
|
type: string;
|
|
2820
2819
|
version: "1.0.0";
|
|
2820
|
+
title: string;
|
|
2821
2821
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2822
2822
|
description?: string | undefined;
|
|
2823
2823
|
}, {
|
|
2824
|
-
title: string;
|
|
2825
2824
|
type: string;
|
|
2825
|
+
title: string;
|
|
2826
2826
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2827
2827
|
version?: "1.0.0" | undefined;
|
|
2828
2828
|
description?: string | undefined;
|
|
@@ -2841,10 +2841,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2841
2841
|
version: "1.0.0";
|
|
2842
2842
|
asset?: {
|
|
2843
2843
|
version: "1.0.0";
|
|
2844
|
-
label?: string | undefined;
|
|
2845
|
-
title?: string | undefined;
|
|
2846
2844
|
path?: string | undefined;
|
|
2847
2845
|
size?: number | undefined;
|
|
2846
|
+
label?: string | undefined;
|
|
2847
|
+
title?: string | undefined;
|
|
2848
2848
|
url?: string | undefined;
|
|
2849
2849
|
description?: string | undefined;
|
|
2850
2850
|
altText?: string | undefined;
|
|
@@ -2860,9 +2860,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2860
2860
|
} | undefined;
|
|
2861
2861
|
jobBoardSlug?: string[] | undefined;
|
|
2862
2862
|
companyBenefits?: {
|
|
2863
|
-
title: string;
|
|
2864
2863
|
type: string;
|
|
2865
2864
|
version: "1.0.0";
|
|
2865
|
+
title: string;
|
|
2866
2866
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2867
2867
|
description?: string | undefined;
|
|
2868
2868
|
}[] | undefined;
|
|
@@ -2879,11 +2879,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2879
2879
|
type: string;
|
|
2880
2880
|
version?: "1.0.0" | undefined;
|
|
2881
2881
|
asset?: {
|
|
2882
|
-
label?: string | undefined;
|
|
2883
|
-
title?: string | undefined;
|
|
2884
2882
|
path?: string | undefined;
|
|
2885
2883
|
version?: "1.0.0" | undefined;
|
|
2886
2884
|
size?: number | undefined;
|
|
2885
|
+
label?: string | undefined;
|
|
2886
|
+
title?: string | undefined;
|
|
2887
2887
|
url?: string | undefined;
|
|
2888
2888
|
description?: string | undefined;
|
|
2889
2889
|
altText?: string | undefined;
|
|
@@ -2899,8 +2899,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2899
2899
|
} | undefined;
|
|
2900
2900
|
jobBoardSlug?: string[] | undefined;
|
|
2901
2901
|
companyBenefits?: {
|
|
2902
|
-
title: string;
|
|
2903
2902
|
type: string;
|
|
2903
|
+
title: string;
|
|
2904
2904
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2905
2905
|
version?: "1.0.0" | undefined;
|
|
2906
2906
|
description?: string | undefined;
|
|
@@ -2984,10 +2984,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2984
2984
|
url: z.ZodOptional<z.ZodString>;
|
|
2985
2985
|
}, "strip", z.ZodTypeAny, {
|
|
2986
2986
|
version: "1.0.0";
|
|
2987
|
-
label?: string | undefined;
|
|
2988
|
-
title?: string | undefined;
|
|
2989
2987
|
path?: string | undefined;
|
|
2990
2988
|
size?: number | undefined;
|
|
2989
|
+
label?: string | undefined;
|
|
2990
|
+
title?: string | undefined;
|
|
2991
2991
|
url?: string | undefined;
|
|
2992
2992
|
description?: string | undefined;
|
|
2993
2993
|
altText?: string | undefined;
|
|
@@ -2998,11 +2998,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2998
2998
|
sha1Hash?: string | undefined;
|
|
2999
2999
|
uploadId?: string | undefined;
|
|
3000
3000
|
}, {
|
|
3001
|
-
label?: string | undefined;
|
|
3002
|
-
title?: string | undefined;
|
|
3003
3001
|
path?: string | undefined;
|
|
3004
3002
|
version?: "1.0.0" | undefined;
|
|
3005
3003
|
size?: number | undefined;
|
|
3004
|
+
label?: string | undefined;
|
|
3005
|
+
title?: string | undefined;
|
|
3006
3006
|
url?: string | undefined;
|
|
3007
3007
|
description?: string | undefined;
|
|
3008
3008
|
altText?: string | undefined;
|
|
@@ -3018,10 +3018,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3018
3018
|
version: "1.0.0";
|
|
3019
3019
|
asset?: {
|
|
3020
3020
|
version: "1.0.0";
|
|
3021
|
-
label?: string | undefined;
|
|
3022
|
-
title?: string | undefined;
|
|
3023
3021
|
path?: string | undefined;
|
|
3024
3022
|
size?: number | undefined;
|
|
3023
|
+
label?: string | undefined;
|
|
3024
|
+
title?: string | undefined;
|
|
3025
3025
|
url?: string | undefined;
|
|
3026
3026
|
description?: string | undefined;
|
|
3027
3027
|
altText?: string | undefined;
|
|
@@ -3036,11 +3036,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3036
3036
|
type: string;
|
|
3037
3037
|
version?: "1.0.0" | undefined;
|
|
3038
3038
|
asset?: {
|
|
3039
|
-
label?: string | undefined;
|
|
3040
|
-
title?: string | undefined;
|
|
3041
3039
|
path?: string | undefined;
|
|
3042
3040
|
version?: "1.0.0" | undefined;
|
|
3043
3041
|
size?: number | undefined;
|
|
3042
|
+
label?: string | undefined;
|
|
3043
|
+
title?: string | undefined;
|
|
3044
3044
|
url?: string | undefined;
|
|
3045
3045
|
description?: string | undefined;
|
|
3046
3046
|
altText?: string | undefined;
|
|
@@ -3121,6 +3121,7 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3121
3121
|
latitude?: number | undefined;
|
|
3122
3122
|
longitude?: number | undefined;
|
|
3123
3123
|
}, {
|
|
3124
|
+
version?: "1.0.0" | undefined;
|
|
3124
3125
|
address?: {
|
|
3125
3126
|
type: string;
|
|
3126
3127
|
addressCountry: string;
|
|
@@ -3132,7 +3133,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3132
3133
|
streetNumber?: string | undefined;
|
|
3133
3134
|
postalCode?: string | undefined;
|
|
3134
3135
|
} | undefined;
|
|
3135
|
-
version?: "1.0.0" | undefined;
|
|
3136
3136
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3137
3137
|
latitude?: number | undefined;
|
|
3138
3138
|
longitude?: number | undefined;
|
|
@@ -3166,10 +3166,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3166
3166
|
version: "1.0.0";
|
|
3167
3167
|
asset?: {
|
|
3168
3168
|
version: "1.0.0";
|
|
3169
|
-
label?: string | undefined;
|
|
3170
|
-
title?: string | undefined;
|
|
3171
3169
|
path?: string | undefined;
|
|
3172
3170
|
size?: number | undefined;
|
|
3171
|
+
label?: string | undefined;
|
|
3172
|
+
title?: string | undefined;
|
|
3173
3173
|
url?: string | undefined;
|
|
3174
3174
|
description?: string | undefined;
|
|
3175
3175
|
altText?: string | undefined;
|
|
@@ -3198,7 +3198,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3198
3198
|
firstName: string;
|
|
3199
3199
|
lastName: string;
|
|
3200
3200
|
slug: string;
|
|
3201
|
+
version?: "1.0.0" | undefined;
|
|
3201
3202
|
address?: {
|
|
3203
|
+
version?: "1.0.0" | undefined;
|
|
3202
3204
|
address?: {
|
|
3203
3205
|
type: string;
|
|
3204
3206
|
addressCountry: string;
|
|
@@ -3210,7 +3212,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3210
3212
|
streetNumber?: string | undefined;
|
|
3211
3213
|
postalCode?: string | undefined;
|
|
3212
3214
|
} | undefined;
|
|
3213
|
-
version?: "1.0.0" | undefined;
|
|
3214
3215
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3215
3216
|
latitude?: number | undefined;
|
|
3216
3217
|
longitude?: number | undefined;
|
|
@@ -3220,11 +3221,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3220
3221
|
type: string;
|
|
3221
3222
|
version?: "1.0.0" | undefined;
|
|
3222
3223
|
asset?: {
|
|
3223
|
-
label?: string | undefined;
|
|
3224
|
-
title?: string | undefined;
|
|
3225
3224
|
path?: string | undefined;
|
|
3226
3225
|
version?: "1.0.0" | undefined;
|
|
3227
3226
|
size?: number | undefined;
|
|
3227
|
+
label?: string | undefined;
|
|
3228
|
+
title?: string | undefined;
|
|
3228
3229
|
url?: string | undefined;
|
|
3229
3230
|
description?: string | undefined;
|
|
3230
3231
|
altText?: string | undefined;
|
|
@@ -3236,7 +3237,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3236
3237
|
uploadId?: string | undefined;
|
|
3237
3238
|
} | undefined;
|
|
3238
3239
|
} | undefined;
|
|
3239
|
-
version?: "1.0.0" | undefined;
|
|
3240
3240
|
url?: string | undefined;
|
|
3241
3241
|
email?: string | undefined;
|
|
3242
3242
|
jobTitle?: string | undefined;
|
|
@@ -3285,10 +3285,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3285
3285
|
version: "1.0.0";
|
|
3286
3286
|
asset?: {
|
|
3287
3287
|
version: "1.0.0";
|
|
3288
|
-
label?: string | undefined;
|
|
3289
|
-
title?: string | undefined;
|
|
3290
3288
|
path?: string | undefined;
|
|
3291
3289
|
size?: number | undefined;
|
|
3290
|
+
label?: string | undefined;
|
|
3291
|
+
title?: string | undefined;
|
|
3292
3292
|
url?: string | undefined;
|
|
3293
3293
|
description?: string | undefined;
|
|
3294
3294
|
altText?: string | undefined;
|
|
@@ -3324,7 +3324,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3324
3324
|
firstName: string;
|
|
3325
3325
|
lastName: string;
|
|
3326
3326
|
slug: string;
|
|
3327
|
+
version?: "1.0.0" | undefined;
|
|
3327
3328
|
address?: {
|
|
3329
|
+
version?: "1.0.0" | undefined;
|
|
3328
3330
|
address?: {
|
|
3329
3331
|
type: string;
|
|
3330
3332
|
addressCountry: string;
|
|
@@ -3336,7 +3338,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3336
3338
|
streetNumber?: string | undefined;
|
|
3337
3339
|
postalCode?: string | undefined;
|
|
3338
3340
|
} | undefined;
|
|
3339
|
-
version?: "1.0.0" | undefined;
|
|
3340
3341
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3341
3342
|
latitude?: number | undefined;
|
|
3342
3343
|
longitude?: number | undefined;
|
|
@@ -3346,11 +3347,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3346
3347
|
type: string;
|
|
3347
3348
|
version?: "1.0.0" | undefined;
|
|
3348
3349
|
asset?: {
|
|
3349
|
-
label?: string | undefined;
|
|
3350
|
-
title?: string | undefined;
|
|
3351
3350
|
path?: string | undefined;
|
|
3352
3351
|
version?: "1.0.0" | undefined;
|
|
3353
3352
|
size?: number | undefined;
|
|
3353
|
+
label?: string | undefined;
|
|
3354
|
+
title?: string | undefined;
|
|
3354
3355
|
url?: string | undefined;
|
|
3355
3356
|
description?: string | undefined;
|
|
3356
3357
|
altText?: string | undefined;
|
|
@@ -3362,7 +3363,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3362
3363
|
uploadId?: string | undefined;
|
|
3363
3364
|
} | undefined;
|
|
3364
3365
|
} | undefined;
|
|
3365
|
-
version?: "1.0.0" | undefined;
|
|
3366
3366
|
url?: string | undefined;
|
|
3367
3367
|
email?: string | undefined;
|
|
3368
3368
|
jobTitle?: string | undefined;
|
|
@@ -3430,6 +3430,7 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3430
3430
|
latitude?: number | undefined;
|
|
3431
3431
|
longitude?: number | undefined;
|
|
3432
3432
|
}, {
|
|
3433
|
+
version?: "1.0.0" | undefined;
|
|
3433
3434
|
address?: {
|
|
3434
3435
|
type: string;
|
|
3435
3436
|
addressCountry: string;
|
|
@@ -3441,7 +3442,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3441
3442
|
streetNumber?: string | undefined;
|
|
3442
3443
|
postalCode?: string | undefined;
|
|
3443
3444
|
} | undefined;
|
|
3444
|
-
version?: "1.0.0" | undefined;
|
|
3445
3445
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3446
3446
|
latitude?: number | undefined;
|
|
3447
3447
|
longitude?: number | undefined;
|
|
@@ -3477,8 +3477,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3477
3477
|
isScrapeManaged?: boolean | undefined;
|
|
3478
3478
|
}>>;
|
|
3479
3479
|
}, "strip", z.ZodTypeAny, {
|
|
3480
|
-
type: string;
|
|
3481
3480
|
id: string;
|
|
3481
|
+
type: string;
|
|
3482
3482
|
version: "1.0.0";
|
|
3483
3483
|
slug: string;
|
|
3484
3484
|
createdAt: string;
|
|
@@ -3489,10 +3489,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3489
3489
|
version: "1.0.0";
|
|
3490
3490
|
asset?: {
|
|
3491
3491
|
version: "1.0.0";
|
|
3492
|
-
label?: string | undefined;
|
|
3493
|
-
title?: string | undefined;
|
|
3494
3492
|
path?: string | undefined;
|
|
3495
3493
|
size?: number | undefined;
|
|
3494
|
+
label?: string | undefined;
|
|
3495
|
+
title?: string | undefined;
|
|
3496
3496
|
url?: string | undefined;
|
|
3497
3497
|
description?: string | undefined;
|
|
3498
3498
|
altText?: string | undefined;
|
|
@@ -3525,10 +3525,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3525
3525
|
version: "1.0.0";
|
|
3526
3526
|
asset?: {
|
|
3527
3527
|
version: "1.0.0";
|
|
3528
|
-
label?: string | undefined;
|
|
3529
|
-
title?: string | undefined;
|
|
3530
3528
|
path?: string | undefined;
|
|
3531
3529
|
size?: number | undefined;
|
|
3530
|
+
label?: string | undefined;
|
|
3531
|
+
title?: string | undefined;
|
|
3532
3532
|
url?: string | undefined;
|
|
3533
3533
|
description?: string | undefined;
|
|
3534
3534
|
altText?: string | undefined;
|
|
@@ -3544,9 +3544,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3544
3544
|
} | undefined;
|
|
3545
3545
|
jobBoardSlug?: string[] | undefined;
|
|
3546
3546
|
companyBenefits?: {
|
|
3547
|
-
title: string;
|
|
3548
3547
|
type: string;
|
|
3549
3548
|
version: "1.0.0";
|
|
3549
|
+
title: string;
|
|
3550
3550
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
3551
3551
|
description?: string | undefined;
|
|
3552
3552
|
}[] | undefined;
|
|
@@ -3601,10 +3601,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3601
3601
|
version: "1.0.0";
|
|
3602
3602
|
asset?: {
|
|
3603
3603
|
version: "1.0.0";
|
|
3604
|
-
label?: string | undefined;
|
|
3605
|
-
title?: string | undefined;
|
|
3606
3604
|
path?: string | undefined;
|
|
3607
3605
|
size?: number | undefined;
|
|
3606
|
+
label?: string | undefined;
|
|
3607
|
+
title?: string | undefined;
|
|
3608
3608
|
url?: string | undefined;
|
|
3609
3609
|
description?: string | undefined;
|
|
3610
3610
|
altText?: string | undefined;
|
|
@@ -3660,8 +3660,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3660
3660
|
postProcessorUniqueRunId?: string | undefined;
|
|
3661
3661
|
} | undefined;
|
|
3662
3662
|
}, {
|
|
3663
|
-
type: string;
|
|
3664
3663
|
id: string;
|
|
3664
|
+
type: string;
|
|
3665
3665
|
slug: string;
|
|
3666
3666
|
createdAt: string;
|
|
3667
3667
|
updatedAt: string;
|
|
@@ -3671,11 +3671,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3671
3671
|
type: string;
|
|
3672
3672
|
version?: "1.0.0" | undefined;
|
|
3673
3673
|
asset?: {
|
|
3674
|
-
label?: string | undefined;
|
|
3675
|
-
title?: string | undefined;
|
|
3676
3674
|
path?: string | undefined;
|
|
3677
3675
|
version?: "1.0.0" | undefined;
|
|
3678
3676
|
size?: number | undefined;
|
|
3677
|
+
label?: string | undefined;
|
|
3678
|
+
title?: string | undefined;
|
|
3679
3679
|
url?: string | undefined;
|
|
3680
3680
|
description?: string | undefined;
|
|
3681
3681
|
altText?: string | undefined;
|
|
@@ -3707,11 +3707,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3707
3707
|
type: string;
|
|
3708
3708
|
version?: "1.0.0" | undefined;
|
|
3709
3709
|
asset?: {
|
|
3710
|
-
label?: string | undefined;
|
|
3711
|
-
title?: string | undefined;
|
|
3712
3710
|
path?: string | undefined;
|
|
3713
3711
|
version?: "1.0.0" | undefined;
|
|
3714
3712
|
size?: number | undefined;
|
|
3713
|
+
label?: string | undefined;
|
|
3714
|
+
title?: string | undefined;
|
|
3715
3715
|
url?: string | undefined;
|
|
3716
3716
|
description?: string | undefined;
|
|
3717
3717
|
altText?: string | undefined;
|
|
@@ -3727,8 +3727,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3727
3727
|
} | undefined;
|
|
3728
3728
|
jobBoardSlug?: string[] | undefined;
|
|
3729
3729
|
companyBenefits?: {
|
|
3730
|
-
title: string;
|
|
3731
3730
|
type: string;
|
|
3731
|
+
title: string;
|
|
3732
3732
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
3733
3733
|
version?: "1.0.0" | undefined;
|
|
3734
3734
|
description?: string | undefined;
|
|
@@ -3760,7 +3760,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3760
3760
|
firstName: string;
|
|
3761
3761
|
lastName: string;
|
|
3762
3762
|
slug: string;
|
|
3763
|
+
version?: "1.0.0" | undefined;
|
|
3763
3764
|
address?: {
|
|
3765
|
+
version?: "1.0.0" | undefined;
|
|
3764
3766
|
address?: {
|
|
3765
3767
|
type: string;
|
|
3766
3768
|
addressCountry: string;
|
|
@@ -3772,7 +3774,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3772
3774
|
streetNumber?: string | undefined;
|
|
3773
3775
|
postalCode?: string | undefined;
|
|
3774
3776
|
} | undefined;
|
|
3775
|
-
version?: "1.0.0" | undefined;
|
|
3776
3777
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3777
3778
|
latitude?: number | undefined;
|
|
3778
3779
|
longitude?: number | undefined;
|
|
@@ -3782,11 +3783,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3782
3783
|
type: string;
|
|
3783
3784
|
version?: "1.0.0" | undefined;
|
|
3784
3785
|
asset?: {
|
|
3785
|
-
label?: string | undefined;
|
|
3786
|
-
title?: string | undefined;
|
|
3787
3786
|
path?: string | undefined;
|
|
3788
3787
|
version?: "1.0.0" | undefined;
|
|
3789
3788
|
size?: number | undefined;
|
|
3789
|
+
label?: string | undefined;
|
|
3790
|
+
title?: string | undefined;
|
|
3790
3791
|
url?: string | undefined;
|
|
3791
3792
|
description?: string | undefined;
|
|
3792
3793
|
altText?: string | undefined;
|
|
@@ -3798,7 +3799,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3798
3799
|
uploadId?: string | undefined;
|
|
3799
3800
|
} | undefined;
|
|
3800
3801
|
} | undefined;
|
|
3801
|
-
version?: "1.0.0" | undefined;
|
|
3802
3802
|
url?: string | undefined;
|
|
3803
3803
|
email?: string | undefined;
|
|
3804
3804
|
jobTitle?: string | undefined;
|
|
@@ -3814,6 +3814,7 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3814
3814
|
}[] | undefined;
|
|
3815
3815
|
} | undefined;
|
|
3816
3816
|
headquartersLocation?: {
|
|
3817
|
+
version?: "1.0.0" | undefined;
|
|
3817
3818
|
address?: {
|
|
3818
3819
|
type: string;
|
|
3819
3820
|
addressCountry: string;
|
|
@@ -3825,7 +3826,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3825
3826
|
streetNumber?: string | undefined;
|
|
3826
3827
|
postalCode?: string | undefined;
|
|
3827
3828
|
} | undefined;
|
|
3828
|
-
version?: "1.0.0" | undefined;
|
|
3829
3829
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3830
3830
|
latitude?: number | undefined;
|
|
3831
3831
|
longitude?: number | undefined;
|
|
@@ -3896,6 +3896,7 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3896
3896
|
latitude?: number | undefined;
|
|
3897
3897
|
longitude?: number | undefined;
|
|
3898
3898
|
}, {
|
|
3899
|
+
version?: "1.0.0" | undefined;
|
|
3899
3900
|
address?: {
|
|
3900
3901
|
type: string;
|
|
3901
3902
|
addressCountry: string;
|
|
@@ -3907,7 +3908,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3907
3908
|
streetNumber?: string | undefined;
|
|
3908
3909
|
postalCode?: string | undefined;
|
|
3909
3910
|
} | undefined;
|
|
3910
|
-
version?: "1.0.0" | undefined;
|
|
3911
3911
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
3912
3912
|
latitude?: number | undefined;
|
|
3913
3913
|
longitude?: number | undefined;
|
|
@@ -3922,8 +3922,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3922
3922
|
createdAt?: string | undefined;
|
|
3923
3923
|
updatedAt?: string | undefined;
|
|
3924
3924
|
companyId?: {
|
|
3925
|
-
type: string;
|
|
3926
3925
|
id: string;
|
|
3926
|
+
type: string;
|
|
3927
3927
|
version: "1.0.0";
|
|
3928
3928
|
slug: string;
|
|
3929
3929
|
createdAt: string;
|
|
@@ -3934,10 +3934,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3934
3934
|
version: "1.0.0";
|
|
3935
3935
|
asset?: {
|
|
3936
3936
|
version: "1.0.0";
|
|
3937
|
-
label?: string | undefined;
|
|
3938
|
-
title?: string | undefined;
|
|
3939
3937
|
path?: string | undefined;
|
|
3940
3938
|
size?: number | undefined;
|
|
3939
|
+
label?: string | undefined;
|
|
3940
|
+
title?: string | undefined;
|
|
3941
3941
|
url?: string | undefined;
|
|
3942
3942
|
description?: string | undefined;
|
|
3943
3943
|
altText?: string | undefined;
|
|
@@ -3970,10 +3970,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3970
3970
|
version: "1.0.0";
|
|
3971
3971
|
asset?: {
|
|
3972
3972
|
version: "1.0.0";
|
|
3973
|
-
label?: string | undefined;
|
|
3974
|
-
title?: string | undefined;
|
|
3975
3973
|
path?: string | undefined;
|
|
3976
3974
|
size?: number | undefined;
|
|
3975
|
+
label?: string | undefined;
|
|
3976
|
+
title?: string | undefined;
|
|
3977
3977
|
url?: string | undefined;
|
|
3978
3978
|
description?: string | undefined;
|
|
3979
3979
|
altText?: string | undefined;
|
|
@@ -3989,9 +3989,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3989
3989
|
} | undefined;
|
|
3990
3990
|
jobBoardSlug?: string[] | undefined;
|
|
3991
3991
|
companyBenefits?: {
|
|
3992
|
-
title: string;
|
|
3993
3992
|
type: string;
|
|
3994
3993
|
version: "1.0.0";
|
|
3994
|
+
title: string;
|
|
3995
3995
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
3996
3996
|
description?: string | undefined;
|
|
3997
3997
|
}[] | undefined;
|
|
@@ -4046,10 +4046,10 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4046
4046
|
version: "1.0.0";
|
|
4047
4047
|
asset?: {
|
|
4048
4048
|
version: "1.0.0";
|
|
4049
|
-
label?: string | undefined;
|
|
4050
|
-
title?: string | undefined;
|
|
4051
4049
|
path?: string | undefined;
|
|
4052
4050
|
size?: number | undefined;
|
|
4051
|
+
label?: string | undefined;
|
|
4052
|
+
title?: string | undefined;
|
|
4053
4053
|
url?: string | undefined;
|
|
4054
4054
|
description?: string | undefined;
|
|
4055
4055
|
altText?: string | undefined;
|
|
@@ -4130,8 +4130,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4130
4130
|
createdAt?: string | undefined;
|
|
4131
4131
|
updatedAt?: string | undefined;
|
|
4132
4132
|
companyId?: {
|
|
4133
|
-
type: string;
|
|
4134
4133
|
id: string;
|
|
4134
|
+
type: string;
|
|
4135
4135
|
slug: string;
|
|
4136
4136
|
createdAt: string;
|
|
4137
4137
|
updatedAt: string;
|
|
@@ -4141,11 +4141,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4141
4141
|
type: string;
|
|
4142
4142
|
version?: "1.0.0" | undefined;
|
|
4143
4143
|
asset?: {
|
|
4144
|
-
label?: string | undefined;
|
|
4145
|
-
title?: string | undefined;
|
|
4146
4144
|
path?: string | undefined;
|
|
4147
4145
|
version?: "1.0.0" | undefined;
|
|
4148
4146
|
size?: number | undefined;
|
|
4147
|
+
label?: string | undefined;
|
|
4148
|
+
title?: string | undefined;
|
|
4149
4149
|
url?: string | undefined;
|
|
4150
4150
|
description?: string | undefined;
|
|
4151
4151
|
altText?: string | undefined;
|
|
@@ -4177,11 +4177,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4177
4177
|
type: string;
|
|
4178
4178
|
version?: "1.0.0" | undefined;
|
|
4179
4179
|
asset?: {
|
|
4180
|
-
label?: string | undefined;
|
|
4181
|
-
title?: string | undefined;
|
|
4182
4180
|
path?: string | undefined;
|
|
4183
4181
|
version?: "1.0.0" | undefined;
|
|
4184
4182
|
size?: number | undefined;
|
|
4183
|
+
label?: string | undefined;
|
|
4184
|
+
title?: string | undefined;
|
|
4185
4185
|
url?: string | undefined;
|
|
4186
4186
|
description?: string | undefined;
|
|
4187
4187
|
altText?: string | undefined;
|
|
@@ -4197,8 +4197,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4197
4197
|
} | undefined;
|
|
4198
4198
|
jobBoardSlug?: string[] | undefined;
|
|
4199
4199
|
companyBenefits?: {
|
|
4200
|
-
title: string;
|
|
4201
4200
|
type: string;
|
|
4201
|
+
title: string;
|
|
4202
4202
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
4203
4203
|
version?: "1.0.0" | undefined;
|
|
4204
4204
|
description?: string | undefined;
|
|
@@ -4230,7 +4230,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4230
4230
|
firstName: string;
|
|
4231
4231
|
lastName: string;
|
|
4232
4232
|
slug: string;
|
|
4233
|
+
version?: "1.0.0" | undefined;
|
|
4233
4234
|
address?: {
|
|
4235
|
+
version?: "1.0.0" | undefined;
|
|
4234
4236
|
address?: {
|
|
4235
4237
|
type: string;
|
|
4236
4238
|
addressCountry: string;
|
|
@@ -4242,7 +4244,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4242
4244
|
streetNumber?: string | undefined;
|
|
4243
4245
|
postalCode?: string | undefined;
|
|
4244
4246
|
} | undefined;
|
|
4245
|
-
version?: "1.0.0" | undefined;
|
|
4246
4247
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
4247
4248
|
latitude?: number | undefined;
|
|
4248
4249
|
longitude?: number | undefined;
|
|
@@ -4252,11 +4253,11 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4252
4253
|
type: string;
|
|
4253
4254
|
version?: "1.0.0" | undefined;
|
|
4254
4255
|
asset?: {
|
|
4255
|
-
label?: string | undefined;
|
|
4256
|
-
title?: string | undefined;
|
|
4257
4256
|
path?: string | undefined;
|
|
4258
4257
|
version?: "1.0.0" | undefined;
|
|
4259
4258
|
size?: number | undefined;
|
|
4259
|
+
label?: string | undefined;
|
|
4260
|
+
title?: string | undefined;
|
|
4260
4261
|
url?: string | undefined;
|
|
4261
4262
|
description?: string | undefined;
|
|
4262
4263
|
altText?: string | undefined;
|
|
@@ -4268,7 +4269,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4268
4269
|
uploadId?: string | undefined;
|
|
4269
4270
|
} | undefined;
|
|
4270
4271
|
} | undefined;
|
|
4271
|
-
version?: "1.0.0" | undefined;
|
|
4272
4272
|
url?: string | undefined;
|
|
4273
4273
|
email?: string | undefined;
|
|
4274
4274
|
jobTitle?: string | undefined;
|
|
@@ -4284,6 +4284,7 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4284
4284
|
}[] | undefined;
|
|
4285
4285
|
} | undefined;
|
|
4286
4286
|
headquartersLocation?: {
|
|
4287
|
+
version?: "1.0.0" | undefined;
|
|
4287
4288
|
address?: {
|
|
4288
4289
|
type: string;
|
|
4289
4290
|
addressCountry: string;
|
|
@@ -4295,7 +4296,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4295
4296
|
streetNumber?: string | undefined;
|
|
4296
4297
|
postalCode?: string | undefined;
|
|
4297
4298
|
} | undefined;
|
|
4298
|
-
version?: "1.0.0" | undefined;
|
|
4299
4299
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
4300
4300
|
latitude?: number | undefined;
|
|
4301
4301
|
longitude?: number | undefined;
|
|
@@ -4314,6 +4314,7 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4314
4314
|
} | undefined;
|
|
4315
4315
|
} | undefined;
|
|
4316
4316
|
geoLocation?: {
|
|
4317
|
+
version?: "1.0.0" | undefined;
|
|
4317
4318
|
address?: {
|
|
4318
4319
|
type: string;
|
|
4319
4320
|
addressCountry: string;
|
|
@@ -4325,7 +4326,6 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4325
4326
|
streetNumber?: string | undefined;
|
|
4326
4327
|
postalCode?: string | undefined;
|
|
4327
4328
|
} | undefined;
|
|
4328
|
-
version?: "1.0.0" | undefined;
|
|
4329
4329
|
detailLevel?: "COUNTRY" | "GEO" | "LOCALITY" | "POSTAL_CODE" | "REGION" | undefined;
|
|
4330
4330
|
latitude?: number | undefined;
|
|
4331
4331
|
longitude?: number | undefined;
|