@chatbi-v/core 1.0.2
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/README.md +36 -0
- package/dist/adapters/local-storage-adapter.d.ts +13 -0
- package/dist/adapters/scoped-storage-adapter.d.ts +18 -0
- package/dist/api/adapters/axios-adapter.d.ts +10 -0
- package/dist/api/engine.d.ts +41 -0
- package/dist/api/index.d.ts +6 -0
- package/dist/api/utils.d.ts +14 -0
- package/dist/api-context.d.ts +8 -0
- package/dist/application/service-registry.d.ts +34 -0
- package/dist/components/PluginErrorBoundary.d.ts +22 -0
- package/dist/components/PluginSlot.d.ts +22 -0
- package/dist/components/SlotSkeletons.d.ts +10 -0
- package/dist/config-manager.d.ts +30 -0
- package/dist/domain/auto-loader.d.ts +37 -0
- package/dist/domain/models.d.ts +9 -0
- package/dist/domain/plugin-manager.d.ts +143 -0
- package/dist/domain/plugin-runtime.d.ts +34 -0
- package/dist/domain/plugin-sandbox.d.ts +27 -0
- package/dist/domain/storage-manager.d.ts +46 -0
- package/dist/event-bus.d.ts +38 -0
- package/dist/hooks/use-plugin-loader.d.ts +20 -0
- package/dist/hooks/use-storage-state.d.ts +15 -0
- package/dist/index.cjs +2265 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.mjs +2210 -0
- package/dist/plugin-context.d.ts +8 -0
- package/dist/ports/api-port.d.ts +71 -0
- package/dist/ports/event-bus-port.d.ts +30 -0
- package/dist/ports/plugin-port.d.ts +192 -0
- package/dist/ports/storage-port.d.ts +19 -0
- package/dist/sandbox/proxy-sandbox.d.ts +45 -0
- package/dist/sandbox/style-isolation.d.ts +13 -0
- package/dist/testing/plugin-contract.d.ts +6 -0
- package/dist/utils/date.d.ts +32 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/logger.d.ts +69 -0
- package/dist/utils/stream-parser.d.ts +26 -0
- package/package.json +39 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from './ports/api-port';
|
|
2
|
+
export * from './ports/event-bus-port';
|
|
3
|
+
export * from './ports/plugin-port';
|
|
4
|
+
export * from './ports/storage-port';
|
|
5
|
+
export * from './application/service-registry';
|
|
6
|
+
export * from './api-context';
|
|
7
|
+
export * from './config-manager';
|
|
8
|
+
export * from './components/PluginErrorBoundary';
|
|
9
|
+
export * from './components/PluginSlot';
|
|
10
|
+
export * from './components/SlotSkeletons';
|
|
11
|
+
export * from './domain/auto-loader';
|
|
12
|
+
export * from './domain/plugin-manager';
|
|
13
|
+
export * from './domain/plugin-runtime';
|
|
14
|
+
export * from './domain/plugin-sandbox';
|
|
15
|
+
export * from './domain/storage-manager';
|
|
16
|
+
export * from './domain/models';
|
|
17
|
+
export * from './adapters/local-storage-adapter';
|
|
18
|
+
export * from './adapters/scoped-storage-adapter';
|
|
19
|
+
export * from './event-bus';
|
|
20
|
+
export * from './plugin-context';
|
|
21
|
+
export * from './api';
|
|
22
|
+
export * from './utils';
|
|
23
|
+
export * from './hooks/use-storage-state';
|
|
24
|
+
export * from './hooks/use-plugin-loader';
|