@company-semantics/contracts 13.18.0 → 13.19.1

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": "@company-semantics/contracts",
3
- "version": "13.18.0",
3
+ "version": "13.19.1",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Run pnpm generate:spec-hash to regenerate.
2
- export const SPEC_HASH = 'b4c6a72ecef5' as const;
3
- export const SPEC_HASH_FULL = 'b4c6a72ecef5397ac7bffd8e6d1638ffa91d8e917e683ca31b1b71a356cd080e' as const;
2
+ export const SPEC_HASH = '4c830693f0ba' as const;
3
+ export const SPEC_HASH_FULL = '4c830693f0ba3d236b60cb5494fbfe4d62bdb8bf4cc6fedc1df0e2d1a5d7a2d6' as const;
@@ -3376,7 +3376,7 @@ export interface components {
3376
3376
  };
3377
3377
  ownerTitle: string;
3378
3378
  /** @enum {string} */
3379
- ownerIcon: "crown" | "crown-cross" | "person" | "medal-military" | "dog" | "cat";
3379
+ ownerIcon: "crown" | "crown-cross" | "person-simple-run" | "person" | "medal-military" | "dog" | "cat" | "linux-logo";
3380
3380
  createdAt: string;
3381
3381
  memberCount: number;
3382
3382
  claimable: boolean;
@@ -3390,7 +3390,7 @@ export interface components {
3390
3390
  OrgRenameRequest: {
3391
3391
  name?: string;
3392
3392
  ownerTitle?: string | null;
3393
- ownerIcon?: ("crown" | "crown-cross" | "person" | "medal-military" | "dog" | "cat") | null;
3393
+ ownerIcon?: ("crown" | "crown-cross" | "person-simple-run" | "person" | "medal-military" | "dog" | "cat" | "linux-logo") | null;
3394
3394
  };
3395
3395
  WorkspaceMembersResponse: {
3396
3396
  items: {
@@ -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;