@bprotsyk/aso-core 1.2.189 → 1.2.190

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.
@@ -23,8 +23,8 @@
23
23
  /// <reference types="mongoose/types/virtuals" />
24
24
  /// <reference types="mongoose/types/inferschematype" />
25
25
  import { ICloudflareDomainType } from "models/cloudflare-domain";
26
- import { Schema } from "mongoose";
27
- export interface IDomain {
26
+ import { Document, Schema } from "mongoose";
27
+ export interface IDomain extends Document {
28
28
  id: string;
29
29
  namecheapId: string;
30
30
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.189",
3
+ "version": "1.2.190",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -1,7 +1,7 @@
1
1
  import { ICloudflareDomainType } from "models/cloudflare-domain"
2
- import { Schema, model } from "mongoose"
2
+ import { Document, Schema, model } from "mongoose"
3
3
 
4
- export interface IDomain {
4
+ export interface IDomain extends Document {
5
5
  id: string
6
6
  namecheapId: string
7
7
  name: string