@uptime.link/interfaces 2.0.11 → 2.0.13

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@uptime.link/interfaces',
6
- version: '2.0.11',
6
+ version: '2.0.13',
7
7
  description: 'TypeScript interface for the uptime.link API and modules'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx5QkFBeUI7SUFDL0IsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLDBEQUEwRDtDQUN4RSxDQUFBIn0=
@@ -1,5 +1,20 @@
1
1
  import * as plugins from '../ul-interfaces.plugins.js';
2
2
  export interface IDomainSnapshot {
3
+ registration: {
4
+ isRegistered: boolean;
5
+ registeredAt: Date;
6
+ expiresAt: Date;
7
+ };
8
+ delegation: {
9
+ domainWithoutSuffix: string;
10
+ publicSuffix: string;
11
+ subdomain: string;
12
+ isIcann: boolean;
13
+ dnsSecEnabled: boolean;
14
+ };
15
+ phishingFlags: {
16
+ listName: string;
17
+ }[];
3
18
  nameservers: string[];
4
19
  aRecords: plugins.tsclass.network.IDnsRecord[];
5
20
  aaaaRecords: plugins.tsclass.network.IDnsRecord[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uptime.link/interfaces",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "private": false,
5
5
  "description": "TypeScript interface for the uptime.link API and modules",
6
6
  "main": "dist_ts/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@uptime.link/interfaces',
6
- version: '2.0.11',
6
+ version: '2.0.13',
7
7
  description: 'TypeScript interface for the uptime.link API and modules'
8
8
  }
@@ -1,6 +1,21 @@
1
1
  import * as plugins from '../ul-interfaces.plugins.js';
2
2
 
3
3
  export interface IDomainSnapshot {
4
+ registration: {
5
+ isRegistered: boolean;
6
+ registeredAt: Date;
7
+ expiresAt: Date;
8
+ };
9
+ delegation: {
10
+ domainWithoutSuffix: string;
11
+ publicSuffix: string;
12
+ subdomain: string;
13
+ isIcann: boolean;
14
+ dnsSecEnabled: boolean;
15
+ };
16
+ phishingFlags: {
17
+ listName: string;
18
+ }[];
4
19
  nameservers: string[];
5
20
  aRecords: plugins.tsclass.network.IDnsRecord[];
6
21
  aaaaRecords: plugins.tsclass.network.IDnsRecord[];