@creator.co/creatorco-prisma-client 1.0.46-alpha-cbcafab → 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 +32 -5
- package/index-browser.js +28 -1
- package/index.d.ts +3407 -173
- package/index.js +32 -5
- package/package.json +1 -1
- package/schema.prisma +33 -5
- package/wasm.js +28 -1
package/index-browser.js
CHANGED
|
@@ -884,6 +884,7 @@ exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
|
|
|
884
884
|
|
|
885
885
|
exports.Prisma.ShareASaleEventScalarFieldEnum = {
|
|
886
886
|
id: 'id',
|
|
887
|
+
transactionId: 'transactionId',
|
|
887
888
|
created: 'created',
|
|
888
889
|
saleAmount: 'saleAmount',
|
|
889
890
|
commission: 'commission',
|
|
@@ -980,6 +981,21 @@ exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
|
980
981
|
shopifyProductId: 'shopifyProductId'
|
|
981
982
|
};
|
|
982
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
|
+
|
|
983
999
|
exports.Prisma.SortOrder = {
|
|
984
1000
|
asc: 'asc',
|
|
985
1001
|
desc: 'desc'
|
|
@@ -1328,6 +1344,10 @@ exports.Prisma.ImpactRadiusEventOrderByRelevanceFieldEnum = {
|
|
|
1328
1344
|
type: 'type'
|
|
1329
1345
|
};
|
|
1330
1346
|
|
|
1347
|
+
exports.Prisma.ShareASaleEventOrderByRelevanceFieldEnum = {
|
|
1348
|
+
transactionId: 'transactionId'
|
|
1349
|
+
};
|
|
1350
|
+
|
|
1331
1351
|
exports.Prisma.CreatorSearchFilterOrderByRelevanceFieldEnum = {
|
|
1332
1352
|
title: 'title'
|
|
1333
1353
|
};
|
|
@@ -1358,6 +1378,11 @@ exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
|
1358
1378
|
title: 'title',
|
|
1359
1379
|
imageUrl: 'imageUrl'
|
|
1360
1380
|
};
|
|
1381
|
+
|
|
1382
|
+
exports.Prisma.ShopifyDiscountCodeOrderByRelevanceFieldEnum = {
|
|
1383
|
+
code: 'code',
|
|
1384
|
+
shopifyPriceRuleId: 'shopifyPriceRuleId'
|
|
1385
|
+
};
|
|
1361
1386
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1362
1387
|
optIn: 'optIn',
|
|
1363
1388
|
tip: 'tip',
|
|
@@ -1450,7 +1475,9 @@ exports.Prisma.ModelName = {
|
|
|
1450
1475
|
ShopifyStore: 'ShopifyStore',
|
|
1451
1476
|
ShopifyProduct: 'ShopifyProduct',
|
|
1452
1477
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1453
|
-
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1478
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1479
|
+
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1480
|
+
ShopifySale: 'ShopifySale'
|
|
1454
1481
|
};
|
|
1455
1482
|
|
|
1456
1483
|
/**
|