libSQL - premium only

This commit is contained in:
Jan Prochazka
2025-03-14 15:26:28 +01:00
parent 781c426b2f
commit bacdeb20eb
2 changed files with 2 additions and 0 deletions

View File

@@ -192,6 +192,7 @@ export interface EngineDriver<TClient = any> extends FilterBehaviourProvider {
// isElectronOnly?: boolean; // isElectronOnly?: boolean;
supportsTransactions?: boolean; supportsTransactions?: boolean;
implicitTransactions?: boolean; // transaction is started with first SQL command, no BEGIN TRANSACTION is needed implicitTransactions?: boolean; // transaction is started with first SQL command, no BEGIN TRANSACTION is needed
premiumOnly?: boolean;
collectionSingularLabel?: string; collectionSingularLabel?: string;
collectionPluralLabel?: string; collectionPluralLabel?: string;

View File

@@ -83,6 +83,7 @@ const libsqlDriver = {
title: 'LibSQL', title: 'LibSQL',
authTypeLabel: 'Target type', authTypeLabel: 'Target type',
authTypeFirst: true, authTypeFirst: true,
premiumOnly: true,
showConnectionField: (field, values) => { showConnectionField: (field, values) => {
if ((values?.authType ?? 'url') === 'url') { if ((values?.authType ?? 'url') === 'url') {