mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
feat(dbal_demo): add DBAL Integration Demo package with TypeScript client and components
This commit is contained in:
@@ -154,6 +154,27 @@
|
||||
},
|
||||
"minLevel": 2
|
||||
},
|
||||
{
|
||||
"packageId": "dbal_demo",
|
||||
"name": "DBAL Demo",
|
||||
"version": "1.0.0",
|
||||
"description": "DBAL Integration Demo - Demonstrates TypeScript DBAL client with MetaBuilder including KV store, blob storage, and caching.",
|
||||
"icon": "🗄️",
|
||||
"author": "MetaBuilder Team",
|
||||
"category": "demo",
|
||||
"dependencies": [],
|
||||
"exports": {
|
||||
"components": ["DBALDemo", "KVStorePanel", "BlobStoragePanel", "CachedDataPanel"],
|
||||
"luaScripts": ["init", "kv_operations", "blob_operations", "cache_operations", "connection"]
|
||||
},
|
||||
"tags": ["dbal", "demo", "kv-store", "blob-storage", "cache"],
|
||||
"minLevel": 3,
|
||||
"bindings": {
|
||||
"dbal": true,
|
||||
"browser": false
|
||||
},
|
||||
"requiredHooks": ["dbal", "kv_store", "blob_storage", "cached_data"]
|
||||
},
|
||||
{
|
||||
"packageId": "irc_webchat",
|
||||
"name": "IRC Webchat",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* TypeScript utilities for running Lua tests from packages
|
||||
*/
|
||||
|
||||
import type { JsonValue } from '@/types/utility-types'
|
||||
type JsonValue = string | number | boolean | null | JsonValue[] | { [key: string]: JsonValue }
|
||||
|
||||
export interface LuaTestResult {
|
||||
name: string
|
||||
|
||||
Reference in New Issue
Block a user