@creator.co/creatorco-prisma-client 1.0.78 → 1.0.79
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 +8 -5
- package/index-browser.js +3 -0
- package/index.d.ts +141 -0
- package/index.js +8 -5
- package/package.json +1 -1
- package/schema.prisma +3 -0
- package/wasm.js +3 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -1744,6 +1744,9 @@ model EmailProvider {
|
|
|
1744
1744
|
imapUser String?
|
|
1745
1745
|
imapPassword String?
|
|
1746
1746
|
enableSSL Boolean @default(false)
|
|
1747
|
+
isdkimStatus Boolean? @default(false)
|
|
1748
|
+
isdmarcStatus Boolean? @default(false)
|
|
1749
|
+
isspfStatus Boolean? @default(false)
|
|
1747
1750
|
brandId Int
|
|
1748
1751
|
brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
|
|
1749
1752
|
createdByUserId Int
|
package/wasm.js
CHANGED
|
@@ -1138,6 +1138,9 @@ exports.Prisma.EmailProviderScalarFieldEnum = {
|
|
|
1138
1138
|
imapUser: 'imapUser',
|
|
1139
1139
|
imapPassword: 'imapPassword',
|
|
1140
1140
|
enableSSL: 'enableSSL',
|
|
1141
|
+
isdkimStatus: 'isdkimStatus',
|
|
1142
|
+
isdmarcStatus: 'isdmarcStatus',
|
|
1143
|
+
isspfStatus: 'isspfStatus',
|
|
1141
1144
|
brandId: 'brandId',
|
|
1142
1145
|
createdByUserId: 'createdByUserId',
|
|
1143
1146
|
editedByUserId: 'editedByUserId',
|