lancer-shared 1.2.303 → 1.2.305
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 +4 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +4 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/account/bidder-account.d.ts +7 -0
- package/dist/schemas/agent/index.d.ts +158 -90
- package/dist/schemas/bidder/bid.d.ts +19 -0
- package/dist/schemas/campaign/campaign.d.ts +9 -0
- package/package.json +1 -1
|
@@ -348,6 +348,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
348
348
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
349
349
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
350
350
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
351
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
351
352
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
352
353
|
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>, z.ZodNumber>>;
|
|
353
354
|
expenses: z.ZodObject<{
|
|
@@ -535,6 +536,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
535
536
|
biddingFixedHourlyRate: number | null;
|
|
536
537
|
alreadyHiredAction: "bid" | "skip";
|
|
537
538
|
biddingHourlyRatePercentage: number | null;
|
|
539
|
+
biddingFixedPriceRate: number | null;
|
|
538
540
|
bidWithWarning: "bid" | "skip";
|
|
539
541
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
540
542
|
expenses: {
|
|
@@ -653,6 +655,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
653
655
|
biddingFixedHourlyRate: number | null;
|
|
654
656
|
alreadyHiredAction: "bid" | "skip";
|
|
655
657
|
biddingHourlyRatePercentage: number | null;
|
|
658
|
+
biddingFixedPriceRate: number | null;
|
|
656
659
|
bidWithWarning: "bid" | "skip";
|
|
657
660
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
658
661
|
expenses: {
|
|
@@ -1003,6 +1006,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1003
1006
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1004
1007
|
alreadyHiredAction: z.ZodEnum<["skip", "bid"]>;
|
|
1005
1008
|
biddingHourlyRatePercentage: z.ZodNullable<z.ZodNumber>;
|
|
1009
|
+
biddingFixedPriceRate: z.ZodNullable<z.ZodNumber>;
|
|
1006
1010
|
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1007
1011
|
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>, z.ZodNumber>>;
|
|
1008
1012
|
expenses: z.ZodObject<{
|
|
@@ -1187,6 +1191,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1187
1191
|
biddingFixedHourlyRate: number | null;
|
|
1188
1192
|
alreadyHiredAction: "bid" | "skip";
|
|
1189
1193
|
biddingHourlyRatePercentage: number | null;
|
|
1194
|
+
biddingFixedPriceRate: number | null;
|
|
1190
1195
|
bidWithWarning: "bid" | "skip";
|
|
1191
1196
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
1192
1197
|
expenses: {
|
|
@@ -1295,6 +1300,7 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1295
1300
|
biddingFixedHourlyRate: number | null;
|
|
1296
1301
|
alreadyHiredAction: "bid" | "skip";
|
|
1297
1302
|
biddingHourlyRatePercentage: number | null;
|
|
1303
|
+
biddingFixedPriceRate: number | null;
|
|
1298
1304
|
bidWithWarning: "bid" | "skip";
|
|
1299
1305
|
leadCounts: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null;
|
|
1300
1306
|
expenses: {
|
|
@@ -1618,6 +1624,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1618
1624
|
biddingFixedHourlyRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1619
1625
|
alreadyHiredAction: z.ZodOptional<z.ZodEnum<["skip", "bid"]>>;
|
|
1620
1626
|
biddingHourlyRatePercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1627
|
+
biddingFixedPriceRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1621
1628
|
bidWithWarning: z.ZodOptional<z.ZodEnum<["bid", "skip"]>>;
|
|
1622
1629
|
leadCounts: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "syncedInAnotherCampaign", "dailyLimitReached", "boostAboveMaxConnects", "privateJob", "noLongerAvailable", "rejected", "alreadyBiddedOn", "viewed", "replied", "biddingScheduled", "biddingFailed", "alreadyHired", "won"]>, z.ZodNumber>>>;
|
|
1623
1630
|
expenses: z.ZodOptional<z.ZodObject<{
|
|
@@ -1803,6 +1810,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1803
1810
|
biddingFixedHourlyRate?: number | null | undefined;
|
|
1804
1811
|
alreadyHiredAction?: "bid" | "skip" | undefined;
|
|
1805
1812
|
biddingHourlyRatePercentage?: number | null | undefined;
|
|
1813
|
+
biddingFixedPriceRate?: number | null | undefined;
|
|
1806
1814
|
bidWithWarning?: "bid" | "skip" | undefined;
|
|
1807
1815
|
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null | undefined;
|
|
1808
1816
|
expenses?: {
|
|
@@ -1924,6 +1932,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1924
1932
|
biddingFixedHourlyRate?: number | null | undefined;
|
|
1925
1933
|
alreadyHiredAction?: "bid" | "skip" | undefined;
|
|
1926
1934
|
biddingHourlyRatePercentage?: number | null | undefined;
|
|
1935
|
+
biddingFixedPriceRate?: number | null | undefined;
|
|
1927
1936
|
bidWithWarning?: "bid" | "skip" | undefined;
|
|
1928
1937
|
leadCounts?: Partial<Record<"leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "rejected" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "biddingFailed" | "alreadyHired" | "won", number>> | null | undefined;
|
|
1929
1938
|
expenses?: {
|