@playcademy/sdk 0.1.5 → 0.1.6
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/dist/index.d.ts +2 -0
- package/dist/server.d.ts +2 -0
- package/dist/types.d.ts +2 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -3160,6 +3160,8 @@ interface IntegrationsConfig {
|
|
|
3160
3160
|
customRoutes?: CustomRoutesIntegration | boolean;
|
|
3161
3161
|
/** Database (optional) */
|
|
3162
3162
|
database?: DatabaseIntegration | boolean;
|
|
3163
|
+
/** Key-Value storage (optional) */
|
|
3164
|
+
kv?: boolean;
|
|
3163
3165
|
}
|
|
3164
3166
|
/**
|
|
3165
3167
|
* Unified Playcademy configuration
|
package/dist/server.d.ts
CHANGED
|
@@ -50,6 +50,8 @@ interface IntegrationsConfig {
|
|
|
50
50
|
customRoutes?: CustomRoutesIntegration | boolean;
|
|
51
51
|
/** Database (optional) */
|
|
52
52
|
database?: DatabaseIntegration | boolean;
|
|
53
|
+
/** Key-Value storage (optional) */
|
|
54
|
+
kv?: boolean;
|
|
53
55
|
}
|
|
54
56
|
/**
|
|
55
57
|
* Unified Playcademy configuration
|
package/dist/types.d.ts
CHANGED
|
@@ -3929,6 +3929,8 @@ interface IntegrationsConfig {
|
|
|
3929
3929
|
customRoutes?: CustomRoutesIntegration | boolean;
|
|
3930
3930
|
/** Database (optional) */
|
|
3931
3931
|
database?: DatabaseIntegration | boolean;
|
|
3932
|
+
/** Key-Value storage (optional) */
|
|
3933
|
+
kv?: boolean;
|
|
3932
3934
|
}
|
|
3933
3935
|
/**
|
|
3934
3936
|
* Unified Playcademy configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@playcademy/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@playcademy/constants": "0.0.1",
|
|
38
38
|
"@playcademy/data": "0.0.1",
|
|
39
39
|
"@playcademy/logger": "0.0.1",
|
|
40
|
-
"@playcademy/sandbox": "0.1.
|
|
40
|
+
"@playcademy/sandbox": "0.1.1",
|
|
41
41
|
"@playcademy/test": "0.0.1",
|
|
42
42
|
"@playcademy/timeback": "0.0.1",
|
|
43
43
|
"@playcademy/utils": "0.0.1",
|
|
44
44
|
"@types/bun": "latest",
|
|
45
|
-
"playcademy": "0.
|
|
45
|
+
"playcademy": "0.12.9",
|
|
46
46
|
"rollup": "^4.50.2",
|
|
47
47
|
"rollup-plugin-dts": "^6.2.3",
|
|
48
48
|
"typescript": "^5.7.2",
|