lancer-shared 1.0.174 → 1.0.175
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 +290 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +7 -0
- package/dist/schemas/lead/index.d.ts +61 -2
- package/dist/schemas/lead/nuxt.d.ts +1664 -0
- package/dist/schemas/logger/log-event.d.ts +5 -0
- package/dist/schemas/scraper/scrape-result.d.ts +23 -4
- package/dist/types/job/index.d.ts +1 -0
- package/dist/types/job/nuxt.d.ts +4 -0
- package/package.json +1 -1
|
@@ -148,6 +148,7 @@ export declare const jobActivitySchema: z.ZodObject<{
|
|
|
148
148
|
max: number | null;
|
|
149
149
|
}>;
|
|
150
150
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
151
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
151
152
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
152
153
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
153
154
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -159,6 +160,7 @@ export declare const jobActivitySchema: z.ZodObject<{
|
|
|
159
160
|
max: number | null;
|
|
160
161
|
};
|
|
161
162
|
lastViewedByClient: string | null;
|
|
163
|
+
lastViewedByClientTimestamp: number | null;
|
|
162
164
|
hires: number | null;
|
|
163
165
|
interviewing: number | null;
|
|
164
166
|
invitesSent: number | null;
|
|
@@ -170,6 +172,7 @@ export declare const jobActivitySchema: z.ZodObject<{
|
|
|
170
172
|
max: number | null;
|
|
171
173
|
};
|
|
172
174
|
lastViewedByClient: string | null;
|
|
175
|
+
lastViewedByClientTimestamp: number | null;
|
|
173
176
|
hires: number | null;
|
|
174
177
|
interviewing: number | null;
|
|
175
178
|
invitesSent: number | null;
|
|
@@ -236,6 +239,7 @@ export declare const jobActivityOffsetHours: readonly [4, 24];
|
|
|
236
239
|
export declare const jobActivityOffsetEnum: z.ZodEnum<["4h" | "24h"]>;
|
|
237
240
|
export declare const upworkJobSchema: z.ZodObject<{
|
|
238
241
|
id: z.ZodNullable<z.ZodString>;
|
|
242
|
+
uid: z.ZodNullable<z.ZodString>;
|
|
239
243
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
240
244
|
title: z.ZodNullable<z.ZodString>;
|
|
241
245
|
category: z.ZodNullable<z.ZodString>;
|
|
@@ -436,6 +440,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
436
440
|
max: number | null;
|
|
437
441
|
}>;
|
|
438
442
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
443
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
439
444
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
440
445
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
441
446
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -447,6 +452,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
447
452
|
max: number | null;
|
|
448
453
|
};
|
|
449
454
|
lastViewedByClient: string | null;
|
|
455
|
+
lastViewedByClientTimestamp: number | null;
|
|
450
456
|
hires: number | null;
|
|
451
457
|
interviewing: number | null;
|
|
452
458
|
invitesSent: number | null;
|
|
@@ -458,6 +464,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
458
464
|
max: number | null;
|
|
459
465
|
};
|
|
460
466
|
lastViewedByClient: string | null;
|
|
467
|
+
lastViewedByClientTimestamp: number | null;
|
|
461
468
|
hires: number | null;
|
|
462
469
|
interviewing: number | null;
|
|
463
470
|
invitesSent: number | null;
|
|
@@ -477,6 +484,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
477
484
|
max: number | null;
|
|
478
485
|
}>;
|
|
479
486
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
487
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
480
488
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
481
489
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
482
490
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -488,6 +496,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
488
496
|
max: number | null;
|
|
489
497
|
};
|
|
490
498
|
lastViewedByClient: string | null;
|
|
499
|
+
lastViewedByClientTimestamp: number | null;
|
|
491
500
|
hires: number | null;
|
|
492
501
|
interviewing: number | null;
|
|
493
502
|
invitesSent: number | null;
|
|
@@ -499,6 +508,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
499
508
|
max: number | null;
|
|
500
509
|
};
|
|
501
510
|
lastViewedByClient: string | null;
|
|
511
|
+
lastViewedByClientTimestamp: number | null;
|
|
502
512
|
hires: number | null;
|
|
503
513
|
interviewing: number | null;
|
|
504
514
|
invitesSent: number | null;
|
|
@@ -527,6 +537,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
527
537
|
}, "strip", z.ZodTypeAny, {
|
|
528
538
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
529
539
|
id: string | null;
|
|
540
|
+
uid: string | null;
|
|
530
541
|
createdAt: number | null;
|
|
531
542
|
title: string | null;
|
|
532
543
|
category: string | null;
|
|
@@ -606,6 +617,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
606
617
|
max: number | null;
|
|
607
618
|
};
|
|
608
619
|
lastViewedByClient: string | null;
|
|
620
|
+
lastViewedByClientTimestamp: number | null;
|
|
609
621
|
hires: number | null;
|
|
610
622
|
interviewing: number | null;
|
|
611
623
|
invitesSent: number | null;
|
|
@@ -619,6 +631,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
619
631
|
max: number | null;
|
|
620
632
|
};
|
|
621
633
|
lastViewedByClient: string | null;
|
|
634
|
+
lastViewedByClientTimestamp: number | null;
|
|
622
635
|
hires: number | null;
|
|
623
636
|
interviewing: number | null;
|
|
624
637
|
invitesSent: number | null;
|
|
@@ -635,6 +648,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
635
648
|
}, {
|
|
636
649
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
637
650
|
id: string | null;
|
|
651
|
+
uid: string | null;
|
|
638
652
|
createdAt: number | null;
|
|
639
653
|
title: string | null;
|
|
640
654
|
category: string | null;
|
|
@@ -714,6 +728,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
714
728
|
max: number | null;
|
|
715
729
|
};
|
|
716
730
|
lastViewedByClient: string | null;
|
|
731
|
+
lastViewedByClientTimestamp: number | null;
|
|
717
732
|
hires: number | null;
|
|
718
733
|
interviewing: number | null;
|
|
719
734
|
invitesSent: number | null;
|
|
@@ -727,6 +742,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
727
742
|
max: number | null;
|
|
728
743
|
};
|
|
729
744
|
lastViewedByClient: string | null;
|
|
745
|
+
lastViewedByClientTimestamp: number | null;
|
|
730
746
|
hires: number | null;
|
|
731
747
|
interviewing: number | null;
|
|
732
748
|
invitesSent: number | null;
|
|
@@ -743,6 +759,7 @@ export declare const upworkJobSchema: z.ZodObject<{
|
|
|
743
759
|
}>;
|
|
744
760
|
export declare const leadSchema: z.ZodObject<Omit<{
|
|
745
761
|
id: z.ZodNullable<z.ZodString>;
|
|
762
|
+
uid: z.ZodNullable<z.ZodString>;
|
|
746
763
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
747
764
|
title: z.ZodNullable<z.ZodString>;
|
|
748
765
|
category: z.ZodNullable<z.ZodString>;
|
|
@@ -943,6 +960,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
943
960
|
max: number | null;
|
|
944
961
|
}>;
|
|
945
962
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
963
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
946
964
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
947
965
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
948
966
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -954,6 +972,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
954
972
|
max: number | null;
|
|
955
973
|
};
|
|
956
974
|
lastViewedByClient: string | null;
|
|
975
|
+
lastViewedByClientTimestamp: number | null;
|
|
957
976
|
hires: number | null;
|
|
958
977
|
interviewing: number | null;
|
|
959
978
|
invitesSent: number | null;
|
|
@@ -965,6 +984,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
965
984
|
max: number | null;
|
|
966
985
|
};
|
|
967
986
|
lastViewedByClient: string | null;
|
|
987
|
+
lastViewedByClientTimestamp: number | null;
|
|
968
988
|
hires: number | null;
|
|
969
989
|
interviewing: number | null;
|
|
970
990
|
invitesSent: number | null;
|
|
@@ -984,6 +1004,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
984
1004
|
max: number | null;
|
|
985
1005
|
}>;
|
|
986
1006
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
1007
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
987
1008
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
988
1009
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
989
1010
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -995,6 +1016,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
995
1016
|
max: number | null;
|
|
996
1017
|
};
|
|
997
1018
|
lastViewedByClient: string | null;
|
|
1019
|
+
lastViewedByClientTimestamp: number | null;
|
|
998
1020
|
hires: number | null;
|
|
999
1021
|
interviewing: number | null;
|
|
1000
1022
|
invitesSent: number | null;
|
|
@@ -1006,6 +1028,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1006
1028
|
max: number | null;
|
|
1007
1029
|
};
|
|
1008
1030
|
lastViewedByClient: string | null;
|
|
1031
|
+
lastViewedByClientTimestamp: number | null;
|
|
1009
1032
|
hires: number | null;
|
|
1010
1033
|
interviewing: number | null;
|
|
1011
1034
|
invitesSent: number | null;
|
|
@@ -1083,6 +1106,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1083
1106
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
1084
1107
|
updatedAt: number | null;
|
|
1085
1108
|
id: string | null;
|
|
1109
|
+
uid: string | null;
|
|
1086
1110
|
createdAt: number | null;
|
|
1087
1111
|
title: string | null;
|
|
1088
1112
|
category: string | null;
|
|
@@ -1161,6 +1185,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1161
1185
|
max: number | null;
|
|
1162
1186
|
};
|
|
1163
1187
|
lastViewedByClient: string | null;
|
|
1188
|
+
lastViewedByClientTimestamp: number | null;
|
|
1164
1189
|
hires: number | null;
|
|
1165
1190
|
interviewing: number | null;
|
|
1166
1191
|
invitesSent: number | null;
|
|
@@ -1198,6 +1223,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1198
1223
|
max: number | null;
|
|
1199
1224
|
};
|
|
1200
1225
|
lastViewedByClient: string | null;
|
|
1226
|
+
lastViewedByClientTimestamp: number | null;
|
|
1201
1227
|
hires: number | null;
|
|
1202
1228
|
interviewing: number | null;
|
|
1203
1229
|
invitesSent: number | null;
|
|
@@ -1215,6 +1241,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1215
1241
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
1216
1242
|
updatedAt: number | null;
|
|
1217
1243
|
id: string | null;
|
|
1244
|
+
uid: string | null;
|
|
1218
1245
|
createdAt: number | null;
|
|
1219
1246
|
title: string | null;
|
|
1220
1247
|
category: string | null;
|
|
@@ -1293,6 +1320,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1293
1320
|
max: number | null;
|
|
1294
1321
|
};
|
|
1295
1322
|
lastViewedByClient: string | null;
|
|
1323
|
+
lastViewedByClientTimestamp: number | null;
|
|
1296
1324
|
hires: number | null;
|
|
1297
1325
|
interviewing: number | null;
|
|
1298
1326
|
invitesSent: number | null;
|
|
@@ -1330,6 +1358,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1330
1358
|
max: number | null;
|
|
1331
1359
|
};
|
|
1332
1360
|
lastViewedByClient: string | null;
|
|
1361
|
+
lastViewedByClientTimestamp: number | null;
|
|
1333
1362
|
hires: number | null;
|
|
1334
1363
|
interviewing: number | null;
|
|
1335
1364
|
invitesSent: number | null;
|
|
@@ -1347,6 +1376,7 @@ export declare const leadSchema: z.ZodObject<Omit<{
|
|
|
1347
1376
|
export declare const leadResponseSchema: z.ZodObject<{
|
|
1348
1377
|
leads: z.ZodArray<z.ZodObject<Omit<{
|
|
1349
1378
|
id: z.ZodNullable<z.ZodString>;
|
|
1379
|
+
uid: z.ZodNullable<z.ZodString>;
|
|
1350
1380
|
createdAt: z.ZodNullable<z.ZodNumber>;
|
|
1351
1381
|
title: z.ZodNullable<z.ZodString>;
|
|
1352
1382
|
category: z.ZodNullable<z.ZodString>;
|
|
@@ -1547,6 +1577,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1547
1577
|
max: number | null;
|
|
1548
1578
|
}>;
|
|
1549
1579
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
1580
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
1550
1581
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
1551
1582
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
1552
1583
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1558,6 +1589,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1558
1589
|
max: number | null;
|
|
1559
1590
|
};
|
|
1560
1591
|
lastViewedByClient: string | null;
|
|
1592
|
+
lastViewedByClientTimestamp: number | null;
|
|
1561
1593
|
hires: number | null;
|
|
1562
1594
|
interviewing: number | null;
|
|
1563
1595
|
invitesSent: number | null;
|
|
@@ -1569,6 +1601,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1569
1601
|
max: number | null;
|
|
1570
1602
|
};
|
|
1571
1603
|
lastViewedByClient: string | null;
|
|
1604
|
+
lastViewedByClientTimestamp: number | null;
|
|
1572
1605
|
hires: number | null;
|
|
1573
1606
|
interviewing: number | null;
|
|
1574
1607
|
invitesSent: number | null;
|
|
@@ -1588,6 +1621,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1588
1621
|
max: number | null;
|
|
1589
1622
|
}>;
|
|
1590
1623
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
1624
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
1591
1625
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
1592
1626
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
1593
1627
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1599,6 +1633,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1599
1633
|
max: number | null;
|
|
1600
1634
|
};
|
|
1601
1635
|
lastViewedByClient: string | null;
|
|
1636
|
+
lastViewedByClientTimestamp: number | null;
|
|
1602
1637
|
hires: number | null;
|
|
1603
1638
|
interviewing: number | null;
|
|
1604
1639
|
invitesSent: number | null;
|
|
@@ -1610,6 +1645,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1610
1645
|
max: number | null;
|
|
1611
1646
|
};
|
|
1612
1647
|
lastViewedByClient: string | null;
|
|
1648
|
+
lastViewedByClientTimestamp: number | null;
|
|
1613
1649
|
hires: number | null;
|
|
1614
1650
|
interviewing: number | null;
|
|
1615
1651
|
invitesSent: number | null;
|
|
@@ -1687,6 +1723,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1687
1723
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
1688
1724
|
updatedAt: number | null;
|
|
1689
1725
|
id: string | null;
|
|
1726
|
+
uid: string | null;
|
|
1690
1727
|
createdAt: number | null;
|
|
1691
1728
|
title: string | null;
|
|
1692
1729
|
category: string | null;
|
|
@@ -1765,6 +1802,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1765
1802
|
max: number | null;
|
|
1766
1803
|
};
|
|
1767
1804
|
lastViewedByClient: string | null;
|
|
1805
|
+
lastViewedByClientTimestamp: number | null;
|
|
1768
1806
|
hires: number | null;
|
|
1769
1807
|
interviewing: number | null;
|
|
1770
1808
|
invitesSent: number | null;
|
|
@@ -1802,6 +1840,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1802
1840
|
max: number | null;
|
|
1803
1841
|
};
|
|
1804
1842
|
lastViewedByClient: string | null;
|
|
1843
|
+
lastViewedByClientTimestamp: number | null;
|
|
1805
1844
|
hires: number | null;
|
|
1806
1845
|
interviewing: number | null;
|
|
1807
1846
|
invitesSent: number | null;
|
|
@@ -1819,6 +1858,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1819
1858
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
1820
1859
|
updatedAt: number | null;
|
|
1821
1860
|
id: string | null;
|
|
1861
|
+
uid: string | null;
|
|
1822
1862
|
createdAt: number | null;
|
|
1823
1863
|
title: string | null;
|
|
1824
1864
|
category: string | null;
|
|
@@ -1897,6 +1937,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1897
1937
|
max: number | null;
|
|
1898
1938
|
};
|
|
1899
1939
|
lastViewedByClient: string | null;
|
|
1940
|
+
lastViewedByClientTimestamp: number | null;
|
|
1900
1941
|
hires: number | null;
|
|
1901
1942
|
interviewing: number | null;
|
|
1902
1943
|
invitesSent: number | null;
|
|
@@ -1934,6 +1975,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1934
1975
|
max: number | null;
|
|
1935
1976
|
};
|
|
1936
1977
|
lastViewedByClient: string | null;
|
|
1978
|
+
lastViewedByClientTimestamp: number | null;
|
|
1937
1979
|
hires: number | null;
|
|
1938
1980
|
interviewing: number | null;
|
|
1939
1981
|
invitesSent: number | null;
|
|
@@ -1956,6 +1998,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1956
1998
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
1957
1999
|
updatedAt: number | null;
|
|
1958
2000
|
id: string | null;
|
|
2001
|
+
uid: string | null;
|
|
1959
2002
|
createdAt: number | null;
|
|
1960
2003
|
title: string | null;
|
|
1961
2004
|
category: string | null;
|
|
@@ -2034,6 +2077,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
2034
2077
|
max: number | null;
|
|
2035
2078
|
};
|
|
2036
2079
|
lastViewedByClient: string | null;
|
|
2080
|
+
lastViewedByClientTimestamp: number | null;
|
|
2037
2081
|
hires: number | null;
|
|
2038
2082
|
interviewing: number | null;
|
|
2039
2083
|
invitesSent: number | null;
|
|
@@ -2071,6 +2115,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
2071
2115
|
max: number | null;
|
|
2072
2116
|
};
|
|
2073
2117
|
lastViewedByClient: string | null;
|
|
2118
|
+
lastViewedByClientTimestamp: number | null;
|
|
2074
2119
|
hires: number | null;
|
|
2075
2120
|
interviewing: number | null;
|
|
2076
2121
|
invitesSent: number | null;
|
|
@@ -2093,6 +2138,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
2093
2138
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
2094
2139
|
updatedAt: number | null;
|
|
2095
2140
|
id: string | null;
|
|
2141
|
+
uid: string | null;
|
|
2096
2142
|
createdAt: number | null;
|
|
2097
2143
|
title: string | null;
|
|
2098
2144
|
category: string | null;
|
|
@@ -2171,6 +2217,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
2171
2217
|
max: number | null;
|
|
2172
2218
|
};
|
|
2173
2219
|
lastViewedByClient: string | null;
|
|
2220
|
+
lastViewedByClientTimestamp: number | null;
|
|
2174
2221
|
hires: number | null;
|
|
2175
2222
|
interviewing: number | null;
|
|
2176
2223
|
invitesSent: number | null;
|
|
@@ -2208,6 +2255,7 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
2208
2255
|
max: number | null;
|
|
2209
2256
|
};
|
|
2210
2257
|
lastViewedByClient: string | null;
|
|
2258
|
+
lastViewedByClientTimestamp: number | null;
|
|
2211
2259
|
hires: number | null;
|
|
2212
2260
|
interviewing: number | null;
|
|
2213
2261
|
invitesSent: number | null;
|
|
@@ -2235,18 +2283,18 @@ export declare const jobListingSchema: z.ZodObject<{
|
|
|
2235
2283
|
region: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"USOnly">, z.ZodLiteral<"UKOnly">, z.ZodLiteral<"Worldwide">]>>;
|
|
2236
2284
|
}, "strip", z.ZodTypeAny, {
|
|
2237
2285
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
2286
|
+
uid: string | null;
|
|
2238
2287
|
title: string | null;
|
|
2239
2288
|
datetime: string | null;
|
|
2240
2289
|
jobUrl: string | null;
|
|
2241
2290
|
isFeatured: boolean | null;
|
|
2242
|
-
uid: string | null;
|
|
2243
2291
|
}, {
|
|
2244
2292
|
region: "USOnly" | "UKOnly" | "Worldwide" | null;
|
|
2293
|
+
uid: string | null;
|
|
2245
2294
|
title: string | null;
|
|
2246
2295
|
datetime: string | null;
|
|
2247
2296
|
jobUrl: string | null;
|
|
2248
2297
|
isFeatured: boolean | null;
|
|
2249
|
-
uid: string | null;
|
|
2250
2298
|
}>;
|
|
2251
2299
|
export declare const jobActivityOffsetHourSchema: z.ZodType<4 | 24, z.ZodTypeDef, 4 | 24>;
|
|
2252
2300
|
export declare const jobActivityUpdateSchema: z.ZodObject<{
|
|
@@ -2263,6 +2311,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
|
|
|
2263
2311
|
max: number | null;
|
|
2264
2312
|
}>;
|
|
2265
2313
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
2314
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
2266
2315
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
2267
2316
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
2268
2317
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2274,6 +2323,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
|
|
|
2274
2323
|
max: number | null;
|
|
2275
2324
|
};
|
|
2276
2325
|
lastViewedByClient: string | null;
|
|
2326
|
+
lastViewedByClientTimestamp: number | null;
|
|
2277
2327
|
hires: number | null;
|
|
2278
2328
|
interviewing: number | null;
|
|
2279
2329
|
invitesSent: number | null;
|
|
@@ -2285,6 +2335,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
|
|
|
2285
2335
|
max: number | null;
|
|
2286
2336
|
};
|
|
2287
2337
|
lastViewedByClient: string | null;
|
|
2338
|
+
lastViewedByClientTimestamp: number | null;
|
|
2288
2339
|
hires: number | null;
|
|
2289
2340
|
interviewing: number | null;
|
|
2290
2341
|
invitesSent: number | null;
|
|
@@ -2301,6 +2352,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
|
|
|
2301
2352
|
max: number | null;
|
|
2302
2353
|
};
|
|
2303
2354
|
lastViewedByClient: string | null;
|
|
2355
|
+
lastViewedByClientTimestamp: number | null;
|
|
2304
2356
|
hires: number | null;
|
|
2305
2357
|
interviewing: number | null;
|
|
2306
2358
|
invitesSent: number | null;
|
|
@@ -2317,6 +2369,7 @@ export declare const jobActivityUpdateSchema: z.ZodObject<{
|
|
|
2317
2369
|
max: number | null;
|
|
2318
2370
|
};
|
|
2319
2371
|
lastViewedByClient: string | null;
|
|
2372
|
+
lastViewedByClientTimestamp: number | null;
|
|
2320
2373
|
hires: number | null;
|
|
2321
2374
|
interviewing: number | null;
|
|
2322
2375
|
invitesSent: number | null;
|
|
@@ -2340,6 +2393,7 @@ export declare const jobActivitySnapshotSchema: z.ZodObject<{
|
|
|
2340
2393
|
max: number | null;
|
|
2341
2394
|
}>;
|
|
2342
2395
|
lastViewedByClient: z.ZodNullable<z.ZodString>;
|
|
2396
|
+
lastViewedByClientTimestamp: z.ZodNullable<z.ZodNumber>;
|
|
2343
2397
|
hires: z.ZodNullable<z.ZodNumber>;
|
|
2344
2398
|
interviewing: z.ZodNullable<z.ZodNumber>;
|
|
2345
2399
|
invitesSent: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2351,6 +2405,7 @@ export declare const jobActivitySnapshotSchema: z.ZodObject<{
|
|
|
2351
2405
|
max: number | null;
|
|
2352
2406
|
};
|
|
2353
2407
|
lastViewedByClient: string | null;
|
|
2408
|
+
lastViewedByClientTimestamp: number | null;
|
|
2354
2409
|
hires: number | null;
|
|
2355
2410
|
interviewing: number | null;
|
|
2356
2411
|
invitesSent: number | null;
|
|
@@ -2362,6 +2417,7 @@ export declare const jobActivitySnapshotSchema: z.ZodObject<{
|
|
|
2362
2417
|
max: number | null;
|
|
2363
2418
|
};
|
|
2364
2419
|
lastViewedByClient: string | null;
|
|
2420
|
+
lastViewedByClientTimestamp: number | null;
|
|
2365
2421
|
hires: number | null;
|
|
2366
2422
|
interviewing: number | null;
|
|
2367
2423
|
invitesSent: number | null;
|
|
@@ -2379,6 +2435,7 @@ export declare const jobActivitySnapshotSchema: z.ZodObject<{
|
|
|
2379
2435
|
max: number | null;
|
|
2380
2436
|
};
|
|
2381
2437
|
lastViewedByClient: string | null;
|
|
2438
|
+
lastViewedByClientTimestamp: number | null;
|
|
2382
2439
|
hires: number | null;
|
|
2383
2440
|
interviewing: number | null;
|
|
2384
2441
|
invitesSent: number | null;
|
|
@@ -2396,6 +2453,7 @@ export declare const jobActivitySnapshotSchema: z.ZodObject<{
|
|
|
2396
2453
|
max: number | null;
|
|
2397
2454
|
};
|
|
2398
2455
|
lastViewedByClient: string | null;
|
|
2456
|
+
lastViewedByClientTimestamp: number | null;
|
|
2399
2457
|
hires: number | null;
|
|
2400
2458
|
interviewing: number | null;
|
|
2401
2459
|
invitesSent: number | null;
|
|
@@ -2408,3 +2466,4 @@ export declare const jobActivitySnapshotSchema: z.ZodObject<{
|
|
|
2408
2466
|
}>;
|
|
2409
2467
|
export * from "./lead-note";
|
|
2410
2468
|
export * from "./lead-status";
|
|
2469
|
+
export * from "./nuxt";
|