@zyacreatives/shared 2.0.97 → 2.0.98

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.
@@ -109,11 +109,10 @@ export declare const EMPLOYMENT_TYPE: {
109
109
  readonly INTERNSHIP: "Internship";
110
110
  };
111
111
  export declare const JOB_AVAILABILITY_TYPES: {
112
- readonly FULL_TIME: "Full Time";
113
- readonly PART_TIME: "Part Time";
114
- readonly CONTRACT: "Contract";
115
- readonly FREELANCE: "Freelance";
116
- readonly INTERNSHIP: "Internship";
112
+ readonly IMMEDIATE: "Immediate (Within 1 week)";
113
+ readonly TWO_WEEKS_NOTICE: "2 weeks notice";
114
+ readonly ONE_MONTH_NOTICE: "1 month notice";
115
+ readonly FLEXIBLE: "Flexible";
117
116
  };
118
117
  export declare const WAGE_TYPES: {
119
118
  readonly HOURLY: "Hourly";
package/dist/constants.js CHANGED
@@ -112,11 +112,10 @@ exports.EMPLOYMENT_TYPE = {
112
112
  INTERNSHIP: "Internship",
113
113
  };
114
114
  exports.JOB_AVAILABILITY_TYPES = {
115
- FULL_TIME: "Full Time",
116
- PART_TIME: "Part Time",
117
- CONTRACT: "Contract",
118
- FREELANCE: "Freelance",
119
- INTERNSHIP: "Internship",
115
+ IMMEDIATE: "Immediate (Within 1 week)",
116
+ TWO_WEEKS_NOTICE: "2 weeks notice",
117
+ ONE_MONTH_NOTICE: "1 month notice",
118
+ FLEXIBLE: "Flexible",
120
119
  };
121
120
  exports.WAGE_TYPES = {
122
121
  HOURLY: "Hourly",
@@ -30,11 +30,10 @@ export declare const BaseJobApplicationEntitySchema: z.ZodObject<{
30
30
  createdAt: z.ZodCoercedDate<unknown>;
31
31
  updatedAt: z.ZodCoercedDate<unknown>;
32
32
  availability: z.ZodEnum<{
33
- readonly FULL_TIME: "Full Time";
34
- readonly PART_TIME: "Part Time";
35
- readonly CONTRACT: "Contract";
36
- readonly FREELANCE: "Freelance";
37
- readonly INTERNSHIP: "Internship";
33
+ readonly IMMEDIATE: "Immediate (Within 1 week)";
34
+ readonly TWO_WEEKS_NOTICE: "2 weeks notice";
35
+ readonly ONE_MONTH_NOTICE: "1 month notice";
36
+ readonly FLEXIBLE: "Flexible";
38
37
  }>;
39
38
  experienceLevel: z.ZodEnum<{
40
39
  readonly YEAR_0_1: "0-1 year";
@@ -130,11 +129,10 @@ export declare const JobApplicationEntitySchema: z.ZodObject<{
130
129
  receiveEmailUpdates: z.ZodBoolean;
131
130
  wagesAmount: z.ZodOptional<z.ZodString>;
132
131
  availability: z.ZodEnum<{
133
- "Full Time": "Full Time";
134
- "Part Time": "Part Time";
135
- Freelance: "Freelance";
136
- Internship: "Internship";
137
- Contract: "Contract";
132
+ "Immediate (Within 1 week)": "Immediate (Within 1 week)";
133
+ "2 weeks notice": "2 weeks notice";
134
+ "1 month notice": "1 month notice";
135
+ Flexible: "Flexible";
138
136
  }>;
139
137
  createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
140
138
  updatedAt: z.ZodCoercedDate<unknown>;
@@ -173,11 +171,10 @@ export declare const CreateJobApplicationInputSchema: z.ZodObject<{
173
171
  receiveEmailUpdates: z.ZodBoolean;
174
172
  wagesAmount: z.ZodOptional<z.ZodString>;
175
173
  availability: z.ZodEnum<{
176
- "Full Time": "Full Time";
177
- "Part Time": "Part Time";
178
- Freelance: "Freelance";
179
- Internship: "Internship";
180
- Contract: "Contract";
174
+ "Immediate (Within 1 week)": "Immediate (Within 1 week)";
175
+ "2 weeks notice": "2 weeks notice";
176
+ "1 month notice": "1 month notice";
177
+ Flexible: "Flexible";
181
178
  }>;
182
179
  }, z.core.$strip>;
183
180
  export declare const UpdateJobApplicationStatusSchema: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.0.97",
3
+ "version": "2.0.98",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -123,11 +123,10 @@ export const EMPLOYMENT_TYPE = {
123
123
  } as const;
124
124
 
125
125
  export const JOB_AVAILABILITY_TYPES = {
126
- FULL_TIME: "Full Time",
127
- PART_TIME: "Part Time",
128
- CONTRACT: "Contract",
129
- FREELANCE: "Freelance",
130
- INTERNSHIP: "Internship",
126
+ IMMEDIATE: "Immediate (Within 1 week)",
127
+ TWO_WEEKS_NOTICE: "2 weeks notice",
128
+ ONE_MONTH_NOTICE: "1 month notice",
129
+ FLEXIBLE: "Flexible",
131
130
  } as const;
132
131
 
133
132
  export const WAGE_TYPES = {