api-client/packages/hoppscotch-desktop/plugin-workspace/tauri-plugin-appload/guest-js/index.ts
Shreyas f234e66078
feat(desktop): portable phase-2 app loader infra (#5341)
This implements backend path management, backup system, cross-platform utilities, and refactors the `appload` plugin arch to support portable mode deployment.

The changes are mainly establishing foundational infra maintaining current frontend behavior until phase-3+ integration.
2025-08-26 20:48:31 +05:30

68 lines
1.5 KiB
TypeScript

import { invoke } from '@tauri-apps/api/core'
export interface DownloadOptions {
serverUrl: string
}
export interface DownloadResponse {
success: boolean
bundleName: string
serverUrl: string
version: string
}
export interface WindowOptions {
title?: string
width?: number
height?: number
resizable?: boolean
}
export interface LoadOptions {
bundleName: string
inline?: boolean
window?: WindowOptions
}
export interface LoadResponse {
success: boolean
windowLabel: string
}
export interface CloseOptions {
windowLabel: string
}
export interface CloseResponse {
success: boolean
}
export interface RemoveOptions {
bundleName: string
serverUrl: string
}
export interface RemoveResponse {
success: boolean
bundleName: string
}
export async function download(options: DownloadOptions): Promise<DownloadResponse> {
return await invoke<DownloadResponse>('plugin:appload|download', { options })
}
export async function load(options: LoadOptions): Promise<LoadResponse> {
return await invoke<LoadResponse>('plugin:appload|load', { options })
}
export async function close(options: CloseOptions): Promise<CloseResponse> {
return await invoke<CloseResponse>('plugin:appload|close', { options })
}
export async function remove(options: RemoveOptions): Promise<RemoveResponse> {
return await invoke<RemoveResponse>('plugin:appload|remove', { options })
}
export async function clear(): Promise<void> {
return await invoke('plugin:appload|clear')
}