@oneclick.dev/cms-core-modules 0.0.73 → 0.0.74

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": "@oneclick.dev/cms-core-modules",
3
- "version": "0.0.73",
3
+ "version": "0.0.74",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -15,6 +15,7 @@
15
15
  },
16
16
  "files": [
17
17
  "dist",
18
+ "src/server-handlers.ts",
18
19
  "src/*/tools.ts",
19
20
  "src/*/server.ts"
20
21
  ],
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Server handler barrel — re-exports every module's server factory.
3
+ *
4
+ * When you add a `server.ts` to a module, just add one export line here.
5
+ * The CMS will auto-discover and register it.
6
+ */
7
+ export { createServerHandler as products } from './products/server'
8
+ export { createServerHandler as appointments } from './appointments/server'
9
+ export { createServerHandler as googleAnalytics } from './googleAnalytics/server'
10
+ // export { createServerHandler as table } from './table/server'