@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.
- package/dist/constants.d.ts +4 -5
- package/dist/constants.js +4 -5
- package/dist/schemas/job-application.d.ts +12 -15
- package/package.json +1 -1
- package/src/constants.ts +4 -5
package/dist/constants.d.ts
CHANGED
|
@@ -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
|
|
113
|
-
readonly
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
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
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
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
|
|
34
|
-
readonly
|
|
35
|
-
readonly
|
|
36
|
-
readonly
|
|
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
|
-
"
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
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
|
-
"
|
|
177
|
-
"
|
|
178
|
-
|
|
179
|
-
|
|
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
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
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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 = {
|