@creator.co/creatorco-prisma-client 1.0.59 → 1.0.60
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 +3275 -246
- package/index.js +25 -5
- package/package.json +1 -1
- package/schema.prisma +28 -0
- package/wasm.js +21 -1
package/index-browser.js
CHANGED
|
@@ -1058,6 +1058,20 @@ exports.Prisma.CreatorFlagScalarFieldEnum = {
|
|
|
1058
1058
|
editedByUserId: 'editedByUserId'
|
|
1059
1059
|
};
|
|
1060
1060
|
|
|
1061
|
+
exports.Prisma.BrandContractScalarFieldEnum = {
|
|
1062
|
+
id: 'id',
|
|
1063
|
+
brandId: 'brandId',
|
|
1064
|
+
createdAt: 'createdAt',
|
|
1065
|
+
updatedAt: 'updatedAt',
|
|
1066
|
+
file: 'file',
|
|
1067
|
+
contractType: 'contractType',
|
|
1068
|
+
startDate: 'startDate',
|
|
1069
|
+
endDate: 'endDate',
|
|
1070
|
+
archivedAt: 'archivedAt',
|
|
1071
|
+
createdByUserId: 'createdByUserId',
|
|
1072
|
+
editedByUserId: 'editedByUserId'
|
|
1073
|
+
};
|
|
1074
|
+
|
|
1061
1075
|
exports.Prisma.SortOrder = {
|
|
1062
1076
|
asc: 'asc',
|
|
1063
1077
|
desc: 'desc'
|
|
@@ -1468,6 +1482,11 @@ exports.Prisma.CreatorFlagOrderByRelevanceFieldEnum = {
|
|
|
1468
1482
|
comment: 'comment',
|
|
1469
1483
|
color: 'color'
|
|
1470
1484
|
};
|
|
1485
|
+
|
|
1486
|
+
exports.Prisma.BrandContractOrderByRelevanceFieldEnum = {
|
|
1487
|
+
file: 'file',
|
|
1488
|
+
contractType: 'contractType'
|
|
1489
|
+
};
|
|
1471
1490
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1472
1491
|
optIn: 'optIn',
|
|
1473
1492
|
tip: 'tip',
|
|
@@ -1573,7 +1592,8 @@ exports.Prisma.ModelName = {
|
|
|
1573
1592
|
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1574
1593
|
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1575
1594
|
ShopifySale: 'ShopifySale',
|
|
1576
|
-
CreatorFlag: 'CreatorFlag'
|
|
1595
|
+
CreatorFlag: 'CreatorFlag',
|
|
1596
|
+
BrandContract: 'BrandContract'
|
|
1577
1597
|
};
|
|
1578
1598
|
|
|
1579
1599
|
/**
|