lancer-shared 1.2.277 → 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 +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
|
@@ -669,6 +669,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
669
669
|
}>;
|
|
670
670
|
createdAt: z.ZodNumber;
|
|
671
671
|
updatedAt: z.ZodNumber;
|
|
672
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
672
673
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
673
674
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
674
675
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -679,7 +680,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
679
680
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
680
681
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
681
682
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
682
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
683
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
683
684
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
684
685
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
685
686
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -699,7 +700,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
699
700
|
boostingAmount?: number | undefined;
|
|
700
701
|
}>;
|
|
701
702
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
702
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
703
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
703
704
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
704
705
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
705
706
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -793,7 +794,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
793
794
|
creditBalance: z.ZodNumber;
|
|
794
795
|
}, {
|
|
795
796
|
type: z.ZodLiteral<"campaign_status">;
|
|
796
|
-
status: z.ZodEnum<["started", "paused", "created", "error"]>;
|
|
797
|
+
status: z.ZodEnum<["started", "paused", "created", "error", "archived"]>;
|
|
797
798
|
creditBalance: z.ZodNumber;
|
|
798
799
|
}>, "strip", z.ZodTypeAny, {
|
|
799
800
|
type: "campaign_status";
|
|
@@ -801,7 +802,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
801
802
|
id: string;
|
|
802
803
|
name: string;
|
|
803
804
|
};
|
|
804
|
-
status: "error" | "paused" | "started" | "created";
|
|
805
|
+
status: "error" | "paused" | "archived" | "started" | "created";
|
|
805
806
|
createdAt: number;
|
|
806
807
|
campaign: {
|
|
807
808
|
id: string;
|
|
@@ -814,7 +815,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
814
815
|
id: string;
|
|
815
816
|
name: string;
|
|
816
817
|
};
|
|
817
|
-
status: "error" | "paused" | "started" | "created";
|
|
818
|
+
status: "error" | "paused" | "archived" | "started" | "created";
|
|
818
819
|
createdAt: number;
|
|
819
820
|
campaign: {
|
|
820
821
|
id: string;
|
|
@@ -1322,6 +1323,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1322
1323
|
}>;
|
|
1323
1324
|
createdAt: z.ZodNumber;
|
|
1324
1325
|
updatedAt: z.ZodNumber;
|
|
1326
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
1325
1327
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
1326
1328
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
1327
1329
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -1332,7 +1334,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1332
1334
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
1333
1335
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
1334
1336
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
1335
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1337
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
1336
1338
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1337
1339
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1338
1340
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1352,7 +1354,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1352
1354
|
boostingAmount?: number | undefined;
|
|
1353
1355
|
}>;
|
|
1354
1356
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
1355
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
1357
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
1356
1358
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
1357
1359
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
1358
1360
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -1790,7 +1792,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1790
1792
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
1791
1793
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
1792
1794
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1793
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
1795
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
1794
1796
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1795
1797
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1796
1798
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -1817,7 +1819,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1817
1819
|
biddingDelayInMinutes: number | null;
|
|
1818
1820
|
appliedFromQueue: boolean | null;
|
|
1819
1821
|
bidWithWarning: "bid" | "skip";
|
|
1820
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1822
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
1821
1823
|
biddingHourlyRatePercentage: number | null;
|
|
1822
1824
|
biddingFixedHourlyRate: number | null;
|
|
1823
1825
|
boostingEnabled: boolean | null;
|
|
@@ -1836,7 +1838,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1836
1838
|
biddingDelayInMinutes: number | null;
|
|
1837
1839
|
appliedFromQueue: boolean | null;
|
|
1838
1840
|
bidWithWarning: "bid" | "skip";
|
|
1839
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
1841
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
1840
1842
|
biddingHourlyRatePercentage: number | null;
|
|
1841
1843
|
biddingFixedHourlyRate: number | null;
|
|
1842
1844
|
boostingEnabled: boolean | null;
|
|
@@ -2405,6 +2407,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2405
2407
|
}>;
|
|
2406
2408
|
createdAt: z.ZodNumber;
|
|
2407
2409
|
updatedAt: z.ZodNumber;
|
|
2410
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
2408
2411
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
2409
2412
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
2410
2413
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -2415,7 +2418,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2415
2418
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
2416
2419
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2417
2420
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
2418
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2421
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
2419
2422
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
2420
2423
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
2421
2424
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2435,7 +2438,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2435
2438
|
boostingAmount?: number | undefined;
|
|
2436
2439
|
}>;
|
|
2437
2440
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
2438
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
2441
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
2439
2442
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
2440
2443
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
2441
2444
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -2874,7 +2877,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2874
2877
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
2875
2878
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
2876
2879
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
2877
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
2880
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
2878
2881
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
2879
2882
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
2880
2883
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -2901,7 +2904,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2901
2904
|
biddingDelayInMinutes: number | null;
|
|
2902
2905
|
appliedFromQueue: boolean | null;
|
|
2903
2906
|
bidWithWarning: "bid" | "skip";
|
|
2904
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2907
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2905
2908
|
biddingHourlyRatePercentage: number | null;
|
|
2906
2909
|
biddingFixedHourlyRate: number | null;
|
|
2907
2910
|
boostingEnabled: boolean | null;
|
|
@@ -2920,7 +2923,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2920
2923
|
biddingDelayInMinutes: number | null;
|
|
2921
2924
|
appliedFromQueue: boolean | null;
|
|
2922
2925
|
bidWithWarning: "bid" | "skip";
|
|
2923
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
2926
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
2924
2927
|
biddingHourlyRatePercentage: number | null;
|
|
2925
2928
|
biddingFixedHourlyRate: number | null;
|
|
2926
2929
|
boostingEnabled: boolean | null;
|
|
@@ -3488,6 +3491,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3488
3491
|
}>;
|
|
3489
3492
|
createdAt: z.ZodNumber;
|
|
3490
3493
|
updatedAt: z.ZodNumber;
|
|
3494
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
3491
3495
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
3492
3496
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
3493
3497
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -3498,7 +3502,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3498
3502
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
3499
3503
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
3500
3504
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
3501
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
3505
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
3502
3506
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3503
3507
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
3504
3508
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3518,7 +3522,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3518
3522
|
boostingAmount?: number | undefined;
|
|
3519
3523
|
}>;
|
|
3520
3524
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
3521
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
3525
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
3522
3526
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
3523
3527
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
3524
3528
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -3956,7 +3960,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3956
3960
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
3957
3961
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
3958
3962
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
3959
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
3963
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
3960
3964
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
3961
3965
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
3962
3966
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -3983,7 +3987,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3983
3987
|
biddingDelayInMinutes: number | null;
|
|
3984
3988
|
appliedFromQueue: boolean | null;
|
|
3985
3989
|
bidWithWarning: "bid" | "skip";
|
|
3986
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
3990
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
3987
3991
|
biddingHourlyRatePercentage: number | null;
|
|
3988
3992
|
biddingFixedHourlyRate: number | null;
|
|
3989
3993
|
boostingEnabled: boolean | null;
|
|
@@ -4002,7 +4006,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
4002
4006
|
biddingDelayInMinutes: number | null;
|
|
4003
4007
|
appliedFromQueue: boolean | null;
|
|
4004
4008
|
bidWithWarning: "bid" | "skip";
|
|
4005
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
4009
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
4006
4010
|
biddingHourlyRatePercentage: number | null;
|
|
4007
4011
|
biddingFixedHourlyRate: number | null;
|
|
4008
4012
|
boostingEnabled: boolean | null;
|
|
@@ -4568,6 +4572,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4568
4572
|
}>;
|
|
4569
4573
|
createdAt: z.ZodNumber;
|
|
4570
4574
|
updatedAt: z.ZodNumber;
|
|
4575
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
4571
4576
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
4572
4577
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
4573
4578
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -4578,7 +4583,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4578
4583
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
4579
4584
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4580
4585
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
4581
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
4586
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
4582
4587
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
4583
4588
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
4584
4589
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4598,7 +4603,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4598
4603
|
boostingAmount?: number | undefined;
|
|
4599
4604
|
}>;
|
|
4600
4605
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
4601
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
4606
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
4602
4607
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
4603
4608
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
4604
4609
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -4692,7 +4697,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4692
4697
|
creditBalance: z.ZodNumber;
|
|
4693
4698
|
}, {
|
|
4694
4699
|
type: z.ZodLiteral<"campaign_status">;
|
|
4695
|
-
status: z.ZodEnum<["started", "paused", "created", "error"]>;
|
|
4700
|
+
status: z.ZodEnum<["started", "paused", "created", "error", "archived"]>;
|
|
4696
4701
|
creditBalance: z.ZodNumber;
|
|
4697
4702
|
}>, "strip", z.ZodTypeAny, {
|
|
4698
4703
|
type: "campaign_status";
|
|
@@ -4700,7 +4705,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4700
4705
|
id: string;
|
|
4701
4706
|
name: string;
|
|
4702
4707
|
};
|
|
4703
|
-
status: "error" | "paused" | "started" | "created";
|
|
4708
|
+
status: "error" | "paused" | "archived" | "started" | "created";
|
|
4704
4709
|
createdAt: number;
|
|
4705
4710
|
campaign: {
|
|
4706
4711
|
id: string;
|
|
@@ -4713,7 +4718,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4713
4718
|
id: string;
|
|
4714
4719
|
name: string;
|
|
4715
4720
|
};
|
|
4716
|
-
status: "error" | "paused" | "started" | "created";
|
|
4721
|
+
status: "error" | "paused" | "archived" | "started" | "created";
|
|
4717
4722
|
createdAt: number;
|
|
4718
4723
|
campaign: {
|
|
4719
4724
|
id: string;
|
|
@@ -5220,6 +5225,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5220
5225
|
}>;
|
|
5221
5226
|
createdAt: z.ZodNumber;
|
|
5222
5227
|
updatedAt: z.ZodNumber;
|
|
5228
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
5223
5229
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
5224
5230
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
5225
5231
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -5230,7 +5236,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5230
5236
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
5231
5237
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
5232
5238
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
5233
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
5239
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
5234
5240
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5235
5241
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
5236
5242
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5250,7 +5256,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5250
5256
|
boostingAmount?: number | undefined;
|
|
5251
5257
|
}>;
|
|
5252
5258
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
5253
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
5259
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
5254
5260
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
5255
5261
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
5256
5262
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -5688,7 +5694,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5688
5694
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
5689
5695
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5690
5696
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
5691
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
5697
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
5692
5698
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
5693
5699
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
5694
5700
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -5715,7 +5721,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5715
5721
|
biddingDelayInMinutes: number | null;
|
|
5716
5722
|
appliedFromQueue: boolean | null;
|
|
5717
5723
|
bidWithWarning: "bid" | "skip";
|
|
5718
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5724
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
5719
5725
|
biddingHourlyRatePercentage: number | null;
|
|
5720
5726
|
biddingFixedHourlyRate: number | null;
|
|
5721
5727
|
boostingEnabled: boolean | null;
|
|
@@ -5734,7 +5740,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5734
5740
|
biddingDelayInMinutes: number | null;
|
|
5735
5741
|
appliedFromQueue: boolean | null;
|
|
5736
5742
|
bidWithWarning: "bid" | "skip";
|
|
5737
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
5743
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
5738
5744
|
biddingHourlyRatePercentage: number | null;
|
|
5739
5745
|
biddingFixedHourlyRate: number | null;
|
|
5740
5746
|
boostingEnabled: boolean | null;
|
|
@@ -6302,6 +6308,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6302
6308
|
}>;
|
|
6303
6309
|
createdAt: z.ZodNumber;
|
|
6304
6310
|
updatedAt: z.ZodNumber;
|
|
6311
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
6305
6312
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
6306
6313
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
6307
6314
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -6312,7 +6319,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6312
6319
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
6313
6320
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6314
6321
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
6315
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
6322
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
6316
6323
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
6317
6324
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
6318
6325
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6332,7 +6339,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6332
6339
|
boostingAmount?: number | undefined;
|
|
6333
6340
|
}>;
|
|
6334
6341
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
6335
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
6342
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
6336
6343
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
6337
6344
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
6338
6345
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -6771,7 +6778,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6771
6778
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
6772
6779
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
6773
6780
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
6774
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
6781
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
6775
6782
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
6776
6783
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
6777
6784
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -6798,7 +6805,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6798
6805
|
biddingDelayInMinutes: number | null;
|
|
6799
6806
|
appliedFromQueue: boolean | null;
|
|
6800
6807
|
bidWithWarning: "bid" | "skip";
|
|
6801
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6808
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
6802
6809
|
biddingHourlyRatePercentage: number | null;
|
|
6803
6810
|
biddingFixedHourlyRate: number | null;
|
|
6804
6811
|
boostingEnabled: boolean | null;
|
|
@@ -6817,7 +6824,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6817
6824
|
biddingDelayInMinutes: number | null;
|
|
6818
6825
|
appliedFromQueue: boolean | null;
|
|
6819
6826
|
bidWithWarning: "bid" | "skip";
|
|
6820
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
6827
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
6821
6828
|
biddingHourlyRatePercentage: number | null;
|
|
6822
6829
|
biddingFixedHourlyRate: number | null;
|
|
6823
6830
|
boostingEnabled: boolean | null;
|
|
@@ -7384,6 +7391,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7384
7391
|
}>;
|
|
7385
7392
|
createdAt: z.ZodNumber;
|
|
7386
7393
|
updatedAt: z.ZodNumber;
|
|
7394
|
+
archivedAt: z.ZodNullable<z.ZodNumber>;
|
|
7387
7395
|
confirmedBillingAt: z.ZodNullable<z.ZodNumber>;
|
|
7388
7396
|
boostingEnabled: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
7389
7397
|
maximumBoost: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -7394,7 +7402,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7394
7402
|
monthlyBudget: z.ZodNullable<z.ZodNumber>;
|
|
7395
7403
|
boostingThreshold: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
7396
7404
|
biddingDelayInMinutes: z.ZodDefault<z.ZodNumber>;
|
|
7397
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
7405
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
7398
7406
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
7399
7407
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
7400
7408
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7414,7 +7422,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7414
7422
|
boostingAmount?: number | undefined;
|
|
7415
7423
|
}>;
|
|
7416
7424
|
notificationsEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
7417
|
-
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>>;
|
|
7425
|
+
status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>>;
|
|
7418
7426
|
bidConfig: z.ZodNullable<z.ZodObject<{
|
|
7419
7427
|
agencyName: z.ZodNullable<z.ZodString>;
|
|
7420
7428
|
bidderId: z.ZodNullable<z.ZodString>;
|
|
@@ -7852,7 +7860,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7852
7860
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
7853
7861
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
7854
7862
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
7855
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
7863
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
7856
7864
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
7857
7865
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
7858
7866
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -7879,7 +7887,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7879
7887
|
biddingDelayInMinutes: number | null;
|
|
7880
7888
|
appliedFromQueue: boolean | null;
|
|
7881
7889
|
bidWithWarning: "bid" | "skip";
|
|
7882
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7890
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
7883
7891
|
biddingHourlyRatePercentage: number | null;
|
|
7884
7892
|
biddingFixedHourlyRate: number | null;
|
|
7885
7893
|
boostingEnabled: boolean | null;
|
|
@@ -7898,7 +7906,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7898
7906
|
biddingDelayInMinutes: number | null;
|
|
7899
7907
|
appliedFromQueue: boolean | null;
|
|
7900
7908
|
bidWithWarning: "bid" | "skip";
|
|
7901
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
7909
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
7902
7910
|
biddingHourlyRatePercentage: number | null;
|
|
7903
7911
|
biddingFixedHourlyRate: number | null;
|
|
7904
7912
|
boostingEnabled: boolean | null;
|
|
@@ -7966,15 +7974,15 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7966
7974
|
}>]>;
|
|
7967
7975
|
export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7968
7976
|
type: z.ZodLiteral<"campaign_status">;
|
|
7969
|
-
status: z.ZodEnum<["started", "paused", "created", "error"]>;
|
|
7977
|
+
status: z.ZodEnum<["started", "paused", "created", "error", "archived"]>;
|
|
7970
7978
|
creditBalance: z.ZodNumber;
|
|
7971
7979
|
}, "strip", z.ZodTypeAny, {
|
|
7972
7980
|
type: "campaign_status";
|
|
7973
|
-
status: "error" | "paused" | "started" | "created";
|
|
7981
|
+
status: "error" | "paused" | "archived" | "started" | "created";
|
|
7974
7982
|
creditBalance: number;
|
|
7975
7983
|
}, {
|
|
7976
7984
|
type: "campaign_status";
|
|
7977
|
-
status: "error" | "paused" | "started" | "created";
|
|
7985
|
+
status: "error" | "paused" | "archived" | "started" | "created";
|
|
7978
7986
|
creditBalance: number;
|
|
7979
7987
|
}>, z.ZodObject<{
|
|
7980
7988
|
type: z.ZodLiteral<"lead_analysis">;
|
|
@@ -8322,7 +8330,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8322
8330
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8323
8331
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8324
8332
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
8325
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
8333
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
8326
8334
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8327
8335
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8328
8336
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -8349,7 +8357,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8349
8357
|
biddingDelayInMinutes: number | null;
|
|
8350
8358
|
appliedFromQueue: boolean | null;
|
|
8351
8359
|
bidWithWarning: "bid" | "skip";
|
|
8352
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8360
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
8353
8361
|
biddingHourlyRatePercentage: number | null;
|
|
8354
8362
|
biddingFixedHourlyRate: number | null;
|
|
8355
8363
|
boostingEnabled: boolean | null;
|
|
@@ -8368,7 +8376,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8368
8376
|
biddingDelayInMinutes: number | null;
|
|
8369
8377
|
appliedFromQueue: boolean | null;
|
|
8370
8378
|
bidWithWarning: "bid" | "skip";
|
|
8371
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8379
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
8372
8380
|
biddingHourlyRatePercentage: number | null;
|
|
8373
8381
|
biddingFixedHourlyRate: number | null;
|
|
8374
8382
|
boostingEnabled: boolean | null;
|
|
@@ -8765,7 +8773,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8765
8773
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
8766
8774
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
8767
8775
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
8768
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
8776
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
8769
8777
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
8770
8778
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
8771
8779
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -8792,7 +8800,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8792
8800
|
biddingDelayInMinutes: number | null;
|
|
8793
8801
|
appliedFromQueue: boolean | null;
|
|
8794
8802
|
bidWithWarning: "bid" | "skip";
|
|
8795
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8803
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
8796
8804
|
biddingHourlyRatePercentage: number | null;
|
|
8797
8805
|
biddingFixedHourlyRate: number | null;
|
|
8798
8806
|
boostingEnabled: boolean | null;
|
|
@@ -8811,7 +8819,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8811
8819
|
biddingDelayInMinutes: number | null;
|
|
8812
8820
|
appliedFromQueue: boolean | null;
|
|
8813
8821
|
bidWithWarning: "bid" | "skip";
|
|
8814
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
8822
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
8815
8823
|
biddingHourlyRatePercentage: number | null;
|
|
8816
8824
|
biddingFixedHourlyRate: number | null;
|
|
8817
8825
|
boostingEnabled: boolean | null;
|
|
@@ -9206,7 +9214,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
9206
9214
|
appliedFromQueue: z.ZodNullable<z.ZodBoolean>;
|
|
9207
9215
|
biddingDelayInMinutes: z.ZodNullable<z.ZodNumber>;
|
|
9208
9216
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
9209
|
-
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
9217
|
+
biddingHourlyRateStrategy: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
9210
9218
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
9211
9219
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
9212
9220
|
boostingEnabled: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -9233,7 +9241,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
9233
9241
|
biddingDelayInMinutes: number | null;
|
|
9234
9242
|
appliedFromQueue: boolean | null;
|
|
9235
9243
|
bidWithWarning: "bid" | "skip";
|
|
9236
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9244
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
9237
9245
|
biddingHourlyRatePercentage: number | null;
|
|
9238
9246
|
biddingFixedHourlyRate: number | null;
|
|
9239
9247
|
boostingEnabled: boolean | null;
|
|
@@ -9252,7 +9260,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
9252
9260
|
biddingDelayInMinutes: number | null;
|
|
9253
9261
|
appliedFromQueue: boolean | null;
|
|
9254
9262
|
bidWithWarning: "bid" | "skip";
|
|
9255
|
-
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate";
|
|
9263
|
+
biddingHourlyRateStrategy: "match_job_budget" | "match_profile_rate" | "fixed_rate" | "smart_bidding";
|
|
9256
9264
|
biddingHourlyRatePercentage: number | null;
|
|
9257
9265
|
biddingFixedHourlyRate: number | null;
|
|
9258
9266
|
boostingEnabled: boolean | null;
|