@creator.co/creatorco-prisma-client 1.0.42 → 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 -5
- package/index-browser.js +21 -1
- package/index.d.ts +3538 -485
- package/index.js +25 -5
- package/package.json +1 -1
- package/schema.prisma +26 -0
- package/wasm.js +21 -1
package/index-browser.js
CHANGED
|
@@ -967,6 +967,20 @@ exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
|
967
967
|
shopifyProductId: 'shopifyProductId'
|
|
968
968
|
};
|
|
969
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
|
+
|
|
970
984
|
exports.Prisma.SortOrder = {
|
|
971
985
|
asc: 'asc',
|
|
972
986
|
desc: 'desc'
|
|
@@ -1343,6 +1357,10 @@ exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
|
1343
1357
|
title: 'title',
|
|
1344
1358
|
imageUrl: 'imageUrl'
|
|
1345
1359
|
};
|
|
1360
|
+
|
|
1361
|
+
exports.Prisma.ShopifyDiscountCodeOrderByRelevanceFieldEnum = {
|
|
1362
|
+
code: 'code'
|
|
1363
|
+
};
|
|
1346
1364
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1347
1365
|
optIn: 'optIn',
|
|
1348
1366
|
tip: 'tip',
|
|
@@ -1434,7 +1452,9 @@ exports.Prisma.ModelName = {
|
|
|
1434
1452
|
ShopifyStore: 'ShopifyStore',
|
|
1435
1453
|
ShopifyProduct: 'ShopifyProduct',
|
|
1436
1454
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1437
|
-
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1455
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1456
|
+
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1457
|
+
ShopifySale: 'ShopifySale'
|
|
1438
1458
|
};
|
|
1439
1459
|
|
|
1440
1460
|
/**
|