@factor-wise/prisma-schema 2.0.123 → 2.0.124

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.123",
3
+ "version": "2.0.124",
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",
@@ -3158,12 +3158,14 @@ model credit_improve_PayoutStatusHistory {
3158
3158
  payout credit_improve_payout @relation(fields: [payoutId], references: [id])
3159
3159
  }
3160
3160
 
3161
+
3161
3162
  model credit_improve_esign {
3162
3163
  id Int @id @default(autoincrement())
3163
3164
  customerID Int
3164
3165
  leadID Int @unique
3165
3166
  documentHash String?
3166
3167
  documentUrl String?
3168
+ signedDocumentUrl String?
3167
3169
  signatureData String? @db.LongText
3168
3170
  status String @default("PENDING")
3169
3171
  consentAccepted Boolean @default(false)
@@ -3733,6 +3735,7 @@ model customer_devices {
3733
3735
  deviceId String
3734
3736
  deviceType DeviceType
3735
3737
  deviceToken String? @unique
3738
+ endpointArn String? @unique
3736
3739
  deviceName String?
3737
3740
  appVersion String?
3738
3741
  osVersion String?