@creator.co/creatorco-prisma-client 1.0.73 → 1.0.74
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 +4 -4
- package/index.d.ts +18 -0
- package/index.js +4 -4
- package/package.json +1 -1
- package/schema.prisma +6 -6
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -104,7 +104,7 @@ model CreatorProfile {
|
|
|
104
104
|
country String?
|
|
105
105
|
region String?
|
|
106
106
|
birthDate DateTime?
|
|
107
|
-
interests Json?
|
|
107
|
+
interests Json? /// @deprecated
|
|
108
108
|
gender String?
|
|
109
109
|
shippingAddress1 String?
|
|
110
110
|
shippingAddress2 String?
|
|
@@ -156,7 +156,7 @@ model InstagramProfile {
|
|
|
156
156
|
hasGuides Boolean?
|
|
157
157
|
hasChannel Boolean?
|
|
158
158
|
totalIgtvVideos Int?
|
|
159
|
-
profilePicUrlHd String? @db.VarChar(2083)
|
|
159
|
+
profilePicUrlHd String? @db.VarChar(2083) /// @deprecated
|
|
160
160
|
lastStoriesUpdate DateTime?
|
|
161
161
|
|
|
162
162
|
extraData Json?
|
|
@@ -523,8 +523,8 @@ model Campaign {
|
|
|
523
523
|
minPaidAmount Float?
|
|
524
524
|
maxPaidAmount Float?
|
|
525
525
|
paymentType String?
|
|
526
|
-
monthlyActivatedGoal Int?
|
|
527
|
-
expectedOptIns Int?
|
|
526
|
+
monthlyActivatedGoal Int? /// @deprecated redundant
|
|
527
|
+
expectedOptIns Int? /// @deprecated redundant
|
|
528
528
|
goalActivations Float?
|
|
529
529
|
goalOptIns Float?
|
|
530
530
|
requiresShipping Boolean?
|
|
@@ -780,7 +780,7 @@ model OptIn {
|
|
|
780
780
|
seen Boolean @default(false)
|
|
781
781
|
instructions String? @db.Text
|
|
782
782
|
paymentAmount Float?
|
|
783
|
-
paymentStatus String @default("pending")
|
|
783
|
+
paymentStatus String @default("pending") /// @deprecated join with TrolleyPayment for actual status
|
|
784
784
|
extraData Json @default("{}")
|
|
785
785
|
favoritedDate DateTime?
|
|
786
786
|
rating Json?
|
|
@@ -959,7 +959,7 @@ model ArchivedSocialPost {
|
|
|
959
959
|
title String? @db.Text
|
|
960
960
|
description String? @db.Text
|
|
961
961
|
url String? @db.VarChar(2083)
|
|
962
|
-
urlPath String? @unique
|
|
962
|
+
urlPath String? @unique /// @deprecated This is here so we have some external identifier to quickly search by
|
|
963
963
|
format String?
|
|
964
964
|
type String?
|
|
965
965
|
platform String?
|