@opusdns/api 1.175.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 +33 -0
- package/src/helpers/schemas.d.ts +2 -0
- package/src/openapi.yaml +88 -1
- package/src/schema.d.ts +33 -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,
|
|
@@ -4605,6 +4618,8 @@ export const KEYS_PAGINATION_METADATA_DTO = [
|
|
|
4605
4618
|
export const KEY_PALETTE_ACCENT = 'accent' satisfies keyof Palette;
|
|
4606
4619
|
export const KEY_PALETTE_ACCENT_FOREGROUND = 'accent_foreground' satisfies keyof Palette;
|
|
4607
4620
|
export const KEY_PALETTE_BACKGROUND = 'background' satisfies keyof Palette;
|
|
4621
|
+
export const KEY_PALETTE_BODY = 'body' satisfies keyof Palette;
|
|
4622
|
+
export const KEY_PALETTE_BODY_FOREGROUND = 'body_foreground' satisfies keyof Palette;
|
|
4608
4623
|
export const KEY_PALETTE_BORDER = 'border' satisfies keyof Palette;
|
|
4609
4624
|
export const KEY_PALETTE_CARD = 'card' satisfies keyof Palette;
|
|
4610
4625
|
export const KEY_PALETTE_CARD_FOREGROUND = 'card_foreground' satisfies keyof Palette;
|
|
@@ -4613,6 +4628,7 @@ export const KEY_PALETTE_DANGER = 'danger' satisfies keyof Palette;
|
|
|
4613
4628
|
export const KEY_PALETTE_FOREGROUND = 'foreground' satisfies keyof Palette;
|
|
4614
4629
|
export const KEY_PALETTE_INFO = 'info' satisfies keyof Palette;
|
|
4615
4630
|
export const KEY_PALETTE_INPUT = 'input' satisfies keyof Palette;
|
|
4631
|
+
export const KEY_PALETTE_LINK = 'link' satisfies keyof Palette;
|
|
4616
4632
|
export const KEY_PALETTE_MUTED = 'muted' satisfies keyof Palette;
|
|
4617
4633
|
export const KEY_PALETTE_MUTED_FOREGROUND = 'muted_foreground' satisfies keyof Palette;
|
|
4618
4634
|
export const KEY_PALETTE_PRIMARY = 'primary' satisfies keyof Palette;
|
|
@@ -4620,8 +4636,15 @@ export const KEY_PALETTE_PRIMARY_FOREGROUND = 'primary_foreground' satisfies key
|
|
|
4620
4636
|
export const KEY_PALETTE_SECONDARY = 'secondary' satisfies keyof Palette;
|
|
4621
4637
|
export const KEY_PALETTE_SECONDARY_FOREGROUND = 'secondary_foreground' satisfies keyof Palette;
|
|
4622
4638
|
export const KEY_PALETTE_SIDEBAR = 'sidebar' satisfies keyof Palette;
|
|
4639
|
+
export const KEY_PALETTE_SIDEBAR_ACCENT = 'sidebar_accent' satisfies keyof Palette;
|
|
4640
|
+
export const KEY_PALETTE_SIDEBAR_ACCENT_FOREGROUND = 'sidebar_accent_foreground' satisfies keyof Palette;
|
|
4641
|
+
export const KEY_PALETTE_SIDEBAR_BORDER = 'sidebar_border' satisfies keyof Palette;
|
|
4623
4642
|
export const KEY_PALETTE_SIDEBAR_FOREGROUND = 'sidebar_foreground' satisfies keyof Palette;
|
|
4624
4643
|
export const KEY_PALETTE_SUCCESS = 'success' satisfies keyof Palette;
|
|
4644
|
+
export const KEY_PALETTE_TABLE = 'table' satisfies keyof Palette;
|
|
4645
|
+
export const KEY_PALETTE_TABLE_HEADER = 'table_header' satisfies keyof Palette;
|
|
4646
|
+
export const KEY_PALETTE_TABLE_ROW = 'table_row' satisfies keyof Palette;
|
|
4647
|
+
export const KEY_PALETTE_TABLE_ROW_INTERACTIVE = 'table_row_interactive' satisfies keyof Palette;
|
|
4625
4648
|
export const KEY_PALETTE_TAG_COLORS = 'tag_colors' satisfies keyof Palette;
|
|
4626
4649
|
export const KEY_PALETTE_WARNING = 'warning' satisfies keyof Palette;
|
|
4627
4650
|
|
|
@@ -4629,6 +4652,8 @@ export const KEYS_PALETTE = [
|
|
|
4629
4652
|
KEY_PALETTE_ACCENT,
|
|
4630
4653
|
KEY_PALETTE_ACCENT_FOREGROUND,
|
|
4631
4654
|
KEY_PALETTE_BACKGROUND,
|
|
4655
|
+
KEY_PALETTE_BODY,
|
|
4656
|
+
KEY_PALETTE_BODY_FOREGROUND,
|
|
4632
4657
|
KEY_PALETTE_BORDER,
|
|
4633
4658
|
KEY_PALETTE_CARD,
|
|
4634
4659
|
KEY_PALETTE_CARD_FOREGROUND,
|
|
@@ -4637,6 +4662,7 @@ export const KEYS_PALETTE = [
|
|
|
4637
4662
|
KEY_PALETTE_FOREGROUND,
|
|
4638
4663
|
KEY_PALETTE_INFO,
|
|
4639
4664
|
KEY_PALETTE_INPUT,
|
|
4665
|
+
KEY_PALETTE_LINK,
|
|
4640
4666
|
KEY_PALETTE_MUTED,
|
|
4641
4667
|
KEY_PALETTE_MUTED_FOREGROUND,
|
|
4642
4668
|
KEY_PALETTE_PRIMARY,
|
|
@@ -4644,8 +4670,15 @@ export const KEYS_PALETTE = [
|
|
|
4644
4670
|
KEY_PALETTE_SECONDARY,
|
|
4645
4671
|
KEY_PALETTE_SECONDARY_FOREGROUND,
|
|
4646
4672
|
KEY_PALETTE_SIDEBAR,
|
|
4673
|
+
KEY_PALETTE_SIDEBAR_ACCENT,
|
|
4674
|
+
KEY_PALETTE_SIDEBAR_ACCENT_FOREGROUND,
|
|
4675
|
+
KEY_PALETTE_SIDEBAR_BORDER,
|
|
4647
4676
|
KEY_PALETTE_SIDEBAR_FOREGROUND,
|
|
4648
4677
|
KEY_PALETTE_SUCCESS,
|
|
4678
|
+
KEY_PALETTE_TABLE,
|
|
4679
|
+
KEY_PALETTE_TABLE_HEADER,
|
|
4680
|
+
KEY_PALETTE_TABLE_ROW,
|
|
4681
|
+
KEY_PALETTE_TABLE_ROW_INTERACTIVE,
|
|
4649
4682
|
KEY_PALETTE_TAG_COLORS,
|
|
4650
4683
|
KEY_PALETTE_WARNING,
|
|
4651
4684
|
] as const satisfies (keyof Palette)[];
|
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:
|
|
@@ -11756,6 +11783,18 @@ components:
|
|
|
11756
11783
|
type: string
|
|
11757
11784
|
- type: 'null'
|
|
11758
11785
|
title: Background
|
|
11786
|
+
body:
|
|
11787
|
+
anyOf:
|
|
11788
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11789
|
+
type: string
|
|
11790
|
+
- type: 'null'
|
|
11791
|
+
title: Body
|
|
11792
|
+
body_foreground:
|
|
11793
|
+
anyOf:
|
|
11794
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11795
|
+
type: string
|
|
11796
|
+
- type: 'null'
|
|
11797
|
+
title: Body Foreground
|
|
11759
11798
|
border:
|
|
11760
11799
|
anyOf:
|
|
11761
11800
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11806,6 +11845,12 @@ components:
|
|
|
11806
11845
|
type: string
|
|
11807
11846
|
- type: 'null'
|
|
11808
11847
|
title: Input
|
|
11848
|
+
link:
|
|
11849
|
+
anyOf:
|
|
11850
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11851
|
+
type: string
|
|
11852
|
+
- type: 'null'
|
|
11853
|
+
title: Link
|
|
11809
11854
|
muted:
|
|
11810
11855
|
anyOf:
|
|
11811
11856
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11848,6 +11893,24 @@ components:
|
|
|
11848
11893
|
type: string
|
|
11849
11894
|
- type: 'null'
|
|
11850
11895
|
title: Sidebar
|
|
11896
|
+
sidebar_accent:
|
|
11897
|
+
anyOf:
|
|
11898
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11899
|
+
type: string
|
|
11900
|
+
- type: 'null'
|
|
11901
|
+
title: Sidebar Accent
|
|
11902
|
+
sidebar_accent_foreground:
|
|
11903
|
+
anyOf:
|
|
11904
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11905
|
+
type: string
|
|
11906
|
+
- type: 'null'
|
|
11907
|
+
title: Sidebar Accent Foreground
|
|
11908
|
+
sidebar_border:
|
|
11909
|
+
anyOf:
|
|
11910
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11911
|
+
type: string
|
|
11912
|
+
- type: 'null'
|
|
11913
|
+
title: Sidebar Border
|
|
11851
11914
|
sidebar_foreground:
|
|
11852
11915
|
anyOf:
|
|
11853
11916
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11860,6 +11923,30 @@ components:
|
|
|
11860
11923
|
type: string
|
|
11861
11924
|
- type: 'null'
|
|
11862
11925
|
title: Success
|
|
11926
|
+
table:
|
|
11927
|
+
anyOf:
|
|
11928
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11929
|
+
type: string
|
|
11930
|
+
- type: 'null'
|
|
11931
|
+
title: Table
|
|
11932
|
+
table_header:
|
|
11933
|
+
anyOf:
|
|
11934
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11935
|
+
type: string
|
|
11936
|
+
- type: 'null'
|
|
11937
|
+
title: Table Header
|
|
11938
|
+
table_row:
|
|
11939
|
+
anyOf:
|
|
11940
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11941
|
+
type: string
|
|
11942
|
+
- type: 'null'
|
|
11943
|
+
title: Table Row
|
|
11944
|
+
table_row_interactive:
|
|
11945
|
+
anyOf:
|
|
11946
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11947
|
+
type: string
|
|
11948
|
+
- type: 'null'
|
|
11949
|
+
title: Table Row Interactive
|
|
11863
11950
|
tag_colors:
|
|
11864
11951
|
anyOf:
|
|
11865
11952
|
- items:
|
|
@@ -16728,7 +16815,7 @@ info:
|
|
|
16728
16815
|
\n\n"
|
|
16729
16816
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16730
16817
|
title: OpusDNS API
|
|
16731
|
-
version: 2026-09-14-
|
|
16818
|
+
version: 2026-09-14-110602
|
|
16732
16819
|
x-logo:
|
|
16733
16820
|
altText: OpusDNS API Reference
|
|
16734
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
|
/**
|
|
@@ -11002,6 +11015,10 @@ export interface components {
|
|
|
11002
11015
|
accent_foreground?: string | null;
|
|
11003
11016
|
/** Background */
|
|
11004
11017
|
background?: string | null;
|
|
11018
|
+
/** Body */
|
|
11019
|
+
body?: string | null;
|
|
11020
|
+
/** Body Foreground */
|
|
11021
|
+
body_foreground?: string | null;
|
|
11005
11022
|
/** Border */
|
|
11006
11023
|
border?: string | null;
|
|
11007
11024
|
/** Card */
|
|
@@ -11018,6 +11035,8 @@ export interface components {
|
|
|
11018
11035
|
info?: string | null;
|
|
11019
11036
|
/** Input */
|
|
11020
11037
|
input?: string | null;
|
|
11038
|
+
/** Link */
|
|
11039
|
+
link?: string | null;
|
|
11021
11040
|
/** Muted */
|
|
11022
11041
|
muted?: string | null;
|
|
11023
11042
|
/** Muted Foreground */
|
|
@@ -11032,10 +11051,24 @@ export interface components {
|
|
|
11032
11051
|
secondary_foreground?: string | null;
|
|
11033
11052
|
/** Sidebar */
|
|
11034
11053
|
sidebar?: string | null;
|
|
11054
|
+
/** Sidebar Accent */
|
|
11055
|
+
sidebar_accent?: string | null;
|
|
11056
|
+
/** Sidebar Accent Foreground */
|
|
11057
|
+
sidebar_accent_foreground?: string | null;
|
|
11058
|
+
/** Sidebar Border */
|
|
11059
|
+
sidebar_border?: string | null;
|
|
11035
11060
|
/** Sidebar Foreground */
|
|
11036
11061
|
sidebar_foreground?: string | null;
|
|
11037
11062
|
/** Success */
|
|
11038
11063
|
success?: string | null;
|
|
11064
|
+
/** Table */
|
|
11065
|
+
table?: string | null;
|
|
11066
|
+
/** Table Header */
|
|
11067
|
+
table_header?: string | null;
|
|
11068
|
+
/** Table Row */
|
|
11069
|
+
table_row?: string | null;
|
|
11070
|
+
/** Table Row Interactive */
|
|
11071
|
+
table_row_interactive?: string | null;
|
|
11039
11072
|
/** Tag Colors */
|
|
11040
11073
|
tag_colors?: string[] | null;
|
|
11041
11074
|
/** Warning */
|