lancer-shared 1.0.92 → 1.0.93
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.
|
@@ -57,6 +57,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
57
57
|
engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
|
|
58
58
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
59
59
|
isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
60
|
+
isPhoneVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
60
61
|
enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
61
62
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
62
63
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -72,6 +73,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
72
73
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
73
74
|
}, "strip", z.ZodTypeAny, {
|
|
74
75
|
isPaymentVerified: "false" | "all" | "true";
|
|
76
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
75
77
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
76
78
|
enterpriseClient: "false" | "all" | "true";
|
|
77
79
|
clientLocationIncludes: string[] | null;
|
|
@@ -99,6 +101,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
99
101
|
memberSinceFrom: string | null;
|
|
100
102
|
memberSinceTo: string | null;
|
|
101
103
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
104
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
102
105
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
103
106
|
}>>;
|
|
104
107
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -134,6 +137,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
134
137
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
135
138
|
clientInfo: {
|
|
136
139
|
isPaymentVerified: "false" | "all" | "true";
|
|
140
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
137
141
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
138
142
|
enterpriseClient: "false" | "all" | "true";
|
|
139
143
|
clientLocationIncludes: string[] | null;
|
|
@@ -195,6 +199,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
195
199
|
memberSinceFrom: string | null;
|
|
196
200
|
memberSinceTo: string | null;
|
|
197
201
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
202
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
198
203
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
199
204
|
} | null;
|
|
200
205
|
vendorQualifications: {
|
|
@@ -305,6 +310,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
305
310
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
306
311
|
clientInfo: {
|
|
307
312
|
isPaymentVerified: "false" | "all" | "true";
|
|
313
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
308
314
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
309
315
|
enterpriseClient: "false" | "all" | "true";
|
|
310
316
|
clientLocationIncludes: string[] | null;
|
|
@@ -398,6 +404,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
398
404
|
memberSinceFrom: string | null;
|
|
399
405
|
memberSinceTo: string | null;
|
|
400
406
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
407
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
401
408
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
402
409
|
} | null;
|
|
403
410
|
vendorQualifications: {
|
|
@@ -511,6 +518,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
511
518
|
engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
|
|
512
519
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
513
520
|
isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
521
|
+
isPhoneVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
514
522
|
enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
515
523
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
516
524
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -526,6 +534,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
526
534
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
527
535
|
}, "strip", z.ZodTypeAny, {
|
|
528
536
|
isPaymentVerified: "false" | "all" | "true";
|
|
537
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
529
538
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
530
539
|
enterpriseClient: "false" | "all" | "true";
|
|
531
540
|
clientLocationIncludes: string[] | null;
|
|
@@ -553,6 +562,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
553
562
|
memberSinceFrom: string | null;
|
|
554
563
|
memberSinceTo: string | null;
|
|
555
564
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
565
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
556
566
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
557
567
|
}>>;
|
|
558
568
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -588,6 +598,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
588
598
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
589
599
|
clientInfo: {
|
|
590
600
|
isPaymentVerified: "false" | "all" | "true";
|
|
601
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
591
602
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
592
603
|
enterpriseClient: "false" | "all" | "true";
|
|
593
604
|
clientLocationIncludes: string[] | null;
|
|
@@ -649,6 +660,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
649
660
|
memberSinceFrom: string | null;
|
|
650
661
|
memberSinceTo: string | null;
|
|
651
662
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
663
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
652
664
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
653
665
|
} | null;
|
|
654
666
|
vendorQualifications: {
|
|
@@ -756,6 +768,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
756
768
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
757
769
|
clientInfo: {
|
|
758
770
|
isPaymentVerified: "false" | "all" | "true";
|
|
771
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
759
772
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
760
773
|
enterpriseClient: "false" | "all" | "true";
|
|
761
774
|
clientLocationIncludes: string[] | null;
|
|
@@ -846,6 +859,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
846
859
|
memberSinceFrom: string | null;
|
|
847
860
|
memberSinceTo: string | null;
|
|
848
861
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
862
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
849
863
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
850
864
|
} | null;
|
|
851
865
|
vendorQualifications: {
|
|
@@ -959,6 +973,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
959
973
|
engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
|
|
960
974
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
961
975
|
isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
976
|
+
isPhoneVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
962
977
|
enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
963
978
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
964
979
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -974,6 +989,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
974
989
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
975
990
|
}, "strip", z.ZodTypeAny, {
|
|
976
991
|
isPaymentVerified: "false" | "all" | "true";
|
|
992
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
977
993
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
978
994
|
enterpriseClient: "false" | "all" | "true";
|
|
979
995
|
clientLocationIncludes: string[] | null;
|
|
@@ -1001,6 +1017,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1001
1017
|
memberSinceFrom: string | null;
|
|
1002
1018
|
memberSinceTo: string | null;
|
|
1003
1019
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
1020
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
1004
1021
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
1005
1022
|
}>>;
|
|
1006
1023
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -1036,6 +1053,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1036
1053
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
1037
1054
|
clientInfo: {
|
|
1038
1055
|
isPaymentVerified: "false" | "all" | "true";
|
|
1056
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
1039
1057
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1040
1058
|
enterpriseClient: "false" | "all" | "true";
|
|
1041
1059
|
clientLocationIncludes: string[] | null;
|
|
@@ -1097,6 +1115,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1097
1115
|
memberSinceFrom: string | null;
|
|
1098
1116
|
memberSinceTo: string | null;
|
|
1099
1117
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
1118
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
1100
1119
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
1101
1120
|
} | null;
|
|
1102
1121
|
vendorQualifications: {
|
|
@@ -1205,6 +1224,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1205
1224
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
1206
1225
|
clientInfo: {
|
|
1207
1226
|
isPaymentVerified: "false" | "all" | "true";
|
|
1227
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
1208
1228
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
1209
1229
|
enterpriseClient: "false" | "all" | "true";
|
|
1210
1230
|
clientLocationIncludes: string[] | null;
|
|
@@ -1296,6 +1316,7 @@ export declare const updateCampaignSchema: z.ZodObject<Omit<{
|
|
|
1296
1316
|
memberSinceFrom: string | null;
|
|
1297
1317
|
memberSinceTo: string | null;
|
|
1298
1318
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
1319
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
1299
1320
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
1300
1321
|
} | null;
|
|
1301
1322
|
vendorQualifications: {
|
|
@@ -66,6 +66,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
66
66
|
engagementType: z.ZodNullable<z.ZodArray<z.ZodEnum<["Less than 30 hrs/week", "More than 30 hrs/week", "Unspecified"]>, "many">>;
|
|
67
67
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
68
68
|
isPaymentVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
69
|
+
isPhoneVerified: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
69
70
|
enterpriseClient: z.ZodDefault<z.ZodEnum<["all", "true", "false"]>>;
|
|
70
71
|
clientLocationIncludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
71
72
|
clientLocationExcludes: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -81,6 +82,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
81
82
|
memberSinceTo: z.ZodNullable<z.ZodString>;
|
|
82
83
|
}, "strip", z.ZodTypeAny, {
|
|
83
84
|
isPaymentVerified: "false" | "all" | "true";
|
|
85
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
84
86
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
85
87
|
enterpriseClient: "false" | "all" | "true";
|
|
86
88
|
clientLocationIncludes: string[] | null;
|
|
@@ -108,6 +110,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
108
110
|
memberSinceFrom: string | null;
|
|
109
111
|
memberSinceTo: string | null;
|
|
110
112
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
113
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
111
114
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
112
115
|
}>>;
|
|
113
116
|
vendorQualifications: z.ZodNullable<z.ZodObject<{
|
|
@@ -143,6 +146,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
143
146
|
experienceLevel: ("Entry level" | "Intermediate" | "Expert")[] | null;
|
|
144
147
|
clientInfo: {
|
|
145
148
|
isPaymentVerified: "false" | "all" | "true";
|
|
149
|
+
isPhoneVerified: "false" | "all" | "true";
|
|
146
150
|
companySize: ("Unspecified" | "Individual client" | "Small company (2-9 people)" | "Mid-sized company (10-99 people)" | "Large company (100-1,000 people)" | "Large company (1,000+ people)")[] | null;
|
|
147
151
|
enterpriseClient: "false" | "all" | "true";
|
|
148
152
|
clientLocationIncludes: string[] | null;
|
|
@@ -204,6 +208,7 @@ export declare const jobFiltersSchema: z.ZodObject<{
|
|
|
204
208
|
memberSinceFrom: string | null;
|
|
205
209
|
memberSinceTo: string | null;
|
|
206
210
|
isPaymentVerified?: "false" | "all" | "true" | undefined;
|
|
211
|
+
isPhoneVerified?: "false" | "all" | "true" | undefined;
|
|
207
212
|
enterpriseClient?: "false" | "all" | "true" | undefined;
|
|
208
213
|
} | null;
|
|
209
214
|
vendorQualifications: {
|
|
@@ -57,6 +57,7 @@ exports.jobFiltersSchema = zod_1.z.object({
|
|
|
57
57
|
clientInfo: zod_1.z
|
|
58
58
|
.object({
|
|
59
59
|
isPaymentVerified: zod_1.z.enum(["all", "true", "false"]).default("all"),
|
|
60
|
+
isPhoneVerified: zod_1.z.enum(["all", "true", "false"]).default("all"),
|
|
60
61
|
enterpriseClient: zod_1.z.enum(["all", "true", "false"]).default("all"),
|
|
61
62
|
clientLocationIncludes: zod_1.z.array(zod_1.z.string()).nullable(),
|
|
62
63
|
clientLocationExcludes: zod_1.z.array(zod_1.z.string()).nullable(),
|