@opusdns/api 1.157.0 → 1.159.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 +21 -0
- package/src/helpers/keys.ts +4 -0
- package/src/helpers/schemas.d.ts +1 -0
- package/src/openapi.yaml +95 -41
- package/src/schema.d.ts +41 -11
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -66,6 +66,7 @@ import type {
|
|
|
66
66
|
LegalRequirementOperationType,
|
|
67
67
|
LegalRequirementType,
|
|
68
68
|
LocalPresenceRequirementType,
|
|
69
|
+
MailTemplateCategory,
|
|
69
70
|
MemoryFactKind,
|
|
70
71
|
MessageRole,
|
|
71
72
|
MetricsGrouping,
|
|
@@ -670,6 +671,7 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
670
671
|
INTERNET_EE_REGISTRANT_AGREEMENT: "internet_ee_registrant_agreement",
|
|
671
672
|
PROMOTION: "promotion",
|
|
672
673
|
PROMOTION_ELIGIBILITY: "promotion_eligibility",
|
|
674
|
+
DOMAIN_CONTACT_ATTRIBUTES: "domain_contact_attributes",
|
|
673
675
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
674
676
|
|
|
675
677
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
@@ -690,6 +692,7 @@ export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
|
690
692
|
'internet_ee_registrant_agreement',
|
|
691
693
|
'promotion',
|
|
692
694
|
'promotion_eligibility',
|
|
695
|
+
'domain_contact_attributes',
|
|
693
696
|
] as const satisfies ReadonlyArray<DomainAttributeKey>;
|
|
694
697
|
|
|
695
698
|
export const DOMAIN_AVAILABILITY_STATUS = {
|
|
@@ -1242,6 +1245,24 @@ export const LOCAL_PRESENCE_REQUIREMENT_TYPE_VALUES = [
|
|
|
1242
1245
|
'business_entity',
|
|
1243
1246
|
] as const satisfies ReadonlyArray<LocalPresenceRequirementType>;
|
|
1244
1247
|
|
|
1248
|
+
export const MAIL_TEMPLATE_CATEGORY = {
|
|
1249
|
+
ORGANIZATION: "organization",
|
|
1250
|
+
BILLING: "billing",
|
|
1251
|
+
USER_ACCOUNT: "user_account",
|
|
1252
|
+
ICANN_POLICY: "icann_policy",
|
|
1253
|
+
TLD_SPECIFIC: "tld_specific",
|
|
1254
|
+
UNKNOWN: "unknown",
|
|
1255
|
+
} as const satisfies Record<string, MailTemplateCategory>;
|
|
1256
|
+
|
|
1257
|
+
export const MAIL_TEMPLATE_CATEGORY_VALUES = [
|
|
1258
|
+
'organization',
|
|
1259
|
+
'billing',
|
|
1260
|
+
'user_account',
|
|
1261
|
+
'icann_policy',
|
|
1262
|
+
'tld_specific',
|
|
1263
|
+
'unknown',
|
|
1264
|
+
] as const satisfies ReadonlyArray<MailTemplateCategory>;
|
|
1265
|
+
|
|
1245
1266
|
export const MEMORY_FACT_KIND = {
|
|
1246
1267
|
PREFERENCE: "preference",
|
|
1247
1268
|
NOTE: "note",
|
package/src/helpers/keys.ts
CHANGED
|
@@ -1929,10 +1929,12 @@ export const KEYS_DOMAIN_CHECK = [
|
|
|
1929
1929
|
KEY_DOMAIN_CHECK_RESULTS,
|
|
1930
1930
|
] as const satisfies (keyof DomainCheck)[];
|
|
1931
1931
|
|
|
1932
|
+
export const KEY_DOMAIN_CONTACT_ATTRIBUTES = 'attributes' satisfies keyof DomainContact;
|
|
1932
1933
|
export const KEY_DOMAIN_CONTACT_CONTACT_ID = 'contact_id' satisfies keyof DomainContact;
|
|
1933
1934
|
export const KEY_DOMAIN_CONTACT_CONTACT_TYPE = 'contact_type' satisfies keyof DomainContact;
|
|
1934
1935
|
|
|
1935
1936
|
export const KEYS_DOMAIN_CONTACT = [
|
|
1937
|
+
KEY_DOMAIN_CONTACT_ATTRIBUTES,
|
|
1936
1938
|
KEY_DOMAIN_CONTACT_CONTACT_ID,
|
|
1937
1939
|
KEY_DOMAIN_CONTACT_CONTACT_TYPE,
|
|
1938
1940
|
] as const satisfies (keyof DomainContact)[];
|
|
@@ -3952,6 +3954,7 @@ export const KEYS_LOGO = [
|
|
|
3952
3954
|
] as const satisfies (keyof Logo)[];
|
|
3953
3955
|
|
|
3954
3956
|
export const KEY_MAIL_TEMPLATE_BLOCKS = 'blocks' satisfies keyof MailTemplate;
|
|
3957
|
+
export const KEY_MAIL_TEMPLATE_CATEGORY = 'category' satisfies keyof MailTemplate;
|
|
3955
3958
|
export const KEY_MAIL_TEMPLATE_LABEL = 'label' satisfies keyof MailTemplate;
|
|
3956
3959
|
export const KEY_MAIL_TEMPLATE_LOCALES = 'locales' satisfies keyof MailTemplate;
|
|
3957
3960
|
export const KEY_MAIL_TEMPLATE_SUBJECT = 'subject' satisfies keyof MailTemplate;
|
|
@@ -3960,6 +3963,7 @@ export const KEY_MAIL_TEMPLATE_VERSION = 'version' satisfies keyof MailTemplate;
|
|
|
3960
3963
|
|
|
3961
3964
|
export const KEYS_MAIL_TEMPLATE = [
|
|
3962
3965
|
KEY_MAIL_TEMPLATE_BLOCKS,
|
|
3966
|
+
KEY_MAIL_TEMPLATE_CATEGORY,
|
|
3963
3967
|
KEY_MAIL_TEMPLATE_LABEL,
|
|
3964
3968
|
KEY_MAIL_TEMPLATE_LOCALES,
|
|
3965
3969
|
KEY_MAIL_TEMPLATE_SUBJECT,
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -360,6 +360,7 @@ export type Logo = components['schemas']['Logo'];
|
|
|
360
360
|
export type MailTemplate = components['schemas']['MailTemplate'];
|
|
361
361
|
export type MailTemplateBlock = components['schemas']['MailTemplateBlock'];
|
|
362
362
|
export type MailTemplateCatalogRes = components['schemas']['MailTemplateCatalogRes'];
|
|
363
|
+
export type MailTemplateCategory = components['schemas']['MailTemplateCategory'];
|
|
363
364
|
export type MailTemplateVariable = components['schemas']['MailTemplateVariable'];
|
|
364
365
|
export type MemoryFact = components['schemas']['MemoryFact'];
|
|
365
366
|
export type MemoryFactCreateRequest = components['schemas']['MemoryFactCreateRequest'];
|
package/src/openapi.yaml
CHANGED
|
@@ -3848,6 +3848,7 @@ components:
|
|
|
3848
3848
|
- internet_ee_registrant_agreement
|
|
3849
3849
|
- promotion
|
|
3850
3850
|
- promotion_eligibility
|
|
3851
|
+
- domain_contact_attributes
|
|
3851
3852
|
title: DomainAttributeKey
|
|
3852
3853
|
type: string
|
|
3853
3854
|
DomainAvailability:
|
|
@@ -3951,6 +3952,19 @@ components:
|
|
|
3951
3952
|
type: object
|
|
3952
3953
|
DomainContactResponse:
|
|
3953
3954
|
properties:
|
|
3955
|
+
attributes:
|
|
3956
|
+
anyOf:
|
|
3957
|
+
- additionalProperties:
|
|
3958
|
+
type: string
|
|
3959
|
+
propertyNames:
|
|
3960
|
+
$ref: '#/components/schemas/RegistryHandleAttributeType'
|
|
3961
|
+
type: object
|
|
3962
|
+
- type: 'null'
|
|
3963
|
+
description: Registry-specific attributes supplied inline for this contact
|
|
3964
|
+
in this role. Omitted when the contact was submitted without inline attributes;
|
|
3965
|
+
attributes taken from a linked contact attribute set are not reported
|
|
3966
|
+
here.
|
|
3967
|
+
title: Attributes
|
|
3954
3968
|
contact_id:
|
|
3955
3969
|
description: The contact id of the contact
|
|
3956
3970
|
examples:
|
|
@@ -4002,10 +4016,12 @@ components:
|
|
|
4002
4016
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
4003
4017
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
4004
4018
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4005
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
4006
|
-
|
|
4007
|
-
\ `
|
|
4008
|
-
\
|
|
4019
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4020
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
4021
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4022
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4023
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4024
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
4009
4025
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4010
4026
|
\ a registrant change and other registries ignore attributes.\n"
|
|
4011
4027
|
examples:
|
|
@@ -4121,10 +4137,12 @@ components:
|
|
|
4121
4137
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
4122
4138
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
4123
4139
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4124
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
4125
|
-
|
|
4126
|
-
\ `
|
|
4127
|
-
\
|
|
4140
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4141
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
4142
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4143
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4144
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4145
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
4128
4146
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4129
4147
|
\ a registrant change and other registries ignore attributes.\n"
|
|
4130
4148
|
title: Attributes
|
|
@@ -4224,10 +4242,12 @@ components:
|
|
|
4224
4242
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
4225
4243
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
4226
4244
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4227
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
4228
|
-
|
|
4229
|
-
\ `
|
|
4230
|
-
\
|
|
4245
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4246
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
4247
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4248
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4249
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4250
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
4231
4251
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4232
4252
|
\ a registrant change and other registries ignore attributes.\n"
|
|
4233
4253
|
title: Attributes
|
|
@@ -4317,10 +4337,12 @@ components:
|
|
|
4317
4337
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
4318
4338
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
4319
4339
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4320
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
4321
|
-
|
|
4322
|
-
\ `
|
|
4323
|
-
\
|
|
4340
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4341
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
4342
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4343
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4344
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4345
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
4324
4346
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4325
4347
|
\ a registrant change and other registries ignore attributes.\n"
|
|
4326
4348
|
examples:
|
|
@@ -6198,10 +6220,12 @@ components:
|
|
|
6198
6220
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6199
6221
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6200
6222
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6201
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
6202
|
-
|
|
6203
|
-
\ `
|
|
6204
|
-
\
|
|
6223
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6224
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6225
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6226
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6227
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6228
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
6205
6229
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6206
6230
|
\ a registrant change and other registries ignore attributes.\n"
|
|
6207
6231
|
title: Attributes
|
|
@@ -6301,10 +6325,12 @@ components:
|
|
|
6301
6325
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6302
6326
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6303
6327
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6304
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
6305
|
-
|
|
6306
|
-
\ `
|
|
6307
|
-
\
|
|
6328
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6329
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6330
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6331
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6332
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6333
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
6308
6334
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6309
6335
|
\ a registrant change and other registries ignore attributes.\n"
|
|
6310
6336
|
title: Attributes
|
|
@@ -6388,10 +6414,12 @@ components:
|
|
|
6388
6414
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6389
6415
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6390
6416
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6391
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
6392
|
-
|
|
6393
|
-
\ `
|
|
6394
|
-
\
|
|
6417
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6418
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6419
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6420
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6421
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6422
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
6395
6423
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6396
6424
|
\ a registrant change and other registries ignore attributes.\n"
|
|
6397
6425
|
examples:
|
|
@@ -6475,10 +6503,12 @@ components:
|
|
|
6475
6503
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6476
6504
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6477
6505
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6478
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
6479
|
-
|
|
6480
|
-
\ `
|
|
6481
|
-
\
|
|
6506
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6507
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6508
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6509
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6510
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6511
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
6482
6512
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6483
6513
|
\ a registrant change and other registries ignore attributes.\n"
|
|
6484
6514
|
examples:
|
|
@@ -6607,10 +6637,12 @@ components:
|
|
|
6607
6637
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6608
6638
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6609
6639
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6610
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
6611
|
-
|
|
6612
|
-
\ `
|
|
6613
|
-
\
|
|
6640
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6641
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6642
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6643
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6644
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6645
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
6614
6646
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6615
6647
|
\ a registrant change and other registries ignore attributes.\n"
|
|
6616
6648
|
examples:
|
|
@@ -6848,10 +6880,12 @@ components:
|
|
|
6848
6880
|
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6849
6881
|
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6850
6882
|
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6851
|
-
\ `punktum_dk_tracking_no`. They are never
|
|
6852
|
-
|
|
6853
|
-
\ `
|
|
6854
|
-
\
|
|
6883
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6884
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6885
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6886
|
+
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6887
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6888
|
+
\ update, only `.de` stores attributes and an empty value removes the\
|
|
6855
6889
|
\ stored attribute; `.dk` reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6856
6890
|
\ a registrant change and other registries ignore attributes.\n"
|
|
6857
6891
|
examples:
|
|
@@ -9504,6 +9538,10 @@ components:
|
|
|
9504
9538
|
description: Org-editable content blocks
|
|
9505
9539
|
title: Blocks
|
|
9506
9540
|
type: object
|
|
9541
|
+
category:
|
|
9542
|
+
$ref: '#/components/schemas/MailTemplateCategory'
|
|
9543
|
+
default: unknown
|
|
9544
|
+
description: Template category for grouping in the editor
|
|
9507
9545
|
label:
|
|
9508
9546
|
default: ''
|
|
9509
9547
|
description: Human-readable template name for display
|
|
@@ -9565,6 +9603,22 @@ components:
|
|
|
9565
9603
|
description: The editable-template catalog keyed by template name.
|
|
9566
9604
|
title: MailTemplateCatalogRes
|
|
9567
9605
|
type: object
|
|
9606
|
+
MailTemplateCategory:
|
|
9607
|
+
description: 'Category a template is grouped under in the editor. mail-service
|
|
9608
|
+
owns the set
|
|
9609
|
+
|
|
9610
|
+
and validates it; a value it adds before this enum is updated decodes to UNKNOWN
|
|
9611
|
+
|
|
9612
|
+
rather than failing the catalog (see MailTemplate._coerce_category).'
|
|
9613
|
+
enum:
|
|
9614
|
+
- organization
|
|
9615
|
+
- billing
|
|
9616
|
+
- user_account
|
|
9617
|
+
- icann_policy
|
|
9618
|
+
- tld_specific
|
|
9619
|
+
- unknown
|
|
9620
|
+
title: MailTemplateCategory
|
|
9621
|
+
type: string
|
|
9568
9622
|
MailTemplateVariable:
|
|
9569
9623
|
properties:
|
|
9570
9624
|
required:
|
|
@@ -16196,7 +16250,7 @@ info:
|
|
|
16196
16250
|
\n\n"
|
|
16197
16251
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16198
16252
|
title: OpusDNS API
|
|
16199
|
-
version: 2026-09-
|
|
16253
|
+
version: 2026-09-08-081758
|
|
16200
16254
|
x-logo:
|
|
16201
16255
|
altText: OpusDNS API Reference
|
|
16202
16256
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5557,7 +5557,7 @@ export interface components {
|
|
|
5557
5557
|
* DomainAttributeKey
|
|
5558
5558
|
* @enum {string}
|
|
5559
5559
|
*/
|
|
5560
|
-
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact" | "nor_id_applicant_version" | "nor_id_applicant_accept_name" | "nor_id_applicant_accept_date" | "nor_id_declaration" | "nor_id_declaration_token" | "punktum_dk_terms_acceptance" | "punktum_dk_tracking_no" | "internet_ee_registrant_agreement" | "promotion" | "promotion_eligibility";
|
|
5560
|
+
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact" | "nor_id_applicant_version" | "nor_id_applicant_accept_name" | "nor_id_applicant_accept_date" | "nor_id_declaration" | "nor_id_declaration_token" | "punktum_dk_terms_acceptance" | "punktum_dk_tracking_no" | "internet_ee_registrant_agreement" | "promotion" | "promotion_eligibility" | "domain_contact_attributes";
|
|
5561
5561
|
/** DomainAvailability */
|
|
5562
5562
|
DomainAvailability: {
|
|
5563
5563
|
/** Domain */
|
|
@@ -5612,6 +5612,13 @@ export interface components {
|
|
|
5612
5612
|
};
|
|
5613
5613
|
/** DomainContactResponse */
|
|
5614
5614
|
DomainContactResponse: {
|
|
5615
|
+
/**
|
|
5616
|
+
* Attributes
|
|
5617
|
+
* @description Registry-specific attributes supplied inline for this contact in this role. Omitted when the contact was submitted without inline attributes; attributes taken from a linked contact attribute set are not reported here.
|
|
5618
|
+
*/
|
|
5619
|
+
attributes?: {
|
|
5620
|
+
[key: string]: string;
|
|
5621
|
+
} | null;
|
|
5615
5622
|
/**
|
|
5616
5623
|
* Contact Id
|
|
5617
5624
|
* Format: typeid
|
|
@@ -5650,7 +5657,8 @@ export interface components {
|
|
|
5650
5657
|
* Boolean keys also accept `1` and `yes`.
|
|
5651
5658
|
*
|
|
5652
5659
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
5653
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
5660
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5661
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5654
5662
|
*
|
|
5655
5663
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5656
5664
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -5752,7 +5760,8 @@ export interface components {
|
|
|
5752
5760
|
* Boolean keys also accept `1` and `yes`.
|
|
5753
5761
|
*
|
|
5754
5762
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
5755
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
5763
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5764
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5756
5765
|
*
|
|
5757
5766
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5758
5767
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -5826,7 +5835,8 @@ export interface components {
|
|
|
5826
5835
|
* Boolean keys also accept `1` and `yes`.
|
|
5827
5836
|
*
|
|
5828
5837
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
5829
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
5838
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5839
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5830
5840
|
*
|
|
5831
5841
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5832
5842
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -5904,7 +5914,8 @@ export interface components {
|
|
|
5904
5914
|
* Boolean keys also accept `1` and `yes`.
|
|
5905
5915
|
*
|
|
5906
5916
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
5907
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
5917
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5918
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5908
5919
|
*
|
|
5909
5920
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5910
5921
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -7149,7 +7160,8 @@ export interface components {
|
|
|
7149
7160
|
* Boolean keys also accept `1` and `yes`.
|
|
7150
7161
|
*
|
|
7151
7162
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7152
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
7163
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7164
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7153
7165
|
*
|
|
7154
7166
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7155
7167
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -7223,7 +7235,8 @@ export interface components {
|
|
|
7223
7235
|
* Boolean keys also accept `1` and `yes`.
|
|
7224
7236
|
*
|
|
7225
7237
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7226
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
7238
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7239
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7227
7240
|
*
|
|
7228
7241
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7229
7242
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -7297,7 +7310,8 @@ export interface components {
|
|
|
7297
7310
|
* Boolean keys also accept `1` and `yes`.
|
|
7298
7311
|
*
|
|
7299
7312
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7300
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
7313
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7314
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7301
7315
|
*
|
|
7302
7316
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7303
7317
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -7371,7 +7385,8 @@ export interface components {
|
|
|
7371
7385
|
* Boolean keys also accept `1` and `yes`.
|
|
7372
7386
|
*
|
|
7373
7387
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7374
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
7388
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7389
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7375
7390
|
*
|
|
7376
7391
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7377
7392
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -7477,7 +7492,8 @@ export interface components {
|
|
|
7477
7492
|
* Boolean keys also accept `1` and `yes`.
|
|
7478
7493
|
*
|
|
7479
7494
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7480
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
7495
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7496
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7481
7497
|
*
|
|
7482
7498
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7483
7499
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -7651,7 +7667,8 @@ export interface components {
|
|
|
7651
7667
|
* Boolean keys also accept `1` and `yes`.
|
|
7652
7668
|
*
|
|
7653
7669
|
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7654
|
-
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`. They are never
|
|
7670
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7671
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7655
7672
|
*
|
|
7656
7673
|
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7657
7674
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
@@ -9457,6 +9474,11 @@ export interface components {
|
|
|
9457
9474
|
blocks?: {
|
|
9458
9475
|
[key: string]: components["schemas"]["MailTemplateBlock"];
|
|
9459
9476
|
};
|
|
9477
|
+
/**
|
|
9478
|
+
* @description Template category for grouping in the editor
|
|
9479
|
+
* @default unknown
|
|
9480
|
+
*/
|
|
9481
|
+
category: components["schemas"]["MailTemplateCategory"];
|
|
9460
9482
|
/**
|
|
9461
9483
|
* Label
|
|
9462
9484
|
* @description Human-readable template name for display
|
|
@@ -9524,6 +9546,14 @@ export interface components {
|
|
|
9524
9546
|
MailTemplateCatalogRes: {
|
|
9525
9547
|
[key: string]: components["schemas"]["MailTemplate"];
|
|
9526
9548
|
};
|
|
9549
|
+
/**
|
|
9550
|
+
* MailTemplateCategory
|
|
9551
|
+
* @description Category a template is grouped under in the editor. mail-service owns the set
|
|
9552
|
+
* and validates it; a value it adds before this enum is updated decodes to UNKNOWN
|
|
9553
|
+
* rather than failing the catalog (see MailTemplate._coerce_category).
|
|
9554
|
+
* @enum {string}
|
|
9555
|
+
*/
|
|
9556
|
+
MailTemplateCategory: "organization" | "billing" | "user_account" | "icann_policy" | "tld_specific" | "unknown";
|
|
9527
9557
|
/** MailTemplateVariable */
|
|
9528
9558
|
MailTemplateVariable: {
|
|
9529
9559
|
/**
|