@fusebase/fusebase-gate-sdk 2.2.2-sdk.24 → 2.2.2-sdk.25

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.
@@ -155,7 +155,7 @@ export declare class IsolatedStoresApi {
155
155
  }): Promise<IsolatedStoreSqlDescribeTableResponseContract>;
156
156
  /**
157
157
  * Run writable SQL statement
158
- * Runs a single SQL statement with execute access against the postgres binding of the selected isolated store stage instance. This is a privileged raw SQL escape hatch. Unlike applyIsolatedStoreSqlMigrations, it does not record entries in the stage migration journal (fusebase_schema_migrations); after DDL applied only via execute, that table may be absent until a proper migration apply runs.
158
+ * Runs a single raw DML statement with execute access against the postgres binding of the selected isolated store stage instance. Only INSERT, UPDATE, and DELETE are allowed on this privileged escape hatch. DDL and schema changes are blocked here and must go through applyIsolatedStoreSqlMigrations so the stage migration journal (fusebase_schema_migrations) stays authoritative.
159
159
  */
160
160
  executeIsolatedStoreSql(params: {
161
161
  path: {
@@ -176,7 +176,7 @@ class IsolatedStoresApi {
176
176
  }
177
177
  /**
178
178
  * Run writable SQL statement
179
- * Runs a single SQL statement with execute access against the postgres binding of the selected isolated store stage instance. This is a privileged raw SQL escape hatch. Unlike applyIsolatedStoreSqlMigrations, it does not record entries in the stage migration journal (fusebase_schema_migrations); after DDL applied only via execute, that table may be absent until a proper migration apply runs.
179
+ * Runs a single raw DML statement with execute access against the postgres binding of the selected isolated store stage instance. Only INSERT, UPDATE, and DELETE are allowed on this privileged escape hatch. DDL and schema changes are blocked here and must go through applyIsolatedStoreSqlMigrations so the stage migration journal (fusebase_schema_migrations) stays authoritative.
180
180
  */
181
181
  async executeIsolatedStoreSql(params) {
182
182
  return this.client.request({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusebase/fusebase-gate-sdk",
3
- "version": "2.2.2-sdk.24",
3
+ "version": "2.2.2-sdk.25",
4
4
  "description": "TypeScript SDK for Fusebase Gate APIs - Generated from contract introspection",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -0,0 +1,9 @@
1
+ # Release Notes 2.2.2-sdk.25
2
+
3
+ - Current ref: `HEAD`
4
+ - Previous tag: `v2.2.2-sdk.25`
5
+ - Generated at: 2026-04-04T22:07:14.296Z
6
+
7
+ ## Included Drafts
8
+
9
+ - None
@@ -1,8 +1,8 @@
1
- # Release Notes 2.2.2-sdk.24
1
+ # Release Notes 2.2.2-sdk.25
2
2
 
3
3
  - Current ref: `HEAD`
4
- - Previous tag: `v2.2.2-sdk.24`
5
- - Generated at: 2026-04-04T21:32:47.569Z
4
+ - Previous tag: `v2.2.2-sdk.25`
5
+ - Generated at: 2026-04-04T22:07:14.296Z
6
6
 
7
7
  ## Included Drafts
8
8
 
@@ -1,9 +0,0 @@
1
- # Release Notes 2.2.2-sdk.24
2
-
3
- - Current ref: `HEAD`
4
- - Previous tag: `v2.2.2-sdk.24`
5
- - Generated at: 2026-04-04T21:32:47.569Z
6
-
7
- ## Included Drafts
8
-
9
- - None