@wecode-team/cms-supabase-api 0.1.44 → 0.1.45-beta.0
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/handlers/configs.d.ts +23 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +602 -867
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +604 -866
- package/dist/index.js.map +1 -1
- package/dist/utils/route-helpers.d.ts +1 -0
- package/package.json +2 -1
|
@@ -5,4 +5,5 @@ export declare function createDynamicDataRoute(app: Hono): Hono<import("hono/typ
|
|
|
5
5
|
export declare function createDynamicAuthRoute(app: Hono): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
|
|
6
6
|
export declare function createAuthRoute(app: Hono, tableName: string): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
|
|
7
7
|
export declare function createOssUploadRoute(app: Hono): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
|
|
8
|
+
export declare function createConfigRoute(app: Hono): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
|
|
8
9
|
export declare function createCmsRoutes(app: Hono): Hono<import("hono/types").BlankEnv, import("hono/types").BlankSchema, "/">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wecode-team/cms-supabase-api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45-beta.0",
|
|
4
4
|
"description": "A CMS API package using Hono framework with Supabase and dynamic table management",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"dev": "tsx server.ts",
|
|
25
25
|
"start": "node --loader tsx server.ts",
|
|
26
26
|
"dev:all": "./start-dev.sh",
|
|
27
|
+
"publish:beta": "npm run build && npm publish --registry https://registry.npmjs.org/ --access public --tag beta --ignore-scripts",
|
|
27
28
|
"publish:public": "npm run build && npm publish --registry https://registry.npmjs.org/ --access public --ignore-scripts",
|
|
28
29
|
"publish:private": "npm run build && npm publish --registry https://packages.aliyun.com/691ae90ae6c3e0425dbdc56f/npm/npm-registry/ --access public --ignore-scripts",
|
|
29
30
|
"publish:all": "npm run build && npm publish --registry https://registry.npmjs.org/ --access public --ignore-scripts && npm publish --registry https://packages.aliyun.com/691ae90ae6c3e0425dbdc56f/npm/npm-registry/ --access public --ignore-scripts",
|