lancer-shared 1.2.109 → 1.2.111

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.
@@ -12016,6 +12016,7 @@ const scraperAccountType = z.enum([
12016
12016
  ]);
12017
12017
  const scraperAccountSchema = z.object({
12018
12018
  id: z.string(),
12019
+ isActive: z.boolean(),
12019
12020
  region: regionEnum,
12020
12021
  email: z.string().email(),
12021
12022
  password: z.string(),
@@ -12033,6 +12034,7 @@ const createScraperAccountSchema = scraperAccountSchema
12033
12034
  email: true,
12034
12035
  password: true,
12035
12036
  securityQuestionAnswer: true,
12037
+ isActive: true,
12036
12038
  })
12037
12039
  .extend({
12038
12040
  proxyCountry: proxyCountryEnum.nullable(),
@@ -12736,6 +12738,7 @@ const organizationSchema = objectType({
12736
12738
  appTrialEndsAt: numberType().nullable(),
12737
12739
  });
12738
12740
  const caseStudySchema = objectType({
12741
+ id: stringType(),
12739
12742
  title: stringType(),
12740
12743
  description: stringType(),
12741
12744
  });
@@ -3,6 +3,7 @@ import { Proxy } from "../proxy";
3
3
  export declare const scraperAccountType: z.ZodEnum<["feed", "job", "status", "activity", "profile"]>;
4
4
  export declare const scraperAccountSchema: z.ZodObject<{
5
5
  id: z.ZodString;
6
+ isActive: z.ZodBoolean;
6
7
  region: z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>;
7
8
  email: z.ZodString;
8
9
  password: z.ZodString;
@@ -15,6 +16,7 @@ export declare const scraperAccountSchema: z.ZodObject<{
15
16
  updatedAt: z.ZodNumber;
16
17
  }, "strip", z.ZodTypeAny, {
17
18
  id: string;
19
+ isActive: boolean;
18
20
  region: "all" | "Worldwide" | "UKOnly" | "USOnly";
19
21
  email: string;
20
22
  password: string;
@@ -27,6 +29,7 @@ export declare const scraperAccountSchema: z.ZodObject<{
27
29
  updatedAt: number;
28
30
  }, {
29
31
  id: string;
32
+ isActive: boolean;
30
33
  region: "all" | "Worldwide" | "UKOnly" | "USOnly";
31
34
  email: string;
32
35
  password: string;
@@ -40,6 +43,7 @@ export declare const scraperAccountSchema: z.ZodObject<{
40
43
  }>;
41
44
  export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extendShape<Pick<{
42
45
  id: z.ZodString;
46
+ isActive: z.ZodBoolean;
43
47
  region: z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>;
44
48
  email: z.ZodString;
45
49
  password: z.ZodString;
@@ -50,15 +54,17 @@ export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extend
50
54
  type: z.ZodEnum<["feed", "job", "status", "activity", "profile"]>;
51
55
  createdAt: z.ZodNumber;
52
56
  updatedAt: z.ZodNumber;
53
- }, "region" | "email" | "password" | "securityQuestionAnswer">, {
57
+ }, "isActive" | "region" | "email" | "password" | "securityQuestionAnswer">, {
54
58
  proxyCountry: z.ZodNullable<z.ZodEnum<["US", "CA", "GB", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SK", "SI", "SB", "SO", "ZA", "GS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>>;
55
59
  }>, "strip", z.ZodTypeAny, {
60
+ isActive: boolean;
56
61
  region: "all" | "Worldwide" | "UKOnly" | "USOnly";
57
62
  email: string;
58
63
  password: string;
59
64
  securityQuestionAnswer: string | null;
60
65
  proxyCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
61
66
  }, {
67
+ isActive: boolean;
62
68
  region: "all" | "Worldwide" | "UKOnly" | "USOnly";
63
69
  email: string;
64
70
  password: string;
@@ -66,6 +72,7 @@ export declare const createScraperAccountSchema: z.ZodObject<z.objectUtil.extend
66
72
  proxyCountry: "US" | "CA" | "GB" | "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | null;
67
73
  }>;
68
74
  export declare const updateScraperAccountSchema: z.ZodObject<{
75
+ isActive: z.ZodOptional<z.ZodBoolean>;
69
76
  region: z.ZodOptional<z.ZodEnum<["all", "Worldwide", "UKOnly", "USOnly"]>>;
70
77
  email: z.ZodOptional<z.ZodString>;
71
78
  password: z.ZodOptional<z.ZodString>;
@@ -77,6 +84,7 @@ export declare const updateScraperAccountSchema: z.ZodObject<{
77
84
  createdAt: z.ZodOptional<z.ZodNumber>;
78
85
  updatedAt: z.ZodOptional<z.ZodNumber>;
79
86
  }, "strip", z.ZodTypeAny, {
87
+ isActive?: boolean | undefined;
80
88
  region?: "all" | "Worldwide" | "UKOnly" | "USOnly" | undefined;
81
89
  email?: string | undefined;
82
90
  password?: string | undefined;
@@ -88,6 +96,7 @@ export declare const updateScraperAccountSchema: z.ZodObject<{
88
96
  createdAt?: number | undefined;
89
97
  updatedAt?: number | undefined;
90
98
  }, {
99
+ isActive?: boolean | undefined;
91
100
  region?: "all" | "Worldwide" | "UKOnly" | "USOnly" | undefined;
92
101
  email?: string | undefined;
93
102
  password?: string | undefined;
@@ -279,12 +279,15 @@ export declare const organizationSchema: z.ZodObject<{
279
279
  appTrialEndsAt: number | null;
280
280
  }>;
281
281
  export declare const caseStudySchema: z.ZodObject<{
282
+ id: z.ZodString;
282
283
  title: z.ZodString;
283
284
  description: z.ZodString;
284
285
  }, "strip", z.ZodTypeAny, {
286
+ id: string;
285
287
  title: string;
286
288
  description: string;
287
289
  }, {
290
+ id: string;
288
291
  title: string;
289
292
  description: string;
290
293
  }>;
@@ -313,12 +316,15 @@ declare const organizationProfileSchema: z.ZodObject<{
313
316
  teamSize: number;
314
317
  }>;
315
318
  caseStudies: z.ZodArray<z.ZodObject<{
319
+ id: z.ZodString;
316
320
  title: z.ZodString;
317
321
  description: z.ZodString;
318
322
  }, "strip", z.ZodTypeAny, {
323
+ id: string;
319
324
  title: string;
320
325
  description: string;
321
326
  }, {
327
+ id: string;
322
328
  title: string;
323
329
  description: string;
324
330
  }>, "many">;
@@ -338,6 +344,7 @@ declare const organizationProfileSchema: z.ZodObject<{
338
344
  teamSize: number;
339
345
  };
340
346
  caseStudies: {
347
+ id: string;
341
348
  title: string;
342
349
  description: string;
343
350
  }[];
@@ -357,6 +364,7 @@ declare const organizationProfileSchema: z.ZodObject<{
357
364
  teamSize: number;
358
365
  };
359
366
  caseStudies: {
367
+ id: string;
360
368
  title: string;
361
369
  description: string;
362
370
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.109",
3
+ "version": "1.2.111",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",