@company-semantics/contracts 22.2.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.2.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 = '151972b62216' as const;
3
- export const SPEC_HASH_FULL = '151972b622165a687006fbe1047eb84210072a2c2be50fd1c7651312e5266e1f' 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: {
@@ -3732,6 +3732,16 @@ export interface components {
3732
3732
  memberId: string;
3733
3733
  newManagerUserId: string | null;
3734
3734
  chatId: string;
3735
+ } | {
3736
+ /** Format: uuid */
3737
+ taskId: string;
3738
+ /** @constant */
3739
+ taskKind: "companyMd.importContextDoc";
3740
+ /** Format: uuid */
3741
+ destinationDocId: string;
3742
+ title: string;
3743
+ rawText: string;
3744
+ chatId: string;
3735
3745
  };
3736
3746
  RoleCatalogResponse: {
3737
3747
  roles: {
@@ -4841,6 +4851,8 @@ export interface components {
4841
4851
  /** Format: uuid */
4842
4852
  id: string;
4843
4853
  name: string;
4854
+ /** @enum {string} */
4855
+ mutability: "derived" | "user_managed";
4844
4856
  }[];
4845
4857
  }[];
4846
4858
  edges: {
@@ -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;