@creator.co/creatorco-prisma-client 1.0.34-alpha-6895cd0 → 1.0.35
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 +52 -5
- package/index-browser.js +48 -1
- package/index.d.ts +2316 -387
- package/index.js +52 -5
- package/package.json +1 -1
- package/schema.prisma +55 -5
- package/wasm.js +48 -1
package/index-browser.js
CHANGED
|
@@ -480,7 +480,6 @@ exports.Prisma.CampaignToProductListScalarFieldEnum = {
|
|
|
480
480
|
};
|
|
481
481
|
|
|
482
482
|
exports.Prisma.OptinToProductListItemScalarFieldEnum = {
|
|
483
|
-
id: 'id',
|
|
484
483
|
optInId: 'optInId',
|
|
485
484
|
productListItemId: 'productListItemId'
|
|
486
485
|
};
|
|
@@ -612,6 +611,41 @@ exports.Prisma.SocialPostScalarFieldEnum = {
|
|
|
612
611
|
campaignId: 'campaignId'
|
|
613
612
|
};
|
|
614
613
|
|
|
614
|
+
exports.Prisma.ArchivedSocialPostScalarFieldEnum = {
|
|
615
|
+
id: 'id',
|
|
616
|
+
phylloId: 'phylloId',
|
|
617
|
+
metaData: 'metaData',
|
|
618
|
+
lastFetched: 'lastFetched',
|
|
619
|
+
lastWebhook: 'lastWebhook',
|
|
620
|
+
posted: 'posted',
|
|
621
|
+
title: 'title',
|
|
622
|
+
description: 'description',
|
|
623
|
+
url: 'url',
|
|
624
|
+
urlPath: 'urlPath',
|
|
625
|
+
format: 'format',
|
|
626
|
+
type: 'type',
|
|
627
|
+
platform: 'platform',
|
|
628
|
+
visibility: 'visibility',
|
|
629
|
+
isSponsored: 'isSponsored',
|
|
630
|
+
hasCollaborators: 'hasCollaborators',
|
|
631
|
+
isOwnedByUser: 'isOwnedByUser',
|
|
632
|
+
views: 'views',
|
|
633
|
+
impressions: 'impressions',
|
|
634
|
+
impressionsOrganic: 'impressionsOrganic',
|
|
635
|
+
impressionsPaid: 'impressionsPaid',
|
|
636
|
+
reach: 'reach',
|
|
637
|
+
reachOrganic: 'reachOrganic',
|
|
638
|
+
reachPaid: 'reachPaid',
|
|
639
|
+
watchHours: 'watchHours',
|
|
640
|
+
likes: 'likes',
|
|
641
|
+
dislikes: 'dislikes',
|
|
642
|
+
comments: 'comments',
|
|
643
|
+
saves: 'saves',
|
|
644
|
+
shares: 'shares',
|
|
645
|
+
userId: 'userId',
|
|
646
|
+
campaignId: 'campaignId'
|
|
647
|
+
};
|
|
648
|
+
|
|
615
649
|
exports.Prisma.ImageScalarFieldEnum = {
|
|
616
650
|
id: 'id',
|
|
617
651
|
url: 'url',
|
|
@@ -1145,6 +1179,18 @@ exports.Prisma.SocialPostOrderByRelevanceFieldEnum = {
|
|
|
1145
1179
|
visibility: 'visibility'
|
|
1146
1180
|
};
|
|
1147
1181
|
|
|
1182
|
+
exports.Prisma.ArchivedSocialPostOrderByRelevanceFieldEnum = {
|
|
1183
|
+
phylloId: 'phylloId',
|
|
1184
|
+
title: 'title',
|
|
1185
|
+
description: 'description',
|
|
1186
|
+
url: 'url',
|
|
1187
|
+
urlPath: 'urlPath',
|
|
1188
|
+
format: 'format',
|
|
1189
|
+
type: 'type',
|
|
1190
|
+
platform: 'platform',
|
|
1191
|
+
visibility: 'visibility'
|
|
1192
|
+
};
|
|
1193
|
+
|
|
1148
1194
|
exports.Prisma.ImageOrderByRelevanceFieldEnum = {
|
|
1149
1195
|
url: 'url',
|
|
1150
1196
|
size: 'size'
|
|
@@ -1332,6 +1378,7 @@ exports.Prisma.ModelName = {
|
|
|
1332
1378
|
TrolleyPayment: 'TrolleyPayment',
|
|
1333
1379
|
OptInVariable: 'OptInVariable',
|
|
1334
1380
|
SocialPost: 'SocialPost',
|
|
1381
|
+
ArchivedSocialPost: 'ArchivedSocialPost',
|
|
1335
1382
|
Image: 'Image',
|
|
1336
1383
|
BrandImage: 'BrandImage',
|
|
1337
1384
|
Country: 'Country',
|