@next-degree/pickle-shared-js 0.6.48 → 0.6.50
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/JobDescription.cjs +13 -4
- package/dist/components/jobPost/JobDescription.cjs.map +1 -1
- package/dist/components/jobPost/JobDescription.js +13 -4
- package/dist/components/jobPost/JobDescription.js.map +1 -1
- package/dist/components/jobPost/JobPost.cjs +13 -4
- package/dist/components/jobPost/JobPost.cjs.map +1 -1
- package/dist/components/jobPost/JobPost.d.cts +1 -1
- package/dist/components/jobPost/JobPost.d.ts +1 -1
- package/dist/components/jobPost/JobPost.js +13 -4
- package/dist/components/jobPost/JobPost.js.map +1 -1
- package/dist/components/primitives/command.d.cts +1 -1
- package/dist/components/primitives/command.d.ts +1 -1
- package/dist/components/ui/ReadMore.cjs +13 -4
- package/dist/components/ui/ReadMore.cjs.map +1 -1
- package/dist/components/ui/ReadMore.js +13 -4
- package/dist/components/ui/ReadMore.js.map +1 -1
- package/dist/components/ui/Select.cjs +5 -11
- package/dist/components/ui/Select.cjs.map +1 -1
- package/dist/components/ui/Select.js +5 -11
- package/dist/components/ui/Select.js.map +1 -1
- package/dist/components/ui/StepTabs.cjs +92 -0
- package/dist/components/ui/StepTabs.cjs.map +1 -0
- package/dist/components/ui/StepTabs.d.cts +13 -0
- package/dist/components/ui/StepTabs.d.ts +13 -0
- package/dist/components/ui/StepTabs.js +58 -0
- package/dist/components/ui/StepTabs.js.map +1 -0
- package/dist/{displayText-mYUVo6Ek.d.cts → displayText-BCQw5Qq-.d.cts} +2 -2
- package/dist/{displayText-DDf9iWyg.d.ts → displayText-Bqmpx1Va.d.ts} +2 -2
- package/dist/hooks/useDisplayText.d.cts +3 -3
- package/dist/hooks/useDisplayText.d.ts +3 -3
- package/dist/index.cjs +18 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +18 -15
- package/dist/index.js.map +1 -1
- package/dist/{job_posting_service_latest-Dn5s8beY.d.cts → job_posting_service_latest-C2z66hFK.d.cts} +177 -177
- package/dist/{job_posting_service_latest-Dn5s8beY.d.ts → job_posting_service_latest-C2z66hFK.d.ts} +177 -177
- 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/styles/globals.css +96 -6
- package/dist/styles/globals.css.map +1 -1
- 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 +5 -1
- package/dist/{company_service_latest-DelYl1hO.d.cts → company_service_latest-B7KhyYDc.d.cts} +174 -174
- package/dist/{company_service_latest-DelYl1hO.d.ts → company_service_latest-B7KhyYDc.d.ts} +174 -174
- package/dist/{shared_pickle_output_latest-DbAgINuf.d.cts → shared_pickle_output_latest-_L9GxVle.d.cts} +11 -11
- package/dist/{shared_pickle_output_latest-DbAgINuf.d.ts → shared_pickle_output_latest-_L9GxVle.d.ts} +11 -11
|
@@ -10,12 +10,12 @@ declare const socialMediaSchema: z.ZodObject<{
|
|
|
10
10
|
url: z.ZodString;
|
|
11
11
|
type: z.ZodString;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
type: string;
|
|
14
13
|
url: string;
|
|
14
|
+
type: string;
|
|
15
15
|
version: "1.0.0";
|
|
16
16
|
}, {
|
|
17
|
-
type: string;
|
|
18
17
|
url: string;
|
|
18
|
+
type: string;
|
|
19
19
|
version?: "1.0.0" | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
type SocialMediaModel = z.infer<typeof socialMediaSchema>;
|
|
@@ -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
|
-
type: string;
|
|
30
29
|
title: string;
|
|
30
|
+
type: string;
|
|
31
31
|
version: "1.0.0";
|
|
32
32
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
33
33
|
description?: string | undefined;
|
|
34
34
|
}, {
|
|
35
|
-
type: string;
|
|
36
35
|
title: string;
|
|
36
|
+
type: string;
|
|
37
37
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
38
38
|
version?: "1.0.0" | undefined;
|
|
39
39
|
description?: string | undefined;
|
|
@@ -66,9 +66,9 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
66
66
|
url: z.ZodOptional<z.ZodString>;
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
68
|
version: "1.0.0";
|
|
69
|
-
path?: string | undefined;
|
|
70
69
|
label?: string | undefined;
|
|
71
70
|
title?: string | undefined;
|
|
71
|
+
path?: string | undefined;
|
|
72
72
|
url?: string | undefined;
|
|
73
73
|
size?: number | undefined;
|
|
74
74
|
description?: string | undefined;
|
|
@@ -80,9 +80,9 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
80
80
|
sha1Hash?: string | undefined;
|
|
81
81
|
uploadId?: string | undefined;
|
|
82
82
|
}, {
|
|
83
|
-
path?: string | undefined;
|
|
84
83
|
label?: string | undefined;
|
|
85
84
|
title?: string | undefined;
|
|
85
|
+
path?: string | undefined;
|
|
86
86
|
url?: string | undefined;
|
|
87
87
|
version?: "1.0.0" | undefined;
|
|
88
88
|
size?: number | undefined;
|
|
@@ -100,9 +100,9 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
100
100
|
version: "1.0.0";
|
|
101
101
|
asset?: {
|
|
102
102
|
version: "1.0.0";
|
|
103
|
-
path?: string | undefined;
|
|
104
103
|
label?: string | undefined;
|
|
105
104
|
title?: string | undefined;
|
|
105
|
+
path?: string | undefined;
|
|
106
106
|
url?: string | undefined;
|
|
107
107
|
size?: number | undefined;
|
|
108
108
|
description?: string | undefined;
|
|
@@ -118,9 +118,9 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
118
118
|
type: string;
|
|
119
119
|
version?: "1.0.0" | undefined;
|
|
120
120
|
asset?: {
|
|
121
|
-
path?: string | undefined;
|
|
122
121
|
label?: string | undefined;
|
|
123
122
|
title?: string | undefined;
|
|
123
|
+
path?: string | undefined;
|
|
124
124
|
url?: string | undefined;
|
|
125
125
|
version?: "1.0.0" | undefined;
|
|
126
126
|
size?: number | undefined;
|
|
@@ -136,8 +136,8 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
136
136
|
}>>;
|
|
137
137
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
|
-
type: string;
|
|
140
139
|
name: string;
|
|
140
|
+
type: string;
|
|
141
141
|
version: "1.0.0";
|
|
142
142
|
description: string;
|
|
143
143
|
logo?: {
|
|
@@ -145,9 +145,9 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
145
145
|
version: "1.0.0";
|
|
146
146
|
asset?: {
|
|
147
147
|
version: "1.0.0";
|
|
148
|
-
path?: string | undefined;
|
|
149
148
|
label?: string | undefined;
|
|
150
149
|
title?: string | undefined;
|
|
150
|
+
path?: string | undefined;
|
|
151
151
|
url?: string | undefined;
|
|
152
152
|
size?: number | undefined;
|
|
153
153
|
description?: string | undefined;
|
|
@@ -162,17 +162,17 @@ declare const jobBoardSchema: z.ZodObject<{
|
|
|
162
162
|
} | undefined;
|
|
163
163
|
baseUrl?: string | undefined;
|
|
164
164
|
}, {
|
|
165
|
-
type: string;
|
|
166
165
|
name: string;
|
|
166
|
+
type: string;
|
|
167
167
|
description: string;
|
|
168
168
|
version?: "1.0.0" | undefined;
|
|
169
169
|
logo?: {
|
|
170
170
|
type: string;
|
|
171
171
|
version?: "1.0.0" | undefined;
|
|
172
172
|
asset?: {
|
|
173
|
-
path?: string | undefined;
|
|
174
173
|
label?: string | undefined;
|
|
175
174
|
title?: string | undefined;
|
|
175
|
+
path?: string | undefined;
|
|
176
176
|
url?: string | undefined;
|
|
177
177
|
version?: "1.0.0" | undefined;
|
|
178
178
|
size?: number | undefined;
|
|
@@ -220,9 +220,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
220
220
|
url: z.ZodOptional<z.ZodString>;
|
|
221
221
|
}, "strip", z.ZodTypeAny, {
|
|
222
222
|
version: "1.0.0";
|
|
223
|
-
path?: string | undefined;
|
|
224
223
|
label?: string | undefined;
|
|
225
224
|
title?: string | undefined;
|
|
225
|
+
path?: string | undefined;
|
|
226
226
|
url?: string | undefined;
|
|
227
227
|
size?: number | undefined;
|
|
228
228
|
description?: string | undefined;
|
|
@@ -234,9 +234,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
234
234
|
sha1Hash?: string | undefined;
|
|
235
235
|
uploadId?: string | undefined;
|
|
236
236
|
}, {
|
|
237
|
-
path?: string | undefined;
|
|
238
237
|
label?: string | undefined;
|
|
239
238
|
title?: string | undefined;
|
|
239
|
+
path?: string | undefined;
|
|
240
240
|
url?: string | undefined;
|
|
241
241
|
version?: "1.0.0" | undefined;
|
|
242
242
|
size?: number | undefined;
|
|
@@ -254,9 +254,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
254
254
|
version: "1.0.0";
|
|
255
255
|
asset?: {
|
|
256
256
|
version: "1.0.0";
|
|
257
|
-
path?: string | undefined;
|
|
258
257
|
label?: string | undefined;
|
|
259
258
|
title?: string | undefined;
|
|
259
|
+
path?: string | undefined;
|
|
260
260
|
url?: string | undefined;
|
|
261
261
|
size?: number | undefined;
|
|
262
262
|
description?: string | undefined;
|
|
@@ -272,9 +272,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
272
272
|
type: string;
|
|
273
273
|
version?: "1.0.0" | undefined;
|
|
274
274
|
asset?: {
|
|
275
|
-
path?: string | undefined;
|
|
276
275
|
label?: string | undefined;
|
|
277
276
|
title?: string | undefined;
|
|
277
|
+
path?: string | undefined;
|
|
278
278
|
url?: string | undefined;
|
|
279
279
|
version?: "1.0.0" | undefined;
|
|
280
280
|
size?: number | undefined;
|
|
@@ -294,12 +294,12 @@ declare const personSchema: z.ZodObject<{
|
|
|
294
294
|
url: z.ZodString;
|
|
295
295
|
type: z.ZodString;
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
type: string;
|
|
298
297
|
url: string;
|
|
298
|
+
type: string;
|
|
299
299
|
version: "1.0.0";
|
|
300
300
|
}, {
|
|
301
|
-
type: string;
|
|
302
301
|
url: string;
|
|
302
|
+
type: string;
|
|
303
303
|
version?: "1.0.0" | undefined;
|
|
304
304
|
}>, "many">>;
|
|
305
305
|
telephone: z.ZodOptional<z.ZodString>;
|
|
@@ -402,9 +402,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
402
402
|
version: "1.0.0";
|
|
403
403
|
asset?: {
|
|
404
404
|
version: "1.0.0";
|
|
405
|
-
path?: string | undefined;
|
|
406
405
|
label?: string | undefined;
|
|
407
406
|
title?: string | undefined;
|
|
407
|
+
path?: string | undefined;
|
|
408
408
|
url?: string | undefined;
|
|
409
409
|
size?: number | undefined;
|
|
410
410
|
description?: string | undefined;
|
|
@@ -424,8 +424,8 @@ declare const personSchema: z.ZodObject<{
|
|
|
424
424
|
isMedical?: boolean | undefined;
|
|
425
425
|
isScientist?: boolean | undefined;
|
|
426
426
|
socialMedia?: {
|
|
427
|
-
type: string;
|
|
428
427
|
url: string;
|
|
428
|
+
type: string;
|
|
429
429
|
version: "1.0.0";
|
|
430
430
|
}[] | undefined;
|
|
431
431
|
telephone?: string | undefined;
|
|
@@ -456,9 +456,9 @@ declare const personSchema: z.ZodObject<{
|
|
|
456
456
|
type: string;
|
|
457
457
|
version?: "1.0.0" | undefined;
|
|
458
458
|
asset?: {
|
|
459
|
-
path?: string | undefined;
|
|
460
459
|
label?: string | undefined;
|
|
461
460
|
title?: string | undefined;
|
|
461
|
+
path?: string | undefined;
|
|
462
462
|
url?: string | undefined;
|
|
463
463
|
version?: "1.0.0" | undefined;
|
|
464
464
|
size?: number | undefined;
|
|
@@ -480,8 +480,8 @@ declare const personSchema: z.ZodObject<{
|
|
|
480
480
|
isMedical?: boolean | undefined;
|
|
481
481
|
isScientist?: boolean | undefined;
|
|
482
482
|
socialMedia?: {
|
|
483
|
-
type: string;
|
|
484
483
|
url: string;
|
|
484
|
+
type: string;
|
|
485
485
|
version?: "1.0.0" | undefined;
|
|
486
486
|
}[] | undefined;
|
|
487
487
|
telephone?: string | undefined;
|
|
@@ -516,9 +516,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
516
516
|
url: z.ZodOptional<z.ZodString>;
|
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
|
518
518
|
version: "1.0.0";
|
|
519
|
-
path?: string | undefined;
|
|
520
519
|
label?: string | undefined;
|
|
521
520
|
title?: string | undefined;
|
|
521
|
+
path?: string | undefined;
|
|
522
522
|
url?: string | undefined;
|
|
523
523
|
size?: number | undefined;
|
|
524
524
|
description?: string | undefined;
|
|
@@ -530,9 +530,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
530
530
|
sha1Hash?: string | undefined;
|
|
531
531
|
uploadId?: string | undefined;
|
|
532
532
|
}, {
|
|
533
|
-
path?: string | undefined;
|
|
534
533
|
label?: string | undefined;
|
|
535
534
|
title?: string | undefined;
|
|
535
|
+
path?: string | undefined;
|
|
536
536
|
url?: string | undefined;
|
|
537
537
|
version?: "1.0.0" | undefined;
|
|
538
538
|
size?: number | undefined;
|
|
@@ -550,9 +550,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
550
550
|
version: "1.0.0";
|
|
551
551
|
asset?: {
|
|
552
552
|
version: "1.0.0";
|
|
553
|
-
path?: string | undefined;
|
|
554
553
|
label?: string | undefined;
|
|
555
554
|
title?: string | undefined;
|
|
555
|
+
path?: string | undefined;
|
|
556
556
|
url?: string | undefined;
|
|
557
557
|
size?: number | undefined;
|
|
558
558
|
description?: string | undefined;
|
|
@@ -568,9 +568,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
568
568
|
type: string;
|
|
569
569
|
version?: "1.0.0" | undefined;
|
|
570
570
|
asset?: {
|
|
571
|
-
path?: string | undefined;
|
|
572
571
|
label?: string | undefined;
|
|
573
572
|
title?: string | undefined;
|
|
573
|
+
path?: string | undefined;
|
|
574
574
|
url?: string | undefined;
|
|
575
575
|
version?: "1.0.0" | undefined;
|
|
576
576
|
size?: number | undefined;
|
|
@@ -586,8 +586,8 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
586
586
|
}>>;
|
|
587
587
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
588
588
|
}, "strip", z.ZodTypeAny, {
|
|
589
|
-
type: string;
|
|
590
589
|
name: string;
|
|
590
|
+
type: string;
|
|
591
591
|
version: "1.0.0";
|
|
592
592
|
description: string;
|
|
593
593
|
logo?: {
|
|
@@ -595,9 +595,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
595
595
|
version: "1.0.0";
|
|
596
596
|
asset?: {
|
|
597
597
|
version: "1.0.0";
|
|
598
|
-
path?: string | undefined;
|
|
599
598
|
label?: string | undefined;
|
|
600
599
|
title?: string | undefined;
|
|
600
|
+
path?: string | undefined;
|
|
601
601
|
url?: string | undefined;
|
|
602
602
|
size?: number | undefined;
|
|
603
603
|
description?: string | undefined;
|
|
@@ -612,17 +612,17 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
612
612
|
} | undefined;
|
|
613
613
|
baseUrl?: string | undefined;
|
|
614
614
|
}, {
|
|
615
|
-
type: string;
|
|
616
615
|
name: string;
|
|
616
|
+
type: string;
|
|
617
617
|
description: string;
|
|
618
618
|
version?: "1.0.0" | undefined;
|
|
619
619
|
logo?: {
|
|
620
620
|
type: string;
|
|
621
621
|
version?: "1.0.0" | undefined;
|
|
622
622
|
asset?: {
|
|
623
|
-
path?: string | undefined;
|
|
624
623
|
label?: string | undefined;
|
|
625
624
|
title?: string | undefined;
|
|
625
|
+
path?: string | undefined;
|
|
626
626
|
url?: string | undefined;
|
|
627
627
|
version?: "1.0.0" | undefined;
|
|
628
628
|
size?: number | 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
|
-
type: string;
|
|
650
649
|
title: string;
|
|
650
|
+
type: string;
|
|
651
651
|
version: "1.0.0";
|
|
652
652
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
653
653
|
description?: string | undefined;
|
|
654
654
|
}, {
|
|
655
|
-
type: string;
|
|
656
655
|
title: string;
|
|
656
|
+
type: string;
|
|
657
657
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
658
658
|
version?: "1.0.0" | undefined;
|
|
659
659
|
description?: string | undefined;
|
|
@@ -663,8 +663,8 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
663
663
|
version: "1.0.0";
|
|
664
664
|
careersUrl: string;
|
|
665
665
|
jobBoard?: {
|
|
666
|
-
type: string;
|
|
667
666
|
name: string;
|
|
667
|
+
type: string;
|
|
668
668
|
version: "1.0.0";
|
|
669
669
|
description: string;
|
|
670
670
|
logo?: {
|
|
@@ -672,9 +672,9 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
672
672
|
version: "1.0.0";
|
|
673
673
|
asset?: {
|
|
674
674
|
version: "1.0.0";
|
|
675
|
-
path?: string | undefined;
|
|
676
675
|
label?: string | undefined;
|
|
677
676
|
title?: string | undefined;
|
|
677
|
+
path?: string | undefined;
|
|
678
678
|
url?: string | undefined;
|
|
679
679
|
size?: number | undefined;
|
|
680
680
|
description?: string | undefined;
|
|
@@ -691,8 +691,8 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
691
691
|
} | undefined;
|
|
692
692
|
jobBoardSlug?: string[] | undefined;
|
|
693
693
|
companyBenefits?: {
|
|
694
|
-
type: string;
|
|
695
694
|
title: string;
|
|
695
|
+
type: string;
|
|
696
696
|
version: "1.0.0";
|
|
697
697
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
698
698
|
description?: string | undefined;
|
|
@@ -702,17 +702,17 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
702
702
|
careersUrl: string;
|
|
703
703
|
version?: "1.0.0" | undefined;
|
|
704
704
|
jobBoard?: {
|
|
705
|
-
type: string;
|
|
706
705
|
name: string;
|
|
706
|
+
type: string;
|
|
707
707
|
description: string;
|
|
708
708
|
version?: "1.0.0" | undefined;
|
|
709
709
|
logo?: {
|
|
710
710
|
type: string;
|
|
711
711
|
version?: "1.0.0" | undefined;
|
|
712
712
|
asset?: {
|
|
713
|
-
path?: string | undefined;
|
|
714
713
|
label?: string | undefined;
|
|
715
714
|
title?: string | undefined;
|
|
715
|
+
path?: string | undefined;
|
|
716
716
|
url?: string | undefined;
|
|
717
717
|
version?: "1.0.0" | undefined;
|
|
718
718
|
size?: number | undefined;
|
|
@@ -730,8 +730,8 @@ declare const companyCareersSchema: z.ZodObject<{
|
|
|
730
730
|
} | undefined;
|
|
731
731
|
jobBoardSlug?: string[] | undefined;
|
|
732
732
|
companyBenefits?: {
|
|
733
|
-
type: string;
|
|
734
733
|
title: string;
|
|
734
|
+
type: string;
|
|
735
735
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
736
736
|
version?: "1.0.0" | undefined;
|
|
737
737
|
description?: string | undefined;
|
|
@@ -818,9 +818,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
818
818
|
url: z.ZodOptional<z.ZodString>;
|
|
819
819
|
}, "strip", z.ZodTypeAny, {
|
|
820
820
|
version: "1.0.0";
|
|
821
|
-
path?: string | undefined;
|
|
822
821
|
label?: string | undefined;
|
|
823
822
|
title?: string | undefined;
|
|
823
|
+
path?: string | undefined;
|
|
824
824
|
url?: string | undefined;
|
|
825
825
|
size?: number | undefined;
|
|
826
826
|
description?: string | undefined;
|
|
@@ -832,9 +832,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
832
832
|
sha1Hash?: string | undefined;
|
|
833
833
|
uploadId?: string | undefined;
|
|
834
834
|
}, {
|
|
835
|
-
path?: string | undefined;
|
|
836
835
|
label?: string | undefined;
|
|
837
836
|
title?: string | undefined;
|
|
837
|
+
path?: string | undefined;
|
|
838
838
|
url?: string | undefined;
|
|
839
839
|
version?: "1.0.0" | undefined;
|
|
840
840
|
size?: number | undefined;
|
|
@@ -852,9 +852,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
852
852
|
version: "1.0.0";
|
|
853
853
|
asset?: {
|
|
854
854
|
version: "1.0.0";
|
|
855
|
-
path?: string | undefined;
|
|
856
855
|
label?: string | undefined;
|
|
857
856
|
title?: string | undefined;
|
|
857
|
+
path?: string | undefined;
|
|
858
858
|
url?: string | undefined;
|
|
859
859
|
size?: number | undefined;
|
|
860
860
|
description?: string | undefined;
|
|
@@ -870,9 +870,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
870
870
|
type: string;
|
|
871
871
|
version?: "1.0.0" | undefined;
|
|
872
872
|
asset?: {
|
|
873
|
-
path?: string | undefined;
|
|
874
873
|
label?: string | undefined;
|
|
875
874
|
title?: string | undefined;
|
|
875
|
+
path?: string | undefined;
|
|
876
876
|
url?: string | undefined;
|
|
877
877
|
version?: "1.0.0" | undefined;
|
|
878
878
|
size?: number | undefined;
|
|
@@ -892,12 +892,12 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
892
892
|
url: z.ZodString;
|
|
893
893
|
type: z.ZodString;
|
|
894
894
|
}, "strip", z.ZodTypeAny, {
|
|
895
|
-
type: string;
|
|
896
895
|
url: string;
|
|
896
|
+
type: string;
|
|
897
897
|
version: "1.0.0";
|
|
898
898
|
}, {
|
|
899
|
-
type: string;
|
|
900
899
|
url: string;
|
|
900
|
+
type: string;
|
|
901
901
|
version?: "1.0.0" | undefined;
|
|
902
902
|
}>, "many">>;
|
|
903
903
|
telephone: z.ZodOptional<z.ZodString>;
|
|
@@ -1000,9 +1000,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1000
1000
|
version: "1.0.0";
|
|
1001
1001
|
asset?: {
|
|
1002
1002
|
version: "1.0.0";
|
|
1003
|
-
path?: string | undefined;
|
|
1004
1003
|
label?: string | undefined;
|
|
1005
1004
|
title?: string | undefined;
|
|
1005
|
+
path?: string | undefined;
|
|
1006
1006
|
url?: string | undefined;
|
|
1007
1007
|
size?: number | undefined;
|
|
1008
1008
|
description?: string | undefined;
|
|
@@ -1022,8 +1022,8 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1022
1022
|
isMedical?: boolean | undefined;
|
|
1023
1023
|
isScientist?: boolean | undefined;
|
|
1024
1024
|
socialMedia?: {
|
|
1025
|
-
type: string;
|
|
1026
1025
|
url: string;
|
|
1026
|
+
type: string;
|
|
1027
1027
|
version: "1.0.0";
|
|
1028
1028
|
}[] | undefined;
|
|
1029
1029
|
telephone?: string | undefined;
|
|
@@ -1054,9 +1054,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1054
1054
|
type: string;
|
|
1055
1055
|
version?: "1.0.0" | undefined;
|
|
1056
1056
|
asset?: {
|
|
1057
|
-
path?: string | undefined;
|
|
1058
1057
|
label?: string | undefined;
|
|
1059
1058
|
title?: string | undefined;
|
|
1059
|
+
path?: string | undefined;
|
|
1060
1060
|
url?: string | undefined;
|
|
1061
1061
|
version?: "1.0.0" | undefined;
|
|
1062
1062
|
size?: number | undefined;
|
|
@@ -1078,8 +1078,8 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1078
1078
|
isMedical?: boolean | undefined;
|
|
1079
1079
|
isScientist?: boolean | undefined;
|
|
1080
1080
|
socialMedia?: {
|
|
1081
|
-
type: string;
|
|
1082
1081
|
url: string;
|
|
1082
|
+
type: string;
|
|
1083
1083
|
version?: "1.0.0" | undefined;
|
|
1084
1084
|
}[] | undefined;
|
|
1085
1085
|
telephone?: string | undefined;
|
|
@@ -1119,9 +1119,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1119
1119
|
version: "1.0.0";
|
|
1120
1120
|
asset?: {
|
|
1121
1121
|
version: "1.0.0";
|
|
1122
|
-
path?: string | undefined;
|
|
1123
1122
|
label?: string | undefined;
|
|
1124
1123
|
title?: string | undefined;
|
|
1124
|
+
path?: string | undefined;
|
|
1125
1125
|
url?: string | undefined;
|
|
1126
1126
|
size?: number | undefined;
|
|
1127
1127
|
description?: string | undefined;
|
|
@@ -1141,8 +1141,8 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1141
1141
|
isMedical?: boolean | undefined;
|
|
1142
1142
|
isScientist?: boolean | undefined;
|
|
1143
1143
|
socialMedia?: {
|
|
1144
|
-
type: string;
|
|
1145
1144
|
url: string;
|
|
1145
|
+
type: string;
|
|
1146
1146
|
version: "1.0.0";
|
|
1147
1147
|
}[] | undefined;
|
|
1148
1148
|
telephone?: string | undefined;
|
|
@@ -1180,9 +1180,9 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1180
1180
|
type: string;
|
|
1181
1181
|
version?: "1.0.0" | undefined;
|
|
1182
1182
|
asset?: {
|
|
1183
|
-
path?: string | undefined;
|
|
1184
1183
|
label?: string | undefined;
|
|
1185
1184
|
title?: string | undefined;
|
|
1185
|
+
path?: string | undefined;
|
|
1186
1186
|
url?: string | undefined;
|
|
1187
1187
|
version?: "1.0.0" | undefined;
|
|
1188
1188
|
size?: number | undefined;
|
|
@@ -1204,8 +1204,8 @@ declare const foundingInformationSchema: z.ZodObject<{
|
|
|
1204
1204
|
isMedical?: boolean | undefined;
|
|
1205
1205
|
isScientist?: boolean | undefined;
|
|
1206
1206
|
socialMedia?: {
|
|
1207
|
-
type: string;
|
|
1208
1207
|
url: string;
|
|
1208
|
+
type: string;
|
|
1209
1209
|
version?: "1.0.0" | undefined;
|
|
1210
1210
|
}[] | undefined;
|
|
1211
1211
|
telephone?: string | undefined;
|
|
@@ -1269,9 +1269,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1269
1269
|
url: z.ZodOptional<z.ZodString>;
|
|
1270
1270
|
}, "strip", z.ZodTypeAny, {
|
|
1271
1271
|
version: "1.0.0";
|
|
1272
|
-
path?: string | undefined;
|
|
1273
1272
|
label?: string | undefined;
|
|
1274
1273
|
title?: string | undefined;
|
|
1274
|
+
path?: string | undefined;
|
|
1275
1275
|
url?: string | undefined;
|
|
1276
1276
|
size?: number | undefined;
|
|
1277
1277
|
description?: string | undefined;
|
|
@@ -1283,9 +1283,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1283
1283
|
sha1Hash?: string | undefined;
|
|
1284
1284
|
uploadId?: string | undefined;
|
|
1285
1285
|
}, {
|
|
1286
|
-
path?: string | undefined;
|
|
1287
1286
|
label?: string | undefined;
|
|
1288
1287
|
title?: string | undefined;
|
|
1288
|
+
path?: string | undefined;
|
|
1289
1289
|
url?: string | undefined;
|
|
1290
1290
|
version?: "1.0.0" | undefined;
|
|
1291
1291
|
size?: number | undefined;
|
|
@@ -1303,9 +1303,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1303
1303
|
version: "1.0.0";
|
|
1304
1304
|
asset?: {
|
|
1305
1305
|
version: "1.0.0";
|
|
1306
|
-
path?: string | undefined;
|
|
1307
1306
|
label?: string | undefined;
|
|
1308
1307
|
title?: string | undefined;
|
|
1308
|
+
path?: string | undefined;
|
|
1309
1309
|
url?: string | undefined;
|
|
1310
1310
|
size?: number | undefined;
|
|
1311
1311
|
description?: string | undefined;
|
|
@@ -1321,9 +1321,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1321
1321
|
type: string;
|
|
1322
1322
|
version?: "1.0.0" | undefined;
|
|
1323
1323
|
asset?: {
|
|
1324
|
-
path?: string | undefined;
|
|
1325
1324
|
label?: string | undefined;
|
|
1326
1325
|
title?: string | undefined;
|
|
1326
|
+
path?: string | undefined;
|
|
1327
1327
|
url?: string | undefined;
|
|
1328
1328
|
version?: "1.0.0" | undefined;
|
|
1329
1329
|
size?: number | undefined;
|
|
@@ -1343,12 +1343,12 @@ declare const companySchema: z.ZodObject<{
|
|
|
1343
1343
|
url: z.ZodString;
|
|
1344
1344
|
type: z.ZodString;
|
|
1345
1345
|
}, "strip", z.ZodTypeAny, {
|
|
1346
|
-
type: string;
|
|
1347
1346
|
url: string;
|
|
1347
|
+
type: string;
|
|
1348
1348
|
version: "1.0.0";
|
|
1349
1349
|
}, {
|
|
1350
|
-
type: string;
|
|
1351
1350
|
url: string;
|
|
1351
|
+
type: string;
|
|
1352
1352
|
version?: "1.0.0" | undefined;
|
|
1353
1353
|
}>, "many">>;
|
|
1354
1354
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
@@ -1381,9 +1381,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1381
1381
|
url: z.ZodOptional<z.ZodString>;
|
|
1382
1382
|
}, "strip", z.ZodTypeAny, {
|
|
1383
1383
|
version: "1.0.0";
|
|
1384
|
-
path?: string | undefined;
|
|
1385
1384
|
label?: string | undefined;
|
|
1386
1385
|
title?: string | undefined;
|
|
1386
|
+
path?: string | undefined;
|
|
1387
1387
|
url?: string | undefined;
|
|
1388
1388
|
size?: number | undefined;
|
|
1389
1389
|
description?: string | undefined;
|
|
@@ -1395,9 +1395,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1395
1395
|
sha1Hash?: string | undefined;
|
|
1396
1396
|
uploadId?: string | undefined;
|
|
1397
1397
|
}, {
|
|
1398
|
-
path?: string | undefined;
|
|
1399
1398
|
label?: string | undefined;
|
|
1400
1399
|
title?: string | undefined;
|
|
1400
|
+
path?: string | undefined;
|
|
1401
1401
|
url?: string | undefined;
|
|
1402
1402
|
version?: "1.0.0" | undefined;
|
|
1403
1403
|
size?: number | undefined;
|
|
@@ -1415,9 +1415,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1415
1415
|
version: "1.0.0";
|
|
1416
1416
|
asset?: {
|
|
1417
1417
|
version: "1.0.0";
|
|
1418
|
-
path?: string | undefined;
|
|
1419
1418
|
label?: string | undefined;
|
|
1420
1419
|
title?: string | undefined;
|
|
1420
|
+
path?: string | undefined;
|
|
1421
1421
|
url?: string | undefined;
|
|
1422
1422
|
size?: number | undefined;
|
|
1423
1423
|
description?: string | undefined;
|
|
@@ -1433,9 +1433,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1433
1433
|
type: string;
|
|
1434
1434
|
version?: "1.0.0" | undefined;
|
|
1435
1435
|
asset?: {
|
|
1436
|
-
path?: string | undefined;
|
|
1437
1436
|
label?: string | undefined;
|
|
1438
1437
|
title?: string | undefined;
|
|
1438
|
+
path?: string | undefined;
|
|
1439
1439
|
url?: string | undefined;
|
|
1440
1440
|
version?: "1.0.0" | undefined;
|
|
1441
1441
|
size?: number | undefined;
|
|
@@ -1451,8 +1451,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1451
1451
|
}>>;
|
|
1452
1452
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
1453
1453
|
}, "strip", z.ZodTypeAny, {
|
|
1454
|
-
type: string;
|
|
1455
1454
|
name: string;
|
|
1455
|
+
type: string;
|
|
1456
1456
|
version: "1.0.0";
|
|
1457
1457
|
description: string;
|
|
1458
1458
|
logo?: {
|
|
@@ -1460,9 +1460,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1460
1460
|
version: "1.0.0";
|
|
1461
1461
|
asset?: {
|
|
1462
1462
|
version: "1.0.0";
|
|
1463
|
-
path?: string | undefined;
|
|
1464
1463
|
label?: string | undefined;
|
|
1465
1464
|
title?: string | undefined;
|
|
1465
|
+
path?: string | undefined;
|
|
1466
1466
|
url?: string | undefined;
|
|
1467
1467
|
size?: number | undefined;
|
|
1468
1468
|
description?: string | undefined;
|
|
@@ -1477,17 +1477,17 @@ declare const companySchema: z.ZodObject<{
|
|
|
1477
1477
|
} | undefined;
|
|
1478
1478
|
baseUrl?: string | undefined;
|
|
1479
1479
|
}, {
|
|
1480
|
-
type: string;
|
|
1481
1480
|
name: string;
|
|
1481
|
+
type: string;
|
|
1482
1482
|
description: string;
|
|
1483
1483
|
version?: "1.0.0" | undefined;
|
|
1484
1484
|
logo?: {
|
|
1485
1485
|
type: string;
|
|
1486
1486
|
version?: "1.0.0" | undefined;
|
|
1487
1487
|
asset?: {
|
|
1488
|
-
path?: string | undefined;
|
|
1489
1488
|
label?: string | undefined;
|
|
1490
1489
|
title?: string | undefined;
|
|
1490
|
+
path?: string | undefined;
|
|
1491
1491
|
url?: string | undefined;
|
|
1492
1492
|
version?: "1.0.0" | undefined;
|
|
1493
1493
|
size?: number | 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
|
-
type: string;
|
|
1515
1514
|
title: string;
|
|
1515
|
+
type: string;
|
|
1516
1516
|
version: "1.0.0";
|
|
1517
1517
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1518
1518
|
description?: string | undefined;
|
|
1519
1519
|
}, {
|
|
1520
|
-
type: string;
|
|
1521
1520
|
title: string;
|
|
1521
|
+
type: string;
|
|
1522
1522
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1523
1523
|
version?: "1.0.0" | undefined;
|
|
1524
1524
|
description?: string | undefined;
|
|
@@ -1528,8 +1528,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1528
1528
|
version: "1.0.0";
|
|
1529
1529
|
careersUrl: string;
|
|
1530
1530
|
jobBoard?: {
|
|
1531
|
-
type: string;
|
|
1532
1531
|
name: string;
|
|
1532
|
+
type: string;
|
|
1533
1533
|
version: "1.0.0";
|
|
1534
1534
|
description: string;
|
|
1535
1535
|
logo?: {
|
|
@@ -1537,9 +1537,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1537
1537
|
version: "1.0.0";
|
|
1538
1538
|
asset?: {
|
|
1539
1539
|
version: "1.0.0";
|
|
1540
|
-
path?: string | undefined;
|
|
1541
1540
|
label?: string | undefined;
|
|
1542
1541
|
title?: string | undefined;
|
|
1542
|
+
path?: string | undefined;
|
|
1543
1543
|
url?: string | undefined;
|
|
1544
1544
|
size?: number | undefined;
|
|
1545
1545
|
description?: string | undefined;
|
|
@@ -1556,8 +1556,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1556
1556
|
} | undefined;
|
|
1557
1557
|
jobBoardSlug?: string[] | undefined;
|
|
1558
1558
|
companyBenefits?: {
|
|
1559
|
-
type: string;
|
|
1560
1559
|
title: string;
|
|
1560
|
+
type: string;
|
|
1561
1561
|
version: "1.0.0";
|
|
1562
1562
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1563
1563
|
description?: string | undefined;
|
|
@@ -1567,17 +1567,17 @@ declare const companySchema: z.ZodObject<{
|
|
|
1567
1567
|
careersUrl: string;
|
|
1568
1568
|
version?: "1.0.0" | undefined;
|
|
1569
1569
|
jobBoard?: {
|
|
1570
|
-
type: string;
|
|
1571
1570
|
name: string;
|
|
1571
|
+
type: string;
|
|
1572
1572
|
description: string;
|
|
1573
1573
|
version?: "1.0.0" | undefined;
|
|
1574
1574
|
logo?: {
|
|
1575
1575
|
type: string;
|
|
1576
1576
|
version?: "1.0.0" | undefined;
|
|
1577
1577
|
asset?: {
|
|
1578
|
-
path?: string | undefined;
|
|
1579
1578
|
label?: string | undefined;
|
|
1580
1579
|
title?: string | undefined;
|
|
1580
|
+
path?: string | undefined;
|
|
1581
1581
|
url?: string | undefined;
|
|
1582
1582
|
version?: "1.0.0" | undefined;
|
|
1583
1583
|
size?: number | undefined;
|
|
@@ -1595,8 +1595,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1595
1595
|
} | undefined;
|
|
1596
1596
|
jobBoardSlug?: string[] | undefined;
|
|
1597
1597
|
companyBenefits?: {
|
|
1598
|
-
type: string;
|
|
1599
1598
|
title: string;
|
|
1599
|
+
type: string;
|
|
1600
1600
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
1601
1601
|
version?: "1.0.0" | undefined;
|
|
1602
1602
|
description?: string | undefined;
|
|
@@ -1680,9 +1680,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1680
1680
|
url: z.ZodOptional<z.ZodString>;
|
|
1681
1681
|
}, "strip", z.ZodTypeAny, {
|
|
1682
1682
|
version: "1.0.0";
|
|
1683
|
-
path?: string | undefined;
|
|
1684
1683
|
label?: string | undefined;
|
|
1685
1684
|
title?: string | undefined;
|
|
1685
|
+
path?: string | undefined;
|
|
1686
1686
|
url?: string | undefined;
|
|
1687
1687
|
size?: number | undefined;
|
|
1688
1688
|
description?: string | undefined;
|
|
@@ -1694,9 +1694,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1694
1694
|
sha1Hash?: string | undefined;
|
|
1695
1695
|
uploadId?: string | undefined;
|
|
1696
1696
|
}, {
|
|
1697
|
-
path?: string | undefined;
|
|
1698
1697
|
label?: string | undefined;
|
|
1699
1698
|
title?: string | undefined;
|
|
1699
|
+
path?: string | undefined;
|
|
1700
1700
|
url?: string | undefined;
|
|
1701
1701
|
version?: "1.0.0" | undefined;
|
|
1702
1702
|
size?: number | undefined;
|
|
@@ -1714,9 +1714,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1714
1714
|
version: "1.0.0";
|
|
1715
1715
|
asset?: {
|
|
1716
1716
|
version: "1.0.0";
|
|
1717
|
-
path?: string | undefined;
|
|
1718
1717
|
label?: string | undefined;
|
|
1719
1718
|
title?: string | undefined;
|
|
1719
|
+
path?: string | undefined;
|
|
1720
1720
|
url?: string | undefined;
|
|
1721
1721
|
size?: number | undefined;
|
|
1722
1722
|
description?: string | undefined;
|
|
@@ -1732,9 +1732,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1732
1732
|
type: string;
|
|
1733
1733
|
version?: "1.0.0" | undefined;
|
|
1734
1734
|
asset?: {
|
|
1735
|
-
path?: string | undefined;
|
|
1736
1735
|
label?: string | undefined;
|
|
1737
1736
|
title?: string | undefined;
|
|
1737
|
+
path?: string | undefined;
|
|
1738
1738
|
url?: string | undefined;
|
|
1739
1739
|
version?: "1.0.0" | undefined;
|
|
1740
1740
|
size?: number | undefined;
|
|
@@ -1754,12 +1754,12 @@ declare const companySchema: z.ZodObject<{
|
|
|
1754
1754
|
url: z.ZodString;
|
|
1755
1755
|
type: z.ZodString;
|
|
1756
1756
|
}, "strip", z.ZodTypeAny, {
|
|
1757
|
-
type: string;
|
|
1758
1757
|
url: string;
|
|
1758
|
+
type: string;
|
|
1759
1759
|
version: "1.0.0";
|
|
1760
1760
|
}, {
|
|
1761
|
-
type: string;
|
|
1762
1761
|
url: string;
|
|
1762
|
+
type: string;
|
|
1763
1763
|
version?: "1.0.0" | undefined;
|
|
1764
1764
|
}>, "many">>;
|
|
1765
1765
|
telephone: z.ZodOptional<z.ZodString>;
|
|
@@ -1862,9 +1862,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1862
1862
|
version: "1.0.0";
|
|
1863
1863
|
asset?: {
|
|
1864
1864
|
version: "1.0.0";
|
|
1865
|
-
path?: string | undefined;
|
|
1866
1865
|
label?: string | undefined;
|
|
1867
1866
|
title?: string | undefined;
|
|
1867
|
+
path?: string | undefined;
|
|
1868
1868
|
url?: string | undefined;
|
|
1869
1869
|
size?: number | undefined;
|
|
1870
1870
|
description?: string | undefined;
|
|
@@ -1884,8 +1884,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1884
1884
|
isMedical?: boolean | undefined;
|
|
1885
1885
|
isScientist?: boolean | undefined;
|
|
1886
1886
|
socialMedia?: {
|
|
1887
|
-
type: string;
|
|
1888
1887
|
url: string;
|
|
1888
|
+
type: string;
|
|
1889
1889
|
version: "1.0.0";
|
|
1890
1890
|
}[] | undefined;
|
|
1891
1891
|
telephone?: string | undefined;
|
|
@@ -1916,9 +1916,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1916
1916
|
type: string;
|
|
1917
1917
|
version?: "1.0.0" | undefined;
|
|
1918
1918
|
asset?: {
|
|
1919
|
-
path?: string | undefined;
|
|
1920
1919
|
label?: string | undefined;
|
|
1921
1920
|
title?: string | undefined;
|
|
1921
|
+
path?: string | undefined;
|
|
1922
1922
|
url?: string | undefined;
|
|
1923
1923
|
version?: "1.0.0" | undefined;
|
|
1924
1924
|
size?: number | undefined;
|
|
@@ -1940,8 +1940,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
1940
1940
|
isMedical?: boolean | undefined;
|
|
1941
1941
|
isScientist?: boolean | undefined;
|
|
1942
1942
|
socialMedia?: {
|
|
1943
|
-
type: string;
|
|
1944
1943
|
url: string;
|
|
1944
|
+
type: string;
|
|
1945
1945
|
version?: "1.0.0" | undefined;
|
|
1946
1946
|
}[] | undefined;
|
|
1947
1947
|
telephone?: string | undefined;
|
|
@@ -1981,9 +1981,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
1981
1981
|
version: "1.0.0";
|
|
1982
1982
|
asset?: {
|
|
1983
1983
|
version: "1.0.0";
|
|
1984
|
-
path?: string | undefined;
|
|
1985
1984
|
label?: string | undefined;
|
|
1986
1985
|
title?: string | undefined;
|
|
1986
|
+
path?: string | undefined;
|
|
1987
1987
|
url?: string | undefined;
|
|
1988
1988
|
size?: number | undefined;
|
|
1989
1989
|
description?: string | undefined;
|
|
@@ -2003,8 +2003,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2003
2003
|
isMedical?: boolean | undefined;
|
|
2004
2004
|
isScientist?: boolean | undefined;
|
|
2005
2005
|
socialMedia?: {
|
|
2006
|
-
type: string;
|
|
2007
2006
|
url: string;
|
|
2007
|
+
type: string;
|
|
2008
2008
|
version: "1.0.0";
|
|
2009
2009
|
}[] | undefined;
|
|
2010
2010
|
telephone?: string | undefined;
|
|
@@ -2042,9 +2042,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2042
2042
|
type: string;
|
|
2043
2043
|
version?: "1.0.0" | undefined;
|
|
2044
2044
|
asset?: {
|
|
2045
|
-
path?: string | undefined;
|
|
2046
2045
|
label?: string | undefined;
|
|
2047
2046
|
title?: string | undefined;
|
|
2047
|
+
path?: string | undefined;
|
|
2048
2048
|
url?: string | undefined;
|
|
2049
2049
|
version?: "1.0.0" | undefined;
|
|
2050
2050
|
size?: number | undefined;
|
|
@@ -2066,8 +2066,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2066
2066
|
isMedical?: boolean | undefined;
|
|
2067
2067
|
isScientist?: boolean | undefined;
|
|
2068
2068
|
socialMedia?: {
|
|
2069
|
-
type: string;
|
|
2070
2069
|
url: string;
|
|
2070
|
+
type: string;
|
|
2071
2071
|
version?: "1.0.0" | undefined;
|
|
2072
2072
|
}[] | undefined;
|
|
2073
2073
|
telephone?: string | 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,9 +2185,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2185
2185
|
version: "1.0.0";
|
|
2186
2186
|
asset?: {
|
|
2187
2187
|
version: "1.0.0";
|
|
2188
|
-
path?: string | undefined;
|
|
2189
2188
|
label?: string | undefined;
|
|
2190
2189
|
title?: string | undefined;
|
|
2190
|
+
path?: string | undefined;
|
|
2191
2191
|
url?: string | undefined;
|
|
2192
2192
|
size?: number | undefined;
|
|
2193
2193
|
description?: string | undefined;
|
|
@@ -2201,8 +2201,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2201
2201
|
} | undefined;
|
|
2202
2202
|
} | undefined;
|
|
2203
2203
|
socialMedia?: {
|
|
2204
|
-
type: string;
|
|
2205
2204
|
url: string;
|
|
2205
|
+
type: string;
|
|
2206
2206
|
version: "1.0.0";
|
|
2207
2207
|
}[] | undefined;
|
|
2208
2208
|
companyWebsite?: string | undefined;
|
|
@@ -2212,8 +2212,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2212
2212
|
version: "1.0.0";
|
|
2213
2213
|
careersUrl: string;
|
|
2214
2214
|
jobBoard?: {
|
|
2215
|
-
type: string;
|
|
2216
2215
|
name: string;
|
|
2216
|
+
type: string;
|
|
2217
2217
|
version: "1.0.0";
|
|
2218
2218
|
description: string;
|
|
2219
2219
|
logo?: {
|
|
@@ -2221,9 +2221,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2221
2221
|
version: "1.0.0";
|
|
2222
2222
|
asset?: {
|
|
2223
2223
|
version: "1.0.0";
|
|
2224
|
-
path?: string | undefined;
|
|
2225
2224
|
label?: string | undefined;
|
|
2226
2225
|
title?: string | undefined;
|
|
2226
|
+
path?: string | undefined;
|
|
2227
2227
|
url?: string | undefined;
|
|
2228
2228
|
size?: number | undefined;
|
|
2229
2229
|
description?: string | undefined;
|
|
@@ -2240,8 +2240,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2240
2240
|
} | undefined;
|
|
2241
2241
|
jobBoardSlug?: string[] | undefined;
|
|
2242
2242
|
companyBenefits?: {
|
|
2243
|
-
type: string;
|
|
2244
2243
|
title: string;
|
|
2244
|
+
type: string;
|
|
2245
2245
|
version: "1.0.0";
|
|
2246
2246
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2247
2247
|
description?: string | undefined;
|
|
@@ -2297,9 +2297,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2297
2297
|
version: "1.0.0";
|
|
2298
2298
|
asset?: {
|
|
2299
2299
|
version: "1.0.0";
|
|
2300
|
-
path?: string | undefined;
|
|
2301
2300
|
label?: string | undefined;
|
|
2302
2301
|
title?: string | undefined;
|
|
2302
|
+
path?: string | undefined;
|
|
2303
2303
|
url?: string | undefined;
|
|
2304
2304
|
size?: number | undefined;
|
|
2305
2305
|
description?: string | undefined;
|
|
@@ -2319,8 +2319,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2319
2319
|
isMedical?: boolean | undefined;
|
|
2320
2320
|
isScientist?: boolean | undefined;
|
|
2321
2321
|
socialMedia?: {
|
|
2322
|
-
type: string;
|
|
2323
2322
|
url: string;
|
|
2323
|
+
type: string;
|
|
2324
2324
|
version: "1.0.0";
|
|
2325
2325
|
}[] | undefined;
|
|
2326
2326
|
telephone?: 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,9 +2367,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2367
2367
|
type: string;
|
|
2368
2368
|
version?: "1.0.0" | undefined;
|
|
2369
2369
|
asset?: {
|
|
2370
|
-
path?: string | undefined;
|
|
2371
2370
|
label?: string | undefined;
|
|
2372
2371
|
title?: string | undefined;
|
|
2372
|
+
path?: string | undefined;
|
|
2373
2373
|
url?: string | undefined;
|
|
2374
2374
|
version?: "1.0.0" | undefined;
|
|
2375
2375
|
size?: number | undefined;
|
|
@@ -2384,8 +2384,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2384
2384
|
} | undefined;
|
|
2385
2385
|
} | undefined;
|
|
2386
2386
|
socialMedia?: {
|
|
2387
|
-
type: string;
|
|
2388
2387
|
url: string;
|
|
2388
|
+
type: string;
|
|
2389
2389
|
version?: "1.0.0" | undefined;
|
|
2390
2390
|
}[] | undefined;
|
|
2391
2391
|
companyWebsite?: string | undefined;
|
|
@@ -2395,17 +2395,17 @@ declare const companySchema: z.ZodObject<{
|
|
|
2395
2395
|
careersUrl: string;
|
|
2396
2396
|
version?: "1.0.0" | undefined;
|
|
2397
2397
|
jobBoard?: {
|
|
2398
|
-
type: string;
|
|
2399
2398
|
name: string;
|
|
2399
|
+
type: string;
|
|
2400
2400
|
description: string;
|
|
2401
2401
|
version?: "1.0.0" | undefined;
|
|
2402
2402
|
logo?: {
|
|
2403
2403
|
type: string;
|
|
2404
2404
|
version?: "1.0.0" | undefined;
|
|
2405
2405
|
asset?: {
|
|
2406
|
-
path?: string | undefined;
|
|
2407
2406
|
label?: string | undefined;
|
|
2408
2407
|
title?: string | undefined;
|
|
2408
|
+
path?: string | undefined;
|
|
2409
2409
|
url?: string | undefined;
|
|
2410
2410
|
version?: "1.0.0" | undefined;
|
|
2411
2411
|
size?: number | undefined;
|
|
@@ -2423,8 +2423,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2423
2423
|
} | undefined;
|
|
2424
2424
|
jobBoardSlug?: string[] | undefined;
|
|
2425
2425
|
companyBenefits?: {
|
|
2426
|
-
type: string;
|
|
2427
2426
|
title: string;
|
|
2427
|
+
type: string;
|
|
2428
2428
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2429
2429
|
version?: "1.0.0" | undefined;
|
|
2430
2430
|
description?: string | undefined;
|
|
@@ -2478,9 +2478,9 @@ declare const companySchema: z.ZodObject<{
|
|
|
2478
2478
|
type: string;
|
|
2479
2479
|
version?: "1.0.0" | undefined;
|
|
2480
2480
|
asset?: {
|
|
2481
|
-
path?: string | undefined;
|
|
2482
2481
|
label?: string | undefined;
|
|
2483
2482
|
title?: string | undefined;
|
|
2483
|
+
path?: string | undefined;
|
|
2484
2484
|
url?: string | undefined;
|
|
2485
2485
|
version?: "1.0.0" | undefined;
|
|
2486
2486
|
size?: number | undefined;
|
|
@@ -2502,8 +2502,8 @@ declare const companySchema: z.ZodObject<{
|
|
|
2502
2502
|
isMedical?: boolean | undefined;
|
|
2503
2503
|
isScientist?: boolean | undefined;
|
|
2504
2504
|
socialMedia?: {
|
|
2505
|
-
type: string;
|
|
2506
2505
|
url: string;
|
|
2506
|
+
type: string;
|
|
2507
2507
|
version?: "1.0.0" | undefined;
|
|
2508
2508
|
}[] | undefined;
|
|
2509
2509
|
telephone?: string | undefined;
|
|
@@ -2573,9 +2573,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2573
2573
|
url: z.ZodOptional<z.ZodString>;
|
|
2574
2574
|
}, "strip", z.ZodTypeAny, {
|
|
2575
2575
|
version: "1.0.0";
|
|
2576
|
-
path?: string | undefined;
|
|
2577
2576
|
label?: string | undefined;
|
|
2578
2577
|
title?: string | undefined;
|
|
2578
|
+
path?: string | undefined;
|
|
2579
2579
|
url?: string | undefined;
|
|
2580
2580
|
size?: number | undefined;
|
|
2581
2581
|
description?: string | undefined;
|
|
@@ -2587,9 +2587,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2587
2587
|
sha1Hash?: string | undefined;
|
|
2588
2588
|
uploadId?: string | undefined;
|
|
2589
2589
|
}, {
|
|
2590
|
-
path?: string | undefined;
|
|
2591
2590
|
label?: string | undefined;
|
|
2592
2591
|
title?: string | undefined;
|
|
2592
|
+
path?: string | undefined;
|
|
2593
2593
|
url?: string | undefined;
|
|
2594
2594
|
version?: "1.0.0" | undefined;
|
|
2595
2595
|
size?: number | undefined;
|
|
@@ -2607,9 +2607,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2607
2607
|
version: "1.0.0";
|
|
2608
2608
|
asset?: {
|
|
2609
2609
|
version: "1.0.0";
|
|
2610
|
-
path?: string | undefined;
|
|
2611
2610
|
label?: string | undefined;
|
|
2612
2611
|
title?: string | undefined;
|
|
2612
|
+
path?: string | undefined;
|
|
2613
2613
|
url?: string | undefined;
|
|
2614
2614
|
size?: number | undefined;
|
|
2615
2615
|
description?: string | undefined;
|
|
@@ -2625,9 +2625,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2625
2625
|
type: string;
|
|
2626
2626
|
version?: "1.0.0" | undefined;
|
|
2627
2627
|
asset?: {
|
|
2628
|
-
path?: string | undefined;
|
|
2629
2628
|
label?: string | undefined;
|
|
2630
2629
|
title?: string | undefined;
|
|
2630
|
+
path?: string | undefined;
|
|
2631
2631
|
url?: string | undefined;
|
|
2632
2632
|
version?: "1.0.0" | undefined;
|
|
2633
2633
|
size?: number | undefined;
|
|
@@ -2647,12 +2647,12 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2647
2647
|
url: z.ZodString;
|
|
2648
2648
|
type: z.ZodString;
|
|
2649
2649
|
}, "strip", z.ZodTypeAny, {
|
|
2650
|
-
type: string;
|
|
2651
2650
|
url: string;
|
|
2651
|
+
type: string;
|
|
2652
2652
|
version: "1.0.0";
|
|
2653
2653
|
}, {
|
|
2654
|
-
type: string;
|
|
2655
2654
|
url: string;
|
|
2655
|
+
type: string;
|
|
2656
2656
|
version?: "1.0.0" | undefined;
|
|
2657
2657
|
}>, "many">>;
|
|
2658
2658
|
brandColor: z.ZodOptional<z.ZodString>;
|
|
@@ -2685,9 +2685,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2685
2685
|
url: z.ZodOptional<z.ZodString>;
|
|
2686
2686
|
}, "strip", z.ZodTypeAny, {
|
|
2687
2687
|
version: "1.0.0";
|
|
2688
|
-
path?: string | undefined;
|
|
2689
2688
|
label?: string | undefined;
|
|
2690
2689
|
title?: string | undefined;
|
|
2690
|
+
path?: string | undefined;
|
|
2691
2691
|
url?: string | undefined;
|
|
2692
2692
|
size?: number | undefined;
|
|
2693
2693
|
description?: string | undefined;
|
|
@@ -2699,9 +2699,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2699
2699
|
sha1Hash?: string | undefined;
|
|
2700
2700
|
uploadId?: string | undefined;
|
|
2701
2701
|
}, {
|
|
2702
|
-
path?: string | undefined;
|
|
2703
2702
|
label?: string | undefined;
|
|
2704
2703
|
title?: string | undefined;
|
|
2704
|
+
path?: string | undefined;
|
|
2705
2705
|
url?: string | undefined;
|
|
2706
2706
|
version?: "1.0.0" | undefined;
|
|
2707
2707
|
size?: number | undefined;
|
|
@@ -2719,9 +2719,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2719
2719
|
version: "1.0.0";
|
|
2720
2720
|
asset?: {
|
|
2721
2721
|
version: "1.0.0";
|
|
2722
|
-
path?: string | undefined;
|
|
2723
2722
|
label?: string | undefined;
|
|
2724
2723
|
title?: string | undefined;
|
|
2724
|
+
path?: string | undefined;
|
|
2725
2725
|
url?: string | undefined;
|
|
2726
2726
|
size?: number | undefined;
|
|
2727
2727
|
description?: string | undefined;
|
|
@@ -2737,9 +2737,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2737
2737
|
type: string;
|
|
2738
2738
|
version?: "1.0.0" | undefined;
|
|
2739
2739
|
asset?: {
|
|
2740
|
-
path?: string | undefined;
|
|
2741
2740
|
label?: string | undefined;
|
|
2742
2741
|
title?: string | undefined;
|
|
2742
|
+
path?: string | undefined;
|
|
2743
2743
|
url?: string | undefined;
|
|
2744
2744
|
version?: "1.0.0" | undefined;
|
|
2745
2745
|
size?: number | undefined;
|
|
@@ -2755,8 +2755,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2755
2755
|
}>>;
|
|
2756
2756
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
2757
2757
|
}, "strip", z.ZodTypeAny, {
|
|
2758
|
-
type: string;
|
|
2759
2758
|
name: string;
|
|
2759
|
+
type: string;
|
|
2760
2760
|
version: "1.0.0";
|
|
2761
2761
|
description: string;
|
|
2762
2762
|
logo?: {
|
|
@@ -2764,9 +2764,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2764
2764
|
version: "1.0.0";
|
|
2765
2765
|
asset?: {
|
|
2766
2766
|
version: "1.0.0";
|
|
2767
|
-
path?: string | undefined;
|
|
2768
2767
|
label?: string | undefined;
|
|
2769
2768
|
title?: string | undefined;
|
|
2769
|
+
path?: string | undefined;
|
|
2770
2770
|
url?: string | undefined;
|
|
2771
2771
|
size?: number | undefined;
|
|
2772
2772
|
description?: string | undefined;
|
|
@@ -2781,17 +2781,17 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2781
2781
|
} | undefined;
|
|
2782
2782
|
baseUrl?: string | undefined;
|
|
2783
2783
|
}, {
|
|
2784
|
-
type: string;
|
|
2785
2784
|
name: string;
|
|
2785
|
+
type: string;
|
|
2786
2786
|
description: string;
|
|
2787
2787
|
version?: "1.0.0" | undefined;
|
|
2788
2788
|
logo?: {
|
|
2789
2789
|
type: string;
|
|
2790
2790
|
version?: "1.0.0" | undefined;
|
|
2791
2791
|
asset?: {
|
|
2792
|
-
path?: string | undefined;
|
|
2793
2792
|
label?: string | undefined;
|
|
2794
2793
|
title?: string | undefined;
|
|
2794
|
+
path?: string | undefined;
|
|
2795
2795
|
url?: string | undefined;
|
|
2796
2796
|
version?: "1.0.0" | undefined;
|
|
2797
2797
|
size?: number | 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
|
-
type: string;
|
|
2819
2818
|
title: string;
|
|
2819
|
+
type: string;
|
|
2820
2820
|
version: "1.0.0";
|
|
2821
2821
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2822
2822
|
description?: string | undefined;
|
|
2823
2823
|
}, {
|
|
2824
|
-
type: string;
|
|
2825
2824
|
title: string;
|
|
2825
|
+
type: string;
|
|
2826
2826
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2827
2827
|
version?: "1.0.0" | undefined;
|
|
2828
2828
|
description?: string | undefined;
|
|
@@ -2832,8 +2832,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2832
2832
|
version: "1.0.0";
|
|
2833
2833
|
careersUrl: string;
|
|
2834
2834
|
jobBoard?: {
|
|
2835
|
-
type: string;
|
|
2836
2835
|
name: string;
|
|
2836
|
+
type: string;
|
|
2837
2837
|
version: "1.0.0";
|
|
2838
2838
|
description: string;
|
|
2839
2839
|
logo?: {
|
|
@@ -2841,9 +2841,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2841
2841
|
version: "1.0.0";
|
|
2842
2842
|
asset?: {
|
|
2843
2843
|
version: "1.0.0";
|
|
2844
|
-
path?: string | undefined;
|
|
2845
2844
|
label?: string | undefined;
|
|
2846
2845
|
title?: string | undefined;
|
|
2846
|
+
path?: string | undefined;
|
|
2847
2847
|
url?: string | undefined;
|
|
2848
2848
|
size?: number | undefined;
|
|
2849
2849
|
description?: string | undefined;
|
|
@@ -2860,8 +2860,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2860
2860
|
} | undefined;
|
|
2861
2861
|
jobBoardSlug?: string[] | undefined;
|
|
2862
2862
|
companyBenefits?: {
|
|
2863
|
-
type: string;
|
|
2864
2863
|
title: string;
|
|
2864
|
+
type: string;
|
|
2865
2865
|
version: "1.0.0";
|
|
2866
2866
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2867
2867
|
description?: string | undefined;
|
|
@@ -2871,17 +2871,17 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2871
2871
|
careersUrl: string;
|
|
2872
2872
|
version?: "1.0.0" | undefined;
|
|
2873
2873
|
jobBoard?: {
|
|
2874
|
-
type: string;
|
|
2875
2874
|
name: string;
|
|
2875
|
+
type: string;
|
|
2876
2876
|
description: string;
|
|
2877
2877
|
version?: "1.0.0" | undefined;
|
|
2878
2878
|
logo?: {
|
|
2879
2879
|
type: string;
|
|
2880
2880
|
version?: "1.0.0" | undefined;
|
|
2881
2881
|
asset?: {
|
|
2882
|
-
path?: string | undefined;
|
|
2883
2882
|
label?: string | undefined;
|
|
2884
2883
|
title?: string | undefined;
|
|
2884
|
+
path?: string | undefined;
|
|
2885
2885
|
url?: string | undefined;
|
|
2886
2886
|
version?: "1.0.0" | undefined;
|
|
2887
2887
|
size?: number | undefined;
|
|
@@ -2899,8 +2899,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2899
2899
|
} | undefined;
|
|
2900
2900
|
jobBoardSlug?: string[] | undefined;
|
|
2901
2901
|
companyBenefits?: {
|
|
2902
|
-
type: string;
|
|
2903
2902
|
title: string;
|
|
2903
|
+
type: string;
|
|
2904
2904
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
2905
2905
|
version?: "1.0.0" | undefined;
|
|
2906
2906
|
description?: string | undefined;
|
|
@@ -2984,9 +2984,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2984
2984
|
url: z.ZodOptional<z.ZodString>;
|
|
2985
2985
|
}, "strip", z.ZodTypeAny, {
|
|
2986
2986
|
version: "1.0.0";
|
|
2987
|
-
path?: string | undefined;
|
|
2988
2987
|
label?: string | undefined;
|
|
2989
2988
|
title?: string | undefined;
|
|
2989
|
+
path?: string | undefined;
|
|
2990
2990
|
url?: string | undefined;
|
|
2991
2991
|
size?: number | undefined;
|
|
2992
2992
|
description?: string | undefined;
|
|
@@ -2998,9 +2998,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
2998
2998
|
sha1Hash?: string | undefined;
|
|
2999
2999
|
uploadId?: string | undefined;
|
|
3000
3000
|
}, {
|
|
3001
|
-
path?: string | undefined;
|
|
3002
3001
|
label?: string | undefined;
|
|
3003
3002
|
title?: string | undefined;
|
|
3003
|
+
path?: string | undefined;
|
|
3004
3004
|
url?: string | undefined;
|
|
3005
3005
|
version?: "1.0.0" | undefined;
|
|
3006
3006
|
size?: number | undefined;
|
|
@@ -3018,9 +3018,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3018
3018
|
version: "1.0.0";
|
|
3019
3019
|
asset?: {
|
|
3020
3020
|
version: "1.0.0";
|
|
3021
|
-
path?: string | undefined;
|
|
3022
3021
|
label?: string | undefined;
|
|
3023
3022
|
title?: string | undefined;
|
|
3023
|
+
path?: string | undefined;
|
|
3024
3024
|
url?: string | undefined;
|
|
3025
3025
|
size?: number | undefined;
|
|
3026
3026
|
description?: string | undefined;
|
|
@@ -3036,9 +3036,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3036
3036
|
type: string;
|
|
3037
3037
|
version?: "1.0.0" | undefined;
|
|
3038
3038
|
asset?: {
|
|
3039
|
-
path?: string | undefined;
|
|
3040
3039
|
label?: string | undefined;
|
|
3041
3040
|
title?: string | undefined;
|
|
3041
|
+
path?: string | undefined;
|
|
3042
3042
|
url?: string | undefined;
|
|
3043
3043
|
version?: "1.0.0" | undefined;
|
|
3044
3044
|
size?: number | undefined;
|
|
@@ -3058,12 +3058,12 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3058
3058
|
url: z.ZodString;
|
|
3059
3059
|
type: z.ZodString;
|
|
3060
3060
|
}, "strip", z.ZodTypeAny, {
|
|
3061
|
-
type: string;
|
|
3062
3061
|
url: string;
|
|
3062
|
+
type: string;
|
|
3063
3063
|
version: "1.0.0";
|
|
3064
3064
|
}, {
|
|
3065
|
-
type: string;
|
|
3066
3065
|
url: string;
|
|
3066
|
+
type: string;
|
|
3067
3067
|
version?: "1.0.0" | undefined;
|
|
3068
3068
|
}>, "many">>;
|
|
3069
3069
|
telephone: z.ZodOptional<z.ZodString>;
|
|
@@ -3166,9 +3166,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3166
3166
|
version: "1.0.0";
|
|
3167
3167
|
asset?: {
|
|
3168
3168
|
version: "1.0.0";
|
|
3169
|
-
path?: string | undefined;
|
|
3170
3169
|
label?: string | undefined;
|
|
3171
3170
|
title?: string | undefined;
|
|
3171
|
+
path?: string | undefined;
|
|
3172
3172
|
url?: string | undefined;
|
|
3173
3173
|
size?: number | undefined;
|
|
3174
3174
|
description?: string | undefined;
|
|
@@ -3188,8 +3188,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3188
3188
|
isMedical?: boolean | undefined;
|
|
3189
3189
|
isScientist?: boolean | undefined;
|
|
3190
3190
|
socialMedia?: {
|
|
3191
|
-
type: string;
|
|
3192
3191
|
url: string;
|
|
3192
|
+
type: string;
|
|
3193
3193
|
version: "1.0.0";
|
|
3194
3194
|
}[] | undefined;
|
|
3195
3195
|
telephone?: string | undefined;
|
|
@@ -3220,9 +3220,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3220
3220
|
type: string;
|
|
3221
3221
|
version?: "1.0.0" | undefined;
|
|
3222
3222
|
asset?: {
|
|
3223
|
-
path?: string | undefined;
|
|
3224
3223
|
label?: string | undefined;
|
|
3225
3224
|
title?: string | undefined;
|
|
3225
|
+
path?: string | undefined;
|
|
3226
3226
|
url?: string | undefined;
|
|
3227
3227
|
version?: "1.0.0" | undefined;
|
|
3228
3228
|
size?: number | undefined;
|
|
@@ -3244,8 +3244,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3244
3244
|
isMedical?: boolean | undefined;
|
|
3245
3245
|
isScientist?: boolean | undefined;
|
|
3246
3246
|
socialMedia?: {
|
|
3247
|
-
type: string;
|
|
3248
3247
|
url: string;
|
|
3248
|
+
type: string;
|
|
3249
3249
|
version?: "1.0.0" | undefined;
|
|
3250
3250
|
}[] | undefined;
|
|
3251
3251
|
telephone?: string | undefined;
|
|
@@ -3285,9 +3285,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3285
3285
|
version: "1.0.0";
|
|
3286
3286
|
asset?: {
|
|
3287
3287
|
version: "1.0.0";
|
|
3288
|
-
path?: string | undefined;
|
|
3289
3288
|
label?: string | undefined;
|
|
3290
3289
|
title?: string | undefined;
|
|
3290
|
+
path?: string | undefined;
|
|
3291
3291
|
url?: string | undefined;
|
|
3292
3292
|
size?: number | undefined;
|
|
3293
3293
|
description?: string | undefined;
|
|
@@ -3307,8 +3307,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3307
3307
|
isMedical?: boolean | undefined;
|
|
3308
3308
|
isScientist?: boolean | undefined;
|
|
3309
3309
|
socialMedia?: {
|
|
3310
|
-
type: string;
|
|
3311
3310
|
url: string;
|
|
3311
|
+
type: string;
|
|
3312
3312
|
version: "1.0.0";
|
|
3313
3313
|
}[] | undefined;
|
|
3314
3314
|
telephone?: string | undefined;
|
|
@@ -3346,9 +3346,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3346
3346
|
type: string;
|
|
3347
3347
|
version?: "1.0.0" | undefined;
|
|
3348
3348
|
asset?: {
|
|
3349
|
-
path?: string | undefined;
|
|
3350
3349
|
label?: string | undefined;
|
|
3351
3350
|
title?: string | undefined;
|
|
3351
|
+
path?: string | undefined;
|
|
3352
3352
|
url?: string | undefined;
|
|
3353
3353
|
version?: "1.0.0" | undefined;
|
|
3354
3354
|
size?: number | undefined;
|
|
@@ -3370,8 +3370,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3370
3370
|
isMedical?: boolean | undefined;
|
|
3371
3371
|
isScientist?: boolean | undefined;
|
|
3372
3372
|
socialMedia?: {
|
|
3373
|
-
type: string;
|
|
3374
3373
|
url: string;
|
|
3374
|
+
type: string;
|
|
3375
3375
|
version?: "1.0.0" | undefined;
|
|
3376
3376
|
}[] | undefined;
|
|
3377
3377
|
telephone?: string | 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,9 +3489,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3489
3489
|
version: "1.0.0";
|
|
3490
3490
|
asset?: {
|
|
3491
3491
|
version: "1.0.0";
|
|
3492
|
-
path?: string | undefined;
|
|
3493
3492
|
label?: string | undefined;
|
|
3494
3493
|
title?: string | undefined;
|
|
3494
|
+
path?: string | undefined;
|
|
3495
3495
|
url?: string | undefined;
|
|
3496
3496
|
size?: number | undefined;
|
|
3497
3497
|
description?: string | undefined;
|
|
@@ -3505,8 +3505,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3505
3505
|
} | undefined;
|
|
3506
3506
|
} | undefined;
|
|
3507
3507
|
socialMedia?: {
|
|
3508
|
-
type: string;
|
|
3509
3508
|
url: string;
|
|
3509
|
+
type: string;
|
|
3510
3510
|
version: "1.0.0";
|
|
3511
3511
|
}[] | undefined;
|
|
3512
3512
|
companyWebsite?: string | undefined;
|
|
@@ -3516,8 +3516,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3516
3516
|
version: "1.0.0";
|
|
3517
3517
|
careersUrl: string;
|
|
3518
3518
|
jobBoard?: {
|
|
3519
|
-
type: string;
|
|
3520
3519
|
name: string;
|
|
3520
|
+
type: string;
|
|
3521
3521
|
version: "1.0.0";
|
|
3522
3522
|
description: string;
|
|
3523
3523
|
logo?: {
|
|
@@ -3525,9 +3525,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3525
3525
|
version: "1.0.0";
|
|
3526
3526
|
asset?: {
|
|
3527
3527
|
version: "1.0.0";
|
|
3528
|
-
path?: string | undefined;
|
|
3529
3528
|
label?: string | undefined;
|
|
3530
3529
|
title?: string | undefined;
|
|
3530
|
+
path?: string | undefined;
|
|
3531
3531
|
url?: string | undefined;
|
|
3532
3532
|
size?: number | undefined;
|
|
3533
3533
|
description?: string | undefined;
|
|
@@ -3544,8 +3544,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3544
3544
|
} | undefined;
|
|
3545
3545
|
jobBoardSlug?: string[] | undefined;
|
|
3546
3546
|
companyBenefits?: {
|
|
3547
|
-
type: string;
|
|
3548
3547
|
title: string;
|
|
3548
|
+
type: string;
|
|
3549
3549
|
version: "1.0.0";
|
|
3550
3550
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
3551
3551
|
description?: string | undefined;
|
|
@@ -3601,9 +3601,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3601
3601
|
version: "1.0.0";
|
|
3602
3602
|
asset?: {
|
|
3603
3603
|
version: "1.0.0";
|
|
3604
|
-
path?: string | undefined;
|
|
3605
3604
|
label?: string | undefined;
|
|
3606
3605
|
title?: string | undefined;
|
|
3606
|
+
path?: string | undefined;
|
|
3607
3607
|
url?: string | undefined;
|
|
3608
3608
|
size?: number | undefined;
|
|
3609
3609
|
description?: string | undefined;
|
|
@@ -3623,8 +3623,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3623
3623
|
isMedical?: boolean | undefined;
|
|
3624
3624
|
isScientist?: boolean | undefined;
|
|
3625
3625
|
socialMedia?: {
|
|
3626
|
-
type: string;
|
|
3627
3626
|
url: string;
|
|
3627
|
+
type: string;
|
|
3628
3628
|
version: "1.0.0";
|
|
3629
3629
|
}[] | undefined;
|
|
3630
3630
|
telephone?: 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,9 +3671,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3671
3671
|
type: string;
|
|
3672
3672
|
version?: "1.0.0" | undefined;
|
|
3673
3673
|
asset?: {
|
|
3674
|
-
path?: string | undefined;
|
|
3675
3674
|
label?: string | undefined;
|
|
3676
3675
|
title?: string | undefined;
|
|
3676
|
+
path?: string | undefined;
|
|
3677
3677
|
url?: string | undefined;
|
|
3678
3678
|
version?: "1.0.0" | undefined;
|
|
3679
3679
|
size?: number | undefined;
|
|
@@ -3688,8 +3688,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3688
3688
|
} | undefined;
|
|
3689
3689
|
} | undefined;
|
|
3690
3690
|
socialMedia?: {
|
|
3691
|
-
type: string;
|
|
3692
3691
|
url: string;
|
|
3692
|
+
type: string;
|
|
3693
3693
|
version?: "1.0.0" | undefined;
|
|
3694
3694
|
}[] | undefined;
|
|
3695
3695
|
companyWebsite?: string | undefined;
|
|
@@ -3699,17 +3699,17 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3699
3699
|
careersUrl: string;
|
|
3700
3700
|
version?: "1.0.0" | undefined;
|
|
3701
3701
|
jobBoard?: {
|
|
3702
|
-
type: string;
|
|
3703
3702
|
name: string;
|
|
3703
|
+
type: string;
|
|
3704
3704
|
description: string;
|
|
3705
3705
|
version?: "1.0.0" | undefined;
|
|
3706
3706
|
logo?: {
|
|
3707
3707
|
type: string;
|
|
3708
3708
|
version?: "1.0.0" | undefined;
|
|
3709
3709
|
asset?: {
|
|
3710
|
-
path?: string | undefined;
|
|
3711
3710
|
label?: string | undefined;
|
|
3712
3711
|
title?: string | undefined;
|
|
3712
|
+
path?: string | undefined;
|
|
3713
3713
|
url?: string | undefined;
|
|
3714
3714
|
version?: "1.0.0" | undefined;
|
|
3715
3715
|
size?: number | undefined;
|
|
@@ -3727,8 +3727,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3727
3727
|
} | undefined;
|
|
3728
3728
|
jobBoardSlug?: string[] | undefined;
|
|
3729
3729
|
companyBenefits?: {
|
|
3730
|
-
type: string;
|
|
3731
3730
|
title: string;
|
|
3731
|
+
type: string;
|
|
3732
3732
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
3733
3733
|
version?: "1.0.0" | undefined;
|
|
3734
3734
|
description?: string | undefined;
|
|
@@ -3782,9 +3782,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3782
3782
|
type: string;
|
|
3783
3783
|
version?: "1.0.0" | undefined;
|
|
3784
3784
|
asset?: {
|
|
3785
|
-
path?: string | undefined;
|
|
3786
3785
|
label?: string | undefined;
|
|
3787
3786
|
title?: string | undefined;
|
|
3787
|
+
path?: string | undefined;
|
|
3788
3788
|
url?: string | undefined;
|
|
3789
3789
|
version?: "1.0.0" | undefined;
|
|
3790
3790
|
size?: number | undefined;
|
|
@@ -3806,8 +3806,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3806
3806
|
isMedical?: boolean | undefined;
|
|
3807
3807
|
isScientist?: boolean | undefined;
|
|
3808
3808
|
socialMedia?: {
|
|
3809
|
-
type: string;
|
|
3810
3809
|
url: string;
|
|
3810
|
+
type: string;
|
|
3811
3811
|
version?: "1.0.0" | undefined;
|
|
3812
3812
|
}[] | undefined;
|
|
3813
3813
|
telephone?: string | undefined;
|
|
@@ -3915,15 +3915,15 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3915
3915
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3916
3916
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3917
3917
|
}, "strip", z.ZodTypeAny, {
|
|
3918
|
-
type: string;
|
|
3919
3918
|
name: string;
|
|
3919
|
+
type: string;
|
|
3920
3920
|
version: "1.0.0";
|
|
3921
3921
|
officeType: "BRANCH" | "HEADQUARTERS" | "SATELLITE";
|
|
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,9 +3934,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3934
3934
|
version: "1.0.0";
|
|
3935
3935
|
asset?: {
|
|
3936
3936
|
version: "1.0.0";
|
|
3937
|
-
path?: string | undefined;
|
|
3938
3937
|
label?: string | undefined;
|
|
3939
3938
|
title?: string | undefined;
|
|
3939
|
+
path?: string | undefined;
|
|
3940
3940
|
url?: string | undefined;
|
|
3941
3941
|
size?: number | undefined;
|
|
3942
3942
|
description?: string | undefined;
|
|
@@ -3950,8 +3950,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3950
3950
|
} | undefined;
|
|
3951
3951
|
} | undefined;
|
|
3952
3952
|
socialMedia?: {
|
|
3953
|
-
type: string;
|
|
3954
3953
|
url: string;
|
|
3954
|
+
type: string;
|
|
3955
3955
|
version: "1.0.0";
|
|
3956
3956
|
}[] | undefined;
|
|
3957
3957
|
companyWebsite?: string | undefined;
|
|
@@ -3961,8 +3961,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3961
3961
|
version: "1.0.0";
|
|
3962
3962
|
careersUrl: string;
|
|
3963
3963
|
jobBoard?: {
|
|
3964
|
-
type: string;
|
|
3965
3964
|
name: string;
|
|
3965
|
+
type: string;
|
|
3966
3966
|
version: "1.0.0";
|
|
3967
3967
|
description: string;
|
|
3968
3968
|
logo?: {
|
|
@@ -3970,9 +3970,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3970
3970
|
version: "1.0.0";
|
|
3971
3971
|
asset?: {
|
|
3972
3972
|
version: "1.0.0";
|
|
3973
|
-
path?: string | undefined;
|
|
3974
3973
|
label?: string | undefined;
|
|
3975
3974
|
title?: string | undefined;
|
|
3975
|
+
path?: string | undefined;
|
|
3976
3976
|
url?: string | undefined;
|
|
3977
3977
|
size?: number | undefined;
|
|
3978
3978
|
description?: string | undefined;
|
|
@@ -3989,8 +3989,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
3989
3989
|
} | undefined;
|
|
3990
3990
|
jobBoardSlug?: string[] | undefined;
|
|
3991
3991
|
companyBenefits?: {
|
|
3992
|
-
type: string;
|
|
3993
3992
|
title: string;
|
|
3993
|
+
type: string;
|
|
3994
3994
|
version: "1.0.0";
|
|
3995
3995
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
3996
3996
|
description?: string | undefined;
|
|
@@ -4046,9 +4046,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4046
4046
|
version: "1.0.0";
|
|
4047
4047
|
asset?: {
|
|
4048
4048
|
version: "1.0.0";
|
|
4049
|
-
path?: string | undefined;
|
|
4050
4049
|
label?: string | undefined;
|
|
4051
4050
|
title?: string | undefined;
|
|
4051
|
+
path?: string | undefined;
|
|
4052
4052
|
url?: string | undefined;
|
|
4053
4053
|
size?: number | undefined;
|
|
4054
4054
|
description?: string | undefined;
|
|
@@ -4068,8 +4068,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4068
4068
|
isMedical?: boolean | undefined;
|
|
4069
4069
|
isScientist?: boolean | undefined;
|
|
4070
4070
|
socialMedia?: {
|
|
4071
|
-
type: string;
|
|
4072
4071
|
url: string;
|
|
4072
|
+
type: string;
|
|
4073
4073
|
version: "1.0.0";
|
|
4074
4074
|
}[] | undefined;
|
|
4075
4075
|
telephone?: string | undefined;
|
|
@@ -4123,15 +4123,15 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4123
4123
|
longitude?: number | undefined;
|
|
4124
4124
|
} | undefined;
|
|
4125
4125
|
}, {
|
|
4126
|
-
type: string;
|
|
4127
4126
|
name: string;
|
|
4127
|
+
type: string;
|
|
4128
4128
|
officeType: "BRANCH" | "HEADQUARTERS" | "SATELLITE";
|
|
4129
4129
|
version?: "1.0.0" | undefined;
|
|
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,9 +4141,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4141
4141
|
type: string;
|
|
4142
4142
|
version?: "1.0.0" | undefined;
|
|
4143
4143
|
asset?: {
|
|
4144
|
-
path?: string | undefined;
|
|
4145
4144
|
label?: string | undefined;
|
|
4146
4145
|
title?: string | undefined;
|
|
4146
|
+
path?: string | undefined;
|
|
4147
4147
|
url?: string | undefined;
|
|
4148
4148
|
version?: "1.0.0" | undefined;
|
|
4149
4149
|
size?: number | undefined;
|
|
@@ -4158,8 +4158,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4158
4158
|
} | undefined;
|
|
4159
4159
|
} | undefined;
|
|
4160
4160
|
socialMedia?: {
|
|
4161
|
-
type: string;
|
|
4162
4161
|
url: string;
|
|
4162
|
+
type: string;
|
|
4163
4163
|
version?: "1.0.0" | undefined;
|
|
4164
4164
|
}[] | undefined;
|
|
4165
4165
|
companyWebsite?: string | undefined;
|
|
@@ -4169,17 +4169,17 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4169
4169
|
careersUrl: string;
|
|
4170
4170
|
version?: "1.0.0" | undefined;
|
|
4171
4171
|
jobBoard?: {
|
|
4172
|
-
type: string;
|
|
4173
4172
|
name: string;
|
|
4173
|
+
type: string;
|
|
4174
4174
|
description: string;
|
|
4175
4175
|
version?: "1.0.0" | undefined;
|
|
4176
4176
|
logo?: {
|
|
4177
4177
|
type: string;
|
|
4178
4178
|
version?: "1.0.0" | undefined;
|
|
4179
4179
|
asset?: {
|
|
4180
|
-
path?: string | undefined;
|
|
4181
4180
|
label?: string | undefined;
|
|
4182
4181
|
title?: string | undefined;
|
|
4182
|
+
path?: string | undefined;
|
|
4183
4183
|
url?: string | undefined;
|
|
4184
4184
|
version?: "1.0.0" | undefined;
|
|
4185
4185
|
size?: number | undefined;
|
|
@@ -4197,8 +4197,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4197
4197
|
} | undefined;
|
|
4198
4198
|
jobBoardSlug?: string[] | undefined;
|
|
4199
4199
|
companyBenefits?: {
|
|
4200
|
-
type: string;
|
|
4201
4200
|
title: string;
|
|
4201
|
+
type: string;
|
|
4202
4202
|
category: "FINANCIAL" | "HEALTH" | "PROFESSIONAL_DEVELOPMENT" | "WORK_LIFE_BALANCE";
|
|
4203
4203
|
version?: "1.0.0" | undefined;
|
|
4204
4204
|
description?: string | undefined;
|
|
@@ -4252,9 +4252,9 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4252
4252
|
type: string;
|
|
4253
4253
|
version?: "1.0.0" | undefined;
|
|
4254
4254
|
asset?: {
|
|
4255
|
-
path?: string | undefined;
|
|
4256
4255
|
label?: string | undefined;
|
|
4257
4256
|
title?: string | undefined;
|
|
4257
|
+
path?: string | undefined;
|
|
4258
4258
|
url?: string | undefined;
|
|
4259
4259
|
version?: "1.0.0" | undefined;
|
|
4260
4260
|
size?: number | undefined;
|
|
@@ -4276,8 +4276,8 @@ declare const officeSchema: z.ZodObject<{
|
|
|
4276
4276
|
isMedical?: boolean | undefined;
|
|
4277
4277
|
isScientist?: boolean | undefined;
|
|
4278
4278
|
socialMedia?: {
|
|
4279
|
-
type: string;
|
|
4280
4279
|
url: string;
|
|
4280
|
+
type: string;
|
|
4281
4281
|
version?: "1.0.0" | undefined;
|
|
4282
4282
|
}[] | undefined;
|
|
4283
4283
|
telephone?: string | undefined;
|