lancer-shared 1.0.149 → 1.0.150
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/schemas/bid/bid.d.ts +0 -18
- package/dist/schemas/bid/bid.js +0 -2
- package/package.json +1 -1
|
@@ -116,30 +116,22 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
116
116
|
username: z.ZodString;
|
|
117
117
|
password: z.ZodString;
|
|
118
118
|
cookies: z.ZodArray<z.ZodAny, "many">;
|
|
119
|
-
accountId: z.ZodString;
|
|
120
|
-
proxyUrl: z.ZodNullable<z.ZodString>;
|
|
121
119
|
}, "strip", z.ZodTypeAny, {
|
|
122
120
|
username: string;
|
|
123
121
|
cookies: any[];
|
|
124
122
|
password: string;
|
|
125
123
|
jobUrl: string;
|
|
126
|
-
accountId: string;
|
|
127
|
-
proxyUrl: string | null;
|
|
128
124
|
}, {
|
|
129
125
|
username: string;
|
|
130
126
|
cookies: any[];
|
|
131
127
|
password: string;
|
|
132
128
|
jobUrl: string;
|
|
133
|
-
accountId: string;
|
|
134
|
-
proxyUrl: string | null;
|
|
135
129
|
}>;
|
|
136
130
|
export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
137
131
|
jobUrl: z.ZodString;
|
|
138
132
|
username: z.ZodString;
|
|
139
133
|
password: z.ZodString;
|
|
140
134
|
cookies: z.ZodArray<z.ZodAny, "many">;
|
|
141
|
-
accountId: z.ZodString;
|
|
142
|
-
proxyUrl: z.ZodNullable<z.ZodString>;
|
|
143
135
|
}, {
|
|
144
136
|
proposalData: z.ZodObject<z.objectUtil.extendShape<{
|
|
145
137
|
coverLetter: z.ZodString;
|
|
@@ -190,8 +182,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
190
182
|
cookies: any[];
|
|
191
183
|
password: string;
|
|
192
184
|
jobUrl: string;
|
|
193
|
-
accountId: string;
|
|
194
|
-
proxyUrl: string | null;
|
|
195
185
|
proposalData: {
|
|
196
186
|
coverLetter: string;
|
|
197
187
|
questionAnswerPairs: {
|
|
@@ -210,8 +200,6 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
210
200
|
cookies: any[];
|
|
211
201
|
password: string;
|
|
212
202
|
jobUrl: string;
|
|
213
|
-
accountId: string;
|
|
214
|
-
proxyUrl: string | null;
|
|
215
203
|
proposalData: {
|
|
216
204
|
coverLetter: string;
|
|
217
205
|
questionAnswerPairs: {
|
|
@@ -231,8 +219,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
231
219
|
username: z.ZodString;
|
|
232
220
|
password: z.ZodString;
|
|
233
221
|
cookies: z.ZodArray<z.ZodAny, "many">;
|
|
234
|
-
accountId: z.ZodString;
|
|
235
|
-
proxyUrl: z.ZodNullable<z.ZodString>;
|
|
236
222
|
}, {
|
|
237
223
|
proposalData: z.ZodObject<{
|
|
238
224
|
coverLetter: z.ZodString;
|
|
@@ -273,8 +259,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
273
259
|
cookies: any[];
|
|
274
260
|
password: string;
|
|
275
261
|
jobUrl: string;
|
|
276
|
-
accountId: string;
|
|
277
|
-
proxyUrl: string | null;
|
|
278
262
|
proposalData: {
|
|
279
263
|
coverLetter: string;
|
|
280
264
|
questionAnswerPairs: {
|
|
@@ -290,8 +274,6 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
290
274
|
cookies: any[];
|
|
291
275
|
password: string;
|
|
292
276
|
jobUrl: string;
|
|
293
|
-
accountId: string;
|
|
294
|
-
proxyUrl: string | null;
|
|
295
277
|
proposalData: {
|
|
296
278
|
coverLetter: string;
|
|
297
279
|
questionAnswerPairs: {
|
package/dist/schemas/bid/bid.js
CHANGED
|
@@ -21,8 +21,6 @@ exports.bidPayloadSchema = zod_1.z.object({
|
|
|
21
21
|
username: zod_1.z.string(),
|
|
22
22
|
password: zod_1.z.string(),
|
|
23
23
|
cookies: zod_1.z.array(zod_1.z.any()),
|
|
24
|
-
accountId: zod_1.z.string(),
|
|
25
|
-
proxyUrl: zod_1.z.string().nullable().describe('user:pass@host:port'),
|
|
26
24
|
});
|
|
27
25
|
exports.agencyBidPayloadSchema = exports.bidPayloadSchema.extend({
|
|
28
26
|
proposalData: exports.agencyBidProposalDataSchema,
|