@opusdns/api 1.166.0 → 1.168.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 +89 -5
- package/src/helpers/keys.ts +64 -0
- package/src/helpers/schemas.d.ts +11 -2
- package/src/openapi.yaml +220 -6
- package/src/schema.d.ts +134 -5
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -70,6 +70,8 @@ import type {
|
|
|
70
70
|
MemoryFactKind,
|
|
71
71
|
MessageRole,
|
|
72
72
|
MetricsGrouping,
|
|
73
|
+
NizzaClaim,
|
|
74
|
+
NizzaVerificationProof,
|
|
73
75
|
NorIdDeclarationStatus,
|
|
74
76
|
ObjectEventType,
|
|
75
77
|
ObjectLogSortField,
|
|
@@ -121,7 +123,7 @@ import type {
|
|
|
121
123
|
VanityNsCheckSummaryState,
|
|
122
124
|
VerificationClaimType,
|
|
123
125
|
VerificationDeadlineType,
|
|
124
|
-
|
|
126
|
+
VerificationTypeInput,
|
|
125
127
|
WhitelabelBrandingTier,
|
|
126
128
|
WhitelabelOnboardingFailureCode,
|
|
127
129
|
WhitelabelOnboardingFailureType,
|
|
@@ -129,6 +131,8 @@ import type {
|
|
|
129
131
|
WhitelabelRenewalMode,
|
|
130
132
|
ZoneIncludeField,
|
|
131
133
|
ZoneSortField,
|
|
134
|
+
VerificationType,
|
|
135
|
+
VerificationType2,
|
|
132
136
|
} from './schemas';
|
|
133
137
|
|
|
134
138
|
export const AGREEMENT_TYPE = {
|
|
@@ -1307,6 +1311,66 @@ export const METRICS_GROUPING_VALUES = [
|
|
|
1307
1311
|
'rule',
|
|
1308
1312
|
] as const satisfies ReadonlyArray<MetricsGrouping>;
|
|
1309
1313
|
|
|
1314
|
+
export const NIZZA_CLAIM = {
|
|
1315
|
+
EMAIL: "EMAIL",
|
|
1316
|
+
PHONE: "PHONE",
|
|
1317
|
+
ADDRESS: "ADDRESS",
|
|
1318
|
+
NAME: "NAME",
|
|
1319
|
+
LEGAL_ENTITY: "LEGAL_ENTITY",
|
|
1320
|
+
} as const satisfies Record<string, NizzaClaim>;
|
|
1321
|
+
|
|
1322
|
+
export const NIZZA_CLAIM_VALUES = [
|
|
1323
|
+
'EMAIL',
|
|
1324
|
+
'PHONE',
|
|
1325
|
+
'ADDRESS',
|
|
1326
|
+
'NAME',
|
|
1327
|
+
'LEGAL_ENTITY',
|
|
1328
|
+
] as const satisfies ReadonlyArray<NizzaClaim>;
|
|
1329
|
+
|
|
1330
|
+
export const NIZZA_VERIFICATION_PROOF = {
|
|
1331
|
+
IDCARD: "IDCARD",
|
|
1332
|
+
PASSPORT: "PASSPORT",
|
|
1333
|
+
POPULATION_REGISTER: "POPULATION_REGISTER",
|
|
1334
|
+
RESIDENCE_PERMIT: "RESIDENCE_PERMIT",
|
|
1335
|
+
PROOF_OF_ARRIVAL: "PROOF_OF_ARRIVAL",
|
|
1336
|
+
DRIVERS_LICENCE: "DRIVERS_LICENCE",
|
|
1337
|
+
COMPANY_REGISTER: "COMPANY_REGISTER",
|
|
1338
|
+
COMPANY_STATEMENT: "COMPANY_STATEMENT",
|
|
1339
|
+
BANK_ACCOUNT: "BANK_ACCOUNT",
|
|
1340
|
+
ONLINE_PAYMENT_ACCOUNT: "ONLINE_PAYMENT_ACCOUNT",
|
|
1341
|
+
UTILITY_ACCOUNT: "UTILITY_ACCOUNT",
|
|
1342
|
+
BANK_STATEMENT: "BANK_STATEMENT",
|
|
1343
|
+
TAX_STATEMENT: "TAX_STATEMENT",
|
|
1344
|
+
WRITTEN_ATTESTATION: "WRITTEN_ATTESTATION",
|
|
1345
|
+
DIGITAL_ATTESTATION: "DIGITAL_ATTESTATION",
|
|
1346
|
+
POSTAL_VER_TRANSACTION_LOG: "POSTAL_VER_TRANSACTION_LOG",
|
|
1347
|
+
EMAIL_VER_TRANSACTION_LOG: "EMAIL_VER_TRANSACTION_LOG",
|
|
1348
|
+
PHONE_VER_TRANSACTION_LOG: "PHONE_VER_TRANSACTION_LOG",
|
|
1349
|
+
ADDRESS_DATABASE: "ADDRESS_DATABASE",
|
|
1350
|
+
} as const satisfies Record<string, NizzaVerificationProof>;
|
|
1351
|
+
|
|
1352
|
+
export const NIZZA_VERIFICATION_PROOF_VALUES = [
|
|
1353
|
+
'IDCARD',
|
|
1354
|
+
'PASSPORT',
|
|
1355
|
+
'POPULATION_REGISTER',
|
|
1356
|
+
'RESIDENCE_PERMIT',
|
|
1357
|
+
'PROOF_OF_ARRIVAL',
|
|
1358
|
+
'DRIVERS_LICENCE',
|
|
1359
|
+
'COMPANY_REGISTER',
|
|
1360
|
+
'COMPANY_STATEMENT',
|
|
1361
|
+
'BANK_ACCOUNT',
|
|
1362
|
+
'ONLINE_PAYMENT_ACCOUNT',
|
|
1363
|
+
'UTILITY_ACCOUNT',
|
|
1364
|
+
'BANK_STATEMENT',
|
|
1365
|
+
'TAX_STATEMENT',
|
|
1366
|
+
'WRITTEN_ATTESTATION',
|
|
1367
|
+
'DIGITAL_ATTESTATION',
|
|
1368
|
+
'POSTAL_VER_TRANSACTION_LOG',
|
|
1369
|
+
'EMAIL_VER_TRANSACTION_LOG',
|
|
1370
|
+
'PHONE_VER_TRANSACTION_LOG',
|
|
1371
|
+
'ADDRESS_DATABASE',
|
|
1372
|
+
] as const satisfies ReadonlyArray<NizzaVerificationProof>;
|
|
1373
|
+
|
|
1310
1374
|
export const NOR_ID_DECLARATION_STATUS = {
|
|
1311
1375
|
PENDING: "pending",
|
|
1312
1376
|
CONFIRMED: "confirmed",
|
|
@@ -2304,15 +2368,15 @@ export const VERIFICATION_DEADLINE_TYPE_VALUES = [
|
|
|
2304
2368
|
'deletion',
|
|
2305
2369
|
] as const satisfies ReadonlyArray<VerificationDeadlineType>;
|
|
2306
2370
|
|
|
2307
|
-
export const VERIFICATION_TYPE = {
|
|
2371
|
+
export const VERIFICATION_TYPE-INPUT = {
|
|
2308
2372
|
API: "api",
|
|
2309
2373
|
EMAIL: "email",
|
|
2310
|
-
} as const satisfies Record<string,
|
|
2374
|
+
} as const satisfies Record<string, VerificationTypeInput>;
|
|
2311
2375
|
|
|
2312
|
-
export const
|
|
2376
|
+
export const VERIFICATION_TYPE-INPUT_VALUES = [
|
|
2313
2377
|
'api',
|
|
2314
2378
|
'email',
|
|
2315
|
-
] as const satisfies ReadonlyArray<
|
|
2379
|
+
] as const satisfies ReadonlyArray<VerificationTypeInput>;
|
|
2316
2380
|
|
|
2317
2381
|
export const WHITELABEL_BRANDING_TIER = {
|
|
2318
2382
|
BASE: "base",
|
|
@@ -2409,3 +2473,23 @@ export const ZONE_SORT_FIELD_VALUES = [
|
|
|
2409
2473
|
'updated_on',
|
|
2410
2474
|
'dnssec_status',
|
|
2411
2475
|
] as const satisfies ReadonlyArray<ZoneSortField>;
|
|
2476
|
+
|
|
2477
|
+
export const COMMON_MODELS_EMAIL_VERIFICATION_EMAIL_VERIFICATION_VERIFICATION_TYPE = {
|
|
2478
|
+
API: "api",
|
|
2479
|
+
EMAIL: "email",
|
|
2480
|
+
} as const satisfies Record<string, VerificationType>;
|
|
2481
|
+
|
|
2482
|
+
export const COMMON_MODELS_EMAIL_VERIFICATION_EMAIL_VERIFICATION_VERIFICATION_TYPE_VALUES = [
|
|
2483
|
+
'api',
|
|
2484
|
+
'email',
|
|
2485
|
+
] as const satisfies ReadonlyArray<VerificationType>;
|
|
2486
|
+
|
|
2487
|
+
export const COMMON_SERVICES_DOMAIN_TLD_CONFIGURATION_VERIFICATION_POLICY_BASE_VERIFICATION_TYPE = {
|
|
2488
|
+
EMAIL_VERIFICATION: "email_verification",
|
|
2489
|
+
IDENTITY_VERIFICATION: "identity_verification",
|
|
2490
|
+
} as const satisfies Record<string, VerificationType2>;
|
|
2491
|
+
|
|
2492
|
+
export const COMMON_SERVICES_DOMAIN_TLD_CONFIGURATION_VERIFICATION_POLICY_BASE_VERIFICATION_TYPE_VALUES = [
|
|
2493
|
+
'email_verification',
|
|
2494
|
+
'identity_verification',
|
|
2495
|
+
] as const satisfies ReadonlyArray<VerificationType2>;
|
package/src/helpers/keys.ts
CHANGED
|
@@ -24,6 +24,7 @@ import type {
|
|
|
24
24
|
ClaimsNotices,
|
|
25
25
|
ClearVanityNameserverSetDefaultRes,
|
|
26
26
|
CommandError,
|
|
27
|
+
Communication,
|
|
27
28
|
ContactAttestReq,
|
|
28
29
|
ContactAttestRes,
|
|
29
30
|
ContactAttestVerificationReq,
|
|
@@ -251,6 +252,7 @@ import type {
|
|
|
251
252
|
EmailForwardZone,
|
|
252
253
|
EmailForwardsContext,
|
|
253
254
|
EmailForwardsContextCreate,
|
|
255
|
+
EmailVerificationPolicy,
|
|
254
256
|
EventData,
|
|
255
257
|
EventError,
|
|
256
258
|
EventResponse,
|
|
@@ -268,6 +270,7 @@ import type {
|
|
|
268
270
|
HttpRedirectRemove,
|
|
269
271
|
HttpRedirectRequest,
|
|
270
272
|
HttpRedirectUpsert,
|
|
273
|
+
IdentityVerificationPolicy,
|
|
271
274
|
IdnBase,
|
|
272
275
|
Invoice,
|
|
273
276
|
IpRestrictionCreate,
|
|
@@ -383,6 +386,7 @@ import type {
|
|
|
383
386
|
RegistrarZone,
|
|
384
387
|
RegistryLockBase,
|
|
385
388
|
RequestHistory,
|
|
389
|
+
RequiredClaim,
|
|
386
390
|
ReservedDomainsBase,
|
|
387
391
|
RgpOperations,
|
|
388
392
|
SetRenewalModeReq,
|
|
@@ -772,6 +776,14 @@ export const KEYS_COMMAND_ERROR = [
|
|
|
772
776
|
KEY_COMMAND_ERROR_TYPE,
|
|
773
777
|
] as const satisfies (keyof CommandError)[];
|
|
774
778
|
|
|
779
|
+
export const KEY_COMMUNICATION_TIMEDELTA = 'timedelta' satisfies keyof Communication;
|
|
780
|
+
export const KEY_COMMUNICATION_TYPE = 'type' satisfies keyof Communication;
|
|
781
|
+
|
|
782
|
+
export const KEYS_COMMUNICATION = [
|
|
783
|
+
KEY_COMMUNICATION_TIMEDELTA,
|
|
784
|
+
KEY_COMMUNICATION_TYPE,
|
|
785
|
+
] as const satisfies (keyof Communication)[];
|
|
786
|
+
|
|
775
787
|
export const KEY_CONTACT_ATTEST_REQ_ATTESTATIONS = 'attestations' satisfies keyof ContactAttestReq;
|
|
776
788
|
|
|
777
789
|
export const KEYS_CONTACT_ATTEST_REQ = [
|
|
@@ -3474,6 +3486,26 @@ export const KEYS_EMAIL_FORWARDS_CONTEXT_CREATE = [
|
|
|
3474
3486
|
KEY_EMAIL_FORWARDS_CONTEXT_CREATE_PAYLOAD,
|
|
3475
3487
|
] as const satisfies (keyof EmailForwardsContextCreate)[];
|
|
3476
3488
|
|
|
3489
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_COMMUNICATION = 'communication' satisfies keyof EmailVerificationPolicy;
|
|
3490
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_CONTACT_ROLES = 'contact_roles' satisfies keyof EmailVerificationPolicy;
|
|
3491
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_ENABLED = 'enabled' satisfies keyof EmailVerificationPolicy;
|
|
3492
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_SUSPENSION_DELAY = 'suspension_delay' satisfies keyof EmailVerificationPolicy;
|
|
3493
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_SUSPENSION_ON_FAILURE = 'suspension_on_failure' satisfies keyof EmailVerificationPolicy;
|
|
3494
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_TRIGGER = 'trigger' satisfies keyof EmailVerificationPolicy;
|
|
3495
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_VALIDITY_PERIOD = 'validity_period' satisfies keyof EmailVerificationPolicy;
|
|
3496
|
+
export const KEY_EMAIL_VERIFICATION_POLICY_VERIFICATION_METHOD = 'verification_method' satisfies keyof EmailVerificationPolicy;
|
|
3497
|
+
|
|
3498
|
+
export const KEYS_EMAIL_VERIFICATION_POLICY = [
|
|
3499
|
+
KEY_EMAIL_VERIFICATION_POLICY_COMMUNICATION,
|
|
3500
|
+
KEY_EMAIL_VERIFICATION_POLICY_CONTACT_ROLES,
|
|
3501
|
+
KEY_EMAIL_VERIFICATION_POLICY_ENABLED,
|
|
3502
|
+
KEY_EMAIL_VERIFICATION_POLICY_SUSPENSION_DELAY,
|
|
3503
|
+
KEY_EMAIL_VERIFICATION_POLICY_SUSPENSION_ON_FAILURE,
|
|
3504
|
+
KEY_EMAIL_VERIFICATION_POLICY_TRIGGER,
|
|
3505
|
+
KEY_EMAIL_VERIFICATION_POLICY_VALIDITY_PERIOD,
|
|
3506
|
+
KEY_EMAIL_VERIFICATION_POLICY_VERIFICATION_METHOD,
|
|
3507
|
+
] as const satisfies (keyof EmailVerificationPolicy)[];
|
|
3508
|
+
|
|
3477
3509
|
export const KEY_EVENT_DATA_DETAILS = 'details' satisfies keyof EventData;
|
|
3478
3510
|
export const KEY_EVENT_DATA_ERROR = 'error' satisfies keyof EventData;
|
|
3479
3511
|
export const KEY_EVENT_DATA_MESSAGE = 'message' satisfies keyof EventData;
|
|
@@ -3686,6 +3718,24 @@ export const KEYS_HTTP_REDIRECT_UPSERT = [
|
|
|
3686
3718
|
KEY_HTTP_REDIRECT_UPSERT_TARGET_PROTOCOL,
|
|
3687
3719
|
] as const satisfies (keyof HttpRedirectUpsert)[];
|
|
3688
3720
|
|
|
3721
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_CONTACT_ROLES = 'contact_roles' satisfies keyof IdentityVerificationPolicy;
|
|
3722
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_ENABLED = 'enabled' satisfies keyof IdentityVerificationPolicy;
|
|
3723
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_REQUIRED_CLAIMS = 'required_claims' satisfies keyof IdentityVerificationPolicy;
|
|
3724
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_SUSPENSION_DELAY = 'suspension_delay' satisfies keyof IdentityVerificationPolicy;
|
|
3725
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_SUSPENSION_ON_FAILURE = 'suspension_on_failure' satisfies keyof IdentityVerificationPolicy;
|
|
3726
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_TRIGGER = 'trigger' satisfies keyof IdentityVerificationPolicy;
|
|
3727
|
+
export const KEY_IDENTITY_VERIFICATION_POLICY_VALIDITY_PERIOD = 'validity_period' satisfies keyof IdentityVerificationPolicy;
|
|
3728
|
+
|
|
3729
|
+
export const KEYS_IDENTITY_VERIFICATION_POLICY = [
|
|
3730
|
+
KEY_IDENTITY_VERIFICATION_POLICY_CONTACT_ROLES,
|
|
3731
|
+
KEY_IDENTITY_VERIFICATION_POLICY_ENABLED,
|
|
3732
|
+
KEY_IDENTITY_VERIFICATION_POLICY_REQUIRED_CLAIMS,
|
|
3733
|
+
KEY_IDENTITY_VERIFICATION_POLICY_SUSPENSION_DELAY,
|
|
3734
|
+
KEY_IDENTITY_VERIFICATION_POLICY_SUSPENSION_ON_FAILURE,
|
|
3735
|
+
KEY_IDENTITY_VERIFICATION_POLICY_TRIGGER,
|
|
3736
|
+
KEY_IDENTITY_VERIFICATION_POLICY_VALIDITY_PERIOD,
|
|
3737
|
+
] as const satisfies (keyof IdentityVerificationPolicy)[];
|
|
3738
|
+
|
|
3689
3739
|
export const KEY_IDN_BASE_IDN_CAPABLE = 'idn_capable' satisfies keyof IdnBase;
|
|
3690
3740
|
export const KEY_IDN_BASE_IDN_TABLES = 'idn_tables' satisfies keyof IdnBase;
|
|
3691
3741
|
|
|
@@ -5194,6 +5244,14 @@ export const KEYS_REQUEST_HISTORY = [
|
|
|
5194
5244
|
KEY_REQUEST_HISTORY_STATUS_CODE,
|
|
5195
5245
|
] as const satisfies (keyof RequestHistory)[];
|
|
5196
5246
|
|
|
5247
|
+
export const KEY_REQUIRED_CLAIM_ACCEPTED_PROOFS = 'accepted_proofs' satisfies keyof RequiredClaim;
|
|
5248
|
+
export const KEY_REQUIRED_CLAIM_CLAIM = 'claim' satisfies keyof RequiredClaim;
|
|
5249
|
+
|
|
5250
|
+
export const KEYS_REQUIRED_CLAIM = [
|
|
5251
|
+
KEY_REQUIRED_CLAIM_ACCEPTED_PROOFS,
|
|
5252
|
+
KEY_REQUIRED_CLAIM_CLAIM,
|
|
5253
|
+
] as const satisfies (keyof RequiredClaim)[];
|
|
5254
|
+
|
|
5197
5255
|
export const KEY_RESERVED_DOMAINS_BASE_SOURCE = 'source' satisfies keyof ReservedDomainsBase;
|
|
5198
5256
|
export const KEY_RESERVED_DOMAINS_BASE_SUPPORTED = 'supported' satisfies keyof ReservedDomainsBase;
|
|
5199
5257
|
export const KEY_RESERVED_DOMAINS_BASE_URL = 'url' satisfies keyof ReservedDomainsBase;
|
|
@@ -5281,10 +5339,14 @@ export const KEYS_STATUS_TAG = [
|
|
|
5281
5339
|
] as const satisfies (keyof StatusTag)[];
|
|
5282
5340
|
|
|
5283
5341
|
export const KEY_SUPPORT_EMAIL = 'email' satisfies keyof Support;
|
|
5342
|
+
export const KEY_SUPPORT_HELP_CENTER_URL = 'help_center_url' satisfies keyof Support;
|
|
5343
|
+
export const KEY_SUPPORT_STATUS_URL = 'status_url' satisfies keyof Support;
|
|
5284
5344
|
export const KEY_SUPPORT_URL = 'url' satisfies keyof Support;
|
|
5285
5345
|
|
|
5286
5346
|
export const KEYS_SUPPORT = [
|
|
5287
5347
|
KEY_SUPPORT_EMAIL,
|
|
5348
|
+
KEY_SUPPORT_HELP_CENTER_URL,
|
|
5349
|
+
KEY_SUPPORT_STATUS_URL,
|
|
5288
5350
|
KEY_SUPPORT_URL,
|
|
5289
5351
|
] as const satisfies (keyof Support)[];
|
|
5290
5352
|
|
|
@@ -5402,6 +5464,7 @@ export const KEY_TLD_SPECIFICATION_REGISTRY_LOCK = 'registry_lock' satisfies key
|
|
|
5402
5464
|
export const KEY_TLD_SPECIFICATION_RESERVED_DOMAINS = 'reserved_domains' satisfies keyof TldSpecification;
|
|
5403
5465
|
export const KEY_TLD_SPECIFICATION_TLDS = 'tlds' satisfies keyof TldSpecification;
|
|
5404
5466
|
export const KEY_TLD_SPECIFICATION_TRANSFER_POLICIES = 'transfer_policies' satisfies keyof TldSpecification;
|
|
5467
|
+
export const KEY_TLD_SPECIFICATION_VERIFICATION_POLICIES = 'verification_policies' satisfies keyof TldSpecification;
|
|
5405
5468
|
export const KEY_TLD_SPECIFICATION_WHOIS = 'whois' satisfies keyof TldSpecification;
|
|
5406
5469
|
|
|
5407
5470
|
export const KEYS_TLD_SPECIFICATION = [
|
|
@@ -5421,6 +5484,7 @@ export const KEYS_TLD_SPECIFICATION = [
|
|
|
5421
5484
|
KEY_TLD_SPECIFICATION_RESERVED_DOMAINS,
|
|
5422
5485
|
KEY_TLD_SPECIFICATION_TLDS,
|
|
5423
5486
|
KEY_TLD_SPECIFICATION_TRANSFER_POLICIES,
|
|
5487
|
+
KEY_TLD_SPECIFICATION_VERIFICATION_POLICIES,
|
|
5424
5488
|
KEY_TLD_SPECIFICATION_WHOIS,
|
|
5425
5489
|
] as const satisfies (keyof TldSpecification)[];
|
|
5426
5490
|
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export type ClaimsNoticesRequest = components['schemas']['ClaimsNoticesRequest']
|
|
|
36
36
|
export type ClaimsNotices = components['schemas']['ClaimsNoticesResponse'];
|
|
37
37
|
export type ClearVanityNameserverSetDefaultRes = components['schemas']['ClearVanityNameserverSetDefaultRes'];
|
|
38
38
|
export type CommandError = components['schemas']['CommandError'];
|
|
39
|
+
export type Communication = components['schemas']['Communication'];
|
|
39
40
|
export type ComplianceStatus = components['schemas']['ComplianceStatus'];
|
|
40
41
|
export type ConditionOperator = components['schemas']['ConditionOperator'];
|
|
41
42
|
export type ContactAttestReq = components['schemas']['ContactAttestReq'];
|
|
@@ -301,6 +302,7 @@ export type EmailForwardZone = components['schemas']['EmailForwardZone'];
|
|
|
301
302
|
export type EmailForwardZoneSortField = components['schemas']['EmailForwardZoneSortField'];
|
|
302
303
|
export type EmailForwardsContext = components['schemas']['EmailForwardsContext'];
|
|
303
304
|
export type EmailForwardsContextCreate = components['schemas']['EmailForwardsContextCreate'];
|
|
305
|
+
export type EmailVerificationPolicy = components['schemas']['EmailVerificationPolicy'];
|
|
304
306
|
export type EmailVerificationStatus = components['schemas']['EmailVerificationStatus'];
|
|
305
307
|
export type EventData = components['schemas']['EventData'];
|
|
306
308
|
export type EventError = components['schemas']['EventError'];
|
|
@@ -330,6 +332,7 @@ export type HttpRedirectRemove = components['schemas']['HttpRedirectRemove'];
|
|
|
330
332
|
export type HttpRedirectRequest = components['schemas']['HttpRedirectRequest'];
|
|
331
333
|
export type HttpRedirectUpsert = components['schemas']['HttpRedirectUpsert'];
|
|
332
334
|
export type IPAddressType = components['schemas']['IPAddressType'];
|
|
335
|
+
export type IdentityVerificationPolicy = components['schemas']['IdentityVerificationPolicy'];
|
|
333
336
|
export type IdnBase = components['schemas']['IdnBase'];
|
|
334
337
|
export type InvoiceDocumentType = components['schemas']['InvoiceDocumentType'];
|
|
335
338
|
export type Invoice = components['schemas']['InvoiceResponse'];
|
|
@@ -376,6 +379,8 @@ export type MessageList = components['schemas']['MessageListResponse'];
|
|
|
376
379
|
export type MessageRole = components['schemas']['MessageRole'];
|
|
377
380
|
export type MetricsGrouping = components['schemas']['MetricsGrouping'];
|
|
378
381
|
export type Nameserver = components['schemas']['Nameserver'];
|
|
382
|
+
export type NizzaClaim = components['schemas']['NizzaClaim'];
|
|
383
|
+
export type NizzaVerificationProof = components['schemas']['NizzaVerificationProof'];
|
|
379
384
|
export type NorIdDeclarationConfirmRequest = components['schemas']['NorIdDeclarationConfirmRequest'];
|
|
380
385
|
export type NorIdDeclaration = components['schemas']['NorIdDeclarationResponse'];
|
|
381
386
|
export type NorIdDeclarationStatus = components['schemas']['NorIdDeclarationStatus'];
|
|
@@ -506,6 +511,7 @@ export type ReportTriggerType = components['schemas']['ReportTriggerType'];
|
|
|
506
511
|
export type ReportType = components['schemas']['ReportType'];
|
|
507
512
|
export type RequestHistory = components['schemas']['RequestHistory'];
|
|
508
513
|
export type RequestHistorySortField = components['schemas']['RequestHistorySortField'];
|
|
514
|
+
export type RequiredClaim = components['schemas']['RequiredClaim'];
|
|
509
515
|
export type ReservedDomainsBase = components['schemas']['ReservedDomainsBase'];
|
|
510
516
|
export type ReservedSourceType = components['schemas']['ReservedSourceType'];
|
|
511
517
|
export type RgpOperations = components['schemas']['RgpOperations'];
|
|
@@ -585,9 +591,10 @@ export type VanityNsCheckSummaryState = components['schemas']['VanityNsCheckSumm
|
|
|
585
591
|
export type VerificationClaimType = components['schemas']['VerificationClaimType'];
|
|
586
592
|
export type VerificationDeadline = components['schemas']['VerificationDeadline'];
|
|
587
593
|
export type VerificationDeadlineType = components['schemas']['VerificationDeadlineType'];
|
|
594
|
+
export type VerificationPolicy = components['schemas']['VerificationPolicy'];
|
|
588
595
|
export type VerificationRegistrantDetails = components['schemas']['VerificationRegistrantDetails'];
|
|
589
596
|
export type Verification = components['schemas']['VerificationResponse'];
|
|
590
|
-
export type
|
|
597
|
+
export type VerificationTypeInput = components['schemas']['VerificationType-Input'];
|
|
591
598
|
export type VisitsByKeyBucket = components['schemas']['VisitsByKeyBucket'];
|
|
592
599
|
export type WhitelabelBaseCreate = components['schemas']['WhitelabelBaseCreate'];
|
|
593
600
|
export type WhitelabelBrandingPatch = components['schemas']['WhitelabelBrandingPatch'];
|
|
@@ -617,4 +624,6 @@ export type RequestAuthcode7 = components['schemas']['api__domain__tld_specific_
|
|
|
617
624
|
export type RequestAuthcode8 = components['schemas']['api__domain__tld_specific__se__models__RequestAuthcodeResponse'];
|
|
618
625
|
export type RequestAuthcode9 = components['schemas']['api__domain__tld_specific__wales__models__RequestAuthcodeResponse'];
|
|
619
626
|
export type DomainAvailabilityList = components['schemas']['common__models__availability__datasource__DomainAvailabilityResponse'];
|
|
620
|
-
export type DomainAvailabilityCheck = components['schemas']['common__models__domain__domain__DomainAvailabilityResponse'];
|
|
627
|
+
export type DomainAvailabilityCheck = components['schemas']['common__models__domain__domain__DomainAvailabilityResponse'];
|
|
628
|
+
export type VerificationType = components['schemas']['common__models__email_verification__email_verification__VerificationType'];
|
|
629
|
+
export type VerificationType2 = components['schemas']['common__services__domain__tld_configuration__VerificationPolicyBase__VerificationType'];
|
package/src/openapi.yaml
CHANGED
|
@@ -837,6 +837,24 @@ components:
|
|
|
837
837
|
- error
|
|
838
838
|
title: CommandError
|
|
839
839
|
type: object
|
|
840
|
+
Communication:
|
|
841
|
+
properties:
|
|
842
|
+
timedelta:
|
|
843
|
+
description: The Timedeltas of when to send a verification notice of the
|
|
844
|
+
Communication Channel [+0D, +4D, +12D, +15D, +27D]
|
|
845
|
+
items:
|
|
846
|
+
type: string
|
|
847
|
+
title: Timedelta
|
|
848
|
+
type: array
|
|
849
|
+
type:
|
|
850
|
+
description: Which Communication channel is used for the Verification [email]
|
|
851
|
+
title: Type
|
|
852
|
+
type: string
|
|
853
|
+
required:
|
|
854
|
+
- type
|
|
855
|
+
- timedelta
|
|
856
|
+
title: Communication
|
|
857
|
+
type: object
|
|
840
858
|
ComplianceStatus:
|
|
841
859
|
enum:
|
|
842
860
|
- preparing
|
|
@@ -1839,7 +1857,7 @@ components:
|
|
|
1839
1857
|
title: Token
|
|
1840
1858
|
type: string
|
|
1841
1859
|
type:
|
|
1842
|
-
$ref: '#/components/schemas/
|
|
1860
|
+
$ref: '#/components/schemas/common__models__email_verification__email_verification__VerificationType'
|
|
1843
1861
|
description: 'The type of verification: ''api'' for retrieving token via
|
|
1844
1862
|
API, ''email'' for retrieving via email'
|
|
1845
1863
|
updated_on:
|
|
@@ -1905,7 +1923,7 @@ components:
|
|
|
1905
1923
|
default: pending
|
|
1906
1924
|
description: Current status of the email verification
|
|
1907
1925
|
type:
|
|
1908
|
-
$ref: '#/components/schemas/
|
|
1926
|
+
$ref: '#/components/schemas/common__models__email_verification__email_verification__VerificationType'
|
|
1909
1927
|
description: 'The type of verification: ''api'' for retrieving token via
|
|
1910
1928
|
API, ''email'' for retrieving via email'
|
|
1911
1929
|
updated_on:
|
|
@@ -1996,7 +2014,7 @@ components:
|
|
|
1996
2014
|
default: pending
|
|
1997
2015
|
description: Current status of the email verification
|
|
1998
2016
|
type:
|
|
1999
|
-
$ref: '#/components/schemas/
|
|
2017
|
+
$ref: '#/components/schemas/common__models__email_verification__email_verification__VerificationType'
|
|
2000
2018
|
description: 'The type of verification: ''api'' for retrieving token via
|
|
2001
2019
|
API, ''email'' for retrieving via email'
|
|
2002
2020
|
updated_on:
|
|
@@ -8169,6 +8187,53 @@ components:
|
|
|
8169
8187
|
- payload
|
|
8170
8188
|
title: EmailForwardsContextCreate
|
|
8171
8189
|
type: object
|
|
8190
|
+
EmailVerificationPolicy:
|
|
8191
|
+
properties:
|
|
8192
|
+
communication:
|
|
8193
|
+
$ref: '#/components/schemas/Communication'
|
|
8194
|
+
contact_roles:
|
|
8195
|
+
description: For which type of Contacts this verification needs to be done
|
|
8196
|
+
items:
|
|
8197
|
+
$ref: '#/components/schemas/DomainContactType'
|
|
8198
|
+
title: Contact Roles
|
|
8199
|
+
type: array
|
|
8200
|
+
enabled:
|
|
8201
|
+
description: Whether this Verification is enabled
|
|
8202
|
+
title: Enabled
|
|
8203
|
+
type: boolean
|
|
8204
|
+
suspension_delay:
|
|
8205
|
+
description: After how many Days should the domain be suspended
|
|
8206
|
+
title: Suspension Delay
|
|
8207
|
+
type: string
|
|
8208
|
+
suspension_on_failure:
|
|
8209
|
+
description: Should the Domain be suspended if the verification was not
|
|
8210
|
+
successfull
|
|
8211
|
+
title: Suspension On Failure
|
|
8212
|
+
type: boolean
|
|
8213
|
+
trigger:
|
|
8214
|
+
description: The operations that will trigger this verification
|
|
8215
|
+
items:
|
|
8216
|
+
type: string
|
|
8217
|
+
title: Trigger
|
|
8218
|
+
type: array
|
|
8219
|
+
validity_period:
|
|
8220
|
+
anyOf:
|
|
8221
|
+
- $ref: '#/components/schemas/PeriodStr'
|
|
8222
|
+
- type: 'null'
|
|
8223
|
+
verification_method:
|
|
8224
|
+
title: Verification Method
|
|
8225
|
+
type: string
|
|
8226
|
+
required:
|
|
8227
|
+
- enabled
|
|
8228
|
+
- contact_roles
|
|
8229
|
+
- trigger
|
|
8230
|
+
- validity_period
|
|
8231
|
+
- suspension_on_failure
|
|
8232
|
+
- suspension_delay
|
|
8233
|
+
- verification_method
|
|
8234
|
+
- communication
|
|
8235
|
+
title: EmailVerificationPolicy
|
|
8236
|
+
type: object
|
|
8172
8237
|
EmailVerificationStatus:
|
|
8173
8238
|
enum:
|
|
8174
8239
|
- verified
|
|
@@ -8749,6 +8814,69 @@ components:
|
|
|
8749
8814
|
- v6
|
|
8750
8815
|
title: IPAddressType
|
|
8751
8816
|
type: string
|
|
8817
|
+
IdentityVerificationPolicy:
|
|
8818
|
+
description: 'A registry that requires the contact to have been identity-verified
|
|
8819
|
+
before it accepts it.
|
|
8820
|
+
|
|
8821
|
+
|
|
8822
|
+
The vocabulary is the contact-verification service''s, because that service
|
|
8823
|
+
is what the claims
|
|
8824
|
+
|
|
8825
|
+
are checked against. What a registry accepts as evidence is a policy of its
|
|
8826
|
+
own and does not
|
|
8827
|
+
|
|
8828
|
+
follow from the claim: `.dk` wants a photo ID for `NAME`, while a registry
|
|
8829
|
+
happy with a written
|
|
8830
|
+
|
|
8831
|
+
attestation would leave `accepted_proofs` out.'
|
|
8832
|
+
properties:
|
|
8833
|
+
contact_roles:
|
|
8834
|
+
description: For which type of Contacts this verification needs to be done
|
|
8835
|
+
items:
|
|
8836
|
+
$ref: '#/components/schemas/DomainContactType'
|
|
8837
|
+
title: Contact Roles
|
|
8838
|
+
type: array
|
|
8839
|
+
enabled:
|
|
8840
|
+
description: Whether this Verification is enabled
|
|
8841
|
+
title: Enabled
|
|
8842
|
+
type: boolean
|
|
8843
|
+
required_claims:
|
|
8844
|
+
description: The claims that must be verified before a contact can be used
|
|
8845
|
+
on this TLD
|
|
8846
|
+
items:
|
|
8847
|
+
$ref: '#/components/schemas/RequiredClaim'
|
|
8848
|
+
minItems: 1
|
|
8849
|
+
title: Required Claims
|
|
8850
|
+
type: array
|
|
8851
|
+
suspension_delay:
|
|
8852
|
+
description: After how many Days should the domain be suspended
|
|
8853
|
+
title: Suspension Delay
|
|
8854
|
+
type: string
|
|
8855
|
+
suspension_on_failure:
|
|
8856
|
+
description: Should the Domain be suspended if the verification was not
|
|
8857
|
+
successfull
|
|
8858
|
+
title: Suspension On Failure
|
|
8859
|
+
type: boolean
|
|
8860
|
+
trigger:
|
|
8861
|
+
description: The operations that will trigger this verification
|
|
8862
|
+
items:
|
|
8863
|
+
type: string
|
|
8864
|
+
title: Trigger
|
|
8865
|
+
type: array
|
|
8866
|
+
validity_period:
|
|
8867
|
+
anyOf:
|
|
8868
|
+
- $ref: '#/components/schemas/PeriodStr'
|
|
8869
|
+
- type: 'null'
|
|
8870
|
+
required:
|
|
8871
|
+
- enabled
|
|
8872
|
+
- contact_roles
|
|
8873
|
+
- trigger
|
|
8874
|
+
- validity_period
|
|
8875
|
+
- suspension_on_failure
|
|
8876
|
+
- suspension_delay
|
|
8877
|
+
- required_claims
|
|
8878
|
+
title: IdentityVerificationPolicy
|
|
8879
|
+
type: object
|
|
8752
8880
|
IdnBase:
|
|
8753
8881
|
properties:
|
|
8754
8882
|
idn_capable:
|
|
@@ -10035,6 +10163,38 @@ components:
|
|
|
10035
10163
|
- hostname
|
|
10036
10164
|
title: Nameserver
|
|
10037
10165
|
type: object
|
|
10166
|
+
NizzaClaim:
|
|
10167
|
+
enum:
|
|
10168
|
+
- EMAIL
|
|
10169
|
+
- PHONE
|
|
10170
|
+
- ADDRESS
|
|
10171
|
+
- NAME
|
|
10172
|
+
- LEGAL_ENTITY
|
|
10173
|
+
title: NizzaClaim
|
|
10174
|
+
type: string
|
|
10175
|
+
NizzaVerificationProof:
|
|
10176
|
+
enum:
|
|
10177
|
+
- IDCARD
|
|
10178
|
+
- PASSPORT
|
|
10179
|
+
- POPULATION_REGISTER
|
|
10180
|
+
- RESIDENCE_PERMIT
|
|
10181
|
+
- PROOF_OF_ARRIVAL
|
|
10182
|
+
- DRIVERS_LICENCE
|
|
10183
|
+
- COMPANY_REGISTER
|
|
10184
|
+
- COMPANY_STATEMENT
|
|
10185
|
+
- BANK_ACCOUNT
|
|
10186
|
+
- ONLINE_PAYMENT_ACCOUNT
|
|
10187
|
+
- UTILITY_ACCOUNT
|
|
10188
|
+
- BANK_STATEMENT
|
|
10189
|
+
- TAX_STATEMENT
|
|
10190
|
+
- WRITTEN_ATTESTATION
|
|
10191
|
+
- DIGITAL_ATTESTATION
|
|
10192
|
+
- POSTAL_VER_TRANSACTION_LOG
|
|
10193
|
+
- EMAIL_VER_TRANSACTION_LOG
|
|
10194
|
+
- PHONE_VER_TRANSACTION_LOG
|
|
10195
|
+
- ADDRESS_DATABASE
|
|
10196
|
+
title: NizzaVerificationProof
|
|
10197
|
+
type: string
|
|
10038
10198
|
NorIdDeclarationConfirmRequest:
|
|
10039
10199
|
properties:
|
|
10040
10200
|
accept_name:
|
|
@@ -13262,6 +13422,24 @@ components:
|
|
|
13262
13422
|
- request_completed_at
|
|
13263
13423
|
title: RequestHistorySortField
|
|
13264
13424
|
type: string
|
|
13425
|
+
RequiredClaim:
|
|
13426
|
+
properties:
|
|
13427
|
+
accepted_proofs:
|
|
13428
|
+
anyOf:
|
|
13429
|
+
- items:
|
|
13430
|
+
$ref: '#/components/schemas/NizzaVerificationProof'
|
|
13431
|
+
type: array
|
|
13432
|
+
- type: 'null'
|
|
13433
|
+
description: The evidence the registry accepts for this claim; any proof
|
|
13434
|
+
is accepted when omitted
|
|
13435
|
+
title: Accepted Proofs
|
|
13436
|
+
claim:
|
|
13437
|
+
$ref: '#/components/schemas/NizzaClaim'
|
|
13438
|
+
description: Which contact claim the registry requires to have been verified
|
|
13439
|
+
required:
|
|
13440
|
+
- claim
|
|
13441
|
+
title: RequiredClaim
|
|
13442
|
+
type: object
|
|
13265
13443
|
ReservedDomainsBase:
|
|
13266
13444
|
properties:
|
|
13267
13445
|
source:
|
|
@@ -13467,6 +13645,16 @@ components:
|
|
|
13467
13645
|
type: string
|
|
13468
13646
|
- type: 'null'
|
|
13469
13647
|
title: Email
|
|
13648
|
+
help_center_url:
|
|
13649
|
+
anyOf:
|
|
13650
|
+
- type: string
|
|
13651
|
+
- type: 'null'
|
|
13652
|
+
title: Help Center Url
|
|
13653
|
+
status_url:
|
|
13654
|
+
anyOf:
|
|
13655
|
+
- type: string
|
|
13656
|
+
- type: 'null'
|
|
13657
|
+
title: Status Url
|
|
13470
13658
|
url:
|
|
13471
13659
|
anyOf:
|
|
13472
13660
|
- type: string
|
|
@@ -13829,6 +14017,16 @@ components:
|
|
|
13829
14017
|
transfer_policies:
|
|
13830
14018
|
$ref: '#/components/schemas/TransferPoliciesBase'
|
|
13831
14019
|
description: Transfer policies configuration
|
|
14020
|
+
verification_policies:
|
|
14021
|
+
anyOf:
|
|
14022
|
+
- additionalProperties:
|
|
14023
|
+
$ref: '#/components/schemas/VerificationPolicy'
|
|
14024
|
+
propertyNames:
|
|
14025
|
+
$ref: '#/components/schemas/common__services__domain__tld_configuration__VerificationPolicyBase__VerificationType'
|
|
14026
|
+
type: object
|
|
14027
|
+
- type: 'null'
|
|
14028
|
+
description: Verification Policy Configuration
|
|
14029
|
+
title: Verification Policies
|
|
13832
14030
|
whois:
|
|
13833
14031
|
anyOf:
|
|
13834
14032
|
- $ref: '#/components/schemas/WhoisBase'
|
|
@@ -15388,6 +15586,10 @@ components:
|
|
|
15388
15586
|
- deletion
|
|
15389
15587
|
title: VerificationDeadlineType
|
|
15390
15588
|
type: string
|
|
15589
|
+
VerificationPolicy:
|
|
15590
|
+
anyOf:
|
|
15591
|
+
- $ref: '#/components/schemas/EmailVerificationPolicy'
|
|
15592
|
+
- $ref: '#/components/schemas/IdentityVerificationPolicy'
|
|
15391
15593
|
VerificationRegistrantDetails:
|
|
15392
15594
|
properties:
|
|
15393
15595
|
contact_id:
|
|
@@ -15423,7 +15625,7 @@ components:
|
|
|
15423
15625
|
- claims
|
|
15424
15626
|
title: VerificationResponse
|
|
15425
15627
|
type: object
|
|
15426
|
-
VerificationType:
|
|
15628
|
+
VerificationType-Input:
|
|
15427
15629
|
enum:
|
|
15428
15630
|
- api
|
|
15429
15631
|
- email
|
|
@@ -16357,6 +16559,18 @@ components:
|
|
|
16357
16559
|
- reason
|
|
16358
16560
|
title: DomainAvailabilityResponse
|
|
16359
16561
|
type: object
|
|
16562
|
+
common__models__email_verification__email_verification__VerificationType:
|
|
16563
|
+
enum:
|
|
16564
|
+
- api
|
|
16565
|
+
- email
|
|
16566
|
+
title: VerificationType
|
|
16567
|
+
type: string
|
|
16568
|
+
common__services__domain__tld_configuration__VerificationPolicyBase__VerificationType:
|
|
16569
|
+
enum:
|
|
16570
|
+
- email_verification
|
|
16571
|
+
- identity_verification
|
|
16572
|
+
title: VerificationType
|
|
16573
|
+
type: string
|
|
16360
16574
|
securitySchemes:
|
|
16361
16575
|
APIKeyHeader:
|
|
16362
16576
|
in: header
|
|
@@ -16427,7 +16641,7 @@ info:
|
|
|
16427
16641
|
\n\n"
|
|
16428
16642
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16429
16643
|
title: OpusDNS API
|
|
16430
|
-
version: 2026-09-10-
|
|
16644
|
+
version: 2026-09-10-131833
|
|
16431
16645
|
x-logo:
|
|
16432
16646
|
altText: OpusDNS API Reference
|
|
16433
16647
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -19661,7 +19875,7 @@ paths:
|
|
|
19661
19875
|
name: type
|
|
19662
19876
|
required: true
|
|
19663
19877
|
schema:
|
|
19664
|
-
$ref: '#/components/schemas/VerificationType'
|
|
19878
|
+
$ref: '#/components/schemas/VerificationType-Input'
|
|
19665
19879
|
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19666
19880
|
responses:
|
|
19667
19881
|
'201':
|
package/src/schema.d.ts
CHANGED
|
@@ -3712,6 +3712,19 @@ export interface components {
|
|
|
3712
3712
|
*/
|
|
3713
3713
|
type?: string | null;
|
|
3714
3714
|
};
|
|
3715
|
+
/** Communication */
|
|
3716
|
+
Communication: {
|
|
3717
|
+
/**
|
|
3718
|
+
* Timedelta
|
|
3719
|
+
* @description The Timedeltas of when to send a verification notice of the Communication Channel [+0D, +4D, +12D, +15D, +27D]
|
|
3720
|
+
*/
|
|
3721
|
+
timedelta: string[];
|
|
3722
|
+
/**
|
|
3723
|
+
* Type
|
|
3724
|
+
* @description Which Communication channel is used for the Verification [email]
|
|
3725
|
+
*/
|
|
3726
|
+
type: string;
|
|
3727
|
+
};
|
|
3715
3728
|
/**
|
|
3716
3729
|
* ComplianceStatus
|
|
3717
3730
|
* @enum {string}
|
|
@@ -4426,7 +4439,7 @@ export interface components {
|
|
|
4426
4439
|
*/
|
|
4427
4440
|
token: string;
|
|
4428
4441
|
/** @description The type of verification: 'api' for retrieving token via API, 'email' for retrieving via email */
|
|
4429
|
-
type: components["schemas"]["
|
|
4442
|
+
type: components["schemas"]["common__models__email_verification__email_verification__VerificationType"];
|
|
4430
4443
|
/**
|
|
4431
4444
|
* Updated On
|
|
4432
4445
|
* Format: date-time
|
|
@@ -4477,7 +4490,7 @@ export interface components {
|
|
|
4477
4490
|
*/
|
|
4478
4491
|
status: components["schemas"]["EmailVerificationStatus"];
|
|
4479
4492
|
/** @description The type of verification: 'api' for retrieving token via API, 'email' for retrieving via email */
|
|
4480
|
-
type: components["schemas"]["
|
|
4493
|
+
type: components["schemas"]["common__models__email_verification__email_verification__VerificationType"];
|
|
4481
4494
|
/**
|
|
4482
4495
|
* Updated On
|
|
4483
4496
|
* Format: date-time
|
|
@@ -4533,7 +4546,7 @@ export interface components {
|
|
|
4533
4546
|
*/
|
|
4534
4547
|
status: components["schemas"]["EmailVerificationStatus"];
|
|
4535
4548
|
/** @description The type of verification: 'api' for retrieving token via API, 'email' for retrieving via email */
|
|
4536
|
-
type: components["schemas"]["
|
|
4549
|
+
type: components["schemas"]["common__models__email_verification__email_verification__VerificationType"];
|
|
4537
4550
|
/**
|
|
4538
4551
|
* Updated On
|
|
4539
4552
|
* Format: date-time
|
|
@@ -8643,6 +8656,38 @@ export interface components {
|
|
|
8643
8656
|
kind: "email_forwards";
|
|
8644
8657
|
payload: components["schemas"]["ContextPayload_EmailForwardResponse_"];
|
|
8645
8658
|
};
|
|
8659
|
+
/** EmailVerificationPolicy */
|
|
8660
|
+
EmailVerificationPolicy: {
|
|
8661
|
+
communication: components["schemas"]["Communication"];
|
|
8662
|
+
/**
|
|
8663
|
+
* Contact Roles
|
|
8664
|
+
* @description For which type of Contacts this verification needs to be done
|
|
8665
|
+
*/
|
|
8666
|
+
contact_roles: components["schemas"]["DomainContactType"][];
|
|
8667
|
+
/**
|
|
8668
|
+
* Enabled
|
|
8669
|
+
* @description Whether this Verification is enabled
|
|
8670
|
+
*/
|
|
8671
|
+
enabled: boolean;
|
|
8672
|
+
/**
|
|
8673
|
+
* Suspension Delay
|
|
8674
|
+
* @description After how many Days should the domain be suspended
|
|
8675
|
+
*/
|
|
8676
|
+
suspension_delay: string;
|
|
8677
|
+
/**
|
|
8678
|
+
* Suspension On Failure
|
|
8679
|
+
* @description Should the Domain be suspended if the verification was not successfull
|
|
8680
|
+
*/
|
|
8681
|
+
suspension_on_failure: boolean;
|
|
8682
|
+
/**
|
|
8683
|
+
* Trigger
|
|
8684
|
+
* @description The operations that will trigger this verification
|
|
8685
|
+
*/
|
|
8686
|
+
trigger: string[];
|
|
8687
|
+
validity_period: components["schemas"]["PeriodStr"] | null;
|
|
8688
|
+
/** Verification Method */
|
|
8689
|
+
verification_method: string;
|
|
8690
|
+
};
|
|
8646
8691
|
/**
|
|
8647
8692
|
* EmailVerificationStatus
|
|
8648
8693
|
* @enum {string}
|
|
@@ -9005,6 +9050,48 @@ export interface components {
|
|
|
9005
9050
|
* @enum {string}
|
|
9006
9051
|
*/
|
|
9007
9052
|
IPAddressType: "v4" | "v6";
|
|
9053
|
+
/**
|
|
9054
|
+
* IdentityVerificationPolicy
|
|
9055
|
+
* @description A registry that requires the contact to have been identity-verified before it accepts it.
|
|
9056
|
+
*
|
|
9057
|
+
* The vocabulary is the contact-verification service's, because that service is what the claims
|
|
9058
|
+
* are checked against. What a registry accepts as evidence is a policy of its own and does not
|
|
9059
|
+
* follow from the claim: `.dk` wants a photo ID for `NAME`, while a registry happy with a written
|
|
9060
|
+
* attestation would leave `accepted_proofs` out.
|
|
9061
|
+
*/
|
|
9062
|
+
IdentityVerificationPolicy: {
|
|
9063
|
+
/**
|
|
9064
|
+
* Contact Roles
|
|
9065
|
+
* @description For which type of Contacts this verification needs to be done
|
|
9066
|
+
*/
|
|
9067
|
+
contact_roles: components["schemas"]["DomainContactType"][];
|
|
9068
|
+
/**
|
|
9069
|
+
* Enabled
|
|
9070
|
+
* @description Whether this Verification is enabled
|
|
9071
|
+
*/
|
|
9072
|
+
enabled: boolean;
|
|
9073
|
+
/**
|
|
9074
|
+
* Required Claims
|
|
9075
|
+
* @description The claims that must be verified before a contact can be used on this TLD
|
|
9076
|
+
*/
|
|
9077
|
+
required_claims: components["schemas"]["RequiredClaim"][];
|
|
9078
|
+
/**
|
|
9079
|
+
* Suspension Delay
|
|
9080
|
+
* @description After how many Days should the domain be suspended
|
|
9081
|
+
*/
|
|
9082
|
+
suspension_delay: string;
|
|
9083
|
+
/**
|
|
9084
|
+
* Suspension On Failure
|
|
9085
|
+
* @description Should the Domain be suspended if the verification was not successfull
|
|
9086
|
+
*/
|
|
9087
|
+
suspension_on_failure: boolean;
|
|
9088
|
+
/**
|
|
9089
|
+
* Trigger
|
|
9090
|
+
* @description The operations that will trigger this verification
|
|
9091
|
+
*/
|
|
9092
|
+
trigger: string[];
|
|
9093
|
+
validity_period: components["schemas"]["PeriodStr"] | null;
|
|
9094
|
+
};
|
|
9008
9095
|
/** IdnBase */
|
|
9009
9096
|
IdnBase: {
|
|
9010
9097
|
/**
|
|
@@ -9890,6 +9977,16 @@ export interface components {
|
|
|
9890
9977
|
*/
|
|
9891
9978
|
ip_addresses?: string[];
|
|
9892
9979
|
};
|
|
9980
|
+
/**
|
|
9981
|
+
* NizzaClaim
|
|
9982
|
+
* @enum {string}
|
|
9983
|
+
*/
|
|
9984
|
+
NizzaClaim: "EMAIL" | "PHONE" | "ADDRESS" | "NAME" | "LEGAL_ENTITY";
|
|
9985
|
+
/**
|
|
9986
|
+
* NizzaVerificationProof
|
|
9987
|
+
* @enum {string}
|
|
9988
|
+
*/
|
|
9989
|
+
NizzaVerificationProof: "IDCARD" | "PASSPORT" | "POPULATION_REGISTER" | "RESIDENCE_PERMIT" | "PROOF_OF_ARRIVAL" | "DRIVERS_LICENCE" | "COMPANY_REGISTER" | "COMPANY_STATEMENT" | "BANK_ACCOUNT" | "ONLINE_PAYMENT_ACCOUNT" | "UTILITY_ACCOUNT" | "BANK_STATEMENT" | "TAX_STATEMENT" | "WRITTEN_ATTESTATION" | "DIGITAL_ATTESTATION" | "POSTAL_VER_TRANSACTION_LOG" | "EMAIL_VER_TRANSACTION_LOG" | "PHONE_VER_TRANSACTION_LOG" | "ADDRESS_DATABASE";
|
|
9893
9990
|
/** NorIdDeclarationConfirmRequest */
|
|
9894
9991
|
NorIdDeclarationConfirmRequest: {
|
|
9895
9992
|
/**
|
|
@@ -11877,6 +11974,16 @@ export interface components {
|
|
|
11877
11974
|
* @enum {string}
|
|
11878
11975
|
*/
|
|
11879
11976
|
RequestHistorySortField: "method" | "path" | "status_code" | "duration" | "server_request_id" | "performed_by_type" | "performed_by_id" | "created_on" | "request_started_at" | "request_completed_at";
|
|
11977
|
+
/** RequiredClaim */
|
|
11978
|
+
RequiredClaim: {
|
|
11979
|
+
/**
|
|
11980
|
+
* Accepted Proofs
|
|
11981
|
+
* @description The evidence the registry accepts for this claim; any proof is accepted when omitted
|
|
11982
|
+
*/
|
|
11983
|
+
accepted_proofs?: components["schemas"]["NizzaVerificationProof"][] | null;
|
|
11984
|
+
/** @description Which contact claim the registry requires to have been verified */
|
|
11985
|
+
claim: components["schemas"]["NizzaClaim"];
|
|
11986
|
+
};
|
|
11880
11987
|
/** ReservedDomainsBase */
|
|
11881
11988
|
ReservedDomainsBase: {
|
|
11882
11989
|
/** @description Source of reserved domain information */
|
|
@@ -12007,6 +12114,10 @@ export interface components {
|
|
|
12007
12114
|
Support: {
|
|
12008
12115
|
/** Email */
|
|
12009
12116
|
email?: string | null;
|
|
12117
|
+
/** Help Center Url */
|
|
12118
|
+
help_center_url?: string | null;
|
|
12119
|
+
/** Status Url */
|
|
12120
|
+
status_url?: string | null;
|
|
12010
12121
|
/** Url */
|
|
12011
12122
|
url?: string | null;
|
|
12012
12123
|
};
|
|
@@ -12243,6 +12354,13 @@ export interface components {
|
|
|
12243
12354
|
tlds: components["schemas"]["TldBase"][];
|
|
12244
12355
|
/** @description Transfer policies configuration */
|
|
12245
12356
|
transfer_policies: components["schemas"]["TransferPoliciesBase"];
|
|
12357
|
+
/**
|
|
12358
|
+
* Verification Policies
|
|
12359
|
+
* @description Verification Policy Configuration
|
|
12360
|
+
*/
|
|
12361
|
+
verification_policies?: {
|
|
12362
|
+
[key: string]: components["schemas"]["VerificationPolicy"];
|
|
12363
|
+
} | null;
|
|
12246
12364
|
/** @description WHOIS configuration */
|
|
12247
12365
|
whois?: components["schemas"]["WhoisBase"] | null;
|
|
12248
12366
|
};
|
|
@@ -13377,6 +13495,7 @@ export interface components {
|
|
|
13377
13495
|
* @enum {string}
|
|
13378
13496
|
*/
|
|
13379
13497
|
VerificationDeadlineType: "dedelegation" | "deletion";
|
|
13498
|
+
VerificationPolicy: components["schemas"]["EmailVerificationPolicy"] | components["schemas"]["IdentityVerificationPolicy"];
|
|
13380
13499
|
/** VerificationRegistrantDetails */
|
|
13381
13500
|
VerificationRegistrantDetails: {
|
|
13382
13501
|
/** Contact Id */
|
|
@@ -13403,7 +13522,7 @@ export interface components {
|
|
|
13403
13522
|
* VerificationType
|
|
13404
13523
|
* @enum {string}
|
|
13405
13524
|
*/
|
|
13406
|
-
VerificationType: "api" | "email";
|
|
13525
|
+
"VerificationType-Input": "api" | "email";
|
|
13407
13526
|
/** VisitsByKeyBucket */
|
|
13408
13527
|
VisitsByKeyBucket: {
|
|
13409
13528
|
/** Key */
|
|
@@ -14033,6 +14152,16 @@ export interface components {
|
|
|
14033
14152
|
*/
|
|
14034
14153
|
reason: string | null;
|
|
14035
14154
|
};
|
|
14155
|
+
/**
|
|
14156
|
+
* VerificationType
|
|
14157
|
+
* @enum {string}
|
|
14158
|
+
*/
|
|
14159
|
+
common__models__email_verification__email_verification__VerificationType: "api" | "email";
|
|
14160
|
+
/**
|
|
14161
|
+
* VerificationType
|
|
14162
|
+
* @enum {string}
|
|
14163
|
+
*/
|
|
14164
|
+
common__services__domain__tld_configuration__VerificationPolicyBase__VerificationType: "email_verification" | "identity_verification";
|
|
14036
14165
|
};
|
|
14037
14166
|
responses: never;
|
|
14038
14167
|
parameters: {
|
|
@@ -16876,7 +17005,7 @@ export interface operations {
|
|
|
16876
17005
|
start_contact_verification_v1_contacts__contact_id__verification_post: {
|
|
16877
17006
|
parameters: {
|
|
16878
17007
|
query: {
|
|
16879
|
-
type: components["schemas"]["VerificationType"];
|
|
17008
|
+
type: components["schemas"]["VerificationType-Input"];
|
|
16880
17009
|
};
|
|
16881
17010
|
header?: {
|
|
16882
17011
|
/**
|