@or-sdk/pgsql 1.0.3-beta.1933.0 → 1.0.3-beta.1942.0

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.
@@ -45,7 +45,7 @@ export declare type GetDBSizeResult = {
45
45
  };
46
46
  export declare type TableColumn = {
47
47
  name: string;
48
- type: number;
48
+ type: string;
49
49
  };
50
50
  export declare type CreateTableArgs = {
51
51
  database: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/pgsql",
3
- "version": "1.0.3-beta.1933.0",
3
+ "version": "1.0.3-beta.1942.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
package/src/types.ts CHANGED
@@ -73,7 +73,7 @@ export type GetDBSizeResult = {
73
73
 
74
74
  export type TableColumn = {
75
75
  name: string;
76
- type: number;
76
+ type: string;
77
77
  };
78
78
 
79
79
  export type CreateTableArgs = {