@creator.co/creatorco-prisma-client 1.0.49 → 1.0.50-alpha-73636ce
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 +26 -5
- package/index-browser.js +22 -1
- package/index.d.ts +3033 -57
- package/index.js +26 -5
- package/package.json +1 -1
- package/schema.prisma +24 -0
- package/wasm.js +22 -1
package/index-browser.js
CHANGED
|
@@ -121,6 +121,7 @@ exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
|
121
121
|
|
|
122
122
|
exports.Prisma.UserScalarFieldEnum = {
|
|
123
123
|
id: 'id',
|
|
124
|
+
idmId: 'idmId',
|
|
124
125
|
role: 'role',
|
|
125
126
|
email: 'email',
|
|
126
127
|
password: 'password',
|
|
@@ -998,6 +999,18 @@ exports.Prisma.ShopifySaleScalarFieldEnum = {
|
|
|
998
999
|
created: 'created'
|
|
999
1000
|
};
|
|
1000
1001
|
|
|
1002
|
+
exports.Prisma.CreatorFlagScalarFieldEnum = {
|
|
1003
|
+
id: 'id',
|
|
1004
|
+
label: 'label',
|
|
1005
|
+
comment: 'comment',
|
|
1006
|
+
color: 'color',
|
|
1007
|
+
createdAt: 'createdAt',
|
|
1008
|
+
updatedAt: 'updatedAt',
|
|
1009
|
+
userId: 'userId',
|
|
1010
|
+
flaggedByUserId: 'flaggedByUserId',
|
|
1011
|
+
editedByUserId: 'editedByUserId'
|
|
1012
|
+
};
|
|
1013
|
+
|
|
1001
1014
|
exports.Prisma.SortOrder = {
|
|
1002
1015
|
asc: 'asc',
|
|
1003
1016
|
desc: 'desc'
|
|
@@ -1029,6 +1042,7 @@ exports.Prisma.NullsOrder = {
|
|
|
1029
1042
|
};
|
|
1030
1043
|
|
|
1031
1044
|
exports.Prisma.UserOrderByRelevanceFieldEnum = {
|
|
1045
|
+
idmId: 'idmId',
|
|
1032
1046
|
role: 'role',
|
|
1033
1047
|
email: 'email',
|
|
1034
1048
|
password: 'password',
|
|
@@ -1384,6 +1398,12 @@ exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
|
1384
1398
|
exports.Prisma.ShopifyDiscountCodeOrderByRelevanceFieldEnum = {
|
|
1385
1399
|
code: 'code'
|
|
1386
1400
|
};
|
|
1401
|
+
|
|
1402
|
+
exports.Prisma.CreatorFlagOrderByRelevanceFieldEnum = {
|
|
1403
|
+
label: 'label',
|
|
1404
|
+
comment: 'comment',
|
|
1405
|
+
color: 'color'
|
|
1406
|
+
};
|
|
1387
1407
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1388
1408
|
optIn: 'optIn',
|
|
1389
1409
|
tip: 'tip',
|
|
@@ -1478,7 +1498,8 @@ exports.Prisma.ModelName = {
|
|
|
1478
1498
|
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1479
1499
|
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1480
1500
|
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1481
|
-
ShopifySale: 'ShopifySale'
|
|
1501
|
+
ShopifySale: 'ShopifySale',
|
|
1502
|
+
CreatorFlag: 'CreatorFlag'
|
|
1482
1503
|
};
|
|
1483
1504
|
|
|
1484
1505
|
/**
|