@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.
@@ -1,6 +1,6 @@
1
1
  import * as nuxt_app from 'nuxt/app';
2
2
  import { ShallowRef } from 'vue';
3
- import { H as HaexVaultSdk } from '../client-BUsw25aA.mjs';
3
+ import { H as HaexVaultSdk } from '../client-DdGvtNj_.mjs';
4
4
  import { A as ApplicationContext } from '../types-DmCSegdY.mjs';
5
5
  import 'drizzle-orm/sqlite-proxy';
6
6
 
@@ -1,6 +1,6 @@
1
1
  import * as nuxt_app from 'nuxt/app';
2
2
  import { ShallowRef } from 'vue';
3
- import { H as HaexVaultSdk } from '../client-3B1iWut9.js';
3
+ import { H as HaexVaultSdk } from '../client-CQFc6DMu.js';
4
4
  import { A as ApplicationContext } from '../types-DmCSegdY.js';
5
5
  import 'drizzle-orm/sqlite-proxy';
6
6
 
@@ -251,12 +251,7 @@ var SPACE_COMMANDS = {
251
251
  /** Get space assignments for a table */
252
252
  getAssignments: "extension_space_get_assignments",
253
253
  /** List all spaces the user is a member of (with decrypted names) */
254
- list: "extension_space_list",
255
- /** Create a new shared space */
256
- create: "extension_space_create",
257
- /** List available sync backends */
258
- listBackends: "extension_space_list_backends"
259
- };
254
+ list: "extension_space_list"};
260
255
 
261
256
  // src/commands/shell.ts
262
257
  var SHELL_COMMANDS = {
@@ -1156,25 +1151,6 @@ var SpacesAPI = class {
1156
1151
  async listSpacesAsync() {
1157
1152
  return this.client.request(SPACE_COMMANDS.list);
1158
1153
  }
1159
- /**
1160
- * Create a new shared space.
1161
- * @param name - Human-readable space name
1162
- * @param serverUrl - The sync server URL to create the space on
1163
- * @returns The created space with decrypted name
1164
- */
1165
- async createSpaceAsync(name, serverUrl) {
1166
- return this.client.request(SPACE_COMMANDS.create, {
1167
- spaceName: name,
1168
- serverUrl
1169
- });
1170
- }
1171
- /**
1172
- * List available sync backends that can host shared spaces.
1173
- * @returns Array of backend info with server URLs
1174
- */
1175
- async listSyncBackendsAsync() {
1176
- return this.client.request(SPACE_COMMANDS.listBackends);
1177
- }
1178
1154
  };
1179
1155
 
1180
1156
  // src/api/shell.ts