lancer-shared 1.2.143 → 1.2.144
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 +1 -0
- package/dist/schemas/bid/bid.d.ts +19 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -13260,6 +13260,7 @@ const bidPayloadProposalDataSchema = z.object({
|
|
|
13260
13260
|
biddingFixedHourlyRate: z.number().nullable(),
|
|
13261
13261
|
isHourlyRate: z.boolean(),
|
|
13262
13262
|
jobMaxHourlyRate: z.number().nullable(),
|
|
13263
|
+
bidWithWarning: bidWithWarningEnum,
|
|
13263
13264
|
});
|
|
13264
13265
|
const freelancerBidProposalDataSchema = bidPayloadProposalDataSchema;
|
|
13265
13266
|
const agencyBidProposalDataSchema = bidPayloadProposalDataSchema.extend({
|
|
@@ -18,6 +18,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
18
18
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
19
19
|
isHourlyRate: z.ZodBoolean;
|
|
20
20
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
21
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
21
22
|
}, "strip", z.ZodTypeAny, {
|
|
22
23
|
coverLetter: string;
|
|
23
24
|
questionAnswerPairs: {
|
|
@@ -30,6 +31,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
30
31
|
biddingFixedHourlyRate: number | null;
|
|
31
32
|
isHourlyRate: boolean;
|
|
32
33
|
jobMaxHourlyRate: number | null;
|
|
34
|
+
bidWithWarning: "bid" | "skip";
|
|
33
35
|
}, {
|
|
34
36
|
coverLetter: string;
|
|
35
37
|
questionAnswerPairs: {
|
|
@@ -42,6 +44,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
42
44
|
biddingFixedHourlyRate: number | null;
|
|
43
45
|
isHourlyRate: boolean;
|
|
44
46
|
jobMaxHourlyRate: number | null;
|
|
47
|
+
bidWithWarning: "bid" | "skip";
|
|
45
48
|
}>;
|
|
46
49
|
export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
47
50
|
coverLetter: z.ZodString;
|
|
@@ -61,6 +64,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
61
64
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
62
65
|
isHourlyRate: z.ZodBoolean;
|
|
63
66
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
67
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
64
68
|
}, "strip", z.ZodTypeAny, {
|
|
65
69
|
coverLetter: string;
|
|
66
70
|
questionAnswerPairs: {
|
|
@@ -73,6 +77,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
73
77
|
biddingFixedHourlyRate: number | null;
|
|
74
78
|
isHourlyRate: boolean;
|
|
75
79
|
jobMaxHourlyRate: number | null;
|
|
80
|
+
bidWithWarning: "bid" | "skip";
|
|
76
81
|
}, {
|
|
77
82
|
coverLetter: string;
|
|
78
83
|
questionAnswerPairs: {
|
|
@@ -85,6 +90,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
85
90
|
biddingFixedHourlyRate: number | null;
|
|
86
91
|
isHourlyRate: boolean;
|
|
87
92
|
jobMaxHourlyRate: number | null;
|
|
93
|
+
bidWithWarning: "bid" | "skip";
|
|
88
94
|
}>;
|
|
89
95
|
export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
90
96
|
coverLetter: z.ZodString;
|
|
@@ -104,6 +110,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
104
110
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
105
111
|
isHourlyRate: z.ZodBoolean;
|
|
106
112
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
113
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
107
114
|
}, {
|
|
108
115
|
agencyName: z.ZodString;
|
|
109
116
|
contractorName: z.ZodString;
|
|
@@ -120,6 +127,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
120
127
|
biddingFixedHourlyRate: number | null;
|
|
121
128
|
isHourlyRate: boolean;
|
|
122
129
|
jobMaxHourlyRate: number | null;
|
|
130
|
+
bidWithWarning: "bid" | "skip";
|
|
123
131
|
agencyName: string;
|
|
124
132
|
contractorName: string;
|
|
125
133
|
specializedProfile: string | null;
|
|
@@ -135,6 +143,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
135
143
|
biddingFixedHourlyRate: number | null;
|
|
136
144
|
isHourlyRate: boolean;
|
|
137
145
|
jobMaxHourlyRate: number | null;
|
|
146
|
+
bidWithWarning: "bid" | "skip";
|
|
138
147
|
agencyName: string;
|
|
139
148
|
contractorName: string;
|
|
140
149
|
specializedProfile: string | null;
|
|
@@ -1647,6 +1656,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1647
1656
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1648
1657
|
isHourlyRate: z.ZodBoolean;
|
|
1649
1658
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
1659
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
1650
1660
|
}, {
|
|
1651
1661
|
agencyName: z.ZodString;
|
|
1652
1662
|
contractorName: z.ZodString;
|
|
@@ -1663,6 +1673,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1663
1673
|
biddingFixedHourlyRate: number | null;
|
|
1664
1674
|
isHourlyRate: boolean;
|
|
1665
1675
|
jobMaxHourlyRate: number | null;
|
|
1676
|
+
bidWithWarning: "bid" | "skip";
|
|
1666
1677
|
agencyName: string;
|
|
1667
1678
|
contractorName: string;
|
|
1668
1679
|
specializedProfile: string | null;
|
|
@@ -1678,6 +1689,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1678
1689
|
biddingFixedHourlyRate: number | null;
|
|
1679
1690
|
isHourlyRate: boolean;
|
|
1680
1691
|
jobMaxHourlyRate: number | null;
|
|
1692
|
+
bidWithWarning: "bid" | "skip";
|
|
1681
1693
|
agencyName: string;
|
|
1682
1694
|
contractorName: string;
|
|
1683
1695
|
specializedProfile: string | null;
|
|
@@ -1835,6 +1847,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1835
1847
|
biddingFixedHourlyRate: number | null;
|
|
1836
1848
|
isHourlyRate: boolean;
|
|
1837
1849
|
jobMaxHourlyRate: number | null;
|
|
1850
|
+
bidWithWarning: "bid" | "skip";
|
|
1838
1851
|
agencyName: string;
|
|
1839
1852
|
contractorName: string;
|
|
1840
1853
|
specializedProfile: string | null;
|
|
@@ -1992,6 +2005,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
1992
2005
|
biddingFixedHourlyRate: number | null;
|
|
1993
2006
|
isHourlyRate: boolean;
|
|
1994
2007
|
jobMaxHourlyRate: number | null;
|
|
2008
|
+
bidWithWarning: "bid" | "skip";
|
|
1995
2009
|
agencyName: string;
|
|
1996
2010
|
contractorName: string;
|
|
1997
2011
|
specializedProfile: string | null;
|
|
@@ -2619,6 +2633,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2619
2633
|
biddingFixedHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
2620
2634
|
isHourlyRate: z.ZodBoolean;
|
|
2621
2635
|
jobMaxHourlyRate: z.ZodNullable<z.ZodNumber>;
|
|
2636
|
+
bidWithWarning: z.ZodEnum<["bid", "skip"]>;
|
|
2622
2637
|
}, "strip", z.ZodTypeAny, {
|
|
2623
2638
|
coverLetter: string;
|
|
2624
2639
|
questionAnswerPairs: {
|
|
@@ -2631,6 +2646,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2631
2646
|
biddingFixedHourlyRate: number | null;
|
|
2632
2647
|
isHourlyRate: boolean;
|
|
2633
2648
|
jobMaxHourlyRate: number | null;
|
|
2649
|
+
bidWithWarning: "bid" | "skip";
|
|
2634
2650
|
}, {
|
|
2635
2651
|
coverLetter: string;
|
|
2636
2652
|
questionAnswerPairs: {
|
|
@@ -2643,6 +2659,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2643
2659
|
biddingFixedHourlyRate: number | null;
|
|
2644
2660
|
isHourlyRate: boolean;
|
|
2645
2661
|
jobMaxHourlyRate: number | null;
|
|
2662
|
+
bidWithWarning: "bid" | "skip";
|
|
2646
2663
|
}>;
|
|
2647
2664
|
}>, "strip", z.ZodTypeAny, {
|
|
2648
2665
|
organizationId: string;
|
|
@@ -2797,6 +2814,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2797
2814
|
biddingFixedHourlyRate: number | null;
|
|
2798
2815
|
isHourlyRate: boolean;
|
|
2799
2816
|
jobMaxHourlyRate: number | null;
|
|
2817
|
+
bidWithWarning: "bid" | "skip";
|
|
2800
2818
|
};
|
|
2801
2819
|
}, {
|
|
2802
2820
|
organizationId: string;
|
|
@@ -2951,6 +2969,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2951
2969
|
biddingFixedHourlyRate: number | null;
|
|
2952
2970
|
isHourlyRate: boolean;
|
|
2953
2971
|
jobMaxHourlyRate: number | null;
|
|
2972
|
+
bidWithWarning: "bid" | "skip";
|
|
2954
2973
|
};
|
|
2955
2974
|
}>;
|
|
2956
2975
|
export declare const bidDtoSchema: z.ZodObject<{
|