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.
- package/package.json +1 -1
- package/src/lib/index.js +8 -0
package/package.json
CHANGED
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'
|