@fusebase/fusebase-gate-sdk 2.2.21-sdk.14 → 2.2.21-sdk.15
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.
|
@@ -334,6 +334,7 @@ export interface IsolatedStoreSqlQueryRequestContract {
|
|
|
334
334
|
sql: string;
|
|
335
335
|
params?: unknown[] | null;
|
|
336
336
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
337
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
337
338
|
}
|
|
338
339
|
export interface IsolatedStoreSqlQueryResultContract {
|
|
339
340
|
command: string;
|
|
@@ -348,9 +349,22 @@ export interface IsolatedStoreSqlExecuteRequestContract {
|
|
|
348
349
|
sql: string;
|
|
349
350
|
params?: unknown[] | null;
|
|
350
351
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
352
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
351
353
|
}
|
|
352
354
|
export type IsolatedStoreSqlRlsContextValueContract = string | number | boolean | null;
|
|
353
355
|
export type IsolatedStoreSqlRlsContextContract = Record<string, IsolatedStoreSqlRlsContextValueContract>;
|
|
356
|
+
export interface IsolatedStoreSqlTrustedRuntimeContextContract {
|
|
357
|
+
/**
|
|
358
|
+
* Trusted delegated portal context for backend/operator paths.
|
|
359
|
+
* Requires `isolated_store.rls.delegate`; callers cannot set this through `rlsContext`.
|
|
360
|
+
*/
|
|
361
|
+
portalId?: string | null;
|
|
362
|
+
/**
|
|
363
|
+
* Trusted delegated workspace context for backend/operator paths.
|
|
364
|
+
* Requires `isolated_store.rls.delegate`; callers cannot set this through `rlsContext`.
|
|
365
|
+
*/
|
|
366
|
+
workspaceId?: string | null;
|
|
367
|
+
}
|
|
354
368
|
export interface IsolatedStoreSqlExecuteResponseContract {
|
|
355
369
|
result: IsolatedStoreSqlQueryResultContract;
|
|
356
370
|
}
|
|
@@ -370,6 +384,7 @@ export interface IsolatedStoreSqlCountRequestContract {
|
|
|
370
384
|
tableName: string;
|
|
371
385
|
filters?: IsolatedStoreSqlFilterContract[] | null;
|
|
372
386
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
387
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
373
388
|
}
|
|
374
389
|
export interface IsolatedStoreSqlCountResponseContract {
|
|
375
390
|
count: number;
|
|
@@ -383,6 +398,7 @@ export interface IsolatedStoreSqlSelectRequestContract {
|
|
|
383
398
|
limit?: number | null;
|
|
384
399
|
offset?: number | null;
|
|
385
400
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
401
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
386
402
|
}
|
|
387
403
|
export interface IsolatedStoreSqlSelectResponseContract {
|
|
388
404
|
columns: string[];
|
|
@@ -399,6 +415,7 @@ export interface IsolatedStoreSqlInsertRequestContract {
|
|
|
399
415
|
values: Record<string, unknown>;
|
|
400
416
|
returning?: string[] | null;
|
|
401
417
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
418
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
402
419
|
}
|
|
403
420
|
export interface IsolatedStoreSqlInsertResponseContract {
|
|
404
421
|
rowCount: number;
|
|
@@ -410,6 +427,7 @@ export interface IsolatedStoreSqlBatchInsertRequestContract {
|
|
|
410
427
|
rows: Record<string, unknown>[];
|
|
411
428
|
returning?: string[] | null;
|
|
412
429
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
430
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
413
431
|
}
|
|
414
432
|
export interface IsolatedStoreSqlBatchInsertResponseContract {
|
|
415
433
|
rowCount: number;
|
|
@@ -425,6 +443,7 @@ export interface IsolatedStoreSqlImportRequestContract {
|
|
|
425
443
|
hasHeader?: boolean | null;
|
|
426
444
|
nullString?: string | null;
|
|
427
445
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
446
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
428
447
|
}
|
|
429
448
|
export interface IsolatedStoreSqlImportResponseContract {
|
|
430
449
|
imported: true;
|
|
@@ -440,6 +459,7 @@ export interface IsolatedStoreSqlUpdateRequestContract {
|
|
|
440
459
|
allowAll?: boolean | null;
|
|
441
460
|
returning?: string[] | null;
|
|
442
461
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
462
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
443
463
|
}
|
|
444
464
|
export interface IsolatedStoreSqlUpdateResponseContract {
|
|
445
465
|
rowCount: number;
|
|
@@ -451,6 +471,7 @@ export interface IsolatedStoreSqlDeleteRequestContract {
|
|
|
451
471
|
filters?: IsolatedStoreSqlFilterContract[] | null;
|
|
452
472
|
allowAll?: boolean | null;
|
|
453
473
|
rlsContext?: IsolatedStoreSqlRlsContextContract | null;
|
|
474
|
+
trustedRuntimeContext?: IsolatedStoreSqlTrustedRuntimeContextContract | null;
|
|
454
475
|
}
|
|
455
476
|
export interface IsolatedStoreSqlDeleteResponseContract {
|
|
456
477
|
rowCount: number;
|
package/package.json
CHANGED
package/release-notes/latest.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Release Notes 2.2.21-sdk.
|
|
1
|
+
# Release Notes 2.2.21-sdk.15
|
|
2
2
|
|
|
3
3
|
- Current ref: `HEAD`
|
|
4
|
-
- Previous tag: `v2.2.21-sdk.
|
|
5
|
-
- Generated at: 2026-06-
|
|
4
|
+
- Previous tag: `v2.2.21-sdk.15`
|
|
5
|
+
- Generated at: 2026-06-10T14:19:52.281Z
|
|
6
6
|
|
|
7
7
|
## Included Drafts
|
|
8
8
|
|