@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.
@@ -207,6 +207,7 @@ export declare const APPLICATION_STATUS: {
207
207
  readonly SENT: "Application Sent";
208
208
  readonly OPENED: "Opened";
209
209
  readonly REJECTED: "Rejected";
210
+ readonly DECLINED: "Declined";
210
211
  readonly OFFERED: "Offered";
211
212
  readonly HIRED: "Hired";
212
213
  };
package/dist/constants.js CHANGED
@@ -209,6 +209,7 @@ exports.APPLICATION_STATUS = {
209
209
  SENT: "Application Sent",
210
210
  OPENED: "Opened",
211
211
  REJECTED: "Rejected",
212
+ DECLINED: "Declined",
212
213
  OFFERED: "Offered",
213
214
  HIRED: "Hired",
214
215
  };
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.25",
3
+ "version": "2.1.27",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -233,6 +233,7 @@ export const APPLICATION_STATUS = {
233
233
  SENT: "Application Sent",
234
234
  OPENED: "Opened",
235
235
  REJECTED: "Rejected",
236
+ DECLINED: "Declined",
236
237
  OFFERED: "Offered",
237
238
  HIRED: "Hired",
238
239
  } as const;
@@ -88,6 +88,7 @@ export const BaseJobApplicationEntitySchema = z.object({
88
88
  });
89
89
 
90
90
  export const JobApplicationEntitySchema = z.object({
91
+ id: z.string(),
91
92
  firstName: z.string().optional(),
92
93
  lastName: z.string().optional(),
93
94
  jobId: z.cuid2(),