@soton.ac.uk/cape3 0.15.0 → 0.17.0
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/dist/cape3.es.js +17147 -4046
- package/dist/cape3.umd.js +33 -21
- package/dist/index.d.ts +5 -1
- package/dist/plugins/ApplicationInsightsLoggingOptions.d.ts +5 -0
- package/dist/plugins/ApplicationInsightsLoggingPlugin.d.ts +4 -0
- package/dist/plugins/ConsoleLoggingOptions.d.ts +4 -0
- package/dist/plugins/ConsoleLoggingPlugin.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export { default as createCapeApp } from './createCapeApp';
|
|
2
2
|
export { default as CapePlugin } from './plugins/CapePlugin';
|
|
3
3
|
export { type CapeOptions } from './plugins/CapeOptions';
|
|
4
|
+
export { default as ConsoleLoggingPlugin } from './plugins/ConsoleLoggingPlugin';
|
|
5
|
+
export { type ConsoleLoggingOptions } from './plugins/ConsoleLoggingOptions';
|
|
6
|
+
export { default as ApplicationInsightsLoggingPlugin } from './plugins/ApplicationInsightsLoggingPlugin';
|
|
7
|
+
export { type ApplicationInsightsLoggingOptions } from './plugins/ApplicationInsightsLoggingOptions';
|
|
4
8
|
export { useFilterStore } from './stores/filterStore';
|
|
5
9
|
export { useDatasetStore } from './stores/datasetStore';
|
|
6
10
|
export { useFieldStore } from './stores/fieldStore';
|
|
@@ -24,4 +28,4 @@ export { type CapeRecord } from './model/unprocessed/CapeRecord';
|
|
|
24
28
|
export { type CapeTextField } from './model/unprocessed/CapeTextField';
|
|
25
29
|
export { CapeLogger } from './logging/CapeLogger';
|
|
26
30
|
export { type Logger } from './logging/Logger';
|
|
27
|
-
export {
|
|
31
|
+
export { LoggingLevel } from './logging/loggingLevel';
|