@creator.co/creatorco-prisma-client 1.0.90 → 1.0.92

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
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "./*": "./*"
94
94
  },
95
- "version": "1.0.90",
95
+ "version": "1.0.92",
96
96
  "sideEffects": false,
97
97
  "description": "Prisma client for creatorco Database"
98
98
  }
package/schema.prisma CHANGED
@@ -19,7 +19,7 @@ generator client {
19
19
  output = "../../client/creatorco/client"
20
20
  previewFeatures = ["fullTextIndex", "fullTextSearch", "views"]
21
21
  // macos (arm or x86), native, linux arm64 ssl3.x, windows
22
- binaryTargets = ["native", "darwin", "darwin-arm64", "linux-arm64-openssl-3.0.x", "windows", "debian-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x", "linux-arm64-openssl-1.0.x", "linux-musl-arm64-openssl-1.1.x", "debian-openssl-1.1.x"]
22
+ binaryTargets = ["native", "darwin", "darwin-arm64", "linux-arm64-openssl-3.0.x", "windows", "debian-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x", "linux-arm64-openssl-1.0.x", "linux-musl-arm64-openssl-1.1.x", "debian-openssl-1.1.x", "rhel-openssl-3.0.x"]
23
23
  }
24
24
 
25
25
  datasource db {
@@ -1416,12 +1416,13 @@ enum SocialProfileContactSource {
1416
1416
  }
1417
1417
 
1418
1418
  model SocialProfileContact {
1419
- type String
1420
- value String
1421
- source SocialProfileContactSource @default(MANUAL)
1422
- metaData Json? @default("{}") @map("meta_data")
1423
- createdAt DateTime? @default(now())
1424
- updatedAt DateTime? @updatedAt
1419
+ type String
1420
+ value String
1421
+ source SocialProfileContactSource @default(MANUAL)
1422
+ unsubscribe String[] @default([])
1423
+ metaData Json? @default("{}") @map("meta_data")
1424
+ createdAt DateTime? @default(now())
1425
+ updatedAt DateTime? @updatedAt
1425
1426
 
1426
1427
  socialProfileId Int @map("social_profile_id")
1427
1428
 
package/wasm.js CHANGED
@@ -910,6 +910,7 @@ exports.Prisma.SocialProfileContactScalarFieldEnum = {
910
910
  type: 'type',
911
911
  value: 'value',
912
912
  source: 'source',
913
+ unsubscribe: 'unsubscribe',
913
914
  metaData: 'metaData',
914
915
  createdAt: 'createdAt',
915
916
  updatedAt: 'updatedAt',
@@ -1610,7 +1611,8 @@ exports.Prisma.SocialProfileOrderByRelevanceFieldEnum = {
1610
1611
 
1611
1612
  exports.Prisma.SocialProfileContactOrderByRelevanceFieldEnum = {
1612
1613
  type: 'type',
1613
- value: 'value'
1614
+ value: 'value',
1615
+ unsubscribe: 'unsubscribe'
1614
1616
  };
1615
1617
 
1616
1618
  exports.Prisma.MessageTemplateOrderByRelevanceFieldEnum = {