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
|
@@ -54,6 +54,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
54
54
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
55
55
|
multiLoginProfileId: z.ZodNullable<z.ZodString>;
|
|
56
56
|
proxyId: z.ZodNullable<z.ZodString>;
|
|
57
|
+
newProxyId: z.ZodNullable<z.ZodString>;
|
|
57
58
|
profilePhotoUrl: z.ZodNullable<z.ZodString>;
|
|
58
59
|
name: z.ZodNullable<z.ZodString>;
|
|
59
60
|
agencies: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -105,6 +106,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
105
106
|
lastUsed: number | null;
|
|
106
107
|
multiLoginProfileId: string | null;
|
|
107
108
|
proxyId: string | null;
|
|
109
|
+
newProxyId: string | null;
|
|
108
110
|
profilePhotoUrl: string | null;
|
|
109
111
|
agencies: {
|
|
110
112
|
name: string;
|
|
@@ -133,6 +135,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
133
135
|
lastUsed: number | null;
|
|
134
136
|
multiLoginProfileId: string | null;
|
|
135
137
|
proxyId: string | null;
|
|
138
|
+
newProxyId: string | null;
|
|
136
139
|
profilePhotoUrl: string | null;
|
|
137
140
|
agencies: {
|
|
138
141
|
name: string;
|
|
@@ -161,6 +164,7 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
161
164
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
162
165
|
multiLoginProfileId: z.ZodNullable<z.ZodString>;
|
|
163
166
|
proxyId: z.ZodNullable<z.ZodString>;
|
|
167
|
+
newProxyId: z.ZodNullable<z.ZodString>;
|
|
164
168
|
profilePhotoUrl: z.ZodNullable<z.ZodString>;
|
|
165
169
|
name: z.ZodNullable<z.ZodString>;
|
|
166
170
|
agencies: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -257,6 +261,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
257
261
|
lastUsed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
258
262
|
multiLoginProfileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
259
263
|
proxyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
264
|
+
newProxyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
260
265
|
profilePhotoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
261
266
|
agencies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
262
267
|
name: z.ZodString;
|
|
@@ -306,6 +311,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
306
311
|
lastUsed?: number | null | undefined;
|
|
307
312
|
multiLoginProfileId?: string | null | undefined;
|
|
308
313
|
proxyId?: string | null | undefined;
|
|
314
|
+
newProxyId?: string | null | undefined;
|
|
309
315
|
profilePhotoUrl?: string | null | undefined;
|
|
310
316
|
agencies?: {
|
|
311
317
|
name: string;
|
|
@@ -333,6 +339,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
333
339
|
lastUsed?: number | null | undefined;
|
|
334
340
|
multiLoginProfileId?: string | null | undefined;
|
|
335
341
|
proxyId?: string | null | undefined;
|
|
342
|
+
newProxyId?: string | null | undefined;
|
|
336
343
|
profilePhotoUrl?: string | null | undefined;
|
|
337
344
|
agencies?: {
|
|
338
345
|
name: string;
|
|
@@ -361,6 +368,9 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
361
368
|
username: z.ZodString;
|
|
362
369
|
password: z.ZodString;
|
|
363
370
|
provider: z.ZodEnum<["webshare", "decodo", "proxy-cheap", "rayobyte"]>;
|
|
371
|
+
ip: z.ZodString;
|
|
372
|
+
oldIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
373
|
+
oldAccounts: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
364
374
|
fraudScore: z.ZodNullable<z.ZodNumber>;
|
|
365
375
|
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"]>;
|
|
366
376
|
status: z.ZodNullable<z.ZodEnum<["invalid", "valid", "pending_validation"]>>;
|
|
@@ -375,9 +385,12 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
375
385
|
username: string;
|
|
376
386
|
host: string;
|
|
377
387
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
388
|
+
ip: string;
|
|
378
389
|
externalId: string;
|
|
379
390
|
password: string;
|
|
380
391
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
392
|
+
oldIds: string[] | null;
|
|
393
|
+
oldAccounts: string[] | null;
|
|
381
394
|
fraudScore: number | null;
|
|
382
395
|
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";
|
|
383
396
|
accountId: string | null;
|
|
@@ -389,9 +402,12 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
389
402
|
username: string;
|
|
390
403
|
host: string;
|
|
391
404
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
405
|
+
ip: string;
|
|
392
406
|
externalId: string;
|
|
393
407
|
password: string;
|
|
394
408
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
409
|
+
oldIds: string[] | null;
|
|
410
|
+
oldAccounts: string[] | null;
|
|
395
411
|
fraudScore: number | null;
|
|
396
412
|
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";
|
|
397
413
|
accountId: string | null;
|
|
@@ -409,9 +425,12 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
409
425
|
username: string;
|
|
410
426
|
host: string;
|
|
411
427
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
428
|
+
ip: string;
|
|
412
429
|
externalId: string;
|
|
413
430
|
password: string;
|
|
414
431
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
432
|
+
oldIds: string[] | null;
|
|
433
|
+
oldAccounts: string[] | null;
|
|
415
434
|
fraudScore: number | null;
|
|
416
435
|
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";
|
|
417
436
|
accountId: string | null;
|
|
@@ -429,9 +448,12 @@ export declare const verifyBidderAccountCredentialsSchema: z.ZodObject<{
|
|
|
429
448
|
username: string;
|
|
430
449
|
host: string;
|
|
431
450
|
status: "invalid" | "valid" | "pending_validation" | null;
|
|
451
|
+
ip: string;
|
|
432
452
|
externalId: string;
|
|
433
453
|
password: string;
|
|
434
454
|
provider: "webshare" | "decodo" | "proxy-cheap" | "rayobyte";
|
|
455
|
+
oldIds: string[] | null;
|
|
456
|
+
oldAccounts: string[] | null;
|
|
435
457
|
fraudScore: number | null;
|
|
436
458
|
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";
|
|
437
459
|
accountId: string | null;
|
|
@@ -448,7 +448,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
448
448
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
449
449
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
450
450
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
451
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
451
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
452
452
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
453
453
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
454
454
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -475,7 +475,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
475
475
|
biddingDelayInMinutes: number | null;
|
|
476
476
|
appliedFromQueue: boolean | null;
|
|
477
477
|
bidWithWarning: "bid" | "skip";
|
|
478
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
478
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
479
479
|
biddingHourlyRatePercentage: number | null;
|
|
480
480
|
biddingFixedHourlyRate: number | null;
|
|
481
481
|
boostingEnabled: boolean | null;
|
|
@@ -494,7 +494,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
494
494
|
biddingDelayInMinutes: number | null;
|
|
495
495
|
appliedFromQueue: boolean | null;
|
|
496
496
|
bidWithWarning: "bid" | "skip";
|
|
497
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
497
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
498
498
|
biddingHourlyRatePercentage: number | null;
|
|
499
499
|
biddingFixedHourlyRate: number | null;
|
|
500
500
|
boostingEnabled: boolean | null;
|
|
@@ -637,7 +637,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
637
637
|
biddingDelayInMinutes: number | null;
|
|
638
638
|
appliedFromQueue: boolean | null;
|
|
639
639
|
bidWithWarning: "bid" | "skip";
|
|
640
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
640
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
641
641
|
biddingHourlyRatePercentage: number | null;
|
|
642
642
|
biddingFixedHourlyRate: number | null;
|
|
643
643
|
boostingEnabled: boolean | null;
|
|
@@ -802,7 +802,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
802
802
|
biddingDelayInMinutes: number | null;
|
|
803
803
|
appliedFromQueue: boolean | null;
|
|
804
804
|
bidWithWarning: "bid" | "skip";
|
|
805
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
805
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
806
806
|
biddingHourlyRatePercentage: number | null;
|
|
807
807
|
biddingFixedHourlyRate: number | null;
|
|
808
808
|
boostingEnabled: boolean | null;
|
|
@@ -983,7 +983,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
983
983
|
biddingDelayInMinutes: number | null;
|
|
984
984
|
appliedFromQueue: boolean | null;
|
|
985
985
|
bidWithWarning: "bid" | "skip";
|
|
986
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
986
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
987
987
|
biddingHourlyRatePercentage: number | null;
|
|
988
988
|
biddingFixedHourlyRate: number | null;
|
|
989
989
|
boostingEnabled: boolean | null;
|
|
@@ -1158,7 +1158,7 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
1158
1158
|
biddingDelayInMinutes: number | null;
|
|
1159
1159
|
appliedFromQueue: boolean | null;
|
|
1160
1160
|
bidWithWarning: "bid" | "skip";
|
|
1161
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1161
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
1162
1162
|
biddingHourlyRatePercentage: number | null;
|
|
1163
1163
|
biddingFixedHourlyRate: number | null;
|
|
1164
1164
|
boostingEnabled: boolean | null;
|