@company-semantics/contracts 22.3.0 → 23.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@company-semantics/contracts",
3
- "version": "22.3.0",
3
+ "version": "23.0.0",
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 = '36e1cefaf3bb' as const;
3
- export const SPEC_HASH_FULL = '36e1cefaf3bb0ae0a262d93a1d27f6bed3abf36bbdbeb41df541db6dfcd0c0b9' as const;
2
+ export const SPEC_HASH = '0294f47290c0' as const;
3
+ export const SPEC_HASH_FULL = '0294f47290c059e23186e9b25f6e0a476e304947f9ead66491ef4c29118e0609' as const;
@@ -3426,7 +3426,7 @@ export interface components {
3426
3426
  };
3427
3427
  ownerTitle: string;
3428
3428
  /** @enum {string} */
3429
- ownerIcon: "crown" | "crown-cross" | "person-simple-run" | "person" | "medal-military" | "dog" | "cat" | "linux-logo";
3429
+ ownerIcon: "crown" | "crown-cross" | "person-simple-run" | "person" | "medal-military" | "dog" | "cat" | "steering-wheel";
3430
3430
  createdAt: string;
3431
3431
  memberCount: number;
3432
3432
  claimable: boolean;
@@ -3440,7 +3440,7 @@ export interface components {
3440
3440
  OrgRenameRequest: {
3441
3441
  name?: string;
3442
3442
  ownerTitle?: string | null;
3443
- ownerIcon?: ("crown" | "crown-cross" | "person-simple-run" | "person" | "medal-military" | "dog" | "cat" | "linux-logo") | null;
3443
+ ownerIcon?: ("crown" | "crown-cross" | "person-simple-run" | "person" | "medal-military" | "dog" | "cat" | "steering-wheel") | null;
3444
3444
  };
3445
3445
  WorkspaceMembersResponse: {
3446
3446
  items: {
@@ -194,7 +194,7 @@ export const OrgOwnerIconSchema = z.enum([
194
194
  "medal-military",
195
195
  "dog",
196
196
  "cat",
197
- "linux-logo",
197
+ "steering-wheel",
198
198
  ]);
199
199
 
200
200
  export const WorkspaceOverviewSchema = z.object({
package/src/org/types.ts CHANGED
@@ -91,7 +91,7 @@ export interface WorkspaceOverview {
91
91
  | "medal-military"
92
92
  | "dog"
93
93
  | "cat"
94
- | "linux-logo";
94
+ | "steering-wheel";
95
95
  createdAt: string;
96
96
  memberCount: number;
97
97
  claimable: boolean;