@bprotsyk/aso-core 1.2.210 → 1.2.212

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.
@@ -12,6 +12,27 @@ export interface ICloudflareDomain {
12
12
  modified_on: Date;
13
13
  created_on: Date;
14
14
  }
15
+ export interface ICloudflareDomainRecord {
16
+ id: string;
17
+ zone_id: string;
18
+ zone_name: string;
19
+ name: string;
20
+ type: string;
21
+ content: string;
22
+ proxiable: boolean;
23
+ proxied: boolean;
24
+ ttl: number;
25
+ locked: boolean;
26
+ meta: {
27
+ auto_added: boolean;
28
+ managed_by_apps: boolean;
29
+ managed_by_argo_tunnel: boolean;
30
+ };
31
+ comment: string;
32
+ tags: string[];
33
+ created_on: string;
34
+ modified_on: string;
35
+ }
15
36
  export declare enum ICloudflareDomainStatus {
16
37
  PENDING = "pending"
17
38
  }
@@ -28,6 +28,7 @@ export interface IDomain extends Document {
28
28
  id: string;
29
29
  namecheapId: string;
30
30
  name: string;
31
+ caption: string;
31
32
  status: DomainStatus;
32
33
  cloudflareStatus: string;
33
34
  paused: boolean;
@@ -71,6 +72,7 @@ export declare const DomainSchema: Schema<any, Model<any, any, any, any, any>, {
71
72
  name?: string | undefined;
72
73
  type?: string | undefined;
73
74
  paused?: boolean | undefined;
75
+ caption?: string | undefined;
74
76
  status?: string | undefined;
75
77
  id?: string | undefined;
76
78
  target?: string | undefined;
@@ -19,6 +19,7 @@ exports.DomainSchema = new mongoose_1.Schema({
19
19
  id: String,
20
20
  namecheapId: String,
21
21
  name: String,
22
+ caption: String,
22
23
  status: String,
23
24
  cloudflareStatus: String,
24
25
  paused: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.210",
3
+ "version": "1.2.212",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -13,6 +13,28 @@ export interface ICloudflareDomain {
13
13
  created_on: Date;
14
14
  }
15
15
 
16
+ export interface ICloudflareDomainRecord {
17
+ id: string;
18
+ zone_id: string;
19
+ zone_name: string;
20
+ name: string;
21
+ type: string;
22
+ content: string;
23
+ proxiable: boolean;
24
+ proxied: boolean;
25
+ ttl: number;
26
+ locked: boolean;
27
+ meta: {
28
+ auto_added: boolean;
29
+ managed_by_apps: boolean;
30
+ managed_by_argo_tunnel: boolean;
31
+ };
32
+ comment: string;
33
+ tags: string[];
34
+ created_on: string;
35
+ modified_on: string;
36
+ }
37
+
16
38
  export enum ICloudflareDomainStatus {
17
39
  PENDING = "pending"
18
40
  }
@@ -5,6 +5,7 @@ export interface IDomain extends Document {
5
5
  id: string
6
6
  namecheapId: string
7
7
  name: string
8
+ caption: string,
8
9
  status: DomainStatus
9
10
  cloudflareStatus: string
10
11
  paused: boolean
@@ -50,6 +51,7 @@ export const DomainSchema = new Schema({
50
51
  id: String,
51
52
  namecheapId: String,
52
53
  name: String,
54
+ caption: String,
53
55
  status: String,
54
56
  cloudflareStatus: String,
55
57
  paused: Boolean,