@intentic/sandbox-contract 1.228.1 → 1.228.3

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.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/src/schemas.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentic/sandbox-contract",
3
- "version": "1.228.1",
3
+ "version": "1.228.3",
4
4
  "description": "oRPC wire contract for the intentic sandbox daemon, shared by the daemon and its browser client",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -89,16 +89,16 @@
89
89
  "@orpc/contract": "1.14.13",
90
90
  "tslib": "2.8.1",
91
91
  "zod": "4.4.3",
92
- "@intentic/constants": "1.228.1",
93
- "@intentic/extension-manifest": "1.228.1",
94
- "@intentic/registry": "1.228.1"
92
+ "@intentic/constants": "1.228.3",
93
+ "@intentic/extension-manifest": "1.228.3",
94
+ "@intentic/registry": "1.228.3"
95
95
  },
96
96
  "devDependencies": {
97
97
  "@types/node": "24.13.2",
98
98
  "@typescript/native-preview": "7.0.0-dev.20260707.2",
99
99
  "vitest": "4.1.10",
100
- "@intentic/tsconfig": "0.0.0",
101
- "@intentic/testing": "0.0.0"
100
+ "@intentic/testing": "0.0.0",
101
+ "@intentic/tsconfig": "0.0.0"
102
102
  },
103
103
  "scripts": {
104
104
  "build": "tsgo",
package/src/schemas.ts CHANGED
@@ -20,8 +20,8 @@ export const OkSchema = z.object({
20
20
 
21
21
  // The trust tiers of everyone who can open this sandbox, ordered. `owner` is the one bound identity
22
22
  // (auth/auth.ts); the other three are granted per email on the daemon's /members list. viewer watches,
23
- // collaborator drives agents (outward actions become requests), maintainer ships and operates. The daemon
24
- // enforces these as route floors (auth/role-floor.ts); the platform's invite records mirror them.
23
+ // collaborator drives agents (outward actions become requests), maintainer has the owner's operating authority
24
+ // while remaining revokable. Ownership itself is not a grant and controls the access roster.
25
25
  export const MemberRoleSchema = z.enum(["viewer", "collaborator", "maintainer", "owner"]);
26
26
  export type MemberRole = z.infer<typeof MemberRoleSchema>;
27
27
  // The roles an invite can grant, everything but `owner`, which is bound at first sign-in, never granted.