mutano 2.6.1 → 2.6.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.
Files changed (2) hide show
  1. package/dist/main.js +2 -2
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -873,9 +873,9 @@ export type JsonPrimitive = boolean | number | string | null;
873
873
 
874
874
  export type JsonValue = JsonArray | JsonObject | JsonPrimitive;
875
875
 
876
- export type Decimal = ColumnType<string, number | string>
876
+ export type Decimal = ColumnType<string, number | string, number | string>
877
877
 
878
- export type BigInt = ColumnType<string, number | string>
878
+ export type BigInt = ColumnType<string, number | string, number | string>
879
879
  `;
880
880
  consolidatedContent += "// Table Interfaces\n";
881
881
  for (const { content } of tableContents) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mutano",
3
3
  "type": "module",
4
- "version": "2.6.1",
4
+ "version": "2.6.2",
5
5
  "description": "Converts Prisma/MySQL/PostgreSQL/SQLite schemas to Zod/TS/Kysely interfaces",
6
6
  "author": "Alisson Cavalcante Agiani <thelinuxlich@gmail.com>",
7
7
  "license": "MIT",