mirror of
https://github.com/jakejarvis/rdapper.git
synced 2026-09-23 00:15:31 -04:00
Remove fetchedAt field from DomainRecord interface and related functions
This commit is contained in:
@@ -123,7 +123,6 @@ interface DomainRecord {
|
||||
rawRdap?: unknown; // raw RDAP JSON (only when options.includeRaw)
|
||||
rawWhois?: string; // raw WHOIS text (only when options.includeRaw)
|
||||
source: "rdap" | "whois"; // which path produced data
|
||||
fetchedAt: string; // ISO 8601 timestamp
|
||||
warnings?: string[];
|
||||
}
|
||||
```
|
||||
@@ -139,8 +138,7 @@ interface DomainRecord {
|
||||
"statuses": [{ "status": "clientTransferProhibited" }],
|
||||
"nameservers": [{ "host": "a.iana-servers.net" }, { "host": "b.iana-servers.net" }],
|
||||
"dnssec": { "enabled": true },
|
||||
"source": "rdap",
|
||||
"fetchedAt": "2025-01-01T00:00:00Z"
|
||||
"source": "rdap"
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user