@uptime.link/interfaces 2.0.13 → 2.0.16

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.13',
6
+ version: '2.0.16',
7
7
  description: 'TypeScript interface for the uptime.link API and modules'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx5QkFBeUI7SUFDL0IsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLDBEQUEwRDtDQUN4RSxDQUFBIn0=
@@ -2,8 +2,8 @@ import * as plugins from '../ul-interfaces.plugins.js';
2
2
  export interface IDomainSnapshot {
3
3
  registration: {
4
4
  isRegistered: boolean;
5
- registeredAt: Date;
6
- expiresAt: Date;
5
+ createionDate: number;
6
+ expiryDate: number;
7
7
  };
8
8
  delegation: {
9
9
  domainWithoutSuffix: string;
@@ -6,4 +6,4 @@ export * from './search.js';
6
6
  export * from './status.js';
7
7
  import * as checks from './checks/index.js';
8
8
  export { checks };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9kYXRhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGFBQWEsQ0FBQztBQUU1QixPQUFPLEtBQUssTUFBTSxNQUFNLG1CQUFtQixDQUFDO0FBRTVDLE9BQU8sRUFDTCxNQUFNLEVBQ1AsQ0FBQSJ9
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9kYXRhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGFBQWEsQ0FBQztBQUU1QixPQUFPLEtBQUssTUFBTSxNQUFNLG1CQUFtQixDQUFDO0FBRTVDLE9BQU8sRUFBRSxNQUFNLEVBQUUsQ0FBQyJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uptime.link/interfaces",
3
- "version": "2.0.13",
3
+ "version": "2.0.16",
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.13',
6
+ version: '2.0.16',
7
7
  description: 'TypeScript interface for the uptime.link API and modules'
8
8
  }
@@ -3,8 +3,8 @@ import * as plugins from '../ul-interfaces.plugins.js';
3
3
  export interface IDomainSnapshot {
4
4
  registration: {
5
5
  isRegistered: boolean;
6
- registeredAt: Date;
7
- expiresAt: Date;
6
+ createionDate: number;
7
+ expiryDate: number;
8
8
  };
9
9
  delegation: {
10
10
  domainWithoutSuffix: string;
@@ -25,4 +25,4 @@ export interface IDomainSnapshot {
25
25
  serverUrl: string;
26
26
  content: string;
27
27
  }[];
28
- }
28
+ }
package/ts/data/index.ts CHANGED
@@ -7,6 +7,4 @@ export * from './status.js';
7
7
 
8
8
  import * as checks from './checks/index.js';
9
9
 
10
- export {
11
- checks
12
- }
10
+ export { checks };
@@ -12,5 +12,5 @@ export interface IReq_PerformDomainSnapshot
12
12
  };
13
13
  response: {
14
14
  domainSnapshot: IDomainSnapshot;
15
- }
15
+ };
16
16
  }