@javalabs/prisma-client 1.0.23 → 1.0.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@javalabs/prisma-client",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Shared Prisma client for Tupay microservices",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,6 @@
1
+ -- Add amount_received column to transactions table
2
+ ALTER TABLE transactions
3
+ ADD COLUMN IF NOT EXISTS amount_received DECIMAL(10, 2);
4
+
5
+ COMMENT ON COLUMN transactions.amount_received IS 'Monto real recibido en la transacción (puede diferir del monto original)';
6
+
@@ -398,6 +398,7 @@ model transactions {
398
398
  fixed_fee Decimal? @default(0) @db.Decimal(10, 2)
399
399
  total_commission_fee Decimal? @default(0) @db.Decimal(10, 2)
400
400
  total_operation Decimal? @default(0) @db.Decimal(10, 2)
401
+ amount_received Decimal? @db.Decimal(10, 2)
401
402
  toku toku?
402
403
  account_type enum_account_type?
403
404
  daily_logs daily_logs[]