@creator.co/creatorco-prisma-client 1.0.49 → 1.0.50
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 +24 -5
- package/index-browser.js +20 -1
- package/index.d.ts +2975 -127
- package/index.js +24 -5
- package/package.json +1 -1
- package/schema.prisma +23 -0
- package/wasm.js +20 -1
package/index-browser.js
CHANGED
|
@@ -998,6 +998,18 @@ exports.Prisma.ShopifySaleScalarFieldEnum = {
|
|
|
998
998
|
created: 'created'
|
|
999
999
|
};
|
|
1000
1000
|
|
|
1001
|
+
exports.Prisma.CreatorFlagScalarFieldEnum = {
|
|
1002
|
+
id: 'id',
|
|
1003
|
+
label: 'label',
|
|
1004
|
+
comment: 'comment',
|
|
1005
|
+
color: 'color',
|
|
1006
|
+
createdAt: 'createdAt',
|
|
1007
|
+
updatedAt: 'updatedAt',
|
|
1008
|
+
userId: 'userId',
|
|
1009
|
+
flaggedByUserId: 'flaggedByUserId',
|
|
1010
|
+
editedByUserId: 'editedByUserId'
|
|
1011
|
+
};
|
|
1012
|
+
|
|
1001
1013
|
exports.Prisma.SortOrder = {
|
|
1002
1014
|
asc: 'asc',
|
|
1003
1015
|
desc: 'desc'
|
|
@@ -1384,6 +1396,12 @@ exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
|
1384
1396
|
exports.Prisma.ShopifyDiscountCodeOrderByRelevanceFieldEnum = {
|
|
1385
1397
|
code: 'code'
|
|
1386
1398
|
};
|
|
1399
|
+
|
|
1400
|
+
exports.Prisma.CreatorFlagOrderByRelevanceFieldEnum = {
|
|
1401
|
+
label: 'label',
|
|
1402
|
+
comment: 'comment',
|
|
1403
|
+
color: 'color'
|
|
1404
|
+
};
|
|
1387
1405
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1388
1406
|
optIn: 'optIn',
|
|
1389
1407
|
tip: 'tip',
|
|
@@ -1478,7 +1496,8 @@ exports.Prisma.ModelName = {
|
|
|
1478
1496
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1479
1497
|
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1480
1498
|
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1481
|
-
ShopifySale: 'ShopifySale'
|
|
1499
|
+
ShopifySale: 'ShopifySale',
|
|
1500
|
+
CreatorFlag: 'CreatorFlag'
|
|
1482
1501
|
};
|
|
1483
1502
|
|
|
1484
1503
|
/**
|