@zyacreatives/shared 2.1.25 → 2.1.27
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
CHANGED
package/dist/constants.js
CHANGED
|
@@ -21,6 +21,7 @@ export declare const MinimalJobApplicationEntitySchema: z.ZodObject<{
|
|
|
21
21
|
"Application Sent": "Application Sent";
|
|
22
22
|
Opened: "Opened";
|
|
23
23
|
Rejected: "Rejected";
|
|
24
|
+
Declined: "Declined";
|
|
24
25
|
Offered: "Offered";
|
|
25
26
|
Hired: "Hired";
|
|
26
27
|
}>;
|
|
@@ -64,6 +65,7 @@ export declare const BaseJobApplicationEntitySchema: z.ZodObject<{
|
|
|
64
65
|
"Application Sent": "Application Sent";
|
|
65
66
|
Opened: "Opened";
|
|
66
67
|
Rejected: "Rejected";
|
|
68
|
+
Declined: "Declined";
|
|
67
69
|
Offered: "Offered";
|
|
68
70
|
Hired: "Hired";
|
|
69
71
|
}>;
|
|
@@ -76,6 +78,7 @@ export declare const BaseJobApplicationEntitySchema: z.ZodObject<{
|
|
|
76
78
|
wagesAmount: z.ZodNullable<z.ZodNumber>;
|
|
77
79
|
}, z.core.$strip>;
|
|
78
80
|
export declare const JobApplicationEntitySchema: z.ZodObject<{
|
|
81
|
+
id: z.ZodString;
|
|
79
82
|
firstName: z.ZodOptional<z.ZodString>;
|
|
80
83
|
lastName: z.ZodOptional<z.ZodString>;
|
|
81
84
|
jobId: z.ZodCUID2;
|
|
@@ -117,6 +120,7 @@ export declare const JobApplicationEntitySchema: z.ZodObject<{
|
|
|
117
120
|
"Application Sent": "Application Sent";
|
|
118
121
|
Opened: "Opened";
|
|
119
122
|
Rejected: "Rejected";
|
|
123
|
+
Declined: "Declined";
|
|
120
124
|
Offered: "Offered";
|
|
121
125
|
Hired: "Hired";
|
|
122
126
|
}>>;
|
|
@@ -194,6 +198,7 @@ export declare const TrackedJobApplicationEntitySchema: z.ZodObject<{
|
|
|
194
198
|
"Application Sent": "Application Sent";
|
|
195
199
|
Opened: "Opened";
|
|
196
200
|
Rejected: "Rejected";
|
|
201
|
+
Declined: "Declined";
|
|
197
202
|
Offered: "Offered";
|
|
198
203
|
Hired: "Hired";
|
|
199
204
|
}>;
|
|
@@ -458,6 +463,7 @@ export declare const UpdateJobApplicationInputSchema: z.ZodObject<{
|
|
|
458
463
|
"Application Sent": "Application Sent";
|
|
459
464
|
Opened: "Opened";
|
|
460
465
|
Rejected: "Rejected";
|
|
466
|
+
Declined: "Declined";
|
|
461
467
|
Offered: "Offered";
|
|
462
468
|
Hired: "Hired";
|
|
463
469
|
}>>;
|
|
@@ -468,6 +474,7 @@ export declare const GetTrackedJobApplicationsInputSchema: z.ZodObject<{
|
|
|
468
474
|
"Application Sent": "Application Sent";
|
|
469
475
|
Opened: "Opened";
|
|
470
476
|
Rejected: "Rejected";
|
|
477
|
+
Declined: "Declined";
|
|
471
478
|
Offered: "Offered";
|
|
472
479
|
Hired: "Hired";
|
|
473
480
|
}>>;
|
|
@@ -486,6 +493,7 @@ export declare const GetTrackedJobApplicationsOutputSchema: z.ZodObject<{
|
|
|
486
493
|
"Application Sent": "Application Sent";
|
|
487
494
|
Opened: "Opened";
|
|
488
495
|
Rejected: "Rejected";
|
|
496
|
+
Declined: "Declined";
|
|
489
497
|
Offered: "Offered";
|
|
490
498
|
Hired: "Hired";
|
|
491
499
|
}>;
|
|
@@ -54,6 +54,7 @@ exports.BaseJobApplicationEntitySchema = zod_openapi_1.z.object({
|
|
|
54
54
|
wagesAmount: zod_openapi_1.z.number().nullable(),
|
|
55
55
|
});
|
|
56
56
|
exports.JobApplicationEntitySchema = zod_openapi_1.z.object({
|
|
57
|
+
id: zod_openapi_1.z.string(),
|
|
57
58
|
firstName: zod_openapi_1.z.string().optional(),
|
|
58
59
|
lastName: zod_openapi_1.z.string().optional(),
|
|
59
60
|
jobId: zod_openapi_1.z.cuid2(),
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED