@zyacreatives/shared 2.0.15 → 2.0.16

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.
@@ -372,7 +372,7 @@ export declare const CreateRoleJobInputSchema: z.ZodObject<{
372
372
  }>;
373
373
  overview: z.ZodString;
374
374
  keyResponsibilities: z.ZodString;
375
- requiredSkills: z.ZodString;
375
+ requiredSkills: z.ZodArray<z.ZodString>;
376
376
  employeeRequirements: z.ZodOptional<z.ZodString>;
377
377
  companyBenefits: z.ZodOptional<z.ZodString>;
378
378
  wagesMin: z.ZodOptional<z.ZodNumber>;
@@ -403,7 +403,7 @@ export declare const CreateGigJobInputSchema: z.ZodObject<{
403
403
  deliverables: z.ZodString;
404
404
  employeeRequirements: z.ZodOptional<z.ZodString>;
405
405
  aboutCompany: z.ZodOptional<z.ZodString>;
406
- requiredSkills: z.ZodString;
406
+ requiredSkills: z.ZodArray<z.ZodString>;
407
407
  wagesMin: z.ZodOptional<z.ZodNumber>;
408
408
  wagesMax: z.ZodOptional<z.ZodNumber>;
409
409
  wagesCurrency: z.ZodOptional<z.ZodEnum<{
@@ -436,7 +436,7 @@ export declare const UpdateRoleJobInputSchema: z.ZodObject<{
436
436
  }>>;
437
437
  overview: z.ZodOptional<z.ZodString>;
438
438
  keyResponsibilities: z.ZodOptional<z.ZodString>;
439
- requiredSkills: z.ZodOptional<z.ZodString>;
439
+ requiredSkills: z.ZodOptional<z.ZodArray<z.ZodString>>;
440
440
  employeeRequirements: z.ZodOptional<z.ZodOptional<z.ZodString>>;
441
441
  companyBenefits: z.ZodOptional<z.ZodOptional<z.ZodString>>;
442
442
  wagesMin: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -467,7 +467,7 @@ export declare const UpdateGigJobInputSchema: z.ZodObject<{
467
467
  deliverables: z.ZodOptional<z.ZodString>;
468
468
  employeeRequirements: z.ZodOptional<z.ZodOptional<z.ZodString>>;
469
469
  aboutCompany: z.ZodOptional<z.ZodOptional<z.ZodString>>;
470
- requiredSkills: z.ZodOptional<z.ZodString>;
470
+ requiredSkills: z.ZodOptional<z.ZodArray<z.ZodString>>;
471
471
  wagesMin: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
472
472
  wagesMax: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
473
473
  wagesCurrency: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
@@ -161,7 +161,7 @@ exports.CreateRoleJobInputSchema = zod_1.z.object({
161
161
  experienceLevel: zod_1.z.enum(Object.values(constants_1.EXPERIENCE_LEVELS)),
162
162
  overview: zod_1.z.string(),
163
163
  keyResponsibilities: zod_1.z.string(),
164
- requiredSkills: zod_1.z.string(),
164
+ requiredSkills: zod_1.z.array(zod_1.z.string()),
165
165
  employeeRequirements: zod_1.z.string().optional(),
166
166
  companyBenefits: zod_1.z.string().optional(),
167
167
  wagesMin: zod_1.z.number().optional(),
@@ -179,7 +179,7 @@ exports.CreateGigJobInputSchema = zod_1.z.object({
179
179
  deliverables: zod_1.z.string(),
180
180
  employeeRequirements: zod_1.z.string().optional(),
181
181
  aboutCompany: zod_1.z.string().optional(),
182
- requiredSkills: zod_1.z.string(),
182
+ requiredSkills: zod_1.z.array(zod_1.z.string()),
183
183
  wagesMin: zod_1.z.number().optional(),
184
184
  wagesMax: zod_1.z.number().optional(),
185
185
  wagesCurrency: zod_1.z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.0.15",
3
+ "version": "2.0.16",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -217,7 +217,7 @@ export const CreateRoleJobInputSchema = z.object({
217
217
  ),
218
218
  overview: z.string(),
219
219
  keyResponsibilities: z.string(),
220
- requiredSkills: z.string(),
220
+ requiredSkills: z.array(z.string()),
221
221
  employeeRequirements: z.string().optional(),
222
222
  companyBenefits: z.string().optional(),
223
223
  wagesMin: z.number().optional(),
@@ -236,7 +236,7 @@ export const CreateGigJobInputSchema = z.object({
236
236
  deliverables: z.string(),
237
237
  employeeRequirements: z.string().optional(),
238
238
  aboutCompany: z.string().optional(),
239
- requiredSkills: z.string(),
239
+ requiredSkills: z.array(z.string()),
240
240
  wagesMin: z.number().optional(),
241
241
  wagesMax: z.number().optional(),
242
242
  wagesCurrency: z
@@ -249,7 +249,7 @@ export const CreateGigJobInputSchema = z.object({
249
249
 
250
250
  export const UpdateRoleJobInputSchema =
251
251
  CreateRoleJobInputSchema.partial().required({ id: true });
252
-
252
+
253
253
  export const UpdateGigJobInputSchema =
254
254
  CreateGigJobInputSchema.partial().required({ id: true });
255
255