added backup and email client
This commit is contained in:
+50
@@ -137,6 +137,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
||||
firstName: 'firstName',
|
||||
lastName: 'lastName',
|
||||
isActive: 'isActive',
|
||||
tokenInvalidatedAt: 'tokenInvalidatedAt',
|
||||
customerId: 'customerId',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
@@ -259,6 +260,13 @@ exports.Prisma.EmailProviderConfigScalarFieldEnum = {
|
||||
passwordEncrypted: 'passwordEncrypted',
|
||||
domain: 'domain',
|
||||
defaultForwardEmail: 'defaultForwardEmail',
|
||||
imapServer: 'imapServer',
|
||||
imapPort: 'imapPort',
|
||||
smtpServer: 'smtpServer',
|
||||
smtpPort: 'smtpPort',
|
||||
imapEncryption: 'imapEncryption',
|
||||
smtpEncryption: 'smtpEncryption',
|
||||
allowSelfSignedCerts: 'allowSelfSignedCerts',
|
||||
isActive: 'isActive',
|
||||
isDefault: 'isDefault',
|
||||
createdAt: 'createdAt',
|
||||
@@ -275,6 +283,36 @@ exports.Prisma.StressfreiEmailScalarFieldEnum = {
|
||||
isProvisioned: 'isProvisioned',
|
||||
provisionedAt: 'provisionedAt',
|
||||
provisionError: 'provisionError',
|
||||
hasMailbox: 'hasMailbox',
|
||||
emailPasswordEncrypted: 'emailPasswordEncrypted',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.CachedEmailScalarFieldEnum = {
|
||||
id: 'id',
|
||||
stressfreiEmailId: 'stressfreiEmailId',
|
||||
folder: 'folder',
|
||||
messageId: 'messageId',
|
||||
uid: 'uid',
|
||||
subject: 'subject',
|
||||
fromAddress: 'fromAddress',
|
||||
fromName: 'fromName',
|
||||
toAddresses: 'toAddresses',
|
||||
ccAddresses: 'ccAddresses',
|
||||
receivedAt: 'receivedAt',
|
||||
textBody: 'textBody',
|
||||
htmlBody: 'htmlBody',
|
||||
hasAttachments: 'hasAttachments',
|
||||
attachmentNames: 'attachmentNames',
|
||||
contractId: 'contractId',
|
||||
assignedAt: 'assignedAt',
|
||||
assignedBy: 'assignedBy',
|
||||
isAutoAssigned: 'isAutoAssigned',
|
||||
isRead: 'isRead',
|
||||
isStarred: 'isStarred',
|
||||
isDeleted: 'isDeleted',
|
||||
deletedAt: 'deletedAt',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
@@ -542,6 +580,17 @@ exports.EmailProviderType = exports.$Enums.EmailProviderType = {
|
||||
DIRECTADMIN: 'DIRECTADMIN'
|
||||
};
|
||||
|
||||
exports.MailEncryption = exports.$Enums.MailEncryption = {
|
||||
SSL: 'SSL',
|
||||
STARTTLS: 'STARTTLS',
|
||||
NONE: 'NONE'
|
||||
};
|
||||
|
||||
exports.EmailFolder = exports.$Enums.EmailFolder = {
|
||||
INBOX: 'INBOX',
|
||||
SENT: 'SENT'
|
||||
};
|
||||
|
||||
exports.MeterType = exports.$Enums.MeterType = {
|
||||
ELECTRICITY: 'ELECTRICITY',
|
||||
GAS: 'GAS'
|
||||
@@ -592,6 +641,7 @@ exports.Prisma.ModelName = {
|
||||
IdentityDocument: 'IdentityDocument',
|
||||
EmailProviderConfig: 'EmailProviderConfig',
|
||||
StressfreiEmail: 'StressfreiEmail',
|
||||
CachedEmail: 'CachedEmail',
|
||||
Meter: 'Meter',
|
||||
MeterReading: 'MeterReading',
|
||||
SalesPlatform: 'SalesPlatform',
|
||||
|
||||
Reference in New Issue
Block a user