robobyte-front-builder 1.0.23 → 1.0.24

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/lib/index.js +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robobyte-front-builder",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "RoboByte low-code UI builder, Report builder, and navigation extension system",
5
5
  "main": "src/lib/index.js",
6
6
  "files": [
package/src/lib/index.js CHANGED
@@ -98,3 +98,11 @@ export { SystemContext, SystemProvider } from '../context/SystemContext'
98
98
  // RoboByteFrontBuilderProvider's user / accessToken props.
99
99
  // There is no AuthProvider in this package; use your own host auth provider.
100
100
  export { AuthContext } from '../context/AuthContext'
101
+
102
+ // ── Helpers ──────────────────────────────────────────────────────────────────
103
+ // fetchReportDataByPageId: pure data fetcher by report `pageId`, no AG Grid
104
+ // dependency. Host code can either import from this package surface (the
105
+ // recommended path) or via the bare alias 'services/reportData/fetchReportData'
106
+ // — both resolve to the same module thanks to the NormalModuleReplacementPlugin
107
+ // in next.config.js, so the in-memory builderModelCache is shared.
108
+ export { default as fetchReportDataByPageId } from '../services/reportData/fetchReportData'