lancer-shared 1.2.264 → 1.2.266
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/bundle.cjs.js +3 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +3 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +5 -0
- package/dist/schemas/bidder/bid.d.ts +49 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +9 -0
- package/dist/schemas/job/index.d.ts +3 -0
- package/dist/schemas/lead/index.d.ts +27 -4
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +5 -0
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +5 -0
- package/dist/schemas/scraper/scrape-result.d.ts +5 -0
- package/package.json +1 -1
|
@@ -307,6 +307,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
307
307
|
interviewing: number | null;
|
|
308
308
|
invitesSent: number | null;
|
|
309
309
|
}>>;
|
|
310
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
310
311
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
311
312
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
312
313
|
proposals: z.ZodObject<{
|
|
@@ -526,6 +527,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
526
527
|
} | null;
|
|
527
528
|
category: string | null;
|
|
528
529
|
uid: string | null;
|
|
530
|
+
occupation: string | null;
|
|
529
531
|
jobUrl: string | null;
|
|
530
532
|
skills: {
|
|
531
533
|
name: string;
|
|
@@ -687,6 +689,7 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
687
689
|
} | null;
|
|
688
690
|
category: string | null;
|
|
689
691
|
uid: string | null;
|
|
692
|
+
occupation: string | null;
|
|
690
693
|
jobUrl: string | null;
|
|
691
694
|
skills: {
|
|
692
695
|
name: string;
|
|
@@ -1030,6 +1033,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1030
1033
|
interviewing: number | null;
|
|
1031
1034
|
invitesSent: number | null;
|
|
1032
1035
|
}>>;
|
|
1036
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
1033
1037
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
1034
1038
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
1035
1039
|
proposals: z.ZodObject<{
|
|
@@ -1249,6 +1253,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1249
1253
|
} | null;
|
|
1250
1254
|
category: string | null;
|
|
1251
1255
|
uid: string | null;
|
|
1256
|
+
occupation: string | null;
|
|
1252
1257
|
jobUrl: string | null;
|
|
1253
1258
|
skills: {
|
|
1254
1259
|
name: string;
|
|
@@ -1410,6 +1415,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1410
1415
|
} | null;
|
|
1411
1416
|
category: string | null;
|
|
1412
1417
|
uid: string | null;
|
|
1418
|
+
occupation: string | null;
|
|
1413
1419
|
jobUrl: string | null;
|
|
1414
1420
|
skills: {
|
|
1415
1421
|
name: string;
|
|
@@ -1576,6 +1582,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1576
1582
|
} | null;
|
|
1577
1583
|
category: string | null;
|
|
1578
1584
|
uid: string | null;
|
|
1585
|
+
occupation: string | null;
|
|
1579
1586
|
jobUrl: string | null;
|
|
1580
1587
|
skills: {
|
|
1581
1588
|
name: string;
|
|
@@ -1742,6 +1749,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1742
1749
|
} | null;
|
|
1743
1750
|
category: string | null;
|
|
1744
1751
|
uid: string | null;
|
|
1752
|
+
occupation: string | null;
|
|
1745
1753
|
jobUrl: string | null;
|
|
1746
1754
|
skills: {
|
|
1747
1755
|
name: string;
|
|
@@ -2106,6 +2114,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2106
2114
|
interviewing: number | null;
|
|
2107
2115
|
invitesSent: number | null;
|
|
2108
2116
|
}>>;
|
|
2117
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
2109
2118
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
2110
2119
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
2111
2120
|
proposals: z.ZodObject<{
|
|
@@ -2219,6 +2228,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2219
2228
|
} | null;
|
|
2220
2229
|
category: string | null;
|
|
2221
2230
|
uid: string | null;
|
|
2231
|
+
occupation: string | null;
|
|
2222
2232
|
jobUrl: string | null;
|
|
2223
2233
|
skills: {
|
|
2224
2234
|
name: string;
|
|
@@ -2330,6 +2340,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2330
2340
|
} | null;
|
|
2331
2341
|
category: string | null;
|
|
2332
2342
|
uid: string | null;
|
|
2343
|
+
occupation: string | null;
|
|
2333
2344
|
jobUrl: string | null;
|
|
2334
2345
|
skills: {
|
|
2335
2346
|
name: string;
|
|
@@ -2625,6 +2636,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2625
2636
|
interviewing: number | null;
|
|
2626
2637
|
invitesSent: number | null;
|
|
2627
2638
|
}>>;
|
|
2639
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
2628
2640
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
2629
2641
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
2630
2642
|
proposals: z.ZodObject<{
|
|
@@ -2844,6 +2856,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2844
2856
|
} | null;
|
|
2845
2857
|
category: string | null;
|
|
2846
2858
|
uid: string | null;
|
|
2859
|
+
occupation: string | null;
|
|
2847
2860
|
jobUrl: string | null;
|
|
2848
2861
|
skills: {
|
|
2849
2862
|
name: string;
|
|
@@ -3005,6 +3018,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3005
3018
|
} | null;
|
|
3006
3019
|
category: string | null;
|
|
3007
3020
|
uid: string | null;
|
|
3021
|
+
occupation: string | null;
|
|
3008
3022
|
jobUrl: string | null;
|
|
3009
3023
|
skills: {
|
|
3010
3024
|
name: string;
|
|
@@ -3167,6 +3181,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3167
3181
|
} | null;
|
|
3168
3182
|
category: string | null;
|
|
3169
3183
|
uid: string | null;
|
|
3184
|
+
occupation: string | null;
|
|
3170
3185
|
jobUrl: string | null;
|
|
3171
3186
|
skills: {
|
|
3172
3187
|
name: string;
|
|
@@ -3282,6 +3297,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3282
3297
|
} | null;
|
|
3283
3298
|
category: string | null;
|
|
3284
3299
|
uid: string | null;
|
|
3300
|
+
occupation: string | null;
|
|
3285
3301
|
jobUrl: string | null;
|
|
3286
3302
|
skills: {
|
|
3287
3303
|
name: string;
|
|
@@ -3445,6 +3461,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3445
3461
|
} | null;
|
|
3446
3462
|
category: string | null;
|
|
3447
3463
|
uid: string | null;
|
|
3464
|
+
occupation: string | null;
|
|
3448
3465
|
jobUrl: string | null;
|
|
3449
3466
|
skills: {
|
|
3450
3467
|
name: string;
|
|
@@ -3560,6 +3577,7 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3560
3577
|
} | null;
|
|
3561
3578
|
category: string | null;
|
|
3562
3579
|
uid: string | null;
|
|
3580
|
+
occupation: string | null;
|
|
3563
3581
|
jobUrl: string | null;
|
|
3564
3582
|
skills: {
|
|
3565
3583
|
name: string;
|
|
@@ -3673,22 +3691,22 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3673
3691
|
lastMonthTotal?: number | undefined;
|
|
3674
3692
|
lastMonthTotalWithEmptyFilters?: number | undefined;
|
|
3675
3693
|
}>;
|
|
3676
|
-
export declare const getCampaignLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>;
|
|
3694
|
+
export declare const getCampaignLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>;
|
|
3677
3695
|
export declare const getCampaignLeadsRequestQuerySchema: z.ZodObject<{
|
|
3678
3696
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3679
3697
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3680
|
-
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>>;
|
|
3698
|
+
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>>;
|
|
3681
3699
|
campaignId: z.ZodOptional<z.ZodString>;
|
|
3682
3700
|
inQueue: z.ZodOptional<z.ZodBoolean>;
|
|
3683
3701
|
}, "strip", z.ZodTypeAny, {
|
|
3684
3702
|
cursor?: string | undefined;
|
|
3685
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3703
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3686
3704
|
campaignId?: string | undefined;
|
|
3687
3705
|
limit?: number | undefined;
|
|
3688
3706
|
inQueue?: boolean | undefined;
|
|
3689
3707
|
}, {
|
|
3690
3708
|
cursor?: string | undefined;
|
|
3691
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3709
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
3692
3710
|
campaignId?: string | undefined;
|
|
3693
3711
|
limit?: number | undefined;
|
|
3694
3712
|
inQueue?: boolean | undefined;
|
|
@@ -3928,6 +3946,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3928
3946
|
interviewing: number | null;
|
|
3929
3947
|
invitesSent: number | null;
|
|
3930
3948
|
}>>;
|
|
3949
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
3931
3950
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
3932
3951
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
3933
3952
|
proposals: z.ZodObject<{
|
|
@@ -4147,6 +4166,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4147
4166
|
} | null;
|
|
4148
4167
|
category: string | null;
|
|
4149
4168
|
uid: string | null;
|
|
4169
|
+
occupation: string | null;
|
|
4150
4170
|
jobUrl: string | null;
|
|
4151
4171
|
skills: {
|
|
4152
4172
|
name: string;
|
|
@@ -4308,6 +4328,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4308
4328
|
} | null;
|
|
4309
4329
|
category: string | null;
|
|
4310
4330
|
uid: string | null;
|
|
4331
|
+
occupation: string | null;
|
|
4311
4332
|
jobUrl: string | null;
|
|
4312
4333
|
skills: {
|
|
4313
4334
|
name: string;
|
|
@@ -4484,6 +4505,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4484
4505
|
} | null;
|
|
4485
4506
|
category: string | null;
|
|
4486
4507
|
uid: string | null;
|
|
4508
|
+
occupation: string | null;
|
|
4487
4509
|
jobUrl: string | null;
|
|
4488
4510
|
skills: {
|
|
4489
4511
|
name: string;
|
|
@@ -4652,6 +4674,7 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4652
4674
|
} | null;
|
|
4653
4675
|
category: string | null;
|
|
4654
4676
|
uid: string | null;
|
|
4677
|
+
occupation: string | null;
|
|
4655
4678
|
jobUrl: string | null;
|
|
4656
4679
|
skills: {
|
|
4657
4680
|
name: string;
|
|
@@ -763,6 +763,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
763
763
|
interviewing: number | null;
|
|
764
764
|
invitesSent: number | null;
|
|
765
765
|
}>>;
|
|
766
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
766
767
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
767
768
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
768
769
|
proposals: z.ZodObject<{
|
|
@@ -876,6 +877,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
876
877
|
} | null;
|
|
877
878
|
category: string | null;
|
|
878
879
|
uid: string | null;
|
|
880
|
+
occupation: string | null;
|
|
879
881
|
jobUrl: string | null;
|
|
880
882
|
skills: {
|
|
881
883
|
name: string;
|
|
@@ -987,6 +989,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
987
989
|
} | null;
|
|
988
990
|
category: string | null;
|
|
989
991
|
uid: string | null;
|
|
992
|
+
occupation: string | null;
|
|
990
993
|
jobUrl: string | null;
|
|
991
994
|
skills: {
|
|
992
995
|
name: string;
|
|
@@ -1103,6 +1106,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1103
1106
|
} | null;
|
|
1104
1107
|
category: string | null;
|
|
1105
1108
|
uid: string | null;
|
|
1109
|
+
occupation: string | null;
|
|
1106
1110
|
jobUrl: string | null;
|
|
1107
1111
|
skills: {
|
|
1108
1112
|
name: string;
|
|
@@ -1220,6 +1224,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1220
1224
|
} | null;
|
|
1221
1225
|
category: string | null;
|
|
1222
1226
|
uid: string | null;
|
|
1227
|
+
occupation: string | null;
|
|
1223
1228
|
jobUrl: string | null;
|
|
1224
1229
|
skills: {
|
|
1225
1230
|
name: string;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const getOrganizationLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>;
|
|
2
|
+
export declare const getOrganizationLeadsStatusEnum: z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>;
|
|
3
3
|
export declare const getOrganizationLeadsRequestQuerySchema: z.ZodObject<{
|
|
4
4
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5
5
|
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
|
-
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied"]>>;
|
|
6
|
+
status: z.ZodOptional<z.ZodEnum<["all", "suitable", "contacted", "viewed", "replied", "rejected"]>>;
|
|
7
7
|
campaignId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
inQueue: z.ZodOptional<z.ZodBoolean>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
cursor?: string | undefined;
|
|
11
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
11
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
12
12
|
campaignId?: string | undefined;
|
|
13
13
|
limit?: number | undefined;
|
|
14
14
|
inQueue?: boolean | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
cursor?: string | undefined;
|
|
17
|
-
status?: "all" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
17
|
+
status?: "all" | "rejected" | "suitable" | "contacted" | "viewed" | "replied" | undefined;
|
|
18
18
|
campaignId?: string | undefined;
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
inQueue?: boolean | undefined;
|
|
@@ -1597,6 +1597,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1597
1597
|
interviewing: number | null;
|
|
1598
1598
|
invitesSent: number | null;
|
|
1599
1599
|
}>>;
|
|
1600
|
+
occupation: z.ZodNullable<z.ZodString>;
|
|
1600
1601
|
activityUpdates: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
|
|
1601
1602
|
activity: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["4h" | "24h"]>, z.ZodObject<{
|
|
1602
1603
|
proposals: z.ZodObject<{
|
|
@@ -1816,6 +1817,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1816
1817
|
} | null;
|
|
1817
1818
|
category: string | null;
|
|
1818
1819
|
uid: string | null;
|
|
1820
|
+
occupation: string | null;
|
|
1819
1821
|
jobUrl: string | null;
|
|
1820
1822
|
skills: {
|
|
1821
1823
|
name: string;
|
|
@@ -1977,6 +1979,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1977
1979
|
} | null;
|
|
1978
1980
|
category: string | null;
|
|
1979
1981
|
uid: string | null;
|
|
1982
|
+
occupation: string | null;
|
|
1980
1983
|
jobUrl: string | null;
|
|
1981
1984
|
skills: {
|
|
1982
1985
|
name: string;
|
|
@@ -2308,6 +2311,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2308
2311
|
} | null;
|
|
2309
2312
|
category: string | null;
|
|
2310
2313
|
uid: string | null;
|
|
2314
|
+
occupation: string | null;
|
|
2311
2315
|
jobUrl: string | null;
|
|
2312
2316
|
skills: {
|
|
2313
2317
|
name: string;
|
|
@@ -2680,6 +2684,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2680
2684
|
} | null;
|
|
2681
2685
|
category: string | null;
|
|
2682
2686
|
uid: string | null;
|
|
2687
|
+
occupation: string | null;
|
|
2683
2688
|
jobUrl: string | null;
|
|
2684
2689
|
skills: {
|
|
2685
2690
|
name: string;
|
|
@@ -234,6 +234,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
234
234
|
interviewing: number | null;
|
|
235
235
|
invitesSent: number | null;
|
|
236
236
|
}>>;
|
|
237
|
+
occupation: import("zod").ZodNullable<import("zod").ZodString>;
|
|
237
238
|
activityUpdates: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>>;
|
|
238
239
|
activity: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodEnum<["4h" | "24h"]>, import("zod").ZodObject<{
|
|
239
240
|
proposals: import("zod").ZodObject<{
|
|
@@ -347,6 +348,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
347
348
|
} | null;
|
|
348
349
|
category: string | null;
|
|
349
350
|
uid: string | null;
|
|
351
|
+
occupation: string | null;
|
|
350
352
|
jobUrl: string | null;
|
|
351
353
|
skills: {
|
|
352
354
|
name: string;
|
|
@@ -458,6 +460,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
458
460
|
} | null;
|
|
459
461
|
category: string | null;
|
|
460
462
|
uid: string | null;
|
|
463
|
+
occupation: string | null;
|
|
461
464
|
jobUrl: string | null;
|
|
462
465
|
skills: {
|
|
463
466
|
name: string;
|
|
@@ -575,6 +578,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
575
578
|
} | null;
|
|
576
579
|
category: string | null;
|
|
577
580
|
uid: string | null;
|
|
581
|
+
occupation: string | null;
|
|
578
582
|
jobUrl: string | null;
|
|
579
583
|
skills: {
|
|
580
584
|
name: string;
|
|
@@ -691,6 +695,7 @@ export declare const scrapeResultSchema: import("zod").ZodObject<{
|
|
|
691
695
|
} | null;
|
|
692
696
|
category: string | null;
|
|
693
697
|
uid: string | null;
|
|
698
|
+
occupation: string | null;
|
|
694
699
|
jobUrl: string | null;
|
|
695
700
|
skills: {
|
|
696
701
|
name: string;
|