@company-semantics/contracts 13.18.0 → 13.19.0
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 +1 -1
- package/src/org/schemas.ts +2 -0
- package/src/org/types.ts +3 -1
package/package.json
CHANGED
package/src/org/schemas.ts
CHANGED
|
@@ -166,10 +166,12 @@ export type WorkspaceAccessResponse = z.infer<
|
|
|
166
166
|
export const OrgOwnerIconSchema = z.enum([
|
|
167
167
|
"crown",
|
|
168
168
|
"crown-cross",
|
|
169
|
+
"person-simple-run",
|
|
169
170
|
"person",
|
|
170
171
|
"medal-military",
|
|
171
172
|
"dog",
|
|
172
173
|
"cat",
|
|
174
|
+
"linux-logo",
|
|
173
175
|
]);
|
|
174
176
|
|
|
175
177
|
export const WorkspaceOverviewSchema = z.object({
|
package/src/org/types.ts
CHANGED
|
@@ -86,10 +86,12 @@ export interface WorkspaceOverview {
|
|
|
86
86
|
ownerIcon:
|
|
87
87
|
| "crown"
|
|
88
88
|
| "crown-cross"
|
|
89
|
+
| "person-simple-run"
|
|
89
90
|
| "person"
|
|
90
91
|
| "medal-military"
|
|
91
92
|
| "dog"
|
|
92
|
-
| "cat"
|
|
93
|
+
| "cat"
|
|
94
|
+
| "linux-logo";
|
|
93
95
|
createdAt: string;
|
|
94
96
|
memberCount: number;
|
|
95
97
|
claimable: boolean;
|