@new-project-media/client-frontends-shared-types 1.0.13 → 1.0.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsc -p tsconfig.json",
|
|
6
6
|
"postbuild": "mkdir -p ../../dist/packages/client-frontends-shared-types/ && cp package.json ../../dist/packages/client-frontends-shared-types/",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { OrganizationItemSchema, LinkedPeopleSchema, QueueJoinSchema } from './entity';
|
|
2
|
+
import { EntityItemArrayOptionalSchema, OrganizationItemSchema, LinkedPeopleSchema, QueueJoinSchema } from './entity';
|
|
3
3
|
export declare enum PublishStatus {
|
|
4
4
|
NeedsReview = "Needs Review",
|
|
5
5
|
Spiked = "Spiked",
|
|
@@ -554,4 +554,5 @@ export type Signal = z.infer<typeof signal>;
|
|
|
554
554
|
export type OrganizationItem = z.infer<typeof OrganizationItemSchema>;
|
|
555
555
|
export type LinkedPersonItem = z.infer<typeof LinkedPeopleSchema>[number];
|
|
556
556
|
export type QueueJoinItem = z.infer<typeof QueueJoinSchema>[number];
|
|
557
|
+
export type ProjectItem = z.infer<typeof EntityItemArrayOptionalSchema>[number];
|
|
557
558
|
export {};
|