@creator.co/creatorco-prisma-client 1.0.76 → 1.0.78
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 +106 -6
- package/index-browser.js +101 -1
- package/index.d.ts +8165 -223
- package/index.js +106 -6
- package/package.json +1 -1
- package/schema.prisma +87 -4
- package/wasm.js +101 -1
package/index-browser.js
CHANGED
|
@@ -1116,6 +1116,61 @@ exports.Prisma.CreditRefundBatchScalarFieldEnum = {
|
|
|
1116
1116
|
brandId: 'brandId'
|
|
1117
1117
|
};
|
|
1118
1118
|
|
|
1119
|
+
exports.Prisma.EmailProviderScalarFieldEnum = {
|
|
1120
|
+
id: 'id',
|
|
1121
|
+
providerType: 'providerType',
|
|
1122
|
+
providerEmail: 'providerEmail',
|
|
1123
|
+
status: 'status',
|
|
1124
|
+
senderName: 'senderName',
|
|
1125
|
+
configurationStatus: 'configurationStatus',
|
|
1126
|
+
isDefault: 'isDefault',
|
|
1127
|
+
accessToken: 'accessToken',
|
|
1128
|
+
refreshToken: 'refreshToken',
|
|
1129
|
+
smtpServer: 'smtpServer',
|
|
1130
|
+
smtpPort: 'smtpPort',
|
|
1131
|
+
smtpUsername: 'smtpUsername',
|
|
1132
|
+
smtpPassword: 'smtpPassword',
|
|
1133
|
+
smtpSenderName: 'smtpSenderName',
|
|
1134
|
+
smtpSenderEmail: 'smtpSenderEmail',
|
|
1135
|
+
smtpRelyAddress: 'smtpRelyAddress',
|
|
1136
|
+
imapServer: 'imapServer',
|
|
1137
|
+
imapPort: 'imapPort',
|
|
1138
|
+
imapUser: 'imapUser',
|
|
1139
|
+
imapPassword: 'imapPassword',
|
|
1140
|
+
enableSSL: 'enableSSL',
|
|
1141
|
+
brandId: 'brandId',
|
|
1142
|
+
createdByUserId: 'createdByUserId',
|
|
1143
|
+
editedByUserId: 'editedByUserId',
|
|
1144
|
+
createdAt: 'createdAt',
|
|
1145
|
+
updatedAt: 'updatedAt'
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
exports.Prisma.EmailTrackingScalarFieldEnum = {
|
|
1149
|
+
id: 'id',
|
|
1150
|
+
trackingId: 'trackingId',
|
|
1151
|
+
brandId: 'brandId',
|
|
1152
|
+
recipientEmail: 'recipientEmail',
|
|
1153
|
+
emailType: 'emailType',
|
|
1154
|
+
campaignName: 'campaignName',
|
|
1155
|
+
sequenceId: 'sequenceId',
|
|
1156
|
+
sequenceStepId: 'sequenceStepId',
|
|
1157
|
+
templateId: 'templateId',
|
|
1158
|
+
sentAt: 'sentAt',
|
|
1159
|
+
opened: 'opened',
|
|
1160
|
+
openedAt: 'openedAt',
|
|
1161
|
+
openCount: 'openCount'
|
|
1162
|
+
};
|
|
1163
|
+
|
|
1164
|
+
exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
|
|
1165
|
+
id: 'id',
|
|
1166
|
+
sequenceId: 'sequenceId',
|
|
1167
|
+
type: 'type',
|
|
1168
|
+
typeId: 'typeId',
|
|
1169
|
+
replyCount: 'replyCount',
|
|
1170
|
+
createdAt: 'createdAt',
|
|
1171
|
+
updatedAt: 'updatedAt'
|
|
1172
|
+
};
|
|
1173
|
+
|
|
1119
1174
|
exports.Prisma.SortOrder = {
|
|
1120
1175
|
asc: 'asc',
|
|
1121
1176
|
desc: 'desc'
|
|
@@ -1543,6 +1598,38 @@ exports.Prisma.FileOrderByRelevanceFieldEnum = {
|
|
|
1543
1598
|
md5: 'md5',
|
|
1544
1599
|
type: 'type'
|
|
1545
1600
|
};
|
|
1601
|
+
|
|
1602
|
+
exports.Prisma.EmailProviderOrderByRelevanceFieldEnum = {
|
|
1603
|
+
id: 'id',
|
|
1604
|
+
providerType: 'providerType',
|
|
1605
|
+
providerEmail: 'providerEmail',
|
|
1606
|
+
senderName: 'senderName',
|
|
1607
|
+
accessToken: 'accessToken',
|
|
1608
|
+
refreshToken: 'refreshToken',
|
|
1609
|
+
smtpServer: 'smtpServer',
|
|
1610
|
+
smtpPort: 'smtpPort',
|
|
1611
|
+
smtpUsername: 'smtpUsername',
|
|
1612
|
+
smtpPassword: 'smtpPassword',
|
|
1613
|
+
smtpSenderName: 'smtpSenderName',
|
|
1614
|
+
smtpSenderEmail: 'smtpSenderEmail',
|
|
1615
|
+
smtpRelyAddress: 'smtpRelyAddress',
|
|
1616
|
+
imapServer: 'imapServer',
|
|
1617
|
+
imapPort: 'imapPort',
|
|
1618
|
+
imapUser: 'imapUser',
|
|
1619
|
+
imapPassword: 'imapPassword'
|
|
1620
|
+
};
|
|
1621
|
+
|
|
1622
|
+
exports.Prisma.EmailTrackingOrderByRelevanceFieldEnum = {
|
|
1623
|
+
id: 'id',
|
|
1624
|
+
trackingId: 'trackingId',
|
|
1625
|
+
recipientEmail: 'recipientEmail',
|
|
1626
|
+
emailType: 'emailType',
|
|
1627
|
+
campaignName: 'campaignName'
|
|
1628
|
+
};
|
|
1629
|
+
|
|
1630
|
+
exports.Prisma.SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = {
|
|
1631
|
+
typeId: 'typeId'
|
|
1632
|
+
};
|
|
1546
1633
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1547
1634
|
optIn: 'optIn',
|
|
1548
1635
|
tip: 'tip',
|
|
@@ -1569,6 +1656,16 @@ exports.ShopifyStoreSyncStatus = exports.$Enums.ShopifyStoreSyncStatus = {
|
|
|
1569
1656
|
error: 'error'
|
|
1570
1657
|
};
|
|
1571
1658
|
|
|
1659
|
+
exports.Status = exports.$Enums.Status = {
|
|
1660
|
+
connected: 'connected',
|
|
1661
|
+
disconnected: 'disconnected'
|
|
1662
|
+
};
|
|
1663
|
+
|
|
1664
|
+
exports.ConfigurationStatus = exports.$Enums.ConfigurationStatus = {
|
|
1665
|
+
configured: 'configured',
|
|
1666
|
+
failed: 'failed'
|
|
1667
|
+
};
|
|
1668
|
+
|
|
1572
1669
|
exports.Prisma.ModelName = {
|
|
1573
1670
|
User: 'User',
|
|
1574
1671
|
Log: 'Log',
|
|
@@ -1652,7 +1749,10 @@ exports.Prisma.ModelName = {
|
|
|
1652
1749
|
CreatorFlag: 'CreatorFlag',
|
|
1653
1750
|
BrandContract: 'BrandContract',
|
|
1654
1751
|
File: 'File',
|
|
1655
|
-
CreditRefundBatch: 'CreditRefundBatch'
|
|
1752
|
+
CreditRefundBatch: 'CreditRefundBatch',
|
|
1753
|
+
EmailProvider: 'EmailProvider',
|
|
1754
|
+
EmailTracking: 'EmailTracking',
|
|
1755
|
+
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail'
|
|
1656
1756
|
};
|
|
1657
1757
|
|
|
1658
1758
|
/**
|