lancer-shared 1.2.109 → 1.2.110
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
CHANGED
|
@@ -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(),
|
|
@@ -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;
|