@squidcloud/backend 1.0.450 → 1.0.452
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.
|
@@ -12,3 +12,5 @@ export type MetricActionType = 'write' | 'all';
|
|
|
12
12
|
export type TenantModuleId = string;
|
|
13
13
|
/** Type for the user code module loaded by worker/local-backend code. */
|
|
14
14
|
export declare const USER_CODE_MODULE_ID: TenantModuleId;
|
|
15
|
+
/** Type for the Python user code module in hybrid (TS + Python) projects. */
|
|
16
|
+
export declare const USER_CODE_PYTHON_MODULE_ID: TenantModuleId;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/backend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.452",
|
|
4
4
|
"description": "Squid Cloud's backend SDK",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"prebuild": "del-cli dist",
|
|
10
10
|
"build": "webpack --mode=production && npm run keep-only-public-types",
|
|
11
|
+
"test": "vitest run",
|
|
11
12
|
"lint": "eslint",
|
|
12
13
|
"publish:public": "npm run build && npm publish --access public",
|
|
13
14
|
"build-and-check-public-types": "npm run build && npm run check-public-types",
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
"typedoc-plugin-markdown": "^4.8.1"
|
|
35
36
|
},
|
|
36
37
|
"peerDependencies": {
|
|
37
|
-
"@squidcloud/client": "^1.0.
|
|
38
|
+
"@squidcloud/client": "^1.0.452"
|
|
38
39
|
},
|
|
39
40
|
"engines": {
|
|
40
41
|
"node": ">=20.0.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|