|
69 | 69 | │ ├── workflow.zod.ts → State machine, transitions |
70 | 70 | │ ├── flow.zod.ts → Visual flow automation |
71 | 71 | │ ├── query.zod.ts → AST for queries (filter, sort, join) |
| 72 | +│ ├── filter.zod.ts → Query filter conditions |
72 | 73 | │ ├── dataset.zod.ts → Virtual datasets |
73 | 74 | │ ├── mapping.zod.ts → ETL transformations |
74 | | -│ └── trigger.zod.ts → [MISSING] Trigger context |
| 75 | +│ └── trigger.zod.ts → Trigger context |
75 | 76 | │ |
76 | 77 | ├── UI Protocol (ObjectUI) |
77 | 78 | │ ├── app.zod.ts → App structure, navigation tree |
|
80 | 81 | │ ├── report.zod.ts → Report types, grouping |
81 | 82 | │ ├── action.zod.ts → Button actions, navigation |
82 | 83 | │ ├── page.zod.ts → FlexiPage regions, components |
83 | | -│ ├── theme.zod.ts → [MISSING] Color, typography, spacing |
84 | | -│ └── widget.zod.ts → [MISSING] Custom field components |
| 84 | +│ ├── theme.zod.ts → Color, typography, spacing |
| 85 | +│ └── widget.zod.ts → Custom field components |
85 | 86 | │ |
86 | 87 | ├── System Protocol (ObjectOS) |
87 | 88 | │ ├── manifest.zod.ts → Package definition (objectstack.config.ts) |
|
95 | 96 | │ ├── webhook.zod.ts → HTTP callbacks |
96 | 97 | │ ├── translation.zod.ts → i18n definitions |
97 | 98 | │ ├── discovery.zod.ts → Metadata introspection |
98 | | -│ ├── plugin.zod.ts → [MISSING] Plugin lifecycle |
99 | | -│ ├── driver.zod.ts → [MISSING] Database driver interface |
100 | | -│ ├── marketplace.zod.ts → [PLANNED] App store metadata |
101 | | -│ ├── tenant.zod.ts → [PLANNED] Multi-tenancy |
102 | | -│ ├── events.zod.ts → [PLANNED] Event bus |
103 | | -│ └── realtime.zod.ts → [PLANNED] WebSocket sync |
| 99 | +│ ├── plugin.zod.ts → Plugin lifecycle |
| 100 | +│ ├── driver.zod.ts → Database driver interface |
| 101 | +│ ├── tenant.zod.ts → Multi-tenancy |
| 102 | +│ ├── events.zod.ts → Event bus |
| 103 | +│ ├── realtime.zod.ts → WebSocket sync |
| 104 | +│ ├── organization.zod.ts → Organization management |
| 105 | +│ ├── audit.zod.ts → Audit logging |
| 106 | +│ └── job.zod.ts → Background jobs |
104 | 107 | │ |
105 | 108 | ├── AI Protocol |
106 | | -│ ├── agent.zod.ts → AI agent configuration |
107 | | -│ ├── model.zod.ts → [PLANNED] LLM registry |
108 | | -│ ├── rag.zod.ts → [PLANNED] RAG pipeline |
109 | | -│ └── nlq.zod.ts → [PLANNED] Natural language query |
| 109 | +│ ├── agent.zod.ts → AI agent configuration |
| 110 | +│ ├── model-registry.zod.ts → LLM registry |
| 111 | +│ ├── rag-pipeline.zod.ts → RAG pipeline |
| 112 | +│ ├── nlq.zod.ts → Natural language query |
| 113 | +│ ├── conversation.zod.ts → Conversation management |
| 114 | +│ ├── cost.zod.ts → AI cost tracking |
| 115 | +│ ├── predictive.zod.ts → Predictive analytics |
| 116 | +│ └── workflow-automation.zod.ts → AI workflow automation |
110 | 117 | │ |
111 | 118 | └── API Protocol |
112 | 119 | └── contract.zod.ts → Request/response envelopes |
|
0 commit comments