@factor-wise/prisma-schema 2.0.97 → 2.0.98

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": "@factor-wise/prisma-schema",
3
- "version": "2.0.97",
3
+ "version": "2.0.98",
4
4
  "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
5
  "main": "generated/client/index.js",
6
6
  "types": "generated/client/index.d.ts",
@@ -1132,17 +1132,15 @@ model emandates {
1132
1132
  model easebuzz_emandates {
1133
1133
  id Int @id @default(autoincrement())
1134
1134
 
1135
- leadID String @db.VarChar(100)
1136
- customerID String? @db.VarChar(100)
1135
+ leadID Int
1136
+ customerID Int
1137
1137
 
1138
1138
  access_key String? @db.VarChar(255)
1139
1139
 
1140
1140
  transaction_id String @unique @db.VarChar(100)
1141
1141
  mandate_id String? @db.VarChar(100)
1142
- vendor String @default("easebuzz")
1143
1142
 
1144
1143
  // Customer
1145
- customer_name String? @db.VarChar(255)
1146
1144
  customer_email String? @db.VarChar(255)
1147
1145
  customer_phone String? @db.VarChar(20)
1148
1146
 
@@ -1158,7 +1156,6 @@ model easebuzz_emandates {
1158
1156
  auth_mode String? @db.VarChar(50)
1159
1157
 
1160
1158
  amount Decimal? @db.Decimal(15,2)
1161
- amount_rule String? @db.VarChar(20)
1162
1159
 
1163
1160
  frequency String? @db.VarChar(30)
1164
1161