lancer-shared 1.2.276 → 1.2.278
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 +9 -1
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +9 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +22 -0
- package/dist/schemas/agent/index.d.ts +7 -7
- package/dist/schemas/bidder/bid.d.ts +86 -86
- package/dist/schemas/campaign/campaign-analytics.d.ts +60 -52
- package/dist/schemas/campaign/campaign.d.ts +29 -20
- package/dist/schemas/dashboard/index.d.ts +8 -8
- package/dist/schemas/lead/index.d.ts +29 -29
- package/dist/schemas/plan/index.d.ts +2 -2
- package/dist/schemas/proxy/proxy.d.ts +18 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +27 -17
- package/package.json +1 -1
|
@@ -13,6 +13,9 @@ export declare const proxySchema: z.ZodObject<{
|
|
|
13
13
|
username: z.ZodString;
|
|
14
14
|
password: z.ZodString;
|
|
15
15
|
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte"]>;
|
|
16
|
+
ip: z.ZodString;
|
|
17
|
+
oldIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
18
|
+
oldAccounts: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
16
19
|
fraudScore: z.ZodNullable<z.ZodNumber>;
|
|
17
20
|
claimedCountry: 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"]>;
|
|
18
21
|
status: z.ZodNullable<z.ZodEnum<["invalid", "valid", "pending_validation"]>>;
|
|
@@ -27,9 +30,12 @@ export declare const proxySchema: z.ZodObject<{
|
|
|
27
30
|
username: string;
|
|
28
31
|
host: string;
|
|
29
32
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
33
|
+
ip: string;
|
|
30
34
|
externalId: string;
|
|
31
35
|
password: string;
|
|
32
36
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
37
|
+
oldIds: string[] | null;
|
|
38
|
+
oldAccounts: string[] | null;
|
|
33
39
|
fraudScore: number | null;
|
|
34
40
|
claimedCountry: "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";
|
|
35
41
|
accountId: string | null;
|
|
@@ -41,9 +47,12 @@ export declare const proxySchema: z.ZodObject<{
|
|
|
41
47
|
username: string;
|
|
42
48
|
host: string;
|
|
43
49
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
50
|
+
ip: string;
|
|
44
51
|
externalId: string;
|
|
45
52
|
password: string;
|
|
46
53
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
54
|
+
oldIds: string[] | null;
|
|
55
|
+
oldAccounts: string[] | null;
|
|
47
56
|
fraudScore: number | null;
|
|
48
57
|
claimedCountry: "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";
|
|
49
58
|
accountId: string | null;
|
|
@@ -56,6 +65,9 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
|
|
|
56
65
|
username: z.ZodString;
|
|
57
66
|
password: z.ZodString;
|
|
58
67
|
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte"]>;
|
|
68
|
+
ip: z.ZodString;
|
|
69
|
+
oldIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
70
|
+
oldAccounts: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
59
71
|
fraudScore: z.ZodNullable<z.ZodNumber>;
|
|
60
72
|
claimedCountry: 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"]>;
|
|
61
73
|
status: z.ZodNullable<z.ZodEnum<["invalid", "valid", "pending_validation"]>>;
|
|
@@ -67,18 +79,24 @@ export declare const externalProxySchema: z.ZodObject<Omit<{
|
|
|
67
79
|
port: number;
|
|
68
80
|
username: string;
|
|
69
81
|
host: string;
|
|
82
|
+
ip: string;
|
|
70
83
|
externalId: string;
|
|
71
84
|
password: string;
|
|
72
85
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
86
|
+
oldIds: string[] | null;
|
|
87
|
+
oldAccounts: string[] | null;
|
|
73
88
|
claimedCountry: "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";
|
|
74
89
|
}, {
|
|
75
90
|
type: "rotating" | "static";
|
|
76
91
|
port: number;
|
|
77
92
|
username: string;
|
|
78
93
|
host: string;
|
|
94
|
+
ip: string;
|
|
79
95
|
externalId: string;
|
|
80
96
|
password: string;
|
|
81
97
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
98
|
+
oldIds: string[] | null;
|
|
99
|
+
oldAccounts: string[] | null;
|
|
82
100
|
claimedCountry: "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";
|
|
83
101
|
}>;
|
|
84
102
|
export declare const refreshRotatingProxiesRequestBodySchema: z.ZodObject<{
|
|
@@ -684,6 +684,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
684
684
|
}>;
|
|
685
685
|
createdAt: z.ZodNumber;
|
|
686
686
|
updatedAt: z.ZodNumber;
|
|
687
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
687
688
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
688
689
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
689
690
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -694,7 +695,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
694
695
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
695
696
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
696
697
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
697
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
698
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
698
699
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
699
700
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
700
701
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -714,7 +715,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
714
715
|
boostingAmount?: number | undefined;
|
|
715
716
|
}>;
|
|
716
717
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
717
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
718
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
718
719
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
719
720
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
720
721
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -807,7 +808,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
807
808
|
coverLetterTemplateId: string | null;
|
|
808
809
|
biddingDelayInMinutes: number;
|
|
809
810
|
bidWithWarning: "bid" | "skip";
|
|
810
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
811
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
811
812
|
biddingHourlyRatePercentage: number | null;
|
|
812
813
|
biddingFixedHourlyRate: number | null;
|
|
813
814
|
boostingEnabled: boolean | null;
|
|
@@ -883,6 +884,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
883
884
|
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
884
885
|
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
885
886
|
};
|
|
887
|
+
archivedAt: number | null;
|
|
886
888
|
confirmedBillingAt: number | null;
|
|
887
889
|
monthlyBudget: number | null;
|
|
888
890
|
boostingThreshold: number | null;
|
|
@@ -916,7 +918,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
916
918
|
}[];
|
|
917
919
|
timezone: string | null;
|
|
918
920
|
};
|
|
919
|
-
status?: "error" | "active" | "paused" | "draft" | undefined;
|
|
921
|
+
status?: "error" | "active" | "paused" | "draft" | "archived" | undefined;
|
|
920
922
|
}, {
|
|
921
923
|
id: string;
|
|
922
924
|
priority: number | null;
|
|
@@ -925,7 +927,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
925
927
|
updatedAt: number;
|
|
926
928
|
coverLetterTemplateId: string | null;
|
|
927
929
|
bidWithWarning: "bid" | "skip";
|
|
928
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
930
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
929
931
|
biddingHourlyRatePercentage: number | null;
|
|
930
932
|
biddingFixedHourlyRate: number | null;
|
|
931
933
|
boostDownToNthPlace: number | null;
|
|
@@ -998,6 +1000,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
998
1000
|
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
999
1001
|
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
1000
1002
|
};
|
|
1003
|
+
archivedAt: number | null;
|
|
1001
1004
|
confirmedBillingAt: number | null;
|
|
1002
1005
|
monthlyBudget: number | null;
|
|
1003
1006
|
leadCounts: Partial<Record<"rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won", number>> | null;
|
|
@@ -1030,7 +1033,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1030
1033
|
}[];
|
|
1031
1034
|
timezone: string | null;
|
|
1032
1035
|
};
|
|
1033
|
-
status?: "error" | "active" | "paused" | "draft" | undefined;
|
|
1036
|
+
status?: "error" | "active" | "paused" | "draft" | "archived" | undefined;
|
|
1034
1037
|
biddingDelayInMinutes?: number | undefined;
|
|
1035
1038
|
boostingEnabled?: boolean | null | undefined;
|
|
1036
1039
|
maximumBoost?: number | null | undefined;
|
|
@@ -1734,7 +1737,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1734
1737
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1735
1738
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1736
1739
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1737
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1740
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
1738
1741
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1739
1742
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1740
1743
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -1761,7 +1764,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1761
1764
|
biddingDelayInMinutes: number | null;
|
|
1762
1765
|
appliedFromQueue: boolean | null;
|
|
1763
1766
|
bidWithWarning: "bid" | "skip";
|
|
1764
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1767
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
1765
1768
|
biddingHourlyRatePercentage: number | null;
|
|
1766
1769
|
biddingFixedHourlyRate: number | null;
|
|
1767
1770
|
boostingEnabled: boolean | null;
|
|
@@ -1780,7 +1783,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1780
1783
|
biddingDelayInMinutes: number | null;
|
|
1781
1784
|
appliedFromQueue: boolean | null;
|
|
1782
1785
|
bidWithWarning: "bid" | "skip";
|
|
1783
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1786
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
1784
1787
|
biddingHourlyRatePercentage: number | null;
|
|
1785
1788
|
biddingFixedHourlyRate: number | null;
|
|
1786
1789
|
boostingEnabled: boolean | null;
|
|
@@ -1923,7 +1926,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1923
1926
|
biddingDelayInMinutes: number | null;
|
|
1924
1927
|
appliedFromQueue: boolean | null;
|
|
1925
1928
|
bidWithWarning: "bid" | "skip";
|
|
1926
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1929
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
1927
1930
|
biddingHourlyRatePercentage: number | null;
|
|
1928
1931
|
biddingFixedHourlyRate: number | null;
|
|
1929
1932
|
boostingEnabled: boolean | null;
|
|
@@ -2088,7 +2091,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2088
2091
|
biddingDelayInMinutes: number | null;
|
|
2089
2092
|
appliedFromQueue: boolean | null;
|
|
2090
2093
|
bidWithWarning: "bid" | "skip";
|
|
2091
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2094
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2092
2095
|
biddingHourlyRatePercentage: number | null;
|
|
2093
2096
|
biddingFixedHourlyRate: number | null;
|
|
2094
2097
|
boostingEnabled: boolean | null;
|
|
@@ -2140,6 +2143,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2140
2143
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
2141
2144
|
multiLoginProfileId: z.ZodNullable<z.ZodString>;
|
|
2142
2145
|
proxyId: z.ZodNullable<z.ZodString>;
|
|
2146
|
+
newProxyId: z.ZodNullable<z.ZodString>;
|
|
2143
2147
|
profilePhotoUrl: z.ZodNullable<z.ZodString>;
|
|
2144
2148
|
name: z.ZodNullable<z.ZodString>;
|
|
2145
2149
|
agencies: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -2191,6 +2195,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2191
2195
|
lastUsed: number | null;
|
|
2192
2196
|
multiLoginProfileId: string | null;
|
|
2193
2197
|
proxyId: string | null;
|
|
2198
|
+
newProxyId: string | null;
|
|
2194
2199
|
profilePhotoUrl: string | null;
|
|
2195
2200
|
agencies: {
|
|
2196
2201
|
name: string;
|
|
@@ -2219,6 +2224,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2219
2224
|
lastUsed: number | null;
|
|
2220
2225
|
multiLoginProfileId: string | null;
|
|
2221
2226
|
proxyId: string | null;
|
|
2227
|
+
newProxyId: string | null;
|
|
2222
2228
|
profilePhotoUrl: string | null;
|
|
2223
2229
|
agencies: {
|
|
2224
2230
|
name: string;
|
|
@@ -2429,7 +2435,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2429
2435
|
biddingDelayInMinutes: number | null;
|
|
2430
2436
|
appliedFromQueue: boolean | null;
|
|
2431
2437
|
bidWithWarning: "bid" | "skip";
|
|
2432
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2438
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2433
2439
|
biddingHourlyRatePercentage: number | null;
|
|
2434
2440
|
biddingFixedHourlyRate: number | null;
|
|
2435
2441
|
boostingEnabled: boolean | null;
|
|
@@ -2478,7 +2484,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2478
2484
|
coverLetterTemplateId: string | null;
|
|
2479
2485
|
biddingDelayInMinutes: number;
|
|
2480
2486
|
bidWithWarning: "bid" | "skip";
|
|
2481
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2487
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2482
2488
|
biddingHourlyRatePercentage: number | null;
|
|
2483
2489
|
biddingFixedHourlyRate: number | null;
|
|
2484
2490
|
boostingEnabled: boolean | null;
|
|
@@ -2554,6 +2560,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2554
2560
|
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
2555
2561
|
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
2556
2562
|
};
|
|
2563
|
+
archivedAt: number | null;
|
|
2557
2564
|
confirmedBillingAt: number | null;
|
|
2558
2565
|
monthlyBudget: number | null;
|
|
2559
2566
|
boostingThreshold: number | null;
|
|
@@ -2587,7 +2594,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2587
2594
|
}[];
|
|
2588
2595
|
timezone: string | null;
|
|
2589
2596
|
};
|
|
2590
|
-
status?: "error" | "active" | "paused" | "draft" | undefined;
|
|
2597
|
+
status?: "error" | "active" | "paused" | "draft" | "archived" | undefined;
|
|
2591
2598
|
};
|
|
2592
2599
|
bidder: {
|
|
2593
2600
|
id: string;
|
|
@@ -2602,6 +2609,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2602
2609
|
lastUsed: number | null;
|
|
2603
2610
|
multiLoginProfileId: string | null;
|
|
2604
2611
|
proxyId: string | null;
|
|
2612
|
+
newProxyId: string | null;
|
|
2605
2613
|
profilePhotoUrl: string | null;
|
|
2606
2614
|
agencies: {
|
|
2607
2615
|
name: string;
|
|
@@ -2812,7 +2820,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2812
2820
|
biddingDelayInMinutes: number | null;
|
|
2813
2821
|
appliedFromQueue: boolean | null;
|
|
2814
2822
|
bidWithWarning: "bid" | "skip";
|
|
2815
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2823
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2816
2824
|
biddingHourlyRatePercentage: number | null;
|
|
2817
2825
|
biddingFixedHourlyRate: number | null;
|
|
2818
2826
|
boostingEnabled: boolean | null;
|
|
@@ -2860,7 +2868,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2860
2868
|
updatedAt: number;
|
|
2861
2869
|
coverLetterTemplateId: string | null;
|
|
2862
2870
|
bidWithWarning: "bid" | "skip";
|
|
2863
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2871
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2864
2872
|
biddingHourlyRatePercentage: number | null;
|
|
2865
2873
|
biddingFixedHourlyRate: number | null;
|
|
2866
2874
|
boostDownToNthPlace: number | null;
|
|
@@ -2933,6 +2941,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2933
2941
|
totalSpentIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
2934
2942
|
averageHourlyRateIncludeClientsWithLessThanXPostedJobs: number | null;
|
|
2935
2943
|
};
|
|
2944
|
+
archivedAt: number | null;
|
|
2936
2945
|
confirmedBillingAt: number | null;
|
|
2937
2946
|
monthlyBudget: number | null;
|
|
2938
2947
|
leadCounts: Partial<Record<"rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won", number>> | null;
|
|
@@ -2965,7 +2974,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2965
2974
|
}[];
|
|
2966
2975
|
timezone: string | null;
|
|
2967
2976
|
};
|
|
2968
|
-
status?: "error" | "active" | "paused" | "draft" | undefined;
|
|
2977
|
+
status?: "error" | "active" | "paused" | "draft" | "archived" | undefined;
|
|
2969
2978
|
biddingDelayInMinutes?: number | undefined;
|
|
2970
2979
|
boostingEnabled?: boolean | null | undefined;
|
|
2971
2980
|
maximumBoost?: number | null | undefined;
|
|
@@ -2985,6 +2994,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2985
2994
|
lastUsed: number | null;
|
|
2986
2995
|
multiLoginProfileId: string | null;
|
|
2987
2996
|
proxyId: string | null;
|
|
2997
|
+
newProxyId: string | null;
|
|
2988
2998
|
profilePhotoUrl: string | null;
|
|
2989
2999
|
agencies: {
|
|
2990
3000
|
name: string;
|