@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 +1 -1
- package/src/api/generated-spec-hash.ts +2 -2
- package/src/api/generated.ts +14 -2
- package/src/org/schemas.ts +1 -1
- package/src/org/types.ts +1 -1
package/package.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTO-GENERATED — do not edit. Run pnpm generate:spec-hash to regenerate.
|
|
2
|
-
export const SPEC_HASH = '
|
|
3
|
-
export const SPEC_HASH_FULL = '
|
|
2
|
+
export const SPEC_HASH = '0294f47290c0' as const;
|
|
3
|
+
export const SPEC_HASH_FULL = '0294f47290c059e23186e9b25f6e0a476e304947f9ead66491ef4c29118e0609' as const;
|
package/src/api/generated.ts
CHANGED
|
@@ -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" | "
|
|
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" | "
|
|
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: {
|
package/src/org/schemas.ts
CHANGED