lancer-shared 1.2.285 → 1.2.287
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 +32 -8
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +32 -8
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +2 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +126 -0
- package/dist/schemas/campaign/campaign.d.ts +15 -0
- package/dist/schemas/organization/cover-letter.d.ts +5 -1
- package/dist/schemas/organization/index.d.ts +3 -3
- package/dist/schemas/plan/index.d.ts +77 -162
- package/dist/schemas/proxy/proxy-available-replacements.d.ts +1 -1
- package/dist/schemas/proxy/proxy.d.ts +12 -8
- package/dist/schemas/scraper/scrape-payload.d.ts +7 -0
- package/package.json +2 -2
|
@@ -6,14 +6,17 @@ export declare const planStripeMetadataSchema: z.ZodObject<{
|
|
|
6
6
|
id: z.ZodString;
|
|
7
7
|
nickname: z.ZodString;
|
|
8
8
|
lookup_key: z.ZodString;
|
|
9
|
+
billing_interval: z.ZodEnum<["monthly", "quarterly", "yearly"]>;
|
|
9
10
|
}, "strip", z.ZodTypeAny, {
|
|
10
11
|
id: string;
|
|
11
12
|
nickname: string;
|
|
12
13
|
lookup_key: string;
|
|
14
|
+
billing_interval: "monthly" | "quarterly" | "yearly";
|
|
13
15
|
}, {
|
|
14
16
|
id: string;
|
|
15
17
|
nickname: string;
|
|
16
18
|
lookup_key: string;
|
|
19
|
+
billing_interval: "monthly" | "quarterly" | "yearly";
|
|
17
20
|
}>, "many">;
|
|
18
21
|
}, "strip", z.ZodTypeAny, {
|
|
19
22
|
id: string;
|
|
@@ -22,6 +25,7 @@ export declare const planStripeMetadataSchema: z.ZodObject<{
|
|
|
22
25
|
id: string;
|
|
23
26
|
nickname: string;
|
|
24
27
|
lookup_key: string;
|
|
28
|
+
billing_interval: "monthly" | "quarterly" | "yearly";
|
|
25
29
|
}[];
|
|
26
30
|
}, {
|
|
27
31
|
id: string;
|
|
@@ -30,6 +34,7 @@ export declare const planStripeMetadataSchema: z.ZodObject<{
|
|
|
30
34
|
id: string;
|
|
31
35
|
nickname: string;
|
|
32
36
|
lookup_key: string;
|
|
37
|
+
billing_interval: "monthly" | "quarterly" | "yearly";
|
|
33
38
|
}[];
|
|
34
39
|
}>;
|
|
35
40
|
export declare const planFeatureSchema: z.ZodObject<{
|
|
@@ -47,166 +52,114 @@ export declare const planFeatureSchema: z.ZodObject<{
|
|
|
47
52
|
}>;
|
|
48
53
|
export declare const planPricingIntervalSchema: z.ZodObject<{
|
|
49
54
|
amount: z.ZodNumber;
|
|
50
|
-
|
|
55
|
+
label: z.ZodString;
|
|
51
56
|
priceId: z.ZodString;
|
|
52
57
|
lookupKey: z.ZodString;
|
|
53
|
-
isLegacyPricing: z.ZodBoolean;
|
|
54
58
|
}, "strip", z.ZodTypeAny, {
|
|
55
|
-
|
|
59
|
+
label: string;
|
|
56
60
|
amount: number;
|
|
57
61
|
priceId: string;
|
|
58
62
|
lookupKey: string;
|
|
59
|
-
isLegacyPricing: boolean;
|
|
60
63
|
}, {
|
|
61
|
-
|
|
64
|
+
label: string;
|
|
62
65
|
amount: number;
|
|
63
66
|
priceId: string;
|
|
64
67
|
lookupKey: string;
|
|
65
|
-
isLegacyPricing: boolean;
|
|
66
68
|
}>;
|
|
67
69
|
export declare const planPricingSchema: z.ZodObject<{
|
|
68
|
-
monthly: z.ZodObject<{
|
|
70
|
+
monthly: z.ZodArray<z.ZodObject<{
|
|
69
71
|
amount: z.ZodNumber;
|
|
70
|
-
|
|
72
|
+
label: z.ZodString;
|
|
71
73
|
priceId: z.ZodString;
|
|
72
74
|
lookupKey: z.ZodString;
|
|
73
|
-
isLegacyPricing: z.ZodBoolean;
|
|
74
75
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
|
|
76
|
+
label: string;
|
|
76
77
|
amount: number;
|
|
77
78
|
priceId: string;
|
|
78
79
|
lookupKey: string;
|
|
79
|
-
isLegacyPricing: boolean;
|
|
80
80
|
}, {
|
|
81
|
-
|
|
81
|
+
label: string;
|
|
82
82
|
amount: number;
|
|
83
83
|
priceId: string;
|
|
84
84
|
lookupKey: string;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
quarterly: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
}>, "many">;
|
|
86
|
+
quarterly: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
88
87
|
amount: z.ZodNumber;
|
|
89
|
-
|
|
88
|
+
label: z.ZodString;
|
|
90
89
|
priceId: z.ZodString;
|
|
91
90
|
lookupKey: z.ZodString;
|
|
92
|
-
isLegacyPricing: z.ZodBoolean;
|
|
93
91
|
}, "strip", z.ZodTypeAny, {
|
|
94
|
-
|
|
92
|
+
label: string;
|
|
95
93
|
amount: number;
|
|
96
94
|
priceId: string;
|
|
97
95
|
lookupKey: string;
|
|
98
|
-
isLegacyPricing: boolean;
|
|
99
96
|
}, {
|
|
100
|
-
|
|
97
|
+
label: string;
|
|
101
98
|
amount: number;
|
|
102
99
|
priceId: string;
|
|
103
100
|
lookupKey: string;
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
yearly: z.ZodOptional<z.ZodObject<{
|
|
101
|
+
}>, "many">>;
|
|
102
|
+
yearly: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
107
103
|
amount: z.ZodNumber;
|
|
108
|
-
|
|
104
|
+
label: z.ZodString;
|
|
109
105
|
priceId: z.ZodString;
|
|
110
106
|
lookupKey: z.ZodString;
|
|
111
|
-
isLegacyPricing: z.ZodBoolean;
|
|
112
107
|
}, "strip", z.ZodTypeAny, {
|
|
113
|
-
|
|
108
|
+
label: string;
|
|
114
109
|
amount: number;
|
|
115
110
|
priceId: string;
|
|
116
111
|
lookupKey: string;
|
|
117
|
-
isLegacyPricing: boolean;
|
|
118
112
|
}, {
|
|
119
|
-
|
|
113
|
+
label: string;
|
|
120
114
|
amount: number;
|
|
121
115
|
priceId: string;
|
|
122
116
|
lookupKey: string;
|
|
123
|
-
|
|
124
|
-
}>>;
|
|
117
|
+
}>, "many">>;
|
|
125
118
|
}, "strip", z.ZodTypeAny, {
|
|
126
119
|
monthly: {
|
|
127
|
-
|
|
120
|
+
label: string;
|
|
128
121
|
amount: number;
|
|
129
122
|
priceId: string;
|
|
130
123
|
lookupKey: string;
|
|
131
|
-
|
|
132
|
-
};
|
|
124
|
+
}[];
|
|
133
125
|
quarterly?: {
|
|
134
|
-
|
|
126
|
+
label: string;
|
|
135
127
|
amount: number;
|
|
136
128
|
priceId: string;
|
|
137
129
|
lookupKey: string;
|
|
138
|
-
|
|
139
|
-
} | undefined;
|
|
130
|
+
}[] | undefined;
|
|
140
131
|
yearly?: {
|
|
141
|
-
|
|
132
|
+
label: string;
|
|
142
133
|
amount: number;
|
|
143
134
|
priceId: string;
|
|
144
135
|
lookupKey: string;
|
|
145
|
-
|
|
146
|
-
} | undefined;
|
|
136
|
+
}[] | undefined;
|
|
147
137
|
}, {
|
|
148
138
|
monthly: {
|
|
149
|
-
|
|
139
|
+
label: string;
|
|
150
140
|
amount: number;
|
|
151
141
|
priceId: string;
|
|
152
142
|
lookupKey: string;
|
|
153
|
-
|
|
154
|
-
};
|
|
143
|
+
}[];
|
|
155
144
|
quarterly?: {
|
|
156
|
-
|
|
145
|
+
label: string;
|
|
157
146
|
amount: number;
|
|
158
147
|
priceId: string;
|
|
159
148
|
lookupKey: string;
|
|
160
|
-
|
|
161
|
-
} | undefined;
|
|
149
|
+
}[] | undefined;
|
|
162
150
|
yearly?: {
|
|
163
|
-
|
|
151
|
+
label: string;
|
|
164
152
|
amount: number;
|
|
165
153
|
priceId: string;
|
|
166
154
|
lookupKey: string;
|
|
167
|
-
|
|
168
|
-
} | undefined;
|
|
155
|
+
}[] | undefined;
|
|
169
156
|
}>;
|
|
170
157
|
export declare const planSchema: z.ZodObject<{
|
|
171
158
|
id: z.ZodString;
|
|
172
159
|
name: z.ZodString;
|
|
173
|
-
displayName: z.ZodString;
|
|
174
160
|
slug: z.ZodString;
|
|
175
161
|
description: z.ZodString;
|
|
176
162
|
price: z.ZodNumber;
|
|
177
|
-
stripe: z.ZodObject<{
|
|
178
|
-
id: z.ZodString;
|
|
179
|
-
name: z.ZodString;
|
|
180
|
-
prices: z.ZodArray<z.ZodObject<{
|
|
181
|
-
id: z.ZodString;
|
|
182
|
-
nickname: z.ZodString;
|
|
183
|
-
lookup_key: z.ZodString;
|
|
184
|
-
}, "strip", z.ZodTypeAny, {
|
|
185
|
-
id: string;
|
|
186
|
-
nickname: string;
|
|
187
|
-
lookup_key: string;
|
|
188
|
-
}, {
|
|
189
|
-
id: string;
|
|
190
|
-
nickname: string;
|
|
191
|
-
lookup_key: string;
|
|
192
|
-
}>, "many">;
|
|
193
|
-
}, "strip", z.ZodTypeAny, {
|
|
194
|
-
id: string;
|
|
195
|
-
name: string;
|
|
196
|
-
prices: {
|
|
197
|
-
id: string;
|
|
198
|
-
nickname: string;
|
|
199
|
-
lookup_key: string;
|
|
200
|
-
}[];
|
|
201
|
-
}, {
|
|
202
|
-
id: string;
|
|
203
|
-
name: string;
|
|
204
|
-
prices: {
|
|
205
|
-
id: string;
|
|
206
|
-
nickname: string;
|
|
207
|
-
lookup_key: string;
|
|
208
|
-
}[];
|
|
209
|
-
}>;
|
|
210
163
|
version: z.ZodNumber;
|
|
211
164
|
features: z.ZodArray<z.ZodObject<{
|
|
212
165
|
id: z.ZodString;
|
|
@@ -225,108 +178,94 @@ export declare const planSchema: z.ZodObject<{
|
|
|
225
178
|
isActive: z.ZodBoolean;
|
|
226
179
|
createdAt: z.ZodNumber;
|
|
227
180
|
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
181
|
+
hasFreeTrial: z.ZodBoolean;
|
|
228
182
|
pricing: z.ZodObject<{
|
|
229
|
-
monthly: z.ZodObject<{
|
|
183
|
+
monthly: z.ZodArray<z.ZodObject<{
|
|
230
184
|
amount: z.ZodNumber;
|
|
231
|
-
|
|
185
|
+
label: z.ZodString;
|
|
232
186
|
priceId: z.ZodString;
|
|
233
187
|
lookupKey: z.ZodString;
|
|
234
|
-
isLegacyPricing: z.ZodBoolean;
|
|
235
188
|
}, "strip", z.ZodTypeAny, {
|
|
236
|
-
|
|
189
|
+
label: string;
|
|
237
190
|
amount: number;
|
|
238
191
|
priceId: string;
|
|
239
192
|
lookupKey: string;
|
|
240
|
-
isLegacyPricing: boolean;
|
|
241
193
|
}, {
|
|
242
|
-
|
|
194
|
+
label: string;
|
|
243
195
|
amount: number;
|
|
244
196
|
priceId: string;
|
|
245
197
|
lookupKey: string;
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
quarterly: z.ZodOptional<z.ZodObject<{
|
|
198
|
+
}>, "many">;
|
|
199
|
+
quarterly: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
249
200
|
amount: z.ZodNumber;
|
|
250
|
-
|
|
201
|
+
label: z.ZodString;
|
|
251
202
|
priceId: z.ZodString;
|
|
252
203
|
lookupKey: z.ZodString;
|
|
253
|
-
isLegacyPricing: z.ZodBoolean;
|
|
254
204
|
}, "strip", z.ZodTypeAny, {
|
|
255
|
-
|
|
205
|
+
label: string;
|
|
256
206
|
amount: number;
|
|
257
207
|
priceId: string;
|
|
258
208
|
lookupKey: string;
|
|
259
|
-
isLegacyPricing: boolean;
|
|
260
209
|
}, {
|
|
261
|
-
|
|
210
|
+
label: string;
|
|
262
211
|
amount: number;
|
|
263
212
|
priceId: string;
|
|
264
213
|
lookupKey: string;
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
yearly: z.ZodOptional<z.ZodObject<{
|
|
214
|
+
}>, "many">>;
|
|
215
|
+
yearly: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
268
216
|
amount: z.ZodNumber;
|
|
269
|
-
|
|
217
|
+
label: z.ZodString;
|
|
270
218
|
priceId: z.ZodString;
|
|
271
219
|
lookupKey: z.ZodString;
|
|
272
|
-
isLegacyPricing: z.ZodBoolean;
|
|
273
220
|
}, "strip", z.ZodTypeAny, {
|
|
274
|
-
|
|
221
|
+
label: string;
|
|
275
222
|
amount: number;
|
|
276
223
|
priceId: string;
|
|
277
224
|
lookupKey: string;
|
|
278
|
-
isLegacyPricing: boolean;
|
|
279
225
|
}, {
|
|
280
|
-
|
|
226
|
+
label: string;
|
|
281
227
|
amount: number;
|
|
282
228
|
priceId: string;
|
|
283
229
|
lookupKey: string;
|
|
284
|
-
|
|
285
|
-
}>>;
|
|
230
|
+
}>, "many">>;
|
|
286
231
|
}, "strip", z.ZodTypeAny, {
|
|
287
232
|
monthly: {
|
|
288
|
-
|
|
233
|
+
label: string;
|
|
289
234
|
amount: number;
|
|
290
235
|
priceId: string;
|
|
291
236
|
lookupKey: string;
|
|
292
|
-
|
|
293
|
-
};
|
|
237
|
+
}[];
|
|
294
238
|
quarterly?: {
|
|
295
|
-
|
|
239
|
+
label: string;
|
|
296
240
|
amount: number;
|
|
297
241
|
priceId: string;
|
|
298
242
|
lookupKey: string;
|
|
299
|
-
|
|
300
|
-
} | undefined;
|
|
243
|
+
}[] | undefined;
|
|
301
244
|
yearly?: {
|
|
302
|
-
|
|
245
|
+
label: string;
|
|
303
246
|
amount: number;
|
|
304
247
|
priceId: string;
|
|
305
248
|
lookupKey: string;
|
|
306
|
-
|
|
307
|
-
} | undefined;
|
|
249
|
+
}[] | undefined;
|
|
308
250
|
}, {
|
|
309
251
|
monthly: {
|
|
310
|
-
|
|
252
|
+
label: string;
|
|
311
253
|
amount: number;
|
|
312
254
|
priceId: string;
|
|
313
255
|
lookupKey: string;
|
|
314
|
-
|
|
315
|
-
};
|
|
256
|
+
}[];
|
|
316
257
|
quarterly?: {
|
|
317
|
-
|
|
258
|
+
label: string;
|
|
318
259
|
amount: number;
|
|
319
260
|
priceId: string;
|
|
320
261
|
lookupKey: string;
|
|
321
|
-
|
|
322
|
-
} | undefined;
|
|
262
|
+
}[] | undefined;
|
|
323
263
|
yearly?: {
|
|
324
|
-
|
|
264
|
+
label: string;
|
|
325
265
|
amount: number;
|
|
326
266
|
priceId: string;
|
|
327
267
|
lookupKey: string;
|
|
328
|
-
|
|
329
|
-
} | undefined;
|
|
268
|
+
}[] | undefined;
|
|
330
269
|
}>;
|
|
331
270
|
}, "strip", z.ZodTypeAny, {
|
|
332
271
|
id: string;
|
|
@@ -336,47 +275,35 @@ export declare const planSchema: z.ZodObject<{
|
|
|
336
275
|
sortOrder: number;
|
|
337
276
|
pricing: {
|
|
338
277
|
monthly: {
|
|
339
|
-
|
|
278
|
+
label: string;
|
|
340
279
|
amount: number;
|
|
341
280
|
priceId: string;
|
|
342
281
|
lookupKey: string;
|
|
343
|
-
|
|
344
|
-
};
|
|
282
|
+
}[];
|
|
345
283
|
quarterly?: {
|
|
346
|
-
|
|
284
|
+
label: string;
|
|
347
285
|
amount: number;
|
|
348
286
|
priceId: string;
|
|
349
287
|
lookupKey: string;
|
|
350
|
-
|
|
351
|
-
} | undefined;
|
|
288
|
+
}[] | undefined;
|
|
352
289
|
yearly?: {
|
|
353
|
-
|
|
290
|
+
label: string;
|
|
354
291
|
amount: number;
|
|
355
292
|
priceId: string;
|
|
356
293
|
lookupKey: string;
|
|
357
|
-
|
|
358
|
-
} | undefined;
|
|
294
|
+
}[] | undefined;
|
|
359
295
|
};
|
|
360
296
|
price: number;
|
|
361
297
|
createdAt: number;
|
|
362
298
|
isActive: boolean;
|
|
363
299
|
archivedAt: number | null;
|
|
364
|
-
stripe: {
|
|
365
|
-
id: string;
|
|
366
|
-
name: string;
|
|
367
|
-
prices: {
|
|
368
|
-
id: string;
|
|
369
|
-
nickname: string;
|
|
370
|
-
lookup_key: string;
|
|
371
|
-
}[];
|
|
372
|
-
};
|
|
373
|
-
displayName: string;
|
|
374
300
|
slug: string;
|
|
375
301
|
features: {
|
|
376
302
|
id: string;
|
|
377
303
|
description: string;
|
|
378
304
|
tooltipContent: string | null;
|
|
379
305
|
}[];
|
|
306
|
+
hasFreeTrial: boolean;
|
|
380
307
|
}, {
|
|
381
308
|
id: string;
|
|
382
309
|
name: string;
|
|
@@ -385,47 +312,35 @@ export declare const planSchema: z.ZodObject<{
|
|
|
385
312
|
sortOrder: number;
|
|
386
313
|
pricing: {
|
|
387
314
|
monthly: {
|
|
388
|
-
|
|
315
|
+
label: string;
|
|
389
316
|
amount: number;
|
|
390
317
|
priceId: string;
|
|
391
318
|
lookupKey: string;
|
|
392
|
-
|
|
393
|
-
};
|
|
319
|
+
}[];
|
|
394
320
|
quarterly?: {
|
|
395
|
-
|
|
321
|
+
label: string;
|
|
396
322
|
amount: number;
|
|
397
323
|
priceId: string;
|
|
398
324
|
lookupKey: string;
|
|
399
|
-
|
|
400
|
-
} | undefined;
|
|
325
|
+
}[] | undefined;
|
|
401
326
|
yearly?: {
|
|
402
|
-
|
|
327
|
+
label: string;
|
|
403
328
|
amount: number;
|
|
404
329
|
priceId: string;
|
|
405
330
|
lookupKey: string;
|
|
406
|
-
|
|
407
|
-
} | undefined;
|
|
331
|
+
}[] | undefined;
|
|
408
332
|
};
|
|
409
333
|
price: number;
|
|
410
334
|
createdAt: number;
|
|
411
335
|
isActive: boolean;
|
|
412
336
|
archivedAt: number | null;
|
|
413
|
-
stripe: {
|
|
414
|
-
id: string;
|
|
415
|
-
name: string;
|
|
416
|
-
prices: {
|
|
417
|
-
id: string;
|
|
418
|
-
nickname: string;
|
|
419
|
-
lookup_key: string;
|
|
420
|
-
}[];
|
|
421
|
-
};
|
|
422
|
-
displayName: string;
|
|
423
337
|
slug: string;
|
|
424
338
|
features: {
|
|
425
339
|
id: string;
|
|
426
340
|
description: string;
|
|
427
341
|
tooltipContent: string | null;
|
|
428
342
|
}[];
|
|
343
|
+
hasFreeTrial: boolean;
|
|
429
344
|
}>;
|
|
430
345
|
export declare const planSlugEnum: z.ZodEnum<["lancer-unlimited-launch-offer"]>;
|
|
431
346
|
export interface PlanStripeMetadata extends infer<typeof planStripeMetadataSchema> {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const proxyAvailableReplacementsSchema: z.ZodRecord<z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata"]>, z.ZodNumber>;
|
|
2
|
+
export declare const proxyAvailableReplacementsSchema: z.ZodRecord<z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata", "iproyal"]>, z.ZodNumber>;
|
|
3
3
|
export interface ProxyAvailableReplacements extends z.infer<typeof proxyAvailableReplacementsSchema> {
|
|
4
4
|
}
|
|
@@ -3,7 +3,7 @@ import { BidderAccount, ScraperAccount } from '../account';
|
|
|
3
3
|
import { Region } from '../shared';
|
|
4
4
|
import { proxyCountryEnum } from './proxy-country';
|
|
5
5
|
export declare const proxyStatusSchema: z.ZodEnum<["invalid", "valid", "pending_validation"]>;
|
|
6
|
-
export declare const proxyProviderSchema: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata"]>;
|
|
6
|
+
export declare const proxyProviderSchema: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata", "iproyal"]>;
|
|
7
7
|
export declare const proxyTypeSchema: z.ZodEnum<["rotating", "static"]>;
|
|
8
8
|
export declare const proxySchema: z.ZodObject<{
|
|
9
9
|
id: z.ZodString;
|
|
@@ -12,10 +12,11 @@ export declare const proxySchema: z.ZodObject<{
|
|
|
12
12
|
port: z.ZodNumber;
|
|
13
13
|
username: z.ZodString;
|
|
14
14
|
password: z.ZodString;
|
|
15
|
-
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata"]>;
|
|
15
|
+
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata", "iproyal"]>;
|
|
16
16
|
ip: z.ZodString;
|
|
17
17
|
isProxy: z.ZodNullable<z.ZodBoolean>;
|
|
18
18
|
claimedCountry: z.ZodEnum<["US", "CA", "GB", "AF", "AL", "DZ", "AD", "AO", "AR", "AM", "AU", "AT", "AZ", "BD", "BY", "BE", "BA", "BR", "BG", "CM", "CF", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "DM", "DO", "EC", "EG", "SV", "EE", "ET", "FI", "FR", "GE", "DE", "GH", "GR", "GL", "GD", "GT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "JM", "JP", "JO", "KZ", "KR", "LV", "LB", "LT", "LU", "MK", "MW", "MY", "MT", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "NL", "NZ", "NI", "NG", "NO", "PK", "PW", "PY", "PE", "PH", "PL", "PT", "PR", "QA", "RO", "RU", "SM", "SA", "SN", "RS", "SG", "SK", "SI", "SO", "ZA", "ES", "LK", "SR", "SE", "CH", "TH", "TR", "UG", "UA", "AE", "UY", "UZ", "VE", "VN", "YE", "ZM", "ZW"]>;
|
|
19
|
+
city: z.ZodNullable<z.ZodString>;
|
|
19
20
|
status: z.ZodNullable<z.ZodEnum<["invalid", "valid", "pending_validation"]>>;
|
|
20
21
|
country: z.ZodNullable<z.ZodEnum<["US", "CA", "GB", "AF", "AL", "DZ", "AD", "AO", "AR", "AM", "AU", "AT", "AZ", "BD", "BY", "BE", "BA", "BR", "BG", "CM", "CF", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "DM", "DO", "EC", "EG", "SV", "EE", "ET", "FI", "FR", "GE", "DE", "GH", "GR", "GL", "GD", "GT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "JM", "JP", "JO", "KZ", "KR", "LV", "LB", "LT", "LU", "MK", "MW", "MY", "MT", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "NL", "NZ", "NI", "NG", "NO", "PK", "PW", "PY", "PE", "PH", "PL", "PT", "PR", "QA", "RO", "RU", "SM", "SA", "SN", "RS", "SG", "SK", "SI", "SO", "ZA", "ES", "LK", "SR", "SE", "CH", "TH", "TR", "UG", "UA", "AE", "UY", "UZ", "VE", "VN", "YE", "ZM", "ZW"]>>;
|
|
21
22
|
accountId: z.ZodNullable<z.ZodString>;
|
|
@@ -29,9 +30,10 @@ export declare const proxySchema: z.ZodObject<{
|
|
|
29
30
|
host: string;
|
|
30
31
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
31
32
|
ip: string;
|
|
33
|
+
city: string | null;
|
|
32
34
|
externalId: string;
|
|
33
35
|
password: string;
|
|
34
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata";
|
|
36
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata" | "iproyal";
|
|
35
37
|
isProxy: boolean | null;
|
|
36
38
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW";
|
|
37
39
|
accountId: string | null;
|
|
@@ -44,9 +46,10 @@ export declare const proxySchema: z.ZodObject<{
|
|
|
44
46
|
host: string;
|
|
45
47
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
46
48
|
ip: string;
|
|
49
|
+
city: string | null;
|
|
47
50
|
externalId: string;
|
|
48
51
|
password: string;
|
|
49
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata";
|
|
52
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata" | "iproyal";
|
|
50
53
|
isProxy: boolean | null;
|
|
51
54
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW";
|
|
52
55
|
accountId: string | null;
|
|
@@ -58,15 +61,16 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
|
|
|
58
61
|
port: z.ZodNumber;
|
|
59
62
|
username: z.ZodString;
|
|
60
63
|
password: z.ZodString;
|
|
61
|
-
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata"]>;
|
|
64
|
+
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte", "brightdata", "iproyal"]>;
|
|
62
65
|
ip: z.ZodString;
|
|
63
66
|
isProxy: z.ZodNullable<z.ZodBoolean>;
|
|
64
67
|
claimedCountry: z.ZodEnum<["US", "CA", "GB", "AF", "AL", "DZ", "AD", "AO", "AR", "AM", "AU", "AT", "AZ", "BD", "BY", "BE", "BA", "BR", "BG", "CM", "CF", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "DM", "DO", "EC", "EG", "SV", "EE", "ET", "FI", "FR", "GE", "DE", "GH", "GR", "GL", "GD", "GT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "JM", "JP", "JO", "KZ", "KR", "LV", "LB", "LT", "LU", "MK", "MW", "MY", "MT", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "NL", "NZ", "NI", "NG", "NO", "PK", "PW", "PY", "PE", "PH", "PL", "PT", "PR", "QA", "RO", "RU", "SM", "SA", "SN", "RS", "SG", "SK", "SI", "SO", "ZA", "ES", "LK", "SR", "SE", "CH", "TH", "TR", "UG", "UA", "AE", "UY", "UZ", "VE", "VN", "YE", "ZM", "ZW"]>;
|
|
68
|
+
city: z.ZodNullable<z.ZodString>;
|
|
65
69
|
status: z.ZodNullable<z.ZodEnum<["invalid", "valid", "pending_validation"]>>;
|
|
66
70
|
country: z.ZodNullable<z.ZodEnum<["US", "CA", "GB", "AF", "AL", "DZ", "AD", "AO", "AR", "AM", "AU", "AT", "AZ", "BD", "BY", "BE", "BA", "BR", "BG", "CM", "CF", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "DM", "DO", "EC", "EG", "SV", "EE", "ET", "FI", "FR", "GE", "DE", "GH", "GR", "GL", "GD", "GT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "JM", "JP", "JO", "KZ", "KR", "LV", "LB", "LT", "LU", "MK", "MW", "MY", "MT", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "NL", "NZ", "NI", "NG", "NO", "PK", "PW", "PY", "PE", "PH", "PL", "PT", "PR", "QA", "RO", "RU", "SM", "SA", "SN", "RS", "SG", "SK", "SI", "SO", "ZA", "ES", "LK", "SR", "SE", "CH", "TH", "TR", "UG", "UA", "AE", "UY", "UZ", "VE", "VN", "YE", "ZM", "ZW"]>>;
|
|
67
71
|
accountId: z.ZodNullable<z.ZodString>;
|
|
68
72
|
type: z.ZodEnum<["rotating", "static"]>;
|
|
69
|
-
}, "id" | "country" | "status" | "accountId">, "strip", z.ZodTypeAny, {
|
|
73
|
+
}, "id" | "country" | "status" | "city" | "accountId">, "strip", z.ZodTypeAny, {
|
|
70
74
|
type: "rotating" | "static";
|
|
71
75
|
port: number;
|
|
72
76
|
username: string;
|
|
@@ -74,7 +78,7 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
|
|
|
74
78
|
ip: string;
|
|
75
79
|
externalId: string;
|
|
76
80
|
password: string;
|
|
77
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata";
|
|
81
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata" | "iproyal";
|
|
78
82
|
isProxy: boolean | null;
|
|
79
83
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW";
|
|
80
84
|
}, {
|
|
@@ -85,7 +89,7 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
|
|
|
85
89
|
ip: string;
|
|
86
90
|
externalId: string;
|
|
87
91
|
password: string;
|
|
88
|
-
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata";
|
|
92
|
+
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte" | "brightdata" | "iproyal";
|
|
89
93
|
isProxy: boolean | null;
|
|
90
94
|
claimedCountry: "US" | "CA" | "GB" | "AF" | "AL" | "DZ" | "AD" | "AO" | "AR" | "AM" | "AU" | "AT" | "AZ" | "BD" | "BY" | "BE" | "BA" | "BR" | "BG" | "CM" | "CF" | "CL" | "CN" | "CO" | "CR" | "HR" | "CY" | "CZ" | "DK" | "DM" | "DO" | "EC" | "EG" | "SV" | "EE" | "ET" | "FI" | "FR" | "GE" | "DE" | "GH" | "GR" | "GL" | "GD" | "GT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IL" | "IT" | "JM" | "JP" | "JO" | "KZ" | "KR" | "LV" | "LB" | "LT" | "LU" | "MK" | "MW" | "MY" | "MT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MA" | "NL" | "NZ" | "NI" | "NG" | "NO" | "PK" | "PW" | "PY" | "PE" | "PH" | "PL" | "PT" | "PR" | "QA" | "RO" | "RU" | "SM" | "SA" | "SN" | "RS" | "SG" | "SK" | "SI" | "SO" | "ZA" | "ES" | "LK" | "SR" | "SE" | "CH" | "TH" | "TR" | "UG" | "UA" | "AE" | "UY" | "UZ" | "VE" | "VN" | "YE" | "ZM" | "ZW";
|
|
91
95
|
}>;
|
|
@@ -741,17 +741,20 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
741
741
|
description: z.ZodNullable<z.ZodString>;
|
|
742
742
|
template: z.ZodString;
|
|
743
743
|
instructions: z.ZodString;
|
|
744
|
+
status: z.ZodEnum<["active", "archived"]>;
|
|
744
745
|
}, "strip", z.ZodTypeAny, {
|
|
745
746
|
id: string;
|
|
746
747
|
name: string;
|
|
747
748
|
template: string;
|
|
748
749
|
description: string | null;
|
|
750
|
+
status: "active" | "archived";
|
|
749
751
|
instructions: string;
|
|
750
752
|
}, {
|
|
751
753
|
id: string;
|
|
752
754
|
name: string;
|
|
753
755
|
template: string;
|
|
754
756
|
description: string | null;
|
|
757
|
+
status: "active" | "archived";
|
|
755
758
|
instructions: string;
|
|
756
759
|
}>>;
|
|
757
760
|
organizationProfileId: z.ZodNullable<z.ZodString>;
|
|
@@ -902,6 +905,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
902
905
|
name: string;
|
|
903
906
|
template: string;
|
|
904
907
|
description: string | null;
|
|
908
|
+
status: "active" | "archived";
|
|
905
909
|
instructions: string;
|
|
906
910
|
} | null;
|
|
907
911
|
organizationProfileId: string | null;
|
|
@@ -1018,6 +1022,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1018
1022
|
name: string;
|
|
1019
1023
|
template: string;
|
|
1020
1024
|
description: string | null;
|
|
1025
|
+
status: "active" | "archived";
|
|
1021
1026
|
instructions: string;
|
|
1022
1027
|
} | null;
|
|
1023
1028
|
organizationProfileId: string | null;
|
|
@@ -2590,6 +2595,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2590
2595
|
name: string;
|
|
2591
2596
|
template: string;
|
|
2592
2597
|
description: string | null;
|
|
2598
|
+
status: "active" | "archived";
|
|
2593
2599
|
instructions: string;
|
|
2594
2600
|
} | null;
|
|
2595
2601
|
organizationProfileId: string | null;
|
|
@@ -2974,6 +2980,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2974
2980
|
name: string;
|
|
2975
2981
|
template: string;
|
|
2976
2982
|
description: string | null;
|
|
2983
|
+
status: "active" | "archived";
|
|
2977
2984
|
instructions: string;
|
|
2978
2985
|
} | null;
|
|
2979
2986
|
organizationProfileId: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lancer-shared",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.287",
|
|
4
4
|
"description": "This package contains shared stuff.",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "dist/bundle.cjs.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"lodash": "4.17.21",
|
|
30
30
|
"luxon": "^3.7.1",
|
|
31
31
|
"moment": "^2.30.1",
|
|
32
|
-
"slugify": "1.6.6",
|
|
32
|
+
"slugify": "^1.6.6",
|
|
33
33
|
"zod": "3.24.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|