colibris-types 1.0.5 → 1.0.6

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.d.ts +2 -1
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { z } from "zod";
2
- export type ZodObject = typeof z.ZodObject;
3
2
  declare const Model: z.ZodObject<{
4
3
  id_company: z.ZodNumber;
5
4
  }, "strip", z.ZodTypeAny, {
@@ -1989,12 +1988,14 @@ export type JobCategory = z.infer<typeof JobCategory>;
1989
1988
  export type JobType = z.infer<typeof JobType>;
1990
1989
  export type People = z.infer<typeof People>;
1991
1990
  export type PeopleUpload = z.infer<typeof PeopleUpload>;
1991
+ export type PeopleUploadType = typeof PeopleUpload;
1992
1992
  export type Site = z.infer<typeof Site>;
1993
1993
  export type SiteAddress = z.infer<typeof SiteAddress>;
1994
1994
  export type SiteLocation = z.infer<typeof SiteLocation>;
1995
1995
  export type StockSite = z.infer<typeof StockSite>;
1996
1996
  export type Subsidiary = z.infer<typeof Subsidiary>;
1997
1997
  export type SubsidiaryUpload = z.infer<typeof SubsidiaryUpload>;
1998
+ export type SubsidiaryUploadType = typeof SubsidiaryUpload;
1998
1999
  export type AssetGenre = z.infer<typeof AssetGenre>;
1999
2000
  export type AssetStatus = z.infer<typeof AssetStatus>;
2000
2001
  export type AssetType = z.infer<typeof AssetType>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colibris-types",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",