···8282 "keepAlive": {
8383 "type": "boolean",
8484 "description": "Prevent the sandbox from being automatically stop after a period of inactivity. Use with caution, as this may lead to increased costs."
8585+ },
8686+ "spriteToken": {
8787+ "type": "string",
8888+ "description": "A token (encrypted) for accessing sprite resources"
8989+ },
9090+ "redactedSpriteToken": {
9191+ "type": "string",
9292+ "description": "A redacted token for accessing sprite resources"
8593 }
8694 }
8795 }
+8
apps/api/pkl/defs/sandbox/createSandbox.pkl
···8080 description =
8181 "Prevent the sandbox from being automatically stop after a period of inactivity. Use with caution, as this may lead to increased costs."
8282 }
8383+ ["spriteToken"] = new StringType {
8484+ type = "string"
8585+ description = "A token (encrypted) for accessing sprite resources"
8686+ }
8787+ ["redactedSpriteToken"] = new StringType {
8888+ type = "string"
8989+ description = "A redacted token for accessing sprite resources"
9090+ }
8391 }
8492 }
8593 }
+9
apps/api/src/lexicon/lexicons.ts
···586586 description:
587587 "Prevent the sandbox from being automatically stop after a period of inactivity. Use with caution, as this may lead to increased costs.",
588588 },
589589+ spriteToken: {
590590+ type: "string",
591591+ description:
592592+ "A token (encrypted) for accessing sprite resources",
593593+ },
594594+ redactedSpriteToken: {
595595+ type: "string",
596596+ description: "A redacted token for accessing sprite resources",
597597+ },
589598 },
590599 },
591600 },
···3636 envs?: IoPocketenvSandboxDefs.Envs;
3737 /** Prevent the sandbox from being automatically stop after a period of inactivity. Use with caution, as this may lead to increased costs. */
3838 keepAlive?: boolean;
3939+ /** A token (encrypted) for accessing sprite resources */
4040+ spriteToken?: string;
4141+ /** A redacted token for accessing sprite resources */
4242+ redactedSpriteToken?: string;
3943 [k: string]: unknown;
4044}
4145