colibris-types 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +25 -25
package/lib/index.js CHANGED
@@ -96,7 +96,7 @@ const PeopleUpload = z.object({
96
96
  JobDesignation: z.string().optional(),
97
97
  JobCategory: z.string().optional(),
98
98
  JobTypes: z.string().optional(),
99
- ExitDate: z.date().optional(),
99
+ ExitDate: z.coerce.date().optional(),
100
100
  });
101
101
  export const organizationDefinitions = {
102
102
  model: Model,
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
- {
2
- "name": "colibris-types",
3
- "version": "1.0.6",
4
- "description": "",
5
- "main": "./lib/index.js",
6
- "type": "module",
7
- "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1",
9
- "build": "tsc",
10
- "prepare": "npm run build"
11
- },
12
- "keywords": [],
13
- "author": "",
14
- "license": "ISC",
15
- "devDependencies": {
16
- "typescript": "^5.0.4"
17
- },
18
- "files": [
19
- "lib/**/*"
20
- ],
21
- "dependencies": {
22
- "zod": "^3.21.4"
23
- },
24
- "types": "./lib/index.d.ts"
25
- }
1
+ {
2
+ "name": "colibris-types",
3
+ "version": "1.0.7",
4
+ "description": "",
5
+ "main": "./lib/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "build": "tsc",
10
+ "prepare": "npm run build"
11
+ },
12
+ "keywords": [],
13
+ "author": "",
14
+ "license": "ISC",
15
+ "devDependencies": {
16
+ "typescript": "^5.0.4"
17
+ },
18
+ "files": [
19
+ "lib/**/*"
20
+ ],
21
+ "dependencies": {
22
+ "zod": "^3.21.4"
23
+ },
24
+ "types": "./lib/index.d.ts"
25
+ }