@astralibx/email-account-manager 2.0.2 → 3.0.0
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -314,6 +314,10 @@ function createEmailAccountSchema(options) {
|
|
|
314
314
|
required: true,
|
|
315
315
|
_id: false
|
|
316
316
|
},
|
|
317
|
+
metadata: {
|
|
318
|
+
type: mongoose.Schema.Types.Mixed,
|
|
319
|
+
default: {}
|
|
320
|
+
},
|
|
317
321
|
totalEmailsSent: { type: Number, default: 0 },
|
|
318
322
|
lastSuccessfulSendAt: Date,
|
|
319
323
|
lastImapCheckAt: Date
|