···2525 "type": "integer",
2626 "description": "The number of sandboxes to skip before starting to collect the result set.",
2727 "minimum": 0
2828+ },
2929+ "isRunning": {
3030+ "type": "boolean",
3131+ "description": "Filter sandboxes by their running status."
2832 }
2933 }
3034 },
+4
apps/api/pkl/defs/actor/getActorSandboxes.pkl
···2424 description = "The number of sandboxes to skip before starting to collect the result set."
2525 minimum = 0
2626 }
2727+ ["isRunning"] = new BooleanType {
2828+ type = "boolean"
2929+ description = "Filter sandboxes by their running status."
3030+ }
2731 }
2832 }
2933 output {
+4
apps/api/src/lexicon/lexicons.ts
···7373 "The number of sandboxes to skip before starting to collect the result set.",
7474 minimum: 0,
7575 },
7676+ isRunning: {
7777+ type: "boolean",
7878+ description: "Filter sandboxes by their running status.",
7979+ },
7680 },
7781 },
7882 output: {
···1616 limit?: number;
1717 /** The number of sandboxes to skip before starting to collect the result set. */
1818 offset?: number;
1919+ /** Filter sandboxes by their running status. */
2020+ isRunning?: boolean;
1921}
20222123export type InputSchema = undefined;