@company-semantics/contracts 27.9.0 → 27.10.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,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 = '3959df952d48' as const;
|
|
3
|
+
export const SPEC_HASH_FULL = '3959df952d4880e34660edefd2cf9cab597ed8ac54ce74bc60bcb16dc6c18652' as const;
|
package/src/api/generated.ts
CHANGED
|
@@ -3942,6 +3942,7 @@ export interface components {
|
|
|
3942
3942
|
title: string;
|
|
3943
3943
|
})[];
|
|
3944
3944
|
reason: string | null;
|
|
3945
|
+
/** Format: uuid */
|
|
3945
3946
|
idempotencyKey: string;
|
|
3946
3947
|
};
|
|
3947
3948
|
SubmitInteractiveTaskResponse: {
|
|
@@ -5589,6 +5590,8 @@ export interface components {
|
|
|
5589
5590
|
VisibilityPatchRequest: {
|
|
5590
5591
|
/** @enum {string} */
|
|
5591
5592
|
tier: "private" | "unit" | "org";
|
|
5593
|
+
/** @enum {string} */
|
|
5594
|
+
role?: "editor" | "commenter" | "viewer";
|
|
5592
5595
|
};
|
|
5593
5596
|
OwnerTransferRequest: {
|
|
5594
5597
|
/** Format: uuid */
|
|
@@ -66,7 +66,7 @@ export const AclListResponseSchema = z.object({
|
|
|
66
66
|
visibility: EntityVisibilitySchema,
|
|
67
67
|
/**
|
|
68
68
|
* The ROLE the general-access scope grants its audience: WHAT they may do (the
|
|
69
|
-
* capability axis, ADR-BE-
|
|
69
|
+
* capability axis, ADR-BE-378). Orthogonal to `visibility` — e.g. "Everyone in
|
|
70
70
|
* Product · Commenter". Defaults to `viewer` (the historical view-only band);
|
|
71
71
|
* ignored when `visibility` is `private` (no general grant).
|
|
72
72
|
*/
|
|
@@ -80,7 +80,7 @@ export const VisibilityPatchRequestSchema = z.object({
|
|
|
80
80
|
/** The general-access scope (WHO is eligible). */
|
|
81
81
|
tier: EntityVisibilitySchema,
|
|
82
82
|
/**
|
|
83
|
-
* The role granted to that scope (WHAT they may do, ADR-BE-
|
|
83
|
+
* The role granted to that scope (WHAT they may do, ADR-BE-378). Optional and
|
|
84
84
|
* backward-compatible: omitted preserves the current role (or `viewer` on first
|
|
85
85
|
* set); ignored when `tier` is `private`.
|
|
86
86
|
*/
|