@haex-space/vault-sdk 2.7.1 → 2.8.0

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/vue.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { H as HaexVaultSdk, S as StorageAPI } from './client-BUsw25aA.mjs';
1
+ import { H as HaexVaultSdk, S as StorageAPI } from './client-DdGvtNj_.mjs';
2
2
  import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
3
3
  import { Ref } from 'vue';
4
4
  import { H as HaexHubConfig } from './types-DmCSegdY.mjs';
package/dist/vue.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { H as HaexVaultSdk, S as StorageAPI } from './client-3B1iWut9.js';
1
+ import { H as HaexVaultSdk, S as StorageAPI } from './client-CQFc6DMu.js';
2
2
  import * as drizzle_orm_sqlite_proxy from 'drizzle-orm/sqlite-proxy';
3
3
  import { Ref } from 'vue';
4
4
  import { H as HaexHubConfig } from './types-DmCSegdY.js';
package/dist/vue.js CHANGED
@@ -617,12 +617,7 @@ var SPACE_COMMANDS = {
617
617
  /** Get space assignments for a table */
618
618
  getAssignments: "extension_space_get_assignments",
619
619
  /** List all spaces the user is a member of (with decrypted names) */
620
- list: "extension_space_list",
621
- /** Create a new shared space */
622
- create: "extension_space_create",
623
- /** List available sync backends */
624
- listBackends: "extension_space_list_backends"
625
- };
620
+ list: "extension_space_list"};
626
621
 
627
622
  // src/commands/shell.ts
628
623
  var SHELL_COMMANDS = {
@@ -1497,25 +1492,6 @@ var SpacesAPI = class {
1497
1492
  async listSpacesAsync() {
1498
1493
  return this.client.request(SPACE_COMMANDS.list);
1499
1494
  }
1500
- /**
1501
- * Create a new shared space.
1502
- * @param name - Human-readable space name
1503
- * @param serverUrl - The sync server URL to create the space on
1504
- * @returns The created space with decrypted name
1505
- */
1506
- async createSpaceAsync(name, serverUrl) {
1507
- return this.client.request(SPACE_COMMANDS.create, {
1508
- spaceName: name,
1509
- serverUrl
1510
- });
1511
- }
1512
- /**
1513
- * List available sync backends that can host shared spaces.
1514
- * @returns Array of backend info with server URLs
1515
- */
1516
- async listSyncBackendsAsync() {
1517
- return this.client.request(SPACE_COMMANDS.listBackends);
1518
- }
1519
1495
  };
1520
1496
 
1521
1497
  // src/api/shell.ts