@jackhayes/util-types 0.0.43 → 0.0.45
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.
|
@@ -320,7 +320,6 @@ export declare const project: z.ZodObject<{
|
|
|
320
320
|
ZW: "ZW";
|
|
321
321
|
}>>;
|
|
322
322
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
323
|
-
doNotIngest: z.ZodOptional<z.ZodBoolean>;
|
|
324
323
|
}, z.core.$strip>;
|
|
325
324
|
declare const projectCreatorRelation: z.ZodObject<{
|
|
326
325
|
role: z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -354,8 +353,8 @@ declare const projectCreatorRelation: z.ZodObject<{
|
|
|
354
353
|
"book-author": "book-author";
|
|
355
354
|
"book-publisher": "book-publisher";
|
|
356
355
|
}>]>;
|
|
357
|
-
primary: z.ZodBoolean;
|
|
358
356
|
creatorId: z.ZodUUID;
|
|
357
|
+
primary: z.ZodBoolean;
|
|
359
358
|
}, z.core.$strip>;
|
|
360
359
|
export declare const projectWithCreators: z.ZodObject<{
|
|
361
360
|
id: z.ZodUUID;
|
|
@@ -678,7 +677,6 @@ export declare const projectWithCreators: z.ZodObject<{
|
|
|
678
677
|
ZW: "ZW";
|
|
679
678
|
}>>;
|
|
680
679
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
681
|
-
doNotIngest: z.ZodOptional<z.ZodBoolean>;
|
|
682
680
|
creators: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
683
681
|
id: z.ZodUUID;
|
|
684
682
|
name: z.ZodString;
|
|
@@ -15,7 +15,6 @@ export const project = z.object({
|
|
|
15
15
|
originalLanguage: languageCode.optional(),
|
|
16
16
|
originCountry: countryCode.optional(),
|
|
17
17
|
hidden: z.boolean().optional(),
|
|
18
|
-
doNotIngest: z.boolean().optional(),
|
|
19
18
|
});
|
|
20
19
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
21
20
|
const projectCreatorRelation = creatorProjectRelation.omit({ projectId: true });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jackhayes/util-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.45",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"type": "module",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@jh-tech/util-tools-be": "0.0.
|
|
20
|
+
"@jh-tech/util-tools-be": "0.0.23",
|
|
21
21
|
"zod": "^4.4.3"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|