@creator.co/creatorco-prisma-client 1.0.46 → 1.0.47-alpha-15ad3c3
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 +27 -5
- package/index-browser.js +23 -1
- package/index.d.ts +3594 -485
- package/index.js +27 -5
- package/package.json +1 -1
- package/schema.prisma +27 -0
- package/wasm.js +23 -1
package/index-browser.js
CHANGED
|
@@ -981,6 +981,21 @@ exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
|
981
981
|
shopifyProductId: 'shopifyProductId'
|
|
982
982
|
};
|
|
983
983
|
|
|
984
|
+
exports.Prisma.ShopifyDiscountCodeScalarFieldEnum = {
|
|
985
|
+
id: 'id',
|
|
986
|
+
code: 'code',
|
|
987
|
+
discount: 'discount',
|
|
988
|
+
shopifyPriceRuleId: 'shopifyPriceRuleId',
|
|
989
|
+
optInId: 'optInId'
|
|
990
|
+
};
|
|
991
|
+
|
|
992
|
+
exports.Prisma.ShopifySaleScalarFieldEnum = {
|
|
993
|
+
id: 'id',
|
|
994
|
+
amount: 'amount',
|
|
995
|
+
metaData: 'metaData',
|
|
996
|
+
discountCodeId: 'discountCodeId'
|
|
997
|
+
};
|
|
998
|
+
|
|
984
999
|
exports.Prisma.SortOrder = {
|
|
985
1000
|
asc: 'asc',
|
|
986
1001
|
desc: 'desc'
|
|
@@ -1363,6 +1378,11 @@ exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
|
1363
1378
|
title: 'title',
|
|
1364
1379
|
imageUrl: 'imageUrl'
|
|
1365
1380
|
};
|
|
1381
|
+
|
|
1382
|
+
exports.Prisma.ShopifyDiscountCodeOrderByRelevanceFieldEnum = {
|
|
1383
|
+
code: 'code',
|
|
1384
|
+
shopifyPriceRuleId: 'shopifyPriceRuleId'
|
|
1385
|
+
};
|
|
1366
1386
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1367
1387
|
optIn: 'optIn',
|
|
1368
1388
|
tip: 'tip',
|
|
@@ -1455,7 +1475,9 @@ exports.Prisma.ModelName = {
|
|
|
1455
1475
|
ShopifyStore: 'ShopifyStore',
|
|
1456
1476
|
ShopifyProduct: 'ShopifyProduct',
|
|
1457
1477
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1458
|
-
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1478
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1479
|
+
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1480
|
+
ShopifySale: 'ShopifySale'
|
|
1459
1481
|
};
|
|
1460
1482
|
|
|
1461
1483
|
/**
|