lancer-shared 1.0.105 → 1.0.106

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.
@@ -145,9 +145,6 @@ export declare const agencyBidSchema: z.ZodObject<z.objectUtil.extendShape<{
145
145
  username: z.ZodString;
146
146
  password: z.ZodString;
147
147
  }, {
148
- agencyName: z.ZodString;
149
- contractorName: z.ZodString;
150
- specializedProfile: z.ZodNullable<z.ZodString>;
151
148
  formData: z.ZodObject<z.objectUtil.extendShape<{
152
149
  coverLetter: z.ZodString;
153
150
  questionAnswerPairs: z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -211,9 +208,6 @@ export declare const agencyBidSchema: z.ZodObject<z.objectUtil.extendShape<{
211
208
  cookies: any[];
212
209
  password: string;
213
210
  jobUrl: string;
214
- agencyName: string;
215
- contractorName: string;
216
- specializedProfile: string | null;
217
211
  userId: string;
218
212
  campaignId: string;
219
213
  }, {
@@ -235,9 +229,6 @@ export declare const agencyBidSchema: z.ZodObject<z.objectUtil.extendShape<{
235
229
  cookies: any[];
236
230
  password: string;
237
231
  jobUrl: string;
238
- agencyName: string;
239
- contractorName: string;
240
- specializedProfile: string | null;
241
232
  userId: string;
242
233
  campaignId: string;
243
234
  }>;
@@ -26,9 +26,6 @@ exports.bidSchema = zod_1.z.object({
26
26
  password: zod_1.z.string(),
27
27
  });
28
28
  exports.agencyBidSchema = exports.bidSchema.extend({
29
- agencyName: zod_1.z.string(),
30
- contractorName: zod_1.z.string(),
31
- specializedProfile: zod_1.z.string().nullable(),
32
29
  formData: exports.agencyBidFormDataSchema,
33
30
  });
34
31
  exports.freelancerBidSchema = exports.bidSchema.extend({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "lancer-shared",
4
- "version": "1.0.105",
4
+ "version": "1.0.106",
5
5
  "description": "This package contains shared stuff.",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",