@creator.co/creatorco-prisma-client 1.0.28-alpha-cd94ad9 → 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/package.json CHANGED
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "./*": "./*"
75
75
  },
76
- "version": "1.0.28-alpha-cd94ad9",
76
+ "version": "1.0.32",
77
77
  "sideEffects": false,
78
78
  "description": "Prisma client for creatorco Database"
79
79
  }
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
- optInId Int
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 = {