mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* feat: add drizzle orm * feat: update drizzle configuration and schema management - Added a check for DB_FILE_NAME in drizzle.config.ts to ensure it's set. - Updated package.json to change the package name to @kksh/drizzle and added exports for schema and relations. - Enhanced README.md with instructions for using the schema generation. - Refactored schema.ts for improved readability and organization of imports. * add tauri-plugin-sql * feat: add database select and execute commands - Introduced `select` and `execute` functions in the database module to facilitate querying and executing SQL commands. - Updated the Tauri plugin to expose these commands, allowing for database interactions from the frontend. - Added corresponding permissions for the new commands in the permissions configuration. - Enhanced the database library with JSON value handling for query parameters. * fix: sqlite select command * drizzle ORM verified working * refactor: clean up database module by removing unused SelectQueryResult type and disabling eslint for explicit any usage * pnpm lock update * Update enum definition for type safety - Changed enum to use 'as const' for better type inference - Ensured more robust handling of extension publish sources * reimplemented most db command functions with ORM (migrate from tauri command invoke * fixed searchExtensionData orm function * Refactor ORM commands and searchExtensionData function for improved readability and consistency - Reformatted import statements for better organization. - Cleaned up whitespace and indentation in searchExtensionData function. - Enhanced readability of SQL conditions and query building logic. - Disabled eslint for explicit any usage in the troubleshooters page. * Fix test assertions in database module to use array indexing for results format rust code * update deno lock * move drizzle from desktop to drizzle package * update pnpm version and lock * refactor: migrate db tauri commands to drizzle * refactor: remove unused extension and command CRUD operations from db module
105 lines
2.6 KiB
TOML
105 lines
2.6 KiB
TOML
"$schema" = "schemas/schema.json"
|
|
|
|
[[permission]]
|
|
identifier = "allow-all"
|
|
description = "This enables all permissions for Jarvis"
|
|
commands.allow = [
|
|
"open_devtools",
|
|
"close_devtools",
|
|
"is_devtools_open",
|
|
"toggle_devtools",
|
|
"app_is_dev",
|
|
"open_trash",
|
|
"empty_trash",
|
|
"shutdown",
|
|
"reboot",
|
|
"sleep",
|
|
"toggle_system_appearance",
|
|
"show_desktop",
|
|
"quit_all_apps",
|
|
"sleep_displays",
|
|
"set_volume",
|
|
"turn_volume_up",
|
|
"turn_volume_down",
|
|
"toggle_stage_manager",
|
|
"toggle_bluetooth",
|
|
"toggle_hidden_files",
|
|
"eject_all_disks",
|
|
"logout_user",
|
|
"toggle_mute",
|
|
"mute",
|
|
"unmute",
|
|
"hide_all_apps_except_frontmost",
|
|
"get_selected_files_in_file_explorer",
|
|
"run_apple_script",
|
|
"run_powershell",
|
|
"get_applications",
|
|
"refresh_applications_list",
|
|
"refresh_applications_list_in_bg",
|
|
# "load_manifest",
|
|
# "load_all_extensions",
|
|
"path_exists",
|
|
"start_server",
|
|
"get_server_port",
|
|
"stop_server",
|
|
"restart_server",
|
|
"set_dev_extension_folder",
|
|
"set_extension_folder",
|
|
"server_is_running",
|
|
# File System
|
|
"decompress_tarball",
|
|
"compress_tarball",
|
|
"copy_dir_all",
|
|
"unzip",
|
|
# File Search
|
|
"file_search",
|
|
# Path
|
|
"get_default_extensions_dir",
|
|
"get_default_extensions_storage_dir",
|
|
"is_window_label_registered",
|
|
"register_extension_window",
|
|
"unregister_extension_window",
|
|
"spawn_extension_file_server",
|
|
"register_extension_spawned_process",
|
|
"unregister_extension_spawned_process",
|
|
"get_ext_label_map",
|
|
"get_frontmost_app",
|
|
# Database
|
|
"select",
|
|
"execute",
|
|
"create_extension",
|
|
"get_all_extensions",
|
|
"get_unique_extension_by_identifier",
|
|
"get_unique_extension_by_path",
|
|
"get_all_extensions_by_identifier",
|
|
"delete_extension_by_path",
|
|
"delete_extension_by_ext_id",
|
|
"create_command",
|
|
"get_command_by_id",
|
|
"get_commands_by_ext_id",
|
|
"delete_command_by_id",
|
|
"update_command_by_id",
|
|
"create_extension_data",
|
|
"get_extension_data_by_id",
|
|
"search_extension_data",
|
|
"delete_extension_data_by_id",
|
|
"update_extension_data_by_id",
|
|
# Clipboard
|
|
"add_to_history",
|
|
"get_history",
|
|
# Utils
|
|
"plist_to_json",
|
|
"verify_auth",
|
|
"request_screen_capture_access",
|
|
"check_screen_capture_access",
|
|
"get_peers",
|
|
# File Transfer
|
|
"get_file_transfer_bucket_keys",
|
|
"get_file_transfer_bucket_by_key",
|
|
"local_net_send_file",
|
|
"download_files",
|
|
"file_transfer_preview_bucket",
|
|
# Windows
|
|
"set_transparent_titlebar",
|
|
]
|