@creator.co/creatorco-prisma-client 1.0.90 → 1.0.91
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 +8 -6
- package/index-browser.js +3 -1
- package/index.d.ts +48 -1
- package/index.js +8 -6
- package/package.json +1 -1
- package/schema.prisma +7 -6
- package/wasm.js +3 -1
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -1416,12 +1416,13 @@ enum SocialProfileContactSource {
|
|
|
1416
1416
|
}
|
|
1417
1417
|
|
|
1418
1418
|
model SocialProfileContact {
|
|
1419
|
-
type
|
|
1420
|
-
value
|
|
1421
|
-
source
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
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 = {
|