2022-11-15 11:02:26 +01:00
|
|
|
export * from './features/blocks'
|
|
|
|
export * from './features/typebot'
|
|
|
|
export * from './features/publicTypebot'
|
|
|
|
export * from './features/result'
|
|
|
|
export * from './features/answer'
|
|
|
|
export * from './features/utils'
|
|
|
|
export * from './features/credentials'
|
2023-08-24 07:48:30 +02:00
|
|
|
export * from './features/chat/schema'
|
|
|
|
export * from './features/chat/sessionState'
|
2023-12-22 09:13:53 +01:00
|
|
|
export * from './features/chat/clientSideAction'
|
2023-08-24 07:48:30 +02:00
|
|
|
export * from './features/chat/shared'
|
2022-11-30 13:57:28 +01:00
|
|
|
export * from './features/workspace'
|
2023-01-25 11:27:47 +01:00
|
|
|
export * from './features/items'
|
2023-11-08 15:34:16 +01:00
|
|
|
export * from './features/analytics'
|
|
|
|
export * from './features/events'
|
2024-01-24 10:15:40 +01:00
|
|
|
export * from './features/user/schema'
|
:technologist: (folders) Add folder trpc endpoints (#1218)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **New Features**
- Introduced folder management capabilities including creation,
deletion, update, listing, and retrieval within workspaces.
- Added telemetry tracking for client events, Typebot publish events,
and analytics page views.
- Enhanced settings to track client events under specific conditions.
- Implemented server-side logic for analytics tracking with PostHog
integration.
- Added API documentation for folder operations (create, delete, get,
list, update).
- **Refactor**
- Updated `onConfirm` function's return type in `ConfirmModal`.
- Simplified folder creation process in tests.
- Refactored logic for handling file upload blocks and parsing publish
events in Typebot publishing.
- Migrated handler functions to TRPC endpoints for folder operations.
- **Documentation**
- Introduced documentation for new folder and telemetry functionalities.
- **Chores**
- Added new schemas for folders and telemetry events, including event
tracking and folder structure.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2024-02-05 12:14:03 +01:00
|
|
|
export * from './features/folder'
|
|
|
|
export * from './features/telemetry'
|