Select the types of activity you want to include in your feed.
Add organizationId to sandbox provider prefs
Persist Daytona organizationId in daytona_auth, lexicon, and types. Include the field in get/put preferences handlers. Collect and validate it in the web settings form.
···318318 "redactedApiKey": {
319319 "type": "string",
320320 "description": "The redacted API key for the sandbox provider, returned in API responses."
321321+ },
322322+ "organizationId": {
323323+ "type": "string",
324324+ "description": "The ID of the organization in the sandbox provider, if applicable. This can be used to associate the sandbox with a specific organization or team within the provider's platform."
321325 }
322326 }
323327 },
+5
apps/api/pkl/defs/sandbox/defs.pkl
···320320 type = "string"
321321 description = "The redacted API key for the sandbox provider, returned in API responses."
322322 }
323323+ ["organizationId"] = new StringType {
324324+ type = "string"
325325+ description =
326326+ "The ID of the organization in the sandbox provider, if applicable. This can be used to associate the sandbox with a specific organization or team within the provider's platform."
327327+ }
323328 }
324329 }
325330 ["preferences"] = new Array {
+5
apps/api/src/lexicon/lexicons.ts
···942942 description:
943943 "The redacted API key for the sandbox provider, returned in API responses.",
944944 },
945945+ organizationId: {
946946+ type: "string",
947947+ description:
948948+ "The ID of the organization in the sandbox provider, if applicable. This can be used to associate the sandbox with a specific organization or team within the provider's platform.",
949949+ },
945950 },
946951 },
947952 preferences: {
···223223 apiKey?: string;
224224 /** The redacted API key for the sandbox provider, returned in API responses. */
225225 redactedApiKey?: string;
226226+ /** The ID of the organization in the sandbox provider, if applicable. This can be used to associate the sandbox with a specific organization or team within the provider's platform. */
227227+ organizationId?: string;
226228 [k: string]: unknown;
227229}
228230