lancer-shared 1.0.149 → 1.0.151

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.
@@ -116,30 +116,26 @@ 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>;
119
+ profileId: z.ZodString;
121
120
  }, "strip", z.ZodTypeAny, {
122
121
  username: string;
123
122
  cookies: any[];
124
123
  password: string;
125
124
  jobUrl: string;
126
- accountId: string;
127
- proxyUrl: string | null;
125
+ profileId: string;
128
126
  }, {
129
127
  username: string;
130
128
  cookies: any[];
131
129
  password: string;
132
130
  jobUrl: string;
133
- accountId: string;
134
- proxyUrl: string | null;
131
+ profileId: string;
135
132
  }>;
136
133
  export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
137
134
  jobUrl: z.ZodString;
138
135
  username: z.ZodString;
139
136
  password: z.ZodString;
140
137
  cookies: z.ZodArray<z.ZodAny, "many">;
141
- accountId: z.ZodString;
142
- proxyUrl: z.ZodNullable<z.ZodString>;
138
+ profileId: z.ZodString;
143
139
  }, {
144
140
  proposalData: z.ZodObject<z.objectUtil.extendShape<{
145
141
  coverLetter: z.ZodString;
@@ -190,8 +186,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
190
186
  cookies: any[];
191
187
  password: string;
192
188
  jobUrl: string;
193
- accountId: string;
194
- proxyUrl: string | null;
189
+ profileId: string;
195
190
  proposalData: {
196
191
  coverLetter: string;
197
192
  questionAnswerPairs: {
@@ -210,8 +205,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
210
205
  cookies: any[];
211
206
  password: string;
212
207
  jobUrl: string;
213
- accountId: string;
214
- proxyUrl: string | null;
208
+ profileId: string;
215
209
  proposalData: {
216
210
  coverLetter: string;
217
211
  questionAnswerPairs: {
@@ -231,8 +225,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
231
225
  username: z.ZodString;
232
226
  password: z.ZodString;
233
227
  cookies: z.ZodArray<z.ZodAny, "many">;
234
- accountId: z.ZodString;
235
- proxyUrl: z.ZodNullable<z.ZodString>;
228
+ profileId: z.ZodString;
236
229
  }, {
237
230
  proposalData: z.ZodObject<{
238
231
  coverLetter: z.ZodString;
@@ -273,8 +266,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
273
266
  cookies: any[];
274
267
  password: string;
275
268
  jobUrl: string;
276
- accountId: string;
277
- proxyUrl: string | null;
269
+ profileId: string;
278
270
  proposalData: {
279
271
  coverLetter: string;
280
272
  questionAnswerPairs: {
@@ -290,8 +282,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
290
282
  cookies: any[];
291
283
  password: string;
292
284
  jobUrl: string;
293
- accountId: string;
294
- proxyUrl: string | null;
285
+ profileId: string;
295
286
  proposalData: {
296
287
  coverLetter: string;
297
288
  questionAnswerPairs: {
@@ -21,8 +21,7 @@ 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'),
24
+ profileId: zod_1.z.string(),
26
25
  });
27
26
  exports.agencyBidPayloadSchema = exports.bidPayloadSchema.extend({
28
27
  proposalData: exports.agencyBidProposalDataSchema,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.149",
4
+ "version": "1.0.151",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",