@opusdns/api 1.176.0 → 1.177.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/constants.ts +13 -0
- package/src/helpers/keys.ts +13 -0
- package/src/helpers/schemas.d.ts +2 -0
- package/src/openapi.yaml +28 -1
- package/src/schema.d.ts +13 -0
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -65,6 +65,7 @@ import type {
|
|
|
65
65
|
LaunchPhaseType,
|
|
66
66
|
LegalRequirementOperationType,
|
|
67
67
|
LegalRequirementType,
|
|
68
|
+
LevelOfAssurance,
|
|
68
69
|
LocalPresenceRequirementType,
|
|
69
70
|
MailTemplateCategory,
|
|
70
71
|
MemoryFactKind,
|
|
@@ -1244,6 +1245,18 @@ export const LEGAL_REQUIREMENT_TYPE_VALUES = [
|
|
|
1244
1245
|
'confirmation',
|
|
1245
1246
|
] as const satisfies ReadonlyArray<LegalRequirementType>;
|
|
1246
1247
|
|
|
1248
|
+
export const LEVEL_OF_ASSURANCE = {
|
|
1249
|
+
HIGH: "HIGH",
|
|
1250
|
+
LOW: "LOW",
|
|
1251
|
+
SUBSTANTIAL: "SUBSTANTIAL",
|
|
1252
|
+
} as const satisfies Record<string, LevelOfAssurance>;
|
|
1253
|
+
|
|
1254
|
+
export const LEVEL_OF_ASSURANCE_VALUES = [
|
|
1255
|
+
'HIGH',
|
|
1256
|
+
'LOW',
|
|
1257
|
+
'SUBSTANTIAL',
|
|
1258
|
+
] as const satisfies ReadonlyArray<LevelOfAssurance>;
|
|
1259
|
+
|
|
1247
1260
|
export const LOCAL_PRESENCE_REQUIREMENT_TYPE = {
|
|
1248
1261
|
PHYSICAL_ADDRESS: "physical_address",
|
|
1249
1262
|
BUSINESS_ENTITY: "business_entity",
|
package/src/helpers/keys.ts
CHANGED
|
@@ -47,6 +47,7 @@ import type {
|
|
|
47
47
|
ContactHandle,
|
|
48
48
|
Contact,
|
|
49
49
|
ContactVerificationApi,
|
|
50
|
+
ContactVerificationEidInformation,
|
|
50
51
|
ContactVerificationEmail,
|
|
51
52
|
ContactVerification,
|
|
52
53
|
ContactVerificationStatus,
|
|
@@ -798,12 +799,14 @@ export const KEYS_CONTACT_ATTEST_RES = [
|
|
|
798
799
|
|
|
799
800
|
export const KEY_CONTACT_ATTEST_VERIFICATION_REQ_ATTESTATION_REFERENCE = 'attestation_reference' satisfies keyof ContactAttestVerificationReq;
|
|
800
801
|
export const KEY_CONTACT_ATTEST_VERIFICATION_REQ_CLAIM = 'claim' satisfies keyof ContactAttestVerificationReq;
|
|
802
|
+
export const KEY_CONTACT_ATTEST_VERIFICATION_REQ_EID = 'eid' satisfies keyof ContactAttestVerificationReq;
|
|
801
803
|
export const KEY_CONTACT_ATTEST_VERIFICATION_REQ_METHOD = 'method' satisfies keyof ContactAttestVerificationReq;
|
|
802
804
|
export const KEY_CONTACT_ATTEST_VERIFICATION_REQ_PROOF = 'proof' satisfies keyof ContactAttestVerificationReq;
|
|
803
805
|
|
|
804
806
|
export const KEYS_CONTACT_ATTEST_VERIFICATION_REQ = [
|
|
805
807
|
KEY_CONTACT_ATTEST_VERIFICATION_REQ_ATTESTATION_REFERENCE,
|
|
806
808
|
KEY_CONTACT_ATTEST_VERIFICATION_REQ_CLAIM,
|
|
809
|
+
KEY_CONTACT_ATTEST_VERIFICATION_REQ_EID,
|
|
807
810
|
KEY_CONTACT_ATTEST_VERIFICATION_REQ_METHOD,
|
|
808
811
|
KEY_CONTACT_ATTEST_VERIFICATION_REQ_PROOF,
|
|
809
812
|
] as const satisfies (keyof ContactAttestVerificationReq)[];
|
|
@@ -1122,6 +1125,14 @@ export const KEYS_CONTACT_VERIFICATION_API = [
|
|
|
1122
1125
|
KEY_CONTACT_VERIFICATION_API_VERIFIED_ON,
|
|
1123
1126
|
] as const satisfies (keyof ContactVerificationApi)[];
|
|
1124
1127
|
|
|
1128
|
+
export const KEY_CONTACT_VERIFICATION_EID_INFORMATION_EID_SCHEME = 'eid_scheme' satisfies keyof ContactVerificationEidInformation;
|
|
1129
|
+
export const KEY_CONTACT_VERIFICATION_EID_INFORMATION_LEVEL_OF_ASSURANCE = 'level_of_assurance' satisfies keyof ContactVerificationEidInformation;
|
|
1130
|
+
|
|
1131
|
+
export const KEYS_CONTACT_VERIFICATION_EID_INFORMATION = [
|
|
1132
|
+
KEY_CONTACT_VERIFICATION_EID_INFORMATION_EID_SCHEME,
|
|
1133
|
+
KEY_CONTACT_VERIFICATION_EID_INFORMATION_LEVEL_OF_ASSURANCE,
|
|
1134
|
+
] as const satisfies (keyof ContactVerificationEidInformation)[];
|
|
1135
|
+
|
|
1125
1136
|
export const KEY_CONTACT_VERIFICATION_EMAIL_CANCELED_ON = 'canceled_on' satisfies keyof ContactVerificationEmail;
|
|
1126
1137
|
export const KEY_CONTACT_VERIFICATION_EMAIL_CONTACT_ID = 'contact_id' satisfies keyof ContactVerificationEmail;
|
|
1127
1138
|
export const KEY_CONTACT_VERIFICATION_EMAIL_CONTACT_VERIFICATION_ID = 'contact_verification_id' satisfies keyof ContactVerificationEmail;
|
|
@@ -1164,6 +1175,7 @@ export const KEYS_CONTACT_VERIFICATION = [
|
|
|
1164
1175
|
|
|
1165
1176
|
export const KEY_CONTACT_VERIFICATION_STATUS_ATTESTATION_REFERENCE = 'attestation_reference' satisfies keyof ContactVerificationStatus;
|
|
1166
1177
|
export const KEY_CONTACT_VERIFICATION_STATUS_CLAIM = 'claim' satisfies keyof ContactVerificationStatus;
|
|
1178
|
+
export const KEY_CONTACT_VERIFICATION_STATUS_EID = 'eid' satisfies keyof ContactVerificationStatus;
|
|
1167
1179
|
export const KEY_CONTACT_VERIFICATION_STATUS_EXPIRES_ON = 'expires_on' satisfies keyof ContactVerificationStatus;
|
|
1168
1180
|
export const KEY_CONTACT_VERIFICATION_STATUS_METHOD = 'method' satisfies keyof ContactVerificationStatus;
|
|
1169
1181
|
export const KEY_CONTACT_VERIFICATION_STATUS_PROOF = 'proof' satisfies keyof ContactVerificationStatus;
|
|
@@ -1173,6 +1185,7 @@ export const KEY_CONTACT_VERIFICATION_STATUS_VERIFIED_ON = 'verified_on' satisfi
|
|
|
1173
1185
|
export const KEYS_CONTACT_VERIFICATION_STATUS = [
|
|
1174
1186
|
KEY_CONTACT_VERIFICATION_STATUS_ATTESTATION_REFERENCE,
|
|
1175
1187
|
KEY_CONTACT_VERIFICATION_STATUS_CLAIM,
|
|
1188
|
+
KEY_CONTACT_VERIFICATION_STATUS_EID,
|
|
1176
1189
|
KEY_CONTACT_VERIFICATION_STATUS_EXPIRES_ON,
|
|
1177
1190
|
KEY_CONTACT_VERIFICATION_STATUS_METHOD,
|
|
1178
1191
|
KEY_CONTACT_VERIFICATION_STATUS_PROOF,
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export type ContactSortField = components['schemas']['ContactSortField'];
|
|
|
67
67
|
export type ContactType = components['schemas']['ContactType'];
|
|
68
68
|
export type ContactVerificationApi = components['schemas']['ContactVerificationApiResponse'];
|
|
69
69
|
export type ContactVerificationClaim = components['schemas']['ContactVerificationClaim'];
|
|
70
|
+
export type ContactVerificationEidInformation = components['schemas']['ContactVerificationEidInformation'];
|
|
70
71
|
export type ContactVerificationEmail = components['schemas']['ContactVerificationEmailResponse'];
|
|
71
72
|
export type ContactVerificationMethod = components['schemas']['ContactVerificationMethod'];
|
|
72
73
|
export type ContactVerificationProof = components['schemas']['ContactVerificationProof'];
|
|
@@ -357,6 +358,7 @@ export type Legal = components['schemas']['Legal'];
|
|
|
357
358
|
export type LegalRequirementBase = components['schemas']['LegalRequirementBase'];
|
|
358
359
|
export type LegalRequirementOperationType = components['schemas']['LegalRequirementOperationType'];
|
|
359
360
|
export type LegalRequirementType = components['schemas']['LegalRequirementType'];
|
|
361
|
+
export type LevelOfAssurance = components['schemas']['LevelOfAssurance'];
|
|
360
362
|
export type ListBrandingAssets = components['schemas']['ListBrandingAssetsResponse'];
|
|
361
363
|
export type ListVanityNameserverSetsRes = components['schemas']['ListVanityNameserverSetsRes'];
|
|
362
364
|
export type ListZonesReferencingSetRes = components['schemas']['ListZonesReferencingSetRes'];
|
package/src/openapi.yaml
CHANGED
|
@@ -907,6 +907,10 @@ components:
|
|
|
907
907
|
type: string
|
|
908
908
|
claim:
|
|
909
909
|
$ref: '#/components/schemas/ContactVerificationClaim'
|
|
910
|
+
eid:
|
|
911
|
+
anyOf:
|
|
912
|
+
- $ref: '#/components/schemas/ContactVerificationEidInformation'
|
|
913
|
+
- type: 'null'
|
|
910
914
|
method:
|
|
911
915
|
$ref: '#/components/schemas/ContactVerificationMethod'
|
|
912
916
|
proof:
|
|
@@ -1888,6 +1892,18 @@ components:
|
|
|
1888
1892
|
- LEGAL_ENTITY
|
|
1889
1893
|
title: ContactVerificationClaim
|
|
1890
1894
|
type: string
|
|
1895
|
+
ContactVerificationEidInformation:
|
|
1896
|
+
properties:
|
|
1897
|
+
eid_scheme:
|
|
1898
|
+
title: Eid Scheme
|
|
1899
|
+
type: string
|
|
1900
|
+
level_of_assurance:
|
|
1901
|
+
$ref: '#/components/schemas/LevelOfAssurance'
|
|
1902
|
+
required:
|
|
1903
|
+
- eid_scheme
|
|
1904
|
+
- level_of_assurance
|
|
1905
|
+
title: ContactVerificationEidInformation
|
|
1906
|
+
type: object
|
|
1891
1907
|
ContactVerificationEmailResponse:
|
|
1892
1908
|
properties:
|
|
1893
1909
|
canceled_on:
|
|
@@ -2052,6 +2068,10 @@ components:
|
|
|
2052
2068
|
title: Attestation Reference
|
|
2053
2069
|
claim:
|
|
2054
2070
|
$ref: '#/components/schemas/ContactVerificationClaim'
|
|
2071
|
+
eid:
|
|
2072
|
+
anyOf:
|
|
2073
|
+
- $ref: '#/components/schemas/ContactVerificationEidInformation'
|
|
2074
|
+
- type: 'null'
|
|
2055
2075
|
expires_on:
|
|
2056
2076
|
anyOf:
|
|
2057
2077
|
- format: date-time
|
|
@@ -9806,6 +9826,13 @@ components:
|
|
|
9806
9826
|
- confirmation
|
|
9807
9827
|
title: LegalRequirementType
|
|
9808
9828
|
type: string
|
|
9829
|
+
LevelOfAssurance:
|
|
9830
|
+
enum:
|
|
9831
|
+
- HIGH
|
|
9832
|
+
- LOW
|
|
9833
|
+
- SUBSTANTIAL
|
|
9834
|
+
title: LevelOfAssurance
|
|
9835
|
+
type: string
|
|
9809
9836
|
ListBrandingAssetsResponse:
|
|
9810
9837
|
properties:
|
|
9811
9838
|
assets:
|
|
@@ -16788,7 +16815,7 @@ info:
|
|
|
16788
16815
|
\n\n"
|
|
16789
16816
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16790
16817
|
title: OpusDNS API
|
|
16791
|
-
version: 2026-09-14-
|
|
16818
|
+
version: 2026-09-14-110602
|
|
16792
16819
|
x-logo:
|
|
16793
16820
|
altText: OpusDNS API Reference
|
|
16794
16821
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3750,6 +3750,7 @@ export interface components {
|
|
|
3750
3750
|
/** Attestation Reference */
|
|
3751
3751
|
attestation_reference: string;
|
|
3752
3752
|
claim: components["schemas"]["ContactVerificationClaim"];
|
|
3753
|
+
eid?: components["schemas"]["ContactVerificationEidInformation"] | null;
|
|
3753
3754
|
method: components["schemas"]["ContactVerificationMethod"];
|
|
3754
3755
|
proof: components["schemas"]["ContactVerificationProof"];
|
|
3755
3756
|
};
|
|
@@ -4457,6 +4458,12 @@ export interface components {
|
|
|
4457
4458
|
* @enum {string}
|
|
4458
4459
|
*/
|
|
4459
4460
|
ContactVerificationClaim: "NAME" | "ADDRESS" | "EMAIL" | "PHONE" | "LEGAL_ENTITY";
|
|
4461
|
+
/** ContactVerificationEidInformation */
|
|
4462
|
+
ContactVerificationEidInformation: {
|
|
4463
|
+
/** Eid Scheme */
|
|
4464
|
+
eid_scheme: string;
|
|
4465
|
+
level_of_assurance: components["schemas"]["LevelOfAssurance"];
|
|
4466
|
+
};
|
|
4460
4467
|
/** ContactVerificationEmailResponse */
|
|
4461
4468
|
ContactVerificationEmailResponse: {
|
|
4462
4469
|
/**
|
|
@@ -4569,6 +4576,7 @@ export interface components {
|
|
|
4569
4576
|
/** Attestation Reference */
|
|
4570
4577
|
attestation_reference?: string | null;
|
|
4571
4578
|
claim: components["schemas"]["ContactVerificationClaim"];
|
|
4579
|
+
eid?: components["schemas"]["ContactVerificationEidInformation"] | null;
|
|
4572
4580
|
/** Expires On */
|
|
4573
4581
|
expires_on?: Date | null;
|
|
4574
4582
|
method?: components["schemas"]["ContactVerificationMethod"] | null;
|
|
@@ -9731,6 +9739,11 @@ export interface components {
|
|
|
9731
9739
|
* @enum {string}
|
|
9732
9740
|
*/
|
|
9733
9741
|
LegalRequirementType: "notice" | "confirmation";
|
|
9742
|
+
/**
|
|
9743
|
+
* LevelOfAssurance
|
|
9744
|
+
* @enum {string}
|
|
9745
|
+
*/
|
|
9746
|
+
LevelOfAssurance: "HIGH" | "LOW" | "SUBSTANTIAL";
|
|
9734
9747
|
/** ListBrandingAssetsResponse */
|
|
9735
9748
|
ListBrandingAssetsResponse: {
|
|
9736
9749
|
/**
|