@polyglot-sql/sdk 0.3.1 → 0.3.2

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/index.d.cts CHANGED
@@ -9520,6 +9520,10 @@ declare type MultitableInserts = {
9520
9520
  * Leading comments before the statement
9521
9521
  */
9522
9522
  leading_comments: Array<string>;
9523
+ /**
9524
+ * OVERWRITE modifier (Snowflake: INSERT OVERWRITE ALL)
9525
+ */
9526
+ overwrite?: boolean;
9523
9527
  };
9524
9528
 
9525
9529
  /**
package/dist/index.d.ts CHANGED
@@ -9520,6 +9520,10 @@ declare type MultitableInserts = {
9520
9520
  * Leading comments before the statement
9521
9521
  */
9522
9522
  leading_comments: Array<string>;
9523
+ /**
9524
+ * OVERWRITE modifier (Snowflake: INSERT OVERWRITE ALL)
9525
+ */
9526
+ overwrite?: boolean;
9523
9527
  };
9524
9528
 
9525
9529
  /**
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-sql/sdk",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "SQL dialect translator powered by WebAssembly",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",