@zyacreatives/shared 2.1.19 → 2.1.20

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.
@@ -411,7 +411,7 @@ export declare const UpdateJobApplicationStatusSchema: z.ZodObject<{
411
411
  }>;
412
412
  }, z.core.$strip>;
413
413
  export declare const GetTrackedJobApplicationsInputSchema: z.ZodObject<{
414
- q: z.ZodOptional<z.ZodString>;
414
+ query: z.ZodOptional<z.ZodString>;
415
415
  status: z.ZodOptional<z.ZodEnum<{
416
416
  "Application Sent": "Application Sent";
417
417
  Opened: "Opened";
@@ -145,7 +145,7 @@ exports.UpdateJobApplicationStatusSchema = zod_openapi_1.z.object({
145
145
  applicationStatus: zod_openapi_1.z.enum(constants_1.APPLICATION_STATUS),
146
146
  });
147
147
  exports.GetTrackedJobApplicationsInputSchema = zod_openapi_1.z.object({
148
- q: zod_openapi_1.z.string().optional(),
148
+ query: zod_openapi_1.z.string().optional(),
149
149
  status: zod_openapi_1.z
150
150
  .enum(Object.values(constants_1.APPLICATION_STATUS))
151
151
  .optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.19",
3
+ "version": "2.1.20",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -216,7 +216,7 @@ export const UpdateJobApplicationStatusSchema = z.object({
216
216
  });
217
217
 
218
218
  export const GetTrackedJobApplicationsInputSchema = z.object({
219
- q: z.string().optional(),
219
+ query: z.string().optional(),
220
220
  status: z
221
221
  .enum(
222
222
  Object.values(APPLICATION_STATUS) as [