@creator.co/creatorco-prisma-client 1.0.60 → 1.0.61-alpha-8d6ef3c
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 +44 -5
- package/index-browser.js +40 -1
- package/index.d.ts +4105 -372
- package/index.js +44 -5
- package/package.json +1 -1
- package/schema.prisma +35 -4
- package/wasm.js +40 -1
package/index-browser.js
CHANGED
|
@@ -1072,6 +1072,29 @@ exports.Prisma.BrandContractScalarFieldEnum = {
|
|
|
1072
1072
|
editedByUserId: 'editedByUserId'
|
|
1073
1073
|
};
|
|
1074
1074
|
|
|
1075
|
+
exports.Prisma.SMTPCredentialsScalarFieldEnum = {
|
|
1076
|
+
id: 'id',
|
|
1077
|
+
host: 'host',
|
|
1078
|
+
user: 'user',
|
|
1079
|
+
password: 'password',
|
|
1080
|
+
senderName: 'senderName',
|
|
1081
|
+
emailAddress: 'emailAddress',
|
|
1082
|
+
portNumber: 'portNumber',
|
|
1083
|
+
metaData: 'metaData',
|
|
1084
|
+
brandId: 'brandId'
|
|
1085
|
+
};
|
|
1086
|
+
|
|
1087
|
+
exports.Prisma.IMAPCredentialsScalarFieldEnum = {
|
|
1088
|
+
id: 'id',
|
|
1089
|
+
host: 'host',
|
|
1090
|
+
user: 'user',
|
|
1091
|
+
portNumber: 'portNumber',
|
|
1092
|
+
password: 'password',
|
|
1093
|
+
isSecure: 'isSecure',
|
|
1094
|
+
metaData: 'metaData',
|
|
1095
|
+
brandId: 'brandId'
|
|
1096
|
+
};
|
|
1097
|
+
|
|
1075
1098
|
exports.Prisma.SortOrder = {
|
|
1076
1099
|
asc: 'asc',
|
|
1077
1100
|
desc: 'desc'
|
|
@@ -1487,6 +1510,20 @@ exports.Prisma.BrandContractOrderByRelevanceFieldEnum = {
|
|
|
1487
1510
|
file: 'file',
|
|
1488
1511
|
contractType: 'contractType'
|
|
1489
1512
|
};
|
|
1513
|
+
|
|
1514
|
+
exports.Prisma.SMTPCredentialsOrderByRelevanceFieldEnum = {
|
|
1515
|
+
host: 'host',
|
|
1516
|
+
user: 'user',
|
|
1517
|
+
password: 'password',
|
|
1518
|
+
senderName: 'senderName',
|
|
1519
|
+
emailAddress: 'emailAddress'
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
exports.Prisma.IMAPCredentialsOrderByRelevanceFieldEnum = {
|
|
1523
|
+
host: 'host',
|
|
1524
|
+
user: 'user',
|
|
1525
|
+
password: 'password'
|
|
1526
|
+
};
|
|
1490
1527
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1491
1528
|
optIn: 'optIn',
|
|
1492
1529
|
tip: 'tip',
|
|
@@ -1593,7 +1630,9 @@ exports.Prisma.ModelName = {
|
|
|
1593
1630
|
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1594
1631
|
ShopifySale: 'ShopifySale',
|
|
1595
1632
|
CreatorFlag: 'CreatorFlag',
|
|
1596
|
-
BrandContract: 'BrandContract'
|
|
1633
|
+
BrandContract: 'BrandContract',
|
|
1634
|
+
SMTPCredentials: 'SMTPCredentials',
|
|
1635
|
+
IMAPCredentials: 'IMAPCredentials'
|
|
1597
1636
|
};
|
|
1598
1637
|
|
|
1599
1638
|
/**
|