lancer-shared 1.2.307 → 1.2.308
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.
|
@@ -7,18 +7,21 @@ export declare const bidConfigSchema: z.ZodObject<{
|
|
|
7
7
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
8
8
|
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
9
9
|
bidAs: z.ZodNullable<z.ZodEnum<["agency", "freelancer"]>>;
|
|
10
|
+
selectedPortfoliosIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
10
11
|
}, "strip", z.ZodTypeAny, {
|
|
11
12
|
agencyName: string | null;
|
|
12
13
|
bidderId: string | null;
|
|
13
14
|
contractorName: string | null;
|
|
14
15
|
specialisedProfile: string | null;
|
|
15
16
|
bidAs: "agency" | "freelancer" | null;
|
|
17
|
+
selectedPortfoliosIds: string[] | null;
|
|
16
18
|
}, {
|
|
17
19
|
agencyName: string | null;
|
|
18
20
|
bidderId: string | null;
|
|
19
21
|
contractorName: string | null;
|
|
20
22
|
specialisedProfile: string | null;
|
|
21
23
|
bidAs: "agency" | "freelancer" | null;
|
|
24
|
+
selectedPortfoliosIds: string[] | null;
|
|
22
25
|
}>;
|
|
23
26
|
export declare const campaignStatusSchema: z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">, z.ZodLiteral<"archived">]>;
|
|
24
27
|
export declare const biddingHourlyRateStrategyEnum: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate", "smart_bidding"]>;
|
|
@@ -372,18 +375,21 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
372
375
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
373
376
|
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
374
377
|
bidAs: z.ZodNullable<z.ZodEnum<["agency", "freelancer"]>>;
|
|
378
|
+
selectedPortfoliosIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
375
379
|
}, "strip", z.ZodTypeAny, {
|
|
376
380
|
agencyName: string | null;
|
|
377
381
|
bidderId: string | null;
|
|
378
382
|
contractorName: string | null;
|
|
379
383
|
specialisedProfile: string | null;
|
|
380
384
|
bidAs: "agency" | "freelancer" | null;
|
|
385
|
+
selectedPortfoliosIds: string[] | null;
|
|
381
386
|
}, {
|
|
382
387
|
agencyName: string | null;
|
|
383
388
|
bidderId: string | null;
|
|
384
389
|
contractorName: string | null;
|
|
385
390
|
specialisedProfile: string | null;
|
|
386
391
|
bidAs: "agency" | "freelancer" | null;
|
|
392
|
+
selectedPortfoliosIds: string[] | null;
|
|
387
393
|
}>>;
|
|
388
394
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
389
395
|
coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -551,6 +557,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
551
557
|
contractorName: string | null;
|
|
552
558
|
specialisedProfile: string | null;
|
|
553
559
|
bidAs: "agency" | "freelancer" | null;
|
|
560
|
+
selectedPortfoliosIds: string[] | null;
|
|
554
561
|
} | null;
|
|
555
562
|
coverLetterTemplateId: string | null;
|
|
556
563
|
coverLetterTemplatesIds: string[] | null;
|
|
@@ -670,6 +677,7 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
670
677
|
contractorName: string | null;
|
|
671
678
|
specialisedProfile: string | null;
|
|
672
679
|
bidAs: "agency" | "freelancer" | null;
|
|
680
|
+
selectedPortfoliosIds: string[] | null;
|
|
673
681
|
} | null;
|
|
674
682
|
coverLetterTemplateId: string | null;
|
|
675
683
|
coverLetterTemplatesIds: string[] | null;
|
|
@@ -1030,18 +1038,21 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1030
1038
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
1031
1039
|
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1032
1040
|
bidAs: z.ZodNullable<z.ZodEnum<["agency", "freelancer"]>>;
|
|
1041
|
+
selectedPortfoliosIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1033
1042
|
}, "strip", z.ZodTypeAny, {
|
|
1034
1043
|
agencyName: string | null;
|
|
1035
1044
|
bidderId: string | null;
|
|
1036
1045
|
contractorName: string | null;
|
|
1037
1046
|
specialisedProfile: string | null;
|
|
1038
1047
|
bidAs: "agency" | "freelancer" | null;
|
|
1048
|
+
selectedPortfoliosIds: string[] | null;
|
|
1039
1049
|
}, {
|
|
1040
1050
|
agencyName: string | null;
|
|
1041
1051
|
bidderId: string | null;
|
|
1042
1052
|
contractorName: string | null;
|
|
1043
1053
|
specialisedProfile: string | null;
|
|
1044
1054
|
bidAs: "agency" | "freelancer" | null;
|
|
1055
|
+
selectedPortfoliosIds: string[] | null;
|
|
1045
1056
|
}>>;
|
|
1046
1057
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
1047
1058
|
coverLetterTemplatesIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1647,18 +1658,21 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1647
1658
|
contractorName: z.ZodNullable<z.ZodString>;
|
|
1648
1659
|
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1649
1660
|
bidAs: z.ZodNullable<z.ZodEnum<["agency", "freelancer"]>>;
|
|
1661
|
+
selectedPortfoliosIds: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1650
1662
|
}, "strip", z.ZodTypeAny, {
|
|
1651
1663
|
agencyName: string | null;
|
|
1652
1664
|
bidderId: string | null;
|
|
1653
1665
|
contractorName: string | null;
|
|
1654
1666
|
specialisedProfile: string | null;
|
|
1655
1667
|
bidAs: "agency" | "freelancer" | null;
|
|
1668
|
+
selectedPortfoliosIds: string[] | null;
|
|
1656
1669
|
}, {
|
|
1657
1670
|
agencyName: string | null;
|
|
1658
1671
|
bidderId: string | null;
|
|
1659
1672
|
contractorName: string | null;
|
|
1660
1673
|
specialisedProfile: string | null;
|
|
1661
1674
|
bidAs: "agency" | "freelancer" | null;
|
|
1675
|
+
selectedPortfoliosIds: string[] | null;
|
|
1662
1676
|
}>>>;
|
|
1663
1677
|
coverLetterTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1664
1678
|
coverLetterTemplatesIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -1825,6 +1839,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1825
1839
|
contractorName: string | null;
|
|
1826
1840
|
specialisedProfile: string | null;
|
|
1827
1841
|
bidAs: "agency" | "freelancer" | null;
|
|
1842
|
+
selectedPortfoliosIds: string[] | null;
|
|
1828
1843
|
} | null | undefined;
|
|
1829
1844
|
coverLetterTemplateId?: string | null | undefined;
|
|
1830
1845
|
coverLetterTemplatesIds?: string[] | null | undefined;
|
|
@@ -1947,6 +1962,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1947
1962
|
contractorName: string | null;
|
|
1948
1963
|
specialisedProfile: string | null;
|
|
1949
1964
|
bidAs: "agency" | "freelancer" | null;
|
|
1965
|
+
selectedPortfoliosIds: string[] | null;
|
|
1950
1966
|
} | null | undefined;
|
|
1951
1967
|
coverLetterTemplateId?: string | null | undefined;
|
|
1952
1968
|
coverLetterTemplatesIds?: string[] | null | undefined;
|