ts-mailcow-api 0.8.1 → 0.8.2

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.
Files changed (3) hide show
  1. package/dist/types.d.ts +2 -2
  2. package/package.json +1 -1
  3. package/src/types.ts +1393 -1393
package/dist/types.d.ts CHANGED
@@ -296,9 +296,9 @@ export interface SpamPolicy {
296
296
  */
297
297
  export interface BaseMailboxAttributes {
298
298
  /**
299
- * Boolean if the mailbox is active.
299
+ * Integer representing if the mailbox is active (allows for custom states).
300
300
  */
301
- active: boolean;
301
+ active: number;
302
302
  /**
303
303
  * Boolean if the user is forced to update their password on login.
304
304
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-mailcow-api",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "TypeScript wrapper for the mailcow API.",
5
5
  "scripts": {
6
6
  "test": "ts-mocha ./test/**/*.test.ts",