File tree Expand file tree Collapse file tree 6 files changed +11
-161
lines changed
Expand file tree Collapse file tree 6 files changed +11
-161
lines changed Original file line number Diff line number Diff line change 1- export * as schemas from './schemas ' ;
1+ import { schemas as coreSchemas , type JSONSchema } from '@walkeros/core/dev ' ;
22
3- export {
4- settings ,
5- browserConfig ,
6- dataLayerConfig ,
7- collectorConfig ,
8- } from './schemas' ;
3+ export const schemas : { settings : JSONSchema } = {
4+ settings : coreSchemas . FlowSchemas . configJsonSchema ,
5+ } ;
Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ import { dataLayerDestination } from './destination';
1515// Re-export types
1616export * as Walkerjs from './types' ;
1717
18- // Export schemas
19- export * as schemas from './schemas' ;
20-
2118export { getAllEvents , getEvents , getGlobals } ;
2219
2320// Factory function to create walker.js instance
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- export * as schemas from './schemas' ;
1+ import { schemas as coreSchemas , type JSONSchema } from '@walkeros/core/dev' ;
2+
3+ export const schemas : { settings : JSONSchema } = {
4+ settings : coreSchemas . CollectorSchemas . initConfigJsonSchema ,
5+ } ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ package: '@walkeros/collector'
66sidebar_position : 2
77---
88
9- import { schemas } from ' @walkeros/collector /dev' ;
9+ import { schemas } from ' @walkeros/core /dev' ;
1010
11- export const collectorSchema = schemas .settings ;
11+ export const collectorSchema = schemas .CollectorSchemas . initConfigJsonSchema ;
1212
1313# Collector
1414
You can’t perform that action at this time.
0 commit comments