feat(libsql): extend support for 'libsql' in swarm forms and related components

- Updated various swarm form components to include 'libsql' as a valid service type.
- Enhanced query and mutation handling for 'libsql' across multiple forms, ensuring comprehensive integration.
- Adjusted form schemas and data handling to accommodate 'libsql' service requirements, improving overall functionality.
This commit is contained in:
Mauricio Siu
2026-03-23 21:08:18 -06:00
parent d4bf6246c3
commit b8f069704c
15 changed files with 80 additions and 15 deletions

View File

@@ -169,7 +169,24 @@ export const findEnvironmentById = async (environmentId: string) => {
serverId: true,
},
},
libsql: true,
libsql: {
with: {
server: {
columns: {
name: true,
serverId: true,
},
},
},
columns: {
libsqlId: true,
name: true,
createdAt: true,
applicationStatus: true,
description: true,
serverId: true,
},
},
project: true,
},
});