@opusdns/api 1.170.0 → 1.172.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 +2 -0
- package/src/helpers/keys.ts +4 -0
- package/src/openapi.yaml +93 -1
- package/src/schema.d.ts +85 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -232,6 +232,7 @@ export const BILLING_MODE_VALUES = [
|
|
|
232
232
|
export const BILLING_TRANSACTION_ACTION = {
|
|
233
233
|
CREATE: "create",
|
|
234
234
|
TRANSFER: "transfer",
|
|
235
|
+
IMPORT: "import",
|
|
235
236
|
RENEW: "renew",
|
|
236
237
|
RESTORE: "restore",
|
|
237
238
|
TRADE: "trade",
|
|
@@ -244,6 +245,7 @@ export const BILLING_TRANSACTION_ACTION = {
|
|
|
244
245
|
export const BILLING_TRANSACTION_ACTION_VALUES = [
|
|
245
246
|
'create',
|
|
246
247
|
'transfer',
|
|
248
|
+
'import',
|
|
247
249
|
'renew',
|
|
248
250
|
'restore',
|
|
249
251
|
'trade',
|
package/src/helpers/keys.ts
CHANGED
|
@@ -2974,6 +2974,7 @@ export const KEYS_DOMAIN_UPDATE_BULK_COMMAND = [
|
|
|
2974
2974
|
KEY_DOMAIN_UPDATE_BULK_COMMAND_VERSION,
|
|
2975
2975
|
] as const satisfies (keyof DomainUpdateBulkCommand)[];
|
|
2976
2976
|
|
|
2977
|
+
export const KEY_DOMAIN_UPDATE_BULK_INSTANCE_ATTRIBUTES = 'attributes' satisfies keyof DomainUpdateBulkInstance;
|
|
2977
2978
|
export const KEY_DOMAIN_UPDATE_BULK_INSTANCE_AUTH_CODE = 'auth_code' satisfies keyof DomainUpdateBulkInstance;
|
|
2978
2979
|
export const KEY_DOMAIN_UPDATE_BULK_INSTANCE_CONTACTS = 'contacts' satisfies keyof DomainUpdateBulkInstance;
|
|
2979
2980
|
export const KEY_DOMAIN_UPDATE_BULK_INSTANCE_DOMAIN_ID = 'domain_id' satisfies keyof DomainUpdateBulkInstance;
|
|
@@ -2984,6 +2985,7 @@ export const KEY_DOMAIN_UPDATE_BULK_INSTANCE_STATUS_CHANGES = 'status_changes' s
|
|
|
2984
2985
|
export const KEY_DOMAIN_UPDATE_BULK_INSTANCE_STATUSES = 'statuses' satisfies keyof DomainUpdateBulkInstance;
|
|
2985
2986
|
|
|
2986
2987
|
export const KEYS_DOMAIN_UPDATE_BULK_INSTANCE = [
|
|
2988
|
+
KEY_DOMAIN_UPDATE_BULK_INSTANCE_ATTRIBUTES,
|
|
2987
2989
|
KEY_DOMAIN_UPDATE_BULK_INSTANCE_AUTH_CODE,
|
|
2988
2990
|
KEY_DOMAIN_UPDATE_BULK_INSTANCE_CONTACTS,
|
|
2989
2991
|
KEY_DOMAIN_UPDATE_BULK_INSTANCE_DOMAIN_ID,
|
|
@@ -3002,6 +3004,7 @@ export const KEYS_DOMAIN_UPDATE_BULK_PAYLOAD = [
|
|
|
3002
3004
|
KEY_DOMAIN_UPDATE_BULK_PAYLOAD_TEMPLATE,
|
|
3003
3005
|
] as const satisfies (keyof DomainUpdateBulkPayload)[];
|
|
3004
3006
|
|
|
3007
|
+
export const KEY_DOMAIN_UPDATE_BULK_TEMPLATE_ATTRIBUTES = 'attributes' satisfies keyof DomainUpdateBulkTemplate;
|
|
3005
3008
|
export const KEY_DOMAIN_UPDATE_BULK_TEMPLATE_CONTACTS = 'contacts' satisfies keyof DomainUpdateBulkTemplate;
|
|
3006
3009
|
export const KEY_DOMAIN_UPDATE_BULK_TEMPLATE_NAMESERVERS = 'nameservers' satisfies keyof DomainUpdateBulkTemplate;
|
|
3007
3010
|
export const KEY_DOMAIN_UPDATE_BULK_TEMPLATE_RENEWAL_MODE = 'renewal_mode' satisfies keyof DomainUpdateBulkTemplate;
|
|
@@ -3009,6 +3012,7 @@ export const KEY_DOMAIN_UPDATE_BULK_TEMPLATE_STATUS_CHANGES = 'status_changes' s
|
|
|
3009
3012
|
export const KEY_DOMAIN_UPDATE_BULK_TEMPLATE_STATUSES = 'statuses' satisfies keyof DomainUpdateBulkTemplate;
|
|
3010
3013
|
|
|
3011
3014
|
export const KEYS_DOMAIN_UPDATE_BULK_TEMPLATE = [
|
|
3015
|
+
KEY_DOMAIN_UPDATE_BULK_TEMPLATE_ATTRIBUTES,
|
|
3012
3016
|
KEY_DOMAIN_UPDATE_BULK_TEMPLATE_CONTACTS,
|
|
3013
3017
|
KEY_DOMAIN_UPDATE_BULK_TEMPLATE_NAMESERVERS,
|
|
3014
3018
|
KEY_DOMAIN_UPDATE_BULK_TEMPLATE_RENEWAL_MODE,
|
package/src/openapi.yaml
CHANGED
|
@@ -403,6 +403,7 @@ components:
|
|
|
403
403
|
enum:
|
|
404
404
|
- create
|
|
405
405
|
- transfer
|
|
406
|
+
- import
|
|
406
407
|
- renew
|
|
407
408
|
- restore
|
|
408
409
|
- trade
|
|
@@ -6893,6 +6894,52 @@ components:
|
|
|
6893
6894
|
type: object
|
|
6894
6895
|
DomainUpdateBulkInstance:
|
|
6895
6896
|
properties:
|
|
6897
|
+
attributes:
|
|
6898
|
+
anyOf:
|
|
6899
|
+
- additionalProperties:
|
|
6900
|
+
type: string
|
|
6901
|
+
propertyNames:
|
|
6902
|
+
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6903
|
+
type: object
|
|
6904
|
+
- type: 'null'
|
|
6905
|
+
description: "Override attributes for this domain.\n\nAdditional attributes\
|
|
6906
|
+
\ of the domain, keyed by attribute name. Values are strings.\n\nCustomer-settable\
|
|
6907
|
+
\ keys:\n\n- `auto_renew_period`: `monthly` or `yearly`. All TLDs on create,\
|
|
6908
|
+
\ transfer-in and update. Selects the\n period of the next renewal; the\
|
|
6909
|
+
\ current expiry date does not move. On transfer-in without `period` it\
|
|
6910
|
+
\ also sets the\n period added by the transfer. Omitted on create or\
|
|
6911
|
+
\ transfer-in, it follows the term being bought: a one-month\n `period`\
|
|
6912
|
+
\ renews monthly and anything else yearly, except a longer month-unit\
|
|
6913
|
+
\ term, which leaves it unset so that the\n product's default billing\
|
|
6914
|
+
\ period decides. Supplying `monthly` where the TLD sells no one-month\
|
|
6915
|
+
\ renewal is rejected on\n create, transfer-in and update; a `monthly`\
|
|
6916
|
+
\ stored before that rule applied is ignored at renewal.\n- `music_registrant_attestation`:\
|
|
6917
|
+
\ `true`. `.music` registration.\n- `nic_it_compliance_confirmation`:\
|
|
6918
|
+
\ `true`. `.it` registration and transfer.\n- `travel_industry_acknowledgement`:\
|
|
6919
|
+
\ `true`. `.travel` registration.\n- `internet_ee_registrant_agreement`:\
|
|
6920
|
+
\ `true`. `.ee` registration.\n- `punktum_dk_terms_acceptance`: `true`.\
|
|
6921
|
+
\ `.dk` registration and registrant change.\n- `de_general_request_contact`,\
|
|
6922
|
+
\ `de_abuse_contact`: id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`\
|
|
6923
|
+
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
6924
|
+
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
6925
|
+
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6926
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6927
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
6928
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6929
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6930
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6931
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
6932
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
6933
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
6934
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
6935
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6936
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
6937
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
6938
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
6939
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
6940
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
6941
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6942
|
+
title: Attributes
|
|
6896
6943
|
auth_code:
|
|
6897
6944
|
anyOf:
|
|
6898
6945
|
- maxLength: 255
|
|
@@ -6966,6 +7013,51 @@ components:
|
|
|
6966
7013
|
type: object
|
|
6967
7014
|
DomainUpdateBulkTemplate:
|
|
6968
7015
|
properties:
|
|
7016
|
+
attributes:
|
|
7017
|
+
anyOf:
|
|
7018
|
+
- additionalProperties:
|
|
7019
|
+
type: string
|
|
7020
|
+
propertyNames:
|
|
7021
|
+
$ref: '#/components/schemas/DomainAttributeKey'
|
|
7022
|
+
type: object
|
|
7023
|
+
- type: 'null'
|
|
7024
|
+
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
7025
|
+
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
7026
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
7027
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
7028
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
7029
|
+
\ by the transfer. Omitted on create or transfer-in, it follows the term\
|
|
7030
|
+
\ being bought: a one-month\n `period` renews monthly and anything else\
|
|
7031
|
+
\ yearly, except a longer month-unit term, which leaves it unset so that\
|
|
7032
|
+
\ the\n product's default billing period decides. Supplying `monthly`\
|
|
7033
|
+
\ where the TLD sells no one-month renewal is rejected on\n create, transfer-in\
|
|
7034
|
+
\ and update; a `monthly` stored before that rule applied is ignored at\
|
|
7035
|
+
\ renewal.\n- `music_registrant_attestation`: `true`. `.music` registration.\n\
|
|
7036
|
+
- `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.\n\
|
|
7037
|
+
- `travel_industry_acknowledgement`: `true`. `.travel` registration.\n\
|
|
7038
|
+
- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n- `punktum_dk_terms_acceptance`:\
|
|
7039
|
+
\ `true`. `.dk` registration and registrant change.\n- `de_general_request_contact`,\
|
|
7040
|
+
\ `de_abuse_contact`: id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`\
|
|
7041
|
+
\ =\n `REQUEST`. `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\
|
|
7042
|
+
\nWritten by the platform and rejected if supplied: `verification_required`,\
|
|
7043
|
+
\ `promotion`, `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
7044
|
+
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
7045
|
+
returned under `attributes`; inline contact attributes surface on the\
|
|
7046
|
+
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
7047
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
7048
|
+
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
7049
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
7050
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
7051
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
7052
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
7053
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
7054
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
7055
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
7056
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
7057
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
7058
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
7059
|
+
\ change but cannot be removed with an empty value.\n"
|
|
7060
|
+
title: Attributes
|
|
6969
7061
|
contacts:
|
|
6970
7062
|
anyOf:
|
|
6971
7063
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -16641,7 +16733,7 @@ info:
|
|
|
16641
16733
|
\n\n"
|
|
16642
16734
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16643
16735
|
title: OpusDNS API
|
|
16644
|
-
version: 2026-09-
|
|
16736
|
+
version: 2026-09-12-211011
|
|
16645
16737
|
x-logo:
|
|
16646
16738
|
altText: OpusDNS API Reference
|
|
16647
16739
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3422,7 +3422,7 @@ export interface components {
|
|
|
3422
3422
|
* BillingTransactionAction
|
|
3423
3423
|
* @enum {string}
|
|
3424
3424
|
*/
|
|
3425
|
-
BillingTransactionAction: "create" | "transfer" | "renew" | "restore" | "trade" | "application" | "service_fee" | "upgrade_fee" | "wallet_top_up";
|
|
3425
|
+
BillingTransactionAction: "create" | "transfer" | "import" | "renew" | "restore" | "trade" | "application" | "service_fee" | "upgrade_fee" | "wallet_top_up";
|
|
3426
3426
|
/**
|
|
3427
3427
|
* BillingTransactionProductType
|
|
3428
3428
|
* @enum {string}
|
|
@@ -7729,6 +7729,49 @@ export interface components {
|
|
|
7729
7729
|
};
|
|
7730
7730
|
/** DomainUpdateBulkInstance */
|
|
7731
7731
|
DomainUpdateBulkInstance: {
|
|
7732
|
+
/**
|
|
7733
|
+
* Attributes
|
|
7734
|
+
* @description Override attributes for this domain.
|
|
7735
|
+
*
|
|
7736
|
+
* Additional attributes of the domain, keyed by attribute name. Values are strings.
|
|
7737
|
+
*
|
|
7738
|
+
* Customer-settable keys:
|
|
7739
|
+
*
|
|
7740
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7741
|
+
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7742
|
+
* period added by the transfer. Omitted on create or transfer-in, it follows the term being bought: a one-month
|
|
7743
|
+
* `period` renews monthly and anything else yearly, except a longer month-unit term, which leaves it unset so that the
|
|
7744
|
+
* product's default billing period decides. Supplying `monthly` where the TLD sells no one-month renewal is rejected on
|
|
7745
|
+
* create, transfer-in and update; a `monthly` stored before that rule applied is ignored at renewal.
|
|
7746
|
+
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7747
|
+
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7748
|
+
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
7749
|
+
* - `internet_ee_registrant_agreement`: `true`. `.ee` registration.
|
|
7750
|
+
* - `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant change.
|
|
7751
|
+
* - `de_general_request_contact`, `de_abuse_contact`: id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` =
|
|
7752
|
+
* `REQUEST`. `.de` only.
|
|
7753
|
+
*
|
|
7754
|
+
* Boolean keys also accept `1` and `yes`.
|
|
7755
|
+
*
|
|
7756
|
+
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7757
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7758
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7759
|
+
*
|
|
7760
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7761
|
+
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7762
|
+
*
|
|
7763
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7764
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7765
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7766
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7767
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7768
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7769
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7770
|
+
*
|
|
7771
|
+
*/
|
|
7772
|
+
attributes?: {
|
|
7773
|
+
[key: string]: string;
|
|
7774
|
+
} | null;
|
|
7732
7775
|
/**
|
|
7733
7776
|
* Auth Code
|
|
7734
7777
|
* @description Override auth code for this domain
|
|
@@ -7773,6 +7816,47 @@ export interface components {
|
|
|
7773
7816
|
};
|
|
7774
7817
|
/** DomainUpdateBulkTemplate */
|
|
7775
7818
|
DomainUpdateBulkTemplate: {
|
|
7819
|
+
/**
|
|
7820
|
+
* Attributes
|
|
7821
|
+
* @description Additional attributes of the domain, keyed by attribute name. Values are strings.
|
|
7822
|
+
*
|
|
7823
|
+
* Customer-settable keys:
|
|
7824
|
+
*
|
|
7825
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7826
|
+
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7827
|
+
* period added by the transfer. Omitted on create or transfer-in, it follows the term being bought: a one-month
|
|
7828
|
+
* `period` renews monthly and anything else yearly, except a longer month-unit term, which leaves it unset so that the
|
|
7829
|
+
* product's default billing period decides. Supplying `monthly` where the TLD sells no one-month renewal is rejected on
|
|
7830
|
+
* create, transfer-in and update; a `monthly` stored before that rule applied is ignored at renewal.
|
|
7831
|
+
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7832
|
+
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7833
|
+
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
7834
|
+
* - `internet_ee_registrant_agreement`: `true`. `.ee` registration.
|
|
7835
|
+
* - `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant change.
|
|
7836
|
+
* - `de_general_request_contact`, `de_abuse_contact`: id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` =
|
|
7837
|
+
* `REQUEST`. `.de` only.
|
|
7838
|
+
*
|
|
7839
|
+
* Boolean keys also accept `1` and `yes`.
|
|
7840
|
+
*
|
|
7841
|
+
* Written by the platform and rejected if supplied: `verification_required`, `promotion`, `promotion_eligibility`,
|
|
7842
|
+
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7843
|
+
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7844
|
+
*
|
|
7845
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7846
|
+
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7847
|
+
*
|
|
7848
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7849
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7850
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7851
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7852
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7853
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7854
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7855
|
+
*
|
|
7856
|
+
*/
|
|
7857
|
+
attributes?: {
|
|
7858
|
+
[key: string]: string;
|
|
7859
|
+
} | null;
|
|
7776
7860
|
/** @description The new contacts of the domain */
|
|
7777
7861
|
contacts?: components["schemas"]["DomainContactHandles"] | null;
|
|
7778
7862
|
/**
|