@creator.co/creatorco-prisma-client 1.0.43 → 1.0.44-alpha-eead9dc
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 +25 -6
- package/index-browser.js +21 -2
- package/index.d.ts +3538 -536
- package/index.js +25 -6
- package/package.json +1 -1
- package/schema.prisma +26 -1
- package/wasm.js +21 -2
package/index-browser.js
CHANGED
|
@@ -600,7 +600,6 @@ exports.Prisma.SocialPostScalarFieldEnum = {
|
|
|
600
600
|
hasCollaborators: 'hasCollaborators',
|
|
601
601
|
isOwnedByUser: 'isOwnedByUser',
|
|
602
602
|
views: 'views',
|
|
603
|
-
replays: 'replays',
|
|
604
603
|
impressions: 'impressions',
|
|
605
604
|
impressionsOrganic: 'impressionsOrganic',
|
|
606
605
|
impressionsPaid: 'impressionsPaid',
|
|
@@ -968,6 +967,20 @@ exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
|
968
967
|
shopifyProductId: 'shopifyProductId'
|
|
969
968
|
};
|
|
970
969
|
|
|
970
|
+
exports.Prisma.ShopifyDiscountCodeScalarFieldEnum = {
|
|
971
|
+
id: 'id',
|
|
972
|
+
code: 'code',
|
|
973
|
+
discount: 'discount',
|
|
974
|
+
optInId: 'optInId'
|
|
975
|
+
};
|
|
976
|
+
|
|
977
|
+
exports.Prisma.ShopifySaleScalarFieldEnum = {
|
|
978
|
+
id: 'id',
|
|
979
|
+
amount: 'amount',
|
|
980
|
+
metaData: 'metaData',
|
|
981
|
+
discountCodeId: 'discountCodeId'
|
|
982
|
+
};
|
|
983
|
+
|
|
971
984
|
exports.Prisma.SortOrder = {
|
|
972
985
|
asc: 'asc',
|
|
973
986
|
desc: 'desc'
|
|
@@ -1344,6 +1357,10 @@ exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
|
1344
1357
|
title: 'title',
|
|
1345
1358
|
imageUrl: 'imageUrl'
|
|
1346
1359
|
};
|
|
1360
|
+
|
|
1361
|
+
exports.Prisma.ShopifyDiscountCodeOrderByRelevanceFieldEnum = {
|
|
1362
|
+
code: 'code'
|
|
1363
|
+
};
|
|
1347
1364
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1348
1365
|
optIn: 'optIn',
|
|
1349
1366
|
tip: 'tip',
|
|
@@ -1435,7 +1452,9 @@ exports.Prisma.ModelName = {
|
|
|
1435
1452
|
ShopifyStore: 'ShopifyStore',
|
|
1436
1453
|
ShopifyProduct: 'ShopifyProduct',
|
|
1437
1454
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1438
|
-
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1455
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1456
|
+
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1457
|
+
ShopifySale: 'ShopifySale'
|
|
1439
1458
|
};
|
|
1440
1459
|
|
|
1441
1460
|
/**
|