@polyglot-sql/sdk 0.4.0 → 0.4.1

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
@@ -3789,7 +3789,7 @@ declare type DropFunction = {
3789
3789
  * DROP INDEX statement
3790
3790
  */
3791
3791
  declare type DropIndex = {
3792
- name: Identifier;
3792
+ name: TableRef;
3793
3793
  table: TableRef | null;
3794
3794
  if_exists: boolean;
3795
3795
  /**
package/dist/index.d.ts CHANGED
@@ -3789,7 +3789,7 @@ declare type DropFunction = {
3789
3789
  * DROP INDEX statement
3790
3790
  */
3791
3791
  declare type DropIndex = {
3792
- name: Identifier;
3792
+ name: TableRef;
3793
3793
  table: TableRef | null;
3794
3794
  if_exists: boolean;
3795
3795
  /**
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-sql/sdk",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "SQL dialect translator powered by WebAssembly",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",