@company-semantics/contracts 13.13.0 → 13.13.2

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.13.0",
3
+ "version": "13.13.2",
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 = '96e4027ac1c0' as const;
3
- export const SPEC_HASH_FULL = '96e4027ac1c0c18ce85a7ade0cf100eaae0ce3f55216e8a1384c1d96f3588ca8' as const;
2
+ export const SPEC_HASH = 'afe43c58e0be' as const;
3
+ export const SPEC_HASH_FULL = 'afe43c58e0be9fb60f1e34f047c3c40dfff055e88079d8d0c9e7f64f587f0c53' as const;
@@ -3358,7 +3358,7 @@ export interface components {
3358
3358
  };
3359
3359
  ownerTitle: string;
3360
3360
  /** @enum {string} */
3361
- ownerIcon: "crown" | "crown-cross" | "person" | "person-simple-circle" | "medal-military";
3361
+ ownerIcon: "crown" | "crown-cross" | "person" | "medal-military" | "dog" | "cat";
3362
3362
  createdAt: string;
3363
3363
  memberCount: number;
3364
3364
  claimable: boolean;
@@ -3372,7 +3372,7 @@ export interface components {
3372
3372
  OrgRenameRequest: {
3373
3373
  name?: string;
3374
3374
  ownerTitle?: string | null;
3375
- ownerIcon?: ("crown" | "crown-cross" | "person" | "person-simple-circle" | "medal-military") | null;
3375
+ ownerIcon?: ("crown" | "crown-cross" | "person" | "medal-military" | "dog" | "cat") | null;
3376
3376
  };
3377
3377
  WorkspaceMembersResponse: {
3378
3378
  items: {
package/src/org/types.ts CHANGED
@@ -87,8 +87,9 @@ export interface WorkspaceOverview {
87
87
  | "crown"
88
88
  | "crown-cross"
89
89
  | "person"
90
- | "person-simple-circle"
91
- | "medal-military";
90
+ | "medal-military"
91
+ | "dog"
92
+ | "cat";
92
93
  createdAt: string;
93
94
  memberCount: number;
94
95
  claimable: boolean;