@creator.co/creatorco-prisma-client 1.0.78 → 1.0.80
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 +10 -5
- package/index-browser.js +5 -0
- package/index.d.ts +452 -149
- package/index.js +10 -5
- package/package.json +1 -1
- package/schema.prisma +6 -2
- package/wasm.js +5 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -326,9 +326,9 @@ model BrandUserProfile {
|
|
|
326
326
|
|
|
327
327
|
model Brand {
|
|
328
328
|
id Int @id @default(autoincrement())
|
|
329
|
-
name String
|
|
329
|
+
name String @unique
|
|
330
330
|
description String? @db.Text
|
|
331
|
-
website String
|
|
331
|
+
website String?
|
|
332
332
|
monthlyContacts Int?
|
|
333
333
|
monthlyReports Int?
|
|
334
334
|
lastContactDistribution DateTime?
|
|
@@ -336,6 +336,7 @@ model Brand {
|
|
|
336
336
|
affiliateBaseUrl String? @db.VarChar(2083)
|
|
337
337
|
affiliateCommission Float?
|
|
338
338
|
extraData Json @default("{}")
|
|
339
|
+
idmId String? @unique
|
|
339
340
|
|
|
340
341
|
specialistId Int?
|
|
341
342
|
dedicatedSpecialist User? @relation(fields: [specialistId], references: [id])
|
|
@@ -1744,6 +1745,9 @@ model EmailProvider {
|
|
|
1744
1745
|
imapUser String?
|
|
1745
1746
|
imapPassword String?
|
|
1746
1747
|
enableSSL Boolean @default(false)
|
|
1748
|
+
isdkimStatus Boolean? @default(false)
|
|
1749
|
+
isdmarcStatus Boolean? @default(false)
|
|
1750
|
+
isspfStatus Boolean? @default(false)
|
|
1747
1751
|
brandId Int
|
|
1748
1752
|
brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
|
|
1749
1753
|
createdByUserId Int
|
package/wasm.js
CHANGED
|
@@ -321,6 +321,7 @@ exports.Prisma.BrandScalarFieldEnum = {
|
|
|
321
321
|
affiliateBaseUrl: 'affiliateBaseUrl',
|
|
322
322
|
affiliateCommission: 'affiliateCommission',
|
|
323
323
|
extraData: 'extraData',
|
|
324
|
+
idmId: 'idmId',
|
|
324
325
|
specialistId: 'specialistId',
|
|
325
326
|
parentBrandId: 'parentBrandId',
|
|
326
327
|
searchName: 'searchName'
|
|
@@ -1138,6 +1139,9 @@ exports.Prisma.EmailProviderScalarFieldEnum = {
|
|
|
1138
1139
|
imapUser: 'imapUser',
|
|
1139
1140
|
imapPassword: 'imapPassword',
|
|
1140
1141
|
enableSSL: 'enableSSL',
|
|
1142
|
+
isdkimStatus: 'isdkimStatus',
|
|
1143
|
+
isdmarcStatus: 'isdmarcStatus',
|
|
1144
|
+
isspfStatus: 'isspfStatus',
|
|
1141
1145
|
brandId: 'brandId',
|
|
1142
1146
|
createdByUserId: 'createdByUserId',
|
|
1143
1147
|
editedByUserId: 'editedByUserId',
|
|
@@ -1297,6 +1301,7 @@ exports.Prisma.BrandOrderByRelevanceFieldEnum = {
|
|
|
1297
1301
|
website: 'website',
|
|
1298
1302
|
logoUrl: 'logoUrl',
|
|
1299
1303
|
affiliateBaseUrl: 'affiliateBaseUrl',
|
|
1304
|
+
idmId: 'idmId',
|
|
1300
1305
|
searchName: 'searchName'
|
|
1301
1306
|
};
|
|
1302
1307
|
|