@creator.co/creatorco-prisma-client 1.0.44-alpha-bafa2f4 → 1.0.45

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
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "./*": "./*"
81
81
  },
82
- "version": "1.0.44-alpha-bafa2f4",
82
+ "version": "1.0.45",
83
83
  "sideEffects": false,
84
84
  "description": "Prisma client for creatorco Database"
85
85
  }
package/schema.prisma CHANGED
@@ -779,6 +779,7 @@ model OptIn {
779
779
  affiliateClicks AffiliateClick[]
780
780
  productListItems OptinToProductListItem[]
781
781
  ExternalAffiliateClick ExternalAffiliateClick[]
782
+ ImpactRadiusEvent ImpactRadiusEvent[]
782
783
 
783
784
  @@index([userId])
784
785
  @@index([campaignId])
@@ -1273,9 +1274,11 @@ model ImpactRadiusEvent {
1273
1274
 
1274
1275
  userId Int
1275
1276
  brandId Int?
1277
+ optInId Int?
1276
1278
 
1277
1279
  user User @relation(fields: [userId], references: [id])
1278
1280
  brand Brand? @relation(fields: [brandId], references: [id])
1281
+ optIn OptIn? @relation(fields: [optInId], references: [id])
1279
1282
  }
1280
1283
 
1281
1284
  model CreatorSearchFilter {
package/wasm.js CHANGED
@@ -878,7 +878,8 @@ exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
878
878
  commission: 'commission',
879
879
  metaData: 'metaData',
880
880
  userId: 'userId',
881
- brandId: 'brandId'
881
+ brandId: 'brandId',
882
+ optInId: 'optInId'
882
883
  };
883
884
 
884
885
  exports.Prisma.CreatorSearchFilterScalarFieldEnum = {