@creator.co/creatorco-prisma-client 1.0.53 → 1.0.55
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 +23 -4
- package/index-browser.js +15 -0
- package/index.d.ts +2699 -486
- package/index.js +27 -4
- package/libquery_engine-linux-musl-arm64-openssl-1.1.x.so.node +0 -0
- package/package.json +1 -1
- package/schema.prisma +28 -4
- package/wasm.js +15 -0
package/index-browser.js
CHANGED
|
@@ -621,6 +621,14 @@ exports.Prisma.SocialPostScalarFieldEnum = {
|
|
|
621
621
|
campaignId: 'campaignId'
|
|
622
622
|
};
|
|
623
623
|
|
|
624
|
+
exports.Prisma.CampaignToSocialPostScalarFieldEnum = {
|
|
625
|
+
campaignId: 'campaignId',
|
|
626
|
+
socialPostId: 'socialPostId',
|
|
627
|
+
status: 'status',
|
|
628
|
+
created: 'created',
|
|
629
|
+
metaData: 'metaData'
|
|
630
|
+
};
|
|
631
|
+
|
|
624
632
|
exports.Prisma.ArchivedSocialPostScalarFieldEnum = {
|
|
625
633
|
id: 'id',
|
|
626
634
|
phylloId: 'phylloId',
|
|
@@ -1434,6 +1442,12 @@ exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
|
1434
1442
|
returned: 'returned'
|
|
1435
1443
|
};
|
|
1436
1444
|
|
|
1445
|
+
exports.CampaignToSocialPostStatus = exports.$Enums.CampaignToSocialPostStatus = {
|
|
1446
|
+
pending: 'pending',
|
|
1447
|
+
approved: 'approved',
|
|
1448
|
+
declined: 'declined'
|
|
1449
|
+
};
|
|
1450
|
+
|
|
1437
1451
|
exports.ShopifyStoreSyncStatus = exports.$Enums.ShopifyStoreSyncStatus = {
|
|
1438
1452
|
syncing: 'syncing',
|
|
1439
1453
|
synced: 'synced',
|
|
@@ -1479,6 +1493,7 @@ exports.Prisma.ModelName = {
|
|
|
1479
1493
|
TrolleyPayment: 'TrolleyPayment',
|
|
1480
1494
|
OptInVariable: 'OptInVariable',
|
|
1481
1495
|
SocialPost: 'SocialPost',
|
|
1496
|
+
CampaignToSocialPost: 'CampaignToSocialPost',
|
|
1482
1497
|
ArchivedSocialPost: 'ArchivedSocialPost',
|
|
1483
1498
|
Image: 'Image',
|
|
1484
1499
|
BrandImage: 'BrandImage',
|