@haex-space/vault-sdk 2.5.27 → 2.5.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{client-Bva_JMEm.d.mts → client-1LC_-rtY.d.mts} +1 -1
- package/dist/{client-BUp2_Bf1.d.ts → client-LNxaanOT.d.ts} +1 -1
- package/dist/index.d.mts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/dist/node.d.mts +1 -1
- package/dist/node.d.ts +1 -1
- package/dist/react.d.mts +2 -2
- package/dist/react.d.ts +2 -2
- package/dist/react.js +5 -0
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +5 -0
- package/dist/react.mjs.map +1 -1
- package/dist/runtime/nuxt.plugin.client.d.mts +2 -2
- package/dist/runtime/nuxt.plugin.client.d.ts +2 -2
- package/dist/runtime/nuxt.plugin.client.js +5 -0
- package/dist/runtime/nuxt.plugin.client.js.map +1 -1
- package/dist/runtime/nuxt.plugin.client.mjs +5 -0
- package/dist/runtime/nuxt.plugin.client.mjs.map +1 -1
- package/dist/svelte.d.mts +2 -2
- package/dist/svelte.d.ts +2 -2
- package/dist/svelte.js +5 -0
- package/dist/svelte.js.map +1 -1
- package/dist/svelte.mjs +5 -0
- package/dist/svelte.mjs.map +1 -1
- package/dist/{types-C4BTOGe5.d.mts → types-DiXJ5SF6.d.mts} +2 -0
- package/dist/{types-C4BTOGe5.d.ts → types-DiXJ5SF6.d.ts} +2 -0
- package/dist/vue.d.mts +4 -2
- package/dist/vue.d.ts +4 -2
- package/dist/vue.js +5 -0
- package/dist/vue.js.map +1 -1
- package/dist/vue.mjs +5 -0
- package/dist/vue.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -80,6 +80,8 @@ interface ApplicationContext {
|
|
|
80
80
|
theme: "light" | "dark" | "system";
|
|
81
81
|
locale: string;
|
|
82
82
|
platform: "linux" | "macos" | "ios" | "freebsd" | "dragonfly" | "netbsd" | "openbsd" | "solaris" | "android" | "windows" | undefined;
|
|
83
|
+
/** Unique device identifier (UUID) for multi-device sync */
|
|
84
|
+
deviceId: string | undefined;
|
|
83
85
|
}
|
|
84
86
|
interface SearchQuery {
|
|
85
87
|
query: string;
|
|
@@ -80,6 +80,8 @@ interface ApplicationContext {
|
|
|
80
80
|
theme: "light" | "dark" | "system";
|
|
81
81
|
locale: string;
|
|
82
82
|
platform: "linux" | "macos" | "ios" | "freebsd" | "dragonfly" | "netbsd" | "openbsd" | "solaris" | "android" | "windows" | undefined;
|
|
83
|
+
/** Unique device identifier (UUID) for multi-device sync */
|
|
84
|
+
deviceId: string | undefined;
|
|
83
85
|
}
|
|
84
86
|
interface SearchQuery {
|
|
85
87
|
query: string;
|
package/dist/vue.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { H as HaexVaultSdk, S as StorageAPI } from './client-
|
|
1
|
+
import { H as HaexVaultSdk, S as StorageAPI } from './client-1LC_-rtY.mjs';
|
|
2
2
|
import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
|
-
import { H as HaexHubConfig } from './types-
|
|
4
|
+
import { H as HaexHubConfig } from './types-DiXJ5SF6.mjs';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Vue 3 composable for HaexVault SDK
|
|
@@ -31,10 +31,12 @@ declare function useHaexVaultSdk(config?: HaexHubConfig): {
|
|
|
31
31
|
readonly theme: "light" | "dark" | "system";
|
|
32
32
|
readonly locale: string;
|
|
33
33
|
readonly platform: "linux" | "macos" | "ios" | "freebsd" | "dragonfly" | "netbsd" | "openbsd" | "solaris" | "android" | "windows" | undefined;
|
|
34
|
+
readonly deviceId: string | undefined;
|
|
34
35
|
} | null, {
|
|
35
36
|
readonly theme: "light" | "dark" | "system";
|
|
36
37
|
readonly locale: string;
|
|
37
38
|
readonly platform: "linux" | "macos" | "ios" | "freebsd" | "dragonfly" | "netbsd" | "openbsd" | "solaris" | "android" | "windows" | undefined;
|
|
39
|
+
readonly deviceId: string | undefined;
|
|
38
40
|
} | null>>;
|
|
39
41
|
isSetupComplete: Readonly<Ref<boolean, boolean>>;
|
|
40
42
|
db: drizzle_orm_sqlite_proxy.SqliteRemoteDatabase<Record<string, unknown>> | null;
|
package/dist/vue.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { H as HaexVaultSdk, S as StorageAPI } from './client-
|
|
1
|
+
import { H as HaexVaultSdk, S as StorageAPI } from './client-LNxaanOT.js';
|
|
2
2
|
import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
|
-
import { H as HaexHubConfig } from './types-
|
|
4
|
+
import { H as HaexHubConfig } from './types-DiXJ5SF6.js';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Vue 3 composable for HaexVault SDK
|
|
@@ -31,10 +31,12 @@ declare function useHaexVaultSdk(config?: HaexHubConfig): {
|
|
|
31
31
|
readonly theme: "light" | "dark" | "system";
|
|
32
32
|
readonly locale: string;
|
|
33
33
|
readonly platform: "linux" | "macos" | "ios" | "freebsd" | "dragonfly" | "netbsd" | "openbsd" | "solaris" | "android" | "windows" | undefined;
|
|
34
|
+
readonly deviceId: string | undefined;
|
|
34
35
|
} | null, {
|
|
35
36
|
readonly theme: "light" | "dark" | "system";
|
|
36
37
|
readonly locale: string;
|
|
37
38
|
readonly platform: "linux" | "macos" | "ios" | "freebsd" | "dragonfly" | "netbsd" | "openbsd" | "solaris" | "android" | "windows" | undefined;
|
|
39
|
+
readonly deviceId: string | undefined;
|
|
38
40
|
} | null>>;
|
|
39
41
|
isSetupComplete: Readonly<Ref<boolean, boolean>>;
|
|
40
42
|
db: drizzle_orm_sqlite_proxy.SqliteRemoteDatabase<Record<string, unknown>> | null;
|
package/dist/vue.js
CHANGED
|
@@ -1244,6 +1244,7 @@ var TAURI_COMMANDS = {
|
|
|
1244
1244
|
// Sync Rules
|
|
1245
1245
|
listSyncRules: "filesync_list_sync_rules",
|
|
1246
1246
|
addSyncRule: "filesync_add_sync_rule",
|
|
1247
|
+
updateSyncRule: "filesync_update_sync_rule",
|
|
1247
1248
|
removeSyncRule: "filesync_remove_sync_rule",
|
|
1248
1249
|
// Sync Operations
|
|
1249
1250
|
getSyncStatus: "filesync_get_sync_status",
|
|
@@ -1434,6 +1435,10 @@ var filesyncHandlers = {
|
|
|
1434
1435
|
command: TAURI_COMMANDS.filesync.addSyncRule,
|
|
1435
1436
|
args: (p) => ({ request: p })
|
|
1436
1437
|
},
|
|
1438
|
+
[HAEXTENSION_METHODS.filesystem.sync.updateSyncRule]: {
|
|
1439
|
+
command: TAURI_COMMANDS.filesync.updateSyncRule,
|
|
1440
|
+
args: (p) => ({ request: p })
|
|
1441
|
+
},
|
|
1437
1442
|
[HAEXTENSION_METHODS.filesystem.sync.removeSyncRule]: {
|
|
1438
1443
|
command: TAURI_COMMANDS.filesync.removeSyncRule,
|
|
1439
1444
|
args: (p) => ({ ruleId: p.ruleId })
|