@uptime.link/interfaces 2.0.7 → 2.0.8
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.
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/data/domainsnapshot.d.ts +11 -0
- package/dist_ts/data/domainsnapshot.js +2 -0
- package/dist_ts/data/index.d.ts +3 -0
- package/dist_ts/data/index.js +4 -1
- package/package.json +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/data/domainsnapshot.ts +12 -0
- package/ts/data/index.ts +7 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@uptime.link/interfaces',
|
|
6
|
-
version: '2.0.
|
|
6
|
+
version: '2.0.8',
|
|
7
7
|
description: 'TypeScript interface for the uptime.link API and modules'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx5QkFBeUI7SUFDL0IsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLDBEQUEwRDtDQUN4RSxDQUFBIn0=
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as plugins from '../ul-interfaces.plugins.js';
|
|
2
|
+
export interface IDomainSnapshot {
|
|
3
|
+
nameservers: string[];
|
|
4
|
+
aRecords: plugins.tsclass.network.IDnsRecord[];
|
|
5
|
+
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
|
|
6
|
+
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
|
7
|
+
whoisServers: {
|
|
8
|
+
serverUrl: string;
|
|
9
|
+
content: string;
|
|
10
|
+
}[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import '../ul-interfaces.plugins.js';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9tYWluc25hcHNob3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9kYXRhL2RvbWFpbnNuYXBzaG90LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQXlCLDZCQUE2QixDQUFDIn0=
|
package/dist_ts/data/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from './checkcollection.js';
|
|
2
|
+
export * from './domainsnapshot.js';
|
|
2
3
|
export * from './incident.js';
|
|
3
4
|
export * from './property.js';
|
|
4
5
|
export * from './search.js';
|
|
5
6
|
export * from './status.js';
|
|
7
|
+
import * as checks from './checks/index.js';
|
|
8
|
+
export { checks };
|
package/dist_ts/data/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export * from './checkcollection.js';
|
|
2
|
+
export * from './domainsnapshot.js';
|
|
2
3
|
export * from './incident.js';
|
|
3
4
|
export * from './property.js';
|
|
4
5
|
export * from './search.js';
|
|
5
6
|
export * from './status.js';
|
|
6
|
-
|
|
7
|
+
import * as checks from './checks/index.js';
|
|
8
|
+
export { checks };
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9kYXRhL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGFBQWEsQ0FBQztBQUM1QixjQUFjLGFBQWEsQ0FBQztBQUU1QixPQUFPLEtBQUssTUFBTSxNQUFNLG1CQUFtQixDQUFDO0FBRTVDLE9BQU8sRUFDTCxNQUFNLEVBQ1AsQ0FBQSJ9
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as plugins from '../ul-interfaces.plugins.js';
|
|
2
|
+
|
|
3
|
+
export interface IDomainSnapshot {
|
|
4
|
+
nameservers: string[];
|
|
5
|
+
aRecords: plugins.tsclass.network.IDnsRecord[];
|
|
6
|
+
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
|
|
7
|
+
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
|
8
|
+
whoisServers: {
|
|
9
|
+
serverUrl: string;
|
|
10
|
+
content: string;
|
|
11
|
+
}[];
|
|
12
|
+
}
|
package/ts/data/index.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export * from './checkcollection.js';
|
|
2
|
+
export * from './domainsnapshot.js';
|
|
2
3
|
export * from './incident.js';
|
|
3
4
|
export * from './property.js';
|
|
4
5
|
export * from './search.js';
|
|
5
6
|
export * from './status.js';
|
|
7
|
+
|
|
8
|
+
import * as checks from './checks/index.js';
|
|
9
|
+
|
|
10
|
+
export {
|
|
11
|
+
checks
|
|
12
|
+
}
|