@creator.co/creatorco-prisma-client 1.0.28 → 1.0.32
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 +7 -5
- package/index-browser.js +3 -1
- package/index.d.ts +46 -1
- package/index.js +7 -5
- package/package.json +1 -1
- package/schema.prisma +3 -1
- package/wasm.js +3 -1
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -906,8 +906,10 @@ model AffiliateLink {
|
|
|
906
906
|
model AffiliateClick {
|
|
907
907
|
id Int @id @default(autoincrement())
|
|
908
908
|
created DateTime @default(now())
|
|
909
|
+
// visitorIp === IPv4
|
|
909
910
|
visitorIp String?
|
|
910
|
-
|
|
911
|
+
IPv6 String?
|
|
912
|
+
optInId Int
|
|
911
913
|
metaData Json @default("{}")
|
|
912
914
|
|
|
913
915
|
affiliateLinkId Int
|
package/wasm.js
CHANGED
|
@@ -649,6 +649,7 @@ exports.Prisma.AffiliateClickScalarFieldEnum = {
|
|
|
649
649
|
id: 'id',
|
|
650
650
|
created: 'created',
|
|
651
651
|
visitorIp: 'visitorIp',
|
|
652
|
+
IPv6: 'IPv6',
|
|
652
653
|
optInId: 'optInId',
|
|
653
654
|
metaData: 'metaData',
|
|
654
655
|
affiliateLinkId: 'affiliateLinkId'
|
|
@@ -1139,7 +1140,8 @@ exports.Prisma.BrandAffiliateLinkOrderByRelevanceFieldEnum = {
|
|
|
1139
1140
|
};
|
|
1140
1141
|
|
|
1141
1142
|
exports.Prisma.AffiliateClickOrderByRelevanceFieldEnum = {
|
|
1142
|
-
visitorIp: 'visitorIp'
|
|
1143
|
+
visitorIp: 'visitorIp',
|
|
1144
|
+
IPv6: 'IPv6'
|
|
1143
1145
|
};
|
|
1144
1146
|
|
|
1145
1147
|
exports.Prisma.AffiliateEventOrderByRelevanceFieldEnum = {
|