@haex-space/vault-sdk 2.5.122 → 2.5.123
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/cli/index.js +2 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +2 -1
- package/dist/cli/index.mjs.map +1 -1
- package/dist/{client-DzQv-YCD.d.ts → client--kKvwWc0.d.ts} +1 -1
- package/dist/{client-CrXV__Zx.d.mts → client-Bjbn7M-G.d.mts} +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/node.d.mts +1 -1
- package/dist/node.d.ts +1 -1
- package/dist/node.js +2 -1
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +2 -1
- package/dist/node.mjs.map +1 -1
- package/dist/nuxt.js +2 -1
- package/dist/nuxt.js.map +1 -1
- package/dist/nuxt.mjs +2 -1
- package/dist/nuxt.mjs.map +1 -1
- package/dist/react.d.mts +2 -2
- package/dist/react.d.ts +2 -2
- package/dist/react.js.map +1 -1
- 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.map +1 -1
- 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.map +1 -1
- package/dist/svelte.mjs.map +1 -1
- package/dist/{types-TFcm6hpl.d.mts → types-DkB9cExr.d.mts} +10 -1
- package/dist/{types-TFcm6hpl.d.ts → types-DkB9cExr.d.ts} +10 -1
- package/dist/vue.d.mts +2 -2
- package/dist/vue.d.ts +2 -2
- package/dist/vue.js.map +1 -1
- package/dist/vue.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -275,6 +275,10 @@ interface FilteredSyncTablesResult {
|
|
|
275
275
|
extensions: Record<string, string[]>;
|
|
276
276
|
}
|
|
277
277
|
type EventCallback = (event: HaexHubEvent) => void;
|
|
278
|
+
interface ManifestI18nEntry {
|
|
279
|
+
name?: string | null;
|
|
280
|
+
description?: string | null;
|
|
281
|
+
}
|
|
278
282
|
interface ExtensionManifest {
|
|
279
283
|
name: string;
|
|
280
284
|
version: string;
|
|
@@ -300,6 +304,11 @@ interface ExtensionManifest {
|
|
|
300
304
|
* Example: "database/migrations"
|
|
301
305
|
*/
|
|
302
306
|
migrationsDir?: string | null;
|
|
307
|
+
/**
|
|
308
|
+
* Locale-specific overrides for name, description, etc.
|
|
309
|
+
* Key is locale code (e.g. "de", "en"), value contains localized fields.
|
|
310
|
+
*/
|
|
311
|
+
i18n?: Record<string, ManifestI18nEntry> | null;
|
|
303
312
|
}
|
|
304
313
|
interface HaexHubConfig {
|
|
305
314
|
debug?: boolean;
|
|
@@ -372,4 +381,4 @@ declare class HaexVaultSdkError extends Error {
|
|
|
372
381
|
};
|
|
373
382
|
}
|
|
374
383
|
|
|
375
|
-
export { type ApplicationContext as A, type
|
|
384
|
+
export { type ApplicationContext as A, type ManifestI18nEntry as B, type ClaimRequirement as C, type DatabaseQueryResult as D, type ExtensionManifest as E, type FileChangeEvent as F, type PermissionDeniedError as G, type HaexHubConfig as H, type IdentityClaim as I, type PermissionErrorBase as J, PermissionErrorCode as K, type PermissionPromptError as L, type Migration as M, PermissionStatus as N, type SearchQuery as O, type PermissionResponse as P, type SearchRequestEvent as Q, type SyncTablesUpdatedEvent as R, type SearchResult as S, TABLE_SEPARATOR as T, getTableName as U, isPermissionDeniedError as V, type WebRequestOptions as W, isPermissionError as X, isPermissionPromptError as Y, type ExtensionInfo as a, type HaexHubEvent as b, EXTERNAL_EVENTS as c, type MigrationResult as d, type WebResponse as e, type DatabasePermissionRequest as f, type EventCallback as g, type SignedClaimPresentation as h, type ContextChangedEvent as i, DEFAULT_TIMEOUT as j, type DatabaseColumnInfo as k, type DatabaseExecuteParams as l, type DatabasePermission as m, type DatabaseQueryParams as n, type DatabaseTableInfo as o, ErrorCode as p, type ExtensionRuntimeMode as q, type ExternalEvent as r, type FileChangePayload as s, type FileChangeType as t, type FilteredSyncTablesResult as u, HAEXTENSION_EVENTS as v, type HaexHubRequest as w, type HaexHubResponse as x, HaexVaultSdkError as y, type HaextensionEvent as z };
|
|
@@ -275,6 +275,10 @@ interface FilteredSyncTablesResult {
|
|
|
275
275
|
extensions: Record<string, string[]>;
|
|
276
276
|
}
|
|
277
277
|
type EventCallback = (event: HaexHubEvent) => void;
|
|
278
|
+
interface ManifestI18nEntry {
|
|
279
|
+
name?: string | null;
|
|
280
|
+
description?: string | null;
|
|
281
|
+
}
|
|
278
282
|
interface ExtensionManifest {
|
|
279
283
|
name: string;
|
|
280
284
|
version: string;
|
|
@@ -300,6 +304,11 @@ interface ExtensionManifest {
|
|
|
300
304
|
* Example: "database/migrations"
|
|
301
305
|
*/
|
|
302
306
|
migrationsDir?: string | null;
|
|
307
|
+
/**
|
|
308
|
+
* Locale-specific overrides for name, description, etc.
|
|
309
|
+
* Key is locale code (e.g. "de", "en"), value contains localized fields.
|
|
310
|
+
*/
|
|
311
|
+
i18n?: Record<string, ManifestI18nEntry> | null;
|
|
303
312
|
}
|
|
304
313
|
interface HaexHubConfig {
|
|
305
314
|
debug?: boolean;
|
|
@@ -372,4 +381,4 @@ declare class HaexVaultSdkError extends Error {
|
|
|
372
381
|
};
|
|
373
382
|
}
|
|
374
383
|
|
|
375
|
-
export { type ApplicationContext as A, type
|
|
384
|
+
export { type ApplicationContext as A, type ManifestI18nEntry as B, type ClaimRequirement as C, type DatabaseQueryResult as D, type ExtensionManifest as E, type FileChangeEvent as F, type PermissionDeniedError as G, type HaexHubConfig as H, type IdentityClaim as I, type PermissionErrorBase as J, PermissionErrorCode as K, type PermissionPromptError as L, type Migration as M, PermissionStatus as N, type SearchQuery as O, type PermissionResponse as P, type SearchRequestEvent as Q, type SyncTablesUpdatedEvent as R, type SearchResult as S, TABLE_SEPARATOR as T, getTableName as U, isPermissionDeniedError as V, type WebRequestOptions as W, isPermissionError as X, isPermissionPromptError as Y, type ExtensionInfo as a, type HaexHubEvent as b, EXTERNAL_EVENTS as c, type MigrationResult as d, type WebResponse as e, type DatabasePermissionRequest as f, type EventCallback as g, type SignedClaimPresentation as h, type ContextChangedEvent as i, DEFAULT_TIMEOUT as j, type DatabaseColumnInfo as k, type DatabaseExecuteParams as l, type DatabasePermission as m, type DatabaseQueryParams as n, type DatabaseTableInfo as o, ErrorCode as p, type ExtensionRuntimeMode as q, type ExternalEvent as r, type FileChangePayload as s, type FileChangeType as t, type FilteredSyncTablesResult as u, HAEXTENSION_EVENTS as v, type HaexHubRequest as w, type HaexHubResponse as x, HaexVaultSdkError as y, type HaextensionEvent as z };
|
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-Bjbn7M-G.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-DkB9cExr.mjs';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Vue 3 composable for HaexVault SDK
|
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--kKvwWc0.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-DkB9cExr.js';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Vue 3 composable for HaexVault SDK
|