@seedtactics/insight-client 16.8.4-beta.8 → 16.8.4-beta.9

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Supported composition API for applications that embed FMS Insight with custom pages and
3
+ * authenticated endpoints.
4
+ */
5
+ export { bootstrapInsight } from "./bootstrap.js";
6
+ export { customState } from "./cell-status/custom-state.js";
7
+ export type { AppProps } from "./components/App.js";
8
+ export { defaultChooseModes } from "./components/ChooseMode.js";
9
+ export type { ChooseModeItem } from "./components/ChooseMode.js";
10
+ export { RouteLocation } from "./components/routes.js";
11
+ export { authenticatedFetch } from "./network/backend.js";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Supported composition API for applications that embed FMS Insight with custom pages and
3
+ * authenticated endpoints.
4
+ */
5
+ export { bootstrapInsight } from "./bootstrap.js";
6
+ export { customState } from "./cell-status/custom-state.js";
7
+ export { defaultChooseModes } from "./components/ChooseMode.js";
8
+ export { RouteLocation } from "./components/routes.js";
9
+ export { authenticatedFetch } from "./network/backend.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seedtactics/insight-client",
3
- "version": "16.8.4-beta.8",
3
+ "version": "16.8.4-beta.9",
4
4
  "license": "BSD-3-Clause",
5
5
  "repository": {
6
6
  "url": "https://github.com/SeedTactics/fms-insight"
@@ -12,6 +12,7 @@
12
12
  "type": "module",
13
13
  "exports": {
14
14
  "./bootstrap": "./dist/bootstrap.js",
15
+ "./extension": "./dist/extension.js",
15
16
  "./cell-status/*": "./dist/cell-status/*.js",
16
17
  "./components/*": "./dist/components/*.js",
17
18
  "./components/analysis/*": "./dist/components/analysis/*.js",