@creator.co/creatorco-prisma-client 1.0.26 → 1.0.27

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.26",
76
+ "version": "1.0.27",
77
77
  "sideEffects": false,
78
78
  "description": "Prisma client for creatorco Database"
79
79
  }
package/schema.prisma CHANGED
@@ -1021,6 +1021,7 @@ model SocialProfile {
1021
1021
  engagement Float?
1022
1022
  avgViews Int?
1023
1023
  verified Boolean?
1024
+ visibility String @default("public")
1024
1025
  metaData Json @default("{}")
1025
1026
  audienceData Json @default("{}")
1026
1027
  phylloData Json @default("{}")
package/wasm.js CHANGED
@@ -724,6 +724,7 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
724
724
  engagement: 'engagement',
725
725
  avgViews: 'avgViews',
726
726
  verified: 'verified',
727
+ visibility: 'visibility',
727
728
  metaData: 'metaData',
728
729
  audienceData: 'audienceData',
729
730
  phylloData: 'phylloData',
@@ -1170,7 +1171,8 @@ exports.Prisma.SocialProfileOrderByRelevanceFieldEnum = {
1170
1171
  username: 'username',
1171
1172
  fullname: 'fullname',
1172
1173
  profileUrl: 'profileUrl',
1173
- profilePicUrl: 'profilePicUrl'
1174
+ profilePicUrl: 'profilePicUrl',
1175
+ visibility: 'visibility'
1174
1176
  };
1175
1177
 
1176
1178
  exports.Prisma.MessageTemplateOrderByRelevanceFieldEnum = {