@careflair/common 1.0.32 → 1.0.34

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.
@@ -363,7 +363,8 @@ export declare enum JOB_TABS {
363
363
  ALL = "all",
364
364
  MY_JOBS = "my-jobs",
365
365
  APPLIED_JOBS = "applied-jobs",
366
- MATCHED_JOBS = "matched-jobs"
366
+ MATCHED_JOBS = "matched-jobs",
367
+ OTHER_JOBS = "other-jobs"
367
368
  }
368
369
  export declare enum DocumentType {
369
370
  NDIS_WORKER_SCREENING = "NDIS_WORKER_SCREENING",
@@ -420,6 +420,7 @@ var JOB_TABS;
420
420
  JOB_TABS["MY_JOBS"] = "my-jobs";
421
421
  JOB_TABS["APPLIED_JOBS"] = "applied-jobs";
422
422
  JOB_TABS["MATCHED_JOBS"] = "matched-jobs";
423
+ JOB_TABS["OTHER_JOBS"] = "other-jobs";
423
424
  })(JOB_TABS || (exports.JOB_TABS = JOB_TABS = {}));
424
425
  var DocumentType;
425
426
  (function (DocumentType) {
@@ -195,7 +195,7 @@ export declare const EducationAndTrainingFormSchema: z.ZodEffects<z.ZodEffects<z
195
195
  /**
196
196
  * Work history form schema
197
197
  */
198
- export declare const WorkHistoryFormSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
198
+ export declare const WorkHistoryFormSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
199
199
  jobTitle: z.ZodString;
200
200
  organisation: z.ZodString;
201
201
  startDate: z.ZodEffects<z.ZodString, string, string>;
@@ -249,4 +249,16 @@ export declare const WorkHistoryFormSchema: z.ZodEffects<z.ZodEffects<z.ZodEffec
249
249
  organisation: string;
250
250
  endDate?: string | undefined;
251
251
  isCurrentlyWorking?: boolean | undefined;
252
+ }>, {
253
+ startDate: string;
254
+ jobTitle: string;
255
+ organisation: string;
256
+ isCurrentlyWorking: boolean;
257
+ endDate?: string | undefined;
258
+ }, {
259
+ startDate: string;
260
+ jobTitle: string;
261
+ organisation: string;
262
+ endDate?: string | undefined;
263
+ isCurrentlyWorking?: boolean | undefined;
252
264
  }>;
@@ -199,6 +199,16 @@ exports.WorkHistoryFormSchema = zod_1.z
199
199
  }, {
200
200
  message: "End date must be after start date",
201
201
  path: ["endDate"],
202
+ })
203
+ .refine((data) => {
204
+ // If endDate is provided, validate it's not in the future
205
+ if (data.endDate && data.endDate.length > 0) {
206
+ return !isDateInFuture(data.endDate);
207
+ }
208
+ return true;
209
+ }, {
210
+ message: "End date cannot be in the future",
211
+ path: ["endDate"],
202
212
  })
203
213
  .refine((data) => {
204
214
  // If endDate is provided, validate there's at least 1 month difference
@@ -216,7 +226,8 @@ exports.WorkHistoryFormSchema = zod_1.z
216
226
  if (data.endDate && data.endDate.length > 0) {
217
227
  return !data.isCurrentlyWorking;
218
228
  }
219
- return (data.isCurrentlyWorking || (data.endDate && data.endDate.length > 0));
229
+ // If no endDate, isCurrentlyWorking must be true
230
+ return data.isCurrentlyWorking;
220
231
  }, {
221
232
  message: "If there is an endDate, Currently Working must be false. If Currently Working is false, endDate must be provided.",
222
233
  path: ["endDate", "isCurrentlyWorking"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@careflair/common",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "Shared assets for CareFlair",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",