|
1 | 1 | import { z } from 'zod'; |
2 | 2 |
|
3 | | -import { ManifestSchema } from './manifest.zod'; |
4 | | -import { DatasourceSchema } from './datasource.zod'; |
5 | | -import { TranslationBundleSchema } from './translation.zod'; |
| 3 | +import { ManifestSchema } from './system/manifest.zod'; |
| 4 | +import { DatasourceSchema } from './system/datasource.zod'; |
| 5 | +import { TranslationBundleSchema } from './system/translation.zod'; |
6 | 6 |
|
7 | 7 | // Data Protocol |
8 | | -import { ObjectSchema } from '../data/object.zod'; |
| 8 | +import { ObjectSchema } from './data/object.zod'; |
9 | 9 |
|
10 | 10 | // UI Protocol |
11 | | -import { AppSchema } from '../ui/app.zod'; |
12 | | -import { ViewSchema } from '../ui/view.zod'; |
13 | | -import { PageSchema } from '../ui/page.zod'; |
14 | | -import { DashboardSchema } from '../ui/dashboard.zod'; |
15 | | -import { ReportSchema } from '../ui/report.zod'; |
16 | | -import { ActionSchema } from '../ui/action.zod'; |
17 | | -import { ThemeSchema } from '../ui/theme.zod'; |
| 11 | +import { AppSchema } from './ui/app.zod'; |
| 12 | +import { ViewSchema } from './ui/view.zod'; |
| 13 | +import { PageSchema } from './ui/page.zod'; |
| 14 | +import { DashboardSchema } from './ui/dashboard.zod'; |
| 15 | +import { ReportSchema } from './ui/report.zod'; |
| 16 | +import { ActionSchema } from './ui/action.zod'; |
| 17 | +import { ThemeSchema } from './ui/theme.zod'; |
18 | 18 |
|
19 | 19 | // Automation Protocol |
20 | | -import { ApprovalProcessSchema } from '../automation/approval.zod'; |
21 | | -import { WorkflowSchema } from '../automation/workflow.zod'; |
22 | | -import { FlowSchema } from '../automation/flow.zod'; |
| 20 | +import { ApprovalProcessSchema } from './automation/approval.zod'; |
| 21 | +import { WorkflowSchema } from './automation/workflow.zod'; |
| 22 | +import { FlowSchema } from './automation/flow.zod'; |
23 | 23 |
|
24 | 24 | // Security Protocol |
25 | | -import { RoleSchema } from '../auth/role.zod'; |
26 | | -import { PermissionSetSchema } from '../permission/permission.zod'; |
| 25 | +import { RoleSchema } from './auth/role.zod'; |
| 26 | +import { PermissionSetSchema } from './permission/permission.zod'; |
27 | 27 |
|
28 | 28 | // AI Protocol |
29 | | -import { AgentSchema } from '../ai/agent.zod'; |
| 29 | +import { AgentSchema } from './ai/agent.zod'; |
30 | 30 |
|
31 | 31 | /** |
32 | 32 | * ObjectStack Ecosystem Definition |
|
0 commit comments