@opusdns/api 1.153.0 → 1.154.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.
- package/package.json +1 -1
- package/src/helpers/keys.ts +2 -0
- package/src/openapi.yaml +6 -1
- package/src/schema.d.ts +6 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -1146,6 +1146,7 @@ export const KEYS_CONTACT_VERIFICATION_STATUS = [
|
|
|
1146
1146
|
] as const satisfies (keyof ContactVerificationStatus)[];
|
|
1147
1147
|
|
|
1148
1148
|
export const KEY_CONTACTS_BASE_AUTHINFO_REQUIRED = 'authinfo_required' satisfies keyof ContactsBase;
|
|
1149
|
+
export const KEY_CONTACTS_BASE_AUTHINFO_SUPPORTED = 'authinfo_supported' satisfies keyof ContactsBase;
|
|
1149
1150
|
export const KEY_CONTACTS_BASE_IS_THICK = 'is_thick' satisfies keyof ContactsBase;
|
|
1150
1151
|
export const KEY_CONTACTS_BASE_POSSIBLE_ATTRIBUTES = 'possible_attributes' satisfies keyof ContactsBase;
|
|
1151
1152
|
export const KEY_CONTACTS_BASE_PRIVACY_PROXY = 'privacy_proxy' satisfies keyof ContactsBase;
|
|
@@ -1160,6 +1161,7 @@ export const KEY_CONTACTS_BASE_UPDATE_SUPPORTED_ROLES = 'update_supported_roles'
|
|
|
1160
1161
|
|
|
1161
1162
|
export const KEYS_CONTACTS_BASE = [
|
|
1162
1163
|
KEY_CONTACTS_BASE_AUTHINFO_REQUIRED,
|
|
1164
|
+
KEY_CONTACTS_BASE_AUTHINFO_SUPPORTED,
|
|
1163
1165
|
KEY_CONTACTS_BASE_IS_THICK,
|
|
1164
1166
|
KEY_CONTACTS_BASE_POSSIBLE_ATTRIBUTES,
|
|
1165
1167
|
KEY_CONTACTS_BASE_PRIVACY_PROXY,
|
package/src/openapi.yaml
CHANGED
|
@@ -2023,6 +2023,11 @@ components:
|
|
|
2023
2023
|
- type: 'null'
|
|
2024
2024
|
description: Whether the registry requires authinfo for contact creation
|
|
2025
2025
|
title: Authinfo Required
|
|
2026
|
+
authinfo_supported:
|
|
2027
|
+
default: true
|
|
2028
|
+
description: Whether the registry supports authinfo for contact creation
|
|
2029
|
+
title: Authinfo Supported
|
|
2030
|
+
type: boolean
|
|
2026
2031
|
is_thick:
|
|
2027
2032
|
anyOf:
|
|
2028
2033
|
- type: boolean
|
|
@@ -16165,7 +16170,7 @@ info:
|
|
|
16165
16170
|
\n\n"
|
|
16166
16171
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16167
16172
|
title: OpusDNS API
|
|
16168
|
-
version: 2026-09-03-
|
|
16173
|
+
version: 2026-09-03-201425
|
|
16169
16174
|
x-logo:
|
|
16170
16175
|
altText: OpusDNS API Reference
|
|
16171
16176
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4480,6 +4480,12 @@ export interface components {
|
|
|
4480
4480
|
* @description Whether the registry requires authinfo for contact creation
|
|
4481
4481
|
*/
|
|
4482
4482
|
authinfo_required?: boolean | null;
|
|
4483
|
+
/**
|
|
4484
|
+
* Authinfo Supported
|
|
4485
|
+
* @description Whether the registry supports authinfo for contact creation
|
|
4486
|
+
* @default true
|
|
4487
|
+
*/
|
|
4488
|
+
authinfo_supported: boolean;
|
|
4483
4489
|
/**
|
|
4484
4490
|
* Is Thick
|
|
4485
4491
|
* @description Whether the registry supports thick contacts
|