@xyo-network/xns-record-payload-plugins 3.6.0 → 4.0.0

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.
@@ -1,103 +1,103 @@
1
1
  // https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4
2
2
 
3
- export type DNSResourceRecordType =
4
- | 'A'
5
- | 'NS'
6
- | 'MD'
7
- | 'MF'
8
- | 'CNAME'
9
- | 'SOA'
10
- | 'MB'
11
- | 'MG'
12
- | 'MR'
13
- | 'NULL'
14
- | 'WKS'
15
- | 'PTR'
16
- | 'HINFO'
17
- | 'MINFO'
18
- | 'MX'
19
- | 'TXT'
20
- | 'RP'
21
- | 'AFSDB'
22
- | 'X25'
23
- | 'ISDN'
24
- | 'RT'
25
- | 'NSAP'
26
- | 'NSAP-PTR'
27
- | 'SIG'
28
- | 'KEY'
29
- | 'PX'
30
- | 'GPOS'
31
- | 'AAAA'
32
- | 'LOC'
33
- | 'NXT'
34
- | 'EID'
35
- | 'NIMLOC'
36
- | 'SRV'
37
- | 'ATMA'
38
- | 'NAPTR'
39
- | 'KX'
40
- | 'CERT'
41
- | 'A6'
42
- | 'DNAME'
43
- | 'SINK'
44
- | 'OPT'
45
- | 'APL'
46
- | 'DS'
47
- | 'SSHFP'
48
- | 'IPSECKEY'
49
- | 'RRSIG'
50
- | 'NSEC'
51
- | 'DNSKEY'
52
- | 'DHCID'
53
- | 'NSEC3'
54
- | 'NSEC3PARAM'
55
- | 'TLSA'
56
- | 'SMIMEA'
57
- | 'HIP'
58
- | 'NINFO'
59
- | 'RKEY'
60
- | 'TALINK'
61
- | 'CDS'
62
- | 'CDNSKEY'
63
- | 'OPENPGPKEY'
64
- | 'CSYNC'
65
- | 'ZONEMD'
66
- | 'SVCB'
67
- | 'HTTPS'
68
- | 'SPF'
69
- | 'UINFO'
70
- | 'UID'
71
- | 'GID'
72
- | 'UNSPEC'
73
- | 'NID'
74
- | 'L32'
75
- | 'L64'
76
- | 'LP'
77
- | 'EUI48'
78
- | 'EUI64'
79
- | 'NXNAME'
80
- | 'TKEY'
81
- | 'TSIG'
82
- | 'IXFR'
83
- | 'AXFR'
84
- | 'MAILB'
85
- | 'MAILA'
86
- | '*'
87
- | 'URI'
88
- | 'CAA'
89
- | 'AVC'
90
- | 'DOA'
91
- | 'AMTRELAY'
92
- | 'RESINFO'
93
- | 'WALLET'
94
- | 'CLA'
95
- | 'IPN'
96
- | 'TA'
97
- | 'DLV'
3
+ export type DNSResourceRecordType
4
+ = | 'A'
5
+ | 'NS'
6
+ | 'MD'
7
+ | 'MF'
8
+ | 'CNAME'
9
+ | 'SOA'
10
+ | 'MB'
11
+ | 'MG'
12
+ | 'MR'
13
+ | 'NULL'
14
+ | 'WKS'
15
+ | 'PTR'
16
+ | 'HINFO'
17
+ | 'MINFO'
18
+ | 'MX'
19
+ | 'TXT'
20
+ | 'RP'
21
+ | 'AFSDB'
22
+ | 'X25'
23
+ | 'ISDN'
24
+ | 'RT'
25
+ | 'NSAP'
26
+ | 'NSAP-PTR'
27
+ | 'SIG'
28
+ | 'KEY'
29
+ | 'PX'
30
+ | 'GPOS'
31
+ | 'AAAA'
32
+ | 'LOC'
33
+ | 'NXT'
34
+ | 'EID'
35
+ | 'NIMLOC'
36
+ | 'SRV'
37
+ | 'ATMA'
38
+ | 'NAPTR'
39
+ | 'KX'
40
+ | 'CERT'
41
+ | 'A6'
42
+ | 'DNAME'
43
+ | 'SINK'
44
+ | 'OPT'
45
+ | 'APL'
46
+ | 'DS'
47
+ | 'SSHFP'
48
+ | 'IPSECKEY'
49
+ | 'RRSIG'
50
+ | 'NSEC'
51
+ | 'DNSKEY'
52
+ | 'DHCID'
53
+ | 'NSEC3'
54
+ | 'NSEC3PARAM'
55
+ | 'TLSA'
56
+ | 'SMIMEA'
57
+ | 'HIP'
58
+ | 'NINFO'
59
+ | 'RKEY'
60
+ | 'TALINK'
61
+ | 'CDS'
62
+ | 'CDNSKEY'
63
+ | 'OPENPGPKEY'
64
+ | 'CSYNC'
65
+ | 'ZONEMD'
66
+ | 'SVCB'
67
+ | 'HTTPS'
68
+ | 'SPF'
69
+ | 'UINFO'
70
+ | 'UID'
71
+ | 'GID'
72
+ | 'UNSPEC'
73
+ | 'NID'
74
+ | 'L32'
75
+ | 'L64'
76
+ | 'LP'
77
+ | 'EUI48'
78
+ | 'EUI64'
79
+ | 'NXNAME'
80
+ | 'TKEY'
81
+ | 'TSIG'
82
+ | 'IXFR'
83
+ | 'AXFR'
84
+ | 'MAILB'
85
+ | 'MAILA'
86
+ | '*'
87
+ | 'URI'
88
+ | 'CAA'
89
+ | 'AVC'
90
+ | 'DOA'
91
+ | 'AMTRELAY'
92
+ | 'RESINFO'
93
+ | 'WALLET'
94
+ | 'CLA'
95
+ | 'IPN'
96
+ | 'TA'
97
+ | 'DLV'
98
98
  // NOTE: Custom types here
99
- | 'XYOA'
100
- | 'XYOH'
99
+ | 'XYOA'
100
+ | 'XYOH'
101
101
 
102
102
  export const DNSResourceRecordTypes: Readonly<Record<DNSResourceRecordType, number>> = {
103
103
  'A': 1, // a host address
@@ -1,20 +1,20 @@
1
1
  export type DNSRcode = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 16 | 17 | 18
2
2
 
3
- export type DNSRcodeName =
4
- | 'NOERROR'
5
- | 'FORMERR'
6
- | 'SERVFAIL'
7
- | 'NXDOMAIN'
8
- | 'NOTIMP'
9
- | 'REFUSED'
10
- | 'YXDOMAIN'
11
- | 'YXRRSET'
12
- | 'NXRRSET'
13
- | 'NOTAUTH'
14
- | 'NOTZONE'
15
- | 'BADSIG'
16
- | 'BADKEY'
17
- | 'BADTIME'
3
+ export type DNSRcodeName
4
+ = | 'NOERROR'
5
+ | 'FORMERR'
6
+ | 'SERVFAIL'
7
+ | 'NXDOMAIN'
8
+ | 'NOTIMP'
9
+ | 'REFUSED'
10
+ | 'YXDOMAIN'
11
+ | 'YXRRSET'
12
+ | 'NXRRSET'
13
+ | 'NOTAUTH'
14
+ | 'NOTZONE'
15
+ | 'BADSIG'
16
+ | 'BADKEY'
17
+ | 'BADTIME'
18
18
 
19
19
  export const DNSRcodes: Readonly<Record<DNSRcodeName, DNSRcode>> = {
20
20
  NOERROR: 0,
@@ -5,8 +5,8 @@ import type { DomainLeaseEstimateDivinerValidationErrorDetails, ErrorDetailsDict
5
5
  export type DomainLeaseEstimateDivinerErrorDetailsDictionaryErrorCode = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
6
6
 
7
7
  export const DomainLeaseEstimateDivinerErrorDetailsDictionary: Readonly<
8
- Readonly<Record<DomainLeaseEstimateDivinerErrorDetailsDictionaryErrorCode, DomainLeaseEstimateDivinerValidationErrorDetails>> &
9
- ErrorDetailsDictionary
8
+ Readonly<Record<DomainLeaseEstimateDivinerErrorDetailsDictionaryErrorCode, DomainLeaseEstimateDivinerValidationErrorDetails>>
9
+ & ErrorDetailsDictionary
10
10
  > = {
11
11
  0: {
12
12
  code: '0', schema: DomainLeaseEstimateDivinerValidationErrorDetailsSchema, title: 'Success',