@playcademy/sandbox 0.3.9 → 0.3.11

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playcademy/sandbox",
3
- "version": "0.3.9",
3
+ "version": "0.3.11",
4
4
  "description": "Local development server for Playcademy game development",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,19 +0,0 @@
1
- /**
2
- * Sandbox Secrets Provider
3
- *
4
- * In-memory secrets storage for local development. Secrets are not persisted
5
- * across restarts - this is intentional for sandbox simplicity.
6
- *
7
- * @module infrastructure/api/providers/secrets
8
- */
9
- import type { SecretsProvider } from '@playcademy/api-core/providers';
10
- /**
11
- * Create a sandbox secrets provider.
12
- *
13
- * Uses in-memory storage. Secrets are lost on restart.
14
- */
15
- export declare function createSandboxSecretsProvider(): SecretsProvider;
16
- /**
17
- * Clear all sandbox secrets (useful for testing).
18
- */
19
- export declare function clearSandboxSecrets(): void;