lancer-shared 1.2.277 → 1.2.279
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 +5 -1
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +5 -1
- package/dist/bundle.esm.js.map +1 -1
- 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/scraper/scrape-payload.d.ts +22 -17
- package/package.json +1 -1
|
@@ -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;
|