@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/edge.js +6 -5
- package/index-browser.js +2 -1
- package/index.d.ts +435 -1
- package/index.js +6 -5
- package/package.json +1 -1
- package/schema.prisma +3 -0
- package/wasm.js +2 -1
package/package.json
CHANGED
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 = {
|