the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove empty input schemas from delete endpoints

+10 -146
-7
apps/api/lexicons/file/deleteFile.json
··· 15 15 "description": "The ID of the file to delete" 16 16 } 17 17 } 18 - }, 19 - "input": { 20 - "encoding": "application/json", 21 - "schema": { 22 - "type": "object", 23 - "properties": {} 24 - } 25 18 } 26 19 } 27 20 }
-7
apps/api/lexicons/sandbox/deleteSandbox.json
··· 17 17 } 18 18 } 19 19 }, 20 - "input": { 21 - "encoding": "application/json", 22 - "schema": { 23 - "type": "object", 24 - "properties": {} 25 - } 26 - }, 27 20 "output": { 28 21 "encoding": "application/json", 29 22 "schema": {
-7
apps/api/lexicons/secret/deleteSecret.json
··· 15 15 "description": "The ID of the secret to delete" 16 16 } 17 17 } 18 - }, 19 - "input": { 20 - "encoding": "application/json", 21 - "schema": { 22 - "type": "object", 23 - "properties": {} 24 - } 25 18 } 26 19 } 27 20 }
-7
apps/api/lexicons/variable/deleteVariable.json
··· 15 15 "description": "The ID of the environment variable to delete" 16 16 } 17 17 } 18 - }, 19 - "input": { 20 - "encoding": "application/json", 21 - "schema": { 22 - "type": "object", 23 - "properties": {} 24 - } 25 18 } 26 19 } 27 20 }
-7
apps/api/lexicons/volume/deleteVolume.json
··· 15 15 "description": "The ID of the volume to delete." 16 16 } 17 17 } 18 - }, 19 - "input": { 20 - "encoding": "application/json", 21 - "schema": { 22 - "type": "object", 23 - "properties": {} 24 - } 25 18 } 26 19 } 27 20 }
-7
apps/api/pkl/defs/file/deleteFile.pkl
··· 15 15 } 16 16 } 17 17 } 18 - input { 19 - encoding = "application/json" 20 - schema { 21 - type = "object" 22 - properties {} 23 - } 24 - } 25 18 } 26 19 }
-7
apps/api/pkl/defs/sandbox/deleteSandbox.pkl
··· 16 16 } 17 17 } 18 18 } 19 - input { 20 - encoding = "application/json" 21 - schema { 22 - type = "object" 23 - properties {} 24 - } 25 - } 26 19 output { 27 20 encoding = "application/json" 28 21 schema = new Ref {
-7
apps/api/pkl/defs/secret/deleteSecret.pkl
··· 15 15 } 16 16 } 17 17 } 18 - input { 19 - encoding = "application/json" 20 - schema { 21 - type = "object" 22 - properties {} 23 - } 24 - } 25 18 } 26 19 }
-7
apps/api/pkl/defs/variable/deleteVariable.pkl
··· 15 15 } 16 16 } 17 17 } 18 - input { 19 - encoding = "application/json" 20 - schema { 21 - type = "object" 22 - properties {} 23 - } 24 - } 25 18 } 26 19 }
-7
apps/api/pkl/defs/volume/deleteVolume.pkl
··· 15 15 } 16 16 } 17 17 } 18 - input { 19 - encoding = "application/json" 20 - schema { 21 - type = "object" 22 - properties {} 23 - } 24 - } 25 18 } 26 19 }
-35
apps/api/src/lexicon/lexicons.ts
··· 304 304 }, 305 305 }, 306 306 }, 307 - input: { 308 - encoding: "application/json", 309 - schema: { 310 - type: "object", 311 - properties: {}, 312 - }, 313 - }, 314 307 }, 315 308 }, 316 309 }, ··· 1018 1011 }, 1019 1012 }, 1020 1013 }, 1021 - input: { 1022 - encoding: "application/json", 1023 - schema: { 1024 - type: "object", 1025 - properties: {}, 1026 - }, 1027 - }, 1028 1014 output: { 1029 1015 encoding: "application/json", 1030 1016 schema: { ··· 1743 1729 }, 1744 1730 }, 1745 1731 }, 1746 - input: { 1747 - encoding: "application/json", 1748 - schema: { 1749 - type: "object", 1750 - properties: {}, 1751 - }, 1752 - }, 1753 1732 }, 1754 1733 }, 1755 1734 }, ··· 1957 1936 }, 1958 1937 }, 1959 1938 }, 1960 - input: { 1961 - encoding: "application/json", 1962 - schema: { 1963 - type: "object", 1964 - properties: {}, 1965 - }, 1966 - }, 1967 1939 }, 1968 1940 }, 1969 1941 }, ··· 2183 2155 type: "string", 2184 2156 description: "The ID of the volume to delete.", 2185 2157 }, 2186 - }, 2187 - }, 2188 - input: { 2189 - encoding: "application/json", 2190 - schema: { 2191 - type: "object", 2192 - properties: {}, 2193 2158 }, 2194 2159 }, 2195 2160 },
+2 -8
apps/api/src/lexicon/types/io/pocketenv/file/deleteFile.ts
··· 13 13 id: string; 14 14 } 15 15 16 - export interface InputSchema { 17 - [k: string]: unknown; 18 - } 19 - 20 - export interface HandlerInput { 21 - encoding: "application/json"; 22 - body: InputSchema; 23 - } 16 + export type InputSchema = undefined; 17 + export type HandlerInput = undefined; 24 18 25 19 export interface HandlerError { 26 20 status: number;
+2 -9
apps/api/src/lexicon/types/io/pocketenv/sandbox/deleteSandbox.ts
··· 14 14 id: string; 15 15 } 16 16 17 - export interface InputSchema { 18 - [k: string]: unknown; 19 - } 20 - 17 + export type InputSchema = undefined; 21 18 export type OutputSchema = IoPocketenvSandboxDefs.SandboxViewBasic; 22 - 23 - export interface HandlerInput { 24 - encoding: "application/json"; 25 - body: InputSchema; 26 - } 19 + export type HandlerInput = undefined; 27 20 28 21 export interface HandlerSuccess { 29 22 encoding: "application/json";
+2 -8
apps/api/src/lexicon/types/io/pocketenv/secret/deleteSecret.ts
··· 13 13 id: string; 14 14 } 15 15 16 - export interface InputSchema { 17 - [k: string]: unknown; 18 - } 19 - 20 - export interface HandlerInput { 21 - encoding: "application/json"; 22 - body: InputSchema; 23 - } 16 + export type InputSchema = undefined; 17 + export type HandlerInput = undefined; 24 18 25 19 export interface HandlerError { 26 20 status: number;
+2 -8
apps/api/src/lexicon/types/io/pocketenv/variable/deleteVariable.ts
··· 13 13 id: string; 14 14 } 15 15 16 - export interface InputSchema { 17 - [k: string]: unknown; 18 - } 19 - 20 - export interface HandlerInput { 21 - encoding: "application/json"; 22 - body: InputSchema; 23 - } 16 + export type InputSchema = undefined; 17 + export type HandlerInput = undefined; 24 18 25 19 export interface HandlerError { 26 20 status: number;
+2 -8
apps/api/src/lexicon/types/io/pocketenv/volume/deleteVolume.ts
··· 13 13 id: string; 14 14 } 15 15 16 - export interface InputSchema { 17 - [k: string]: unknown; 18 - } 19 - 20 - export interface HandlerInput { 21 - encoding: "application/json"; 22 - body: InputSchema; 23 - } 16 + export type InputSchema = undefined; 17 + export type HandlerInput = undefined; 24 18 25 19 export interface HandlerError { 26 20 status: number;