@opusdns/api 0.283.0 → 0.284.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/keys.ts +9 -7
- package/src/helpers/requests.d.ts +19 -3
- package/src/helpers/responses.d.ts +24 -4
- package/src/openapi.yaml +63 -13
- package/src/schema.d.ts +36 -11
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -34681,7 +34681,7 @@ export const KEYS_PREMIUM_PRICE_ENTRY_RES = [
|
|
|
34681
34681
|
/**
|
|
34682
34682
|
* Action
|
|
34683
34683
|
*
|
|
34684
|
-
* The action (e.g., create, renew, transfer)
|
|
34684
|
+
* The action this price applies to (e.g., create, renew, transfer)
|
|
34685
34685
|
*
|
|
34686
34686
|
* @type {string}
|
|
34687
34687
|
*
|
|
@@ -34707,7 +34707,7 @@ export const KEY_PREMIUM_PRICING_ACTION_ACTION: keyof PremiumPricingAction = 'ac
|
|
|
34707
34707
|
/**
|
|
34708
34708
|
* Currency
|
|
34709
34709
|
*
|
|
34710
|
-
*
|
|
34710
|
+
* ISO 4217 currency code
|
|
34711
34711
|
*
|
|
34712
34712
|
* @type {string}
|
|
34713
34713
|
*
|
|
@@ -34733,7 +34733,7 @@ export const KEY_PREMIUM_PRICING_ACTION_CURRENCY: keyof PremiumPricingAction = '
|
|
|
34733
34733
|
/**
|
|
34734
34734
|
* Price
|
|
34735
34735
|
*
|
|
34736
|
-
*
|
|
34736
|
+
* Price for the action
|
|
34737
34737
|
*
|
|
34738
34738
|
* @type {string}
|
|
34739
34739
|
*
|
|
@@ -41799,6 +41799,7 @@ export const KEYS_DOMAIN_AVAILABILITY_LIST = [
|
|
|
41799
41799
|
/**
|
|
41800
41800
|
* Available
|
|
41801
41801
|
*
|
|
41802
|
+
* True if the domain is available for registration
|
|
41802
41803
|
*
|
|
41803
41804
|
* @type {boolean}
|
|
41804
41805
|
*
|
|
@@ -41824,7 +41825,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_AVAILABLE: keyof DomainAvailabilityCh
|
|
|
41824
41825
|
/**
|
|
41825
41826
|
* Claims Key
|
|
41826
41827
|
*
|
|
41827
|
-
*
|
|
41828
|
+
* Trademark claims key returned when the TLD is in its claims phase and the domain matches a TMCH-registered mark. When present, the corresponding claims notice must be retrieved and acknowledged before registration.
|
|
41828
41829
|
*
|
|
41829
41830
|
*
|
|
41830
41831
|
*
|
|
@@ -41849,7 +41850,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_CLAIMS_KEY: keyof DomainAvailabilityC
|
|
|
41849
41850
|
/**
|
|
41850
41851
|
* Domain
|
|
41851
41852
|
*
|
|
41852
|
-
* The domain name
|
|
41853
|
+
* The domain name that was checked
|
|
41853
41854
|
*
|
|
41854
41855
|
* @type {string}
|
|
41855
41856
|
*
|
|
@@ -41875,7 +41876,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_DOMAIN: keyof DomainAvailabilityCheck
|
|
|
41875
41876
|
/**
|
|
41876
41877
|
* Is Premium
|
|
41877
41878
|
*
|
|
41878
|
-
*
|
|
41879
|
+
* True if the registry classifies this domain as premium (non-standard pricing)
|
|
41879
41880
|
*
|
|
41880
41881
|
* @type {boolean}
|
|
41881
41882
|
*
|
|
@@ -41901,7 +41902,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_IS_PREMIUM: keyof DomainAvailabilityC
|
|
|
41901
41902
|
/**
|
|
41902
41903
|
* premium_pricing property
|
|
41903
41904
|
*
|
|
41904
|
-
* Premium pricing
|
|
41905
|
+
* Premium pricing per action (create / renew / transfer / restore). Present only when `is_premium` is true and the registry returned pricing.
|
|
41905
41906
|
*
|
|
41906
41907
|
*
|
|
41907
41908
|
*
|
|
@@ -41926,6 +41927,7 @@ export const KEY_DOMAIN_AVAILABILITY_CHECK_PREMIUM_PRICING: keyof DomainAvailabi
|
|
|
41926
41927
|
/**
|
|
41927
41928
|
* Reason
|
|
41928
41929
|
*
|
|
41930
|
+
* Registry-supplied reason the domain is unavailable (e.g. 'Domain exists', 'Reserved', 'In Use'). May be null when the domain is available, or when the registry did not provide a reason.
|
|
41929
41931
|
*
|
|
41930
41932
|
*
|
|
41931
41933
|
*
|
|
@@ -3407,7 +3407,15 @@ export type POST_Domains_Request_Body = POST_Domains_Request['requestBody'];
|
|
|
3407
3407
|
/**
|
|
3408
3408
|
* Request type for GET DomainsCheck endpoint
|
|
3409
3409
|
*
|
|
3410
|
-
* Check domain availability
|
|
3410
|
+
* Check domain availability and registration metadata
|
|
3411
|
+
* Performs a real-time check against the authoritative registry for each domain and returns availability plus any registry-specific metadata needed to register it.
|
|
3412
|
+
|
|
3413
|
+
For each domain the response includes:
|
|
3414
|
+
- **Availability** — whether the domain can be registered, and the registry's reason if not.
|
|
3415
|
+
- **Trademark claims (TMCH)** — when the TLD is in its claims phase and the domain matches a trademark in the Trademark Clearinghouse, a `claims_key` is returned. The corresponding claims notice must be retrieved and acknowledged before the domain can be registered. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
3416
|
+
- **Premium status and pricing** — whether the domain is classified as premium by the registry, and if so, the price per action (create / renew / transfer / restore). See the [Premium domains](/products/domains/premium) guide for background on how premium domains are priced and registered.
|
|
3417
|
+
|
|
3418
|
+
Domains are queried in parallel, grouped by registry connection. Availability and metadata reflect the registry's state at the moment of the call and are not cached.
|
|
3411
3419
|
*
|
|
3412
3420
|
* @remarks
|
|
3413
3421
|
* This type defines the complete request structure for the GET DomainsCheck endpoint.
|
|
@@ -3419,7 +3427,11 @@ export type POST_Domains_Request_Body = POST_Domains_Request['requestBody'];
|
|
|
3419
3427
|
*
|
|
3420
3428
|
* @path /v1/domains/check
|
|
3421
3429
|
* @param domains (query) -
|
|
3422
|
-
|
|
3430
|
+
One or more fully-qualified domain names to check at the registry.
|
|
3431
|
+
|
|
3432
|
+
Each domain is checked for availability and, when applicable, enriched with
|
|
3433
|
+
trademark claims information and premium pricing. The list of domains may
|
|
3434
|
+
include a mix of TLDs.
|
|
3423
3435
|
|
|
3424
3436
|
*
|
|
3425
3437
|
* @see {@link GET_DomainsCheck_Request_Query} - Query parameters type
|
|
@@ -3443,7 +3455,11 @@ export type GET_DomainsCheck_Request = {
|
|
|
3443
3455
|
*
|
|
3444
3456
|
* @path /v1/domains/check
|
|
3445
3457
|
* @param domains (query) -
|
|
3446
|
-
|
|
3458
|
+
One or more fully-qualified domain names to check at the registry.
|
|
3459
|
+
|
|
3460
|
+
Each domain is checked for availability and, when applicable, enriched with
|
|
3461
|
+
trademark claims information and premium pricing. The list of domains may
|
|
3462
|
+
include a mix of TLDs.
|
|
3447
3463
|
|
|
3448
3464
|
*/
|
|
3449
3465
|
export type GET_DomainsCheck_Request_Query = GET_DomainsCheck_Request['parameters']['query'];
|
|
@@ -7597,7 +7597,15 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_422 = HTTPValidatio
|
|
|
7597
7597
|
/**
|
|
7598
7598
|
* Response types for GET DomainsCheck endpoint
|
|
7599
7599
|
*
|
|
7600
|
-
* Check domain availability
|
|
7600
|
+
* Check domain availability and registration metadata
|
|
7601
|
+
* Performs a real-time check against the authoritative registry for each domain and returns availability plus any registry-specific metadata needed to register it.
|
|
7602
|
+
|
|
7603
|
+
For each domain the response includes:
|
|
7604
|
+
- **Availability** — whether the domain can be registered, and the registry's reason if not.
|
|
7605
|
+
- **Trademark claims (TMCH)** — when the TLD is in its claims phase and the domain matches a trademark in the Trademark Clearinghouse, a `claims_key` is returned. The corresponding claims notice must be retrieved and acknowledged before the domain can be registered. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
7606
|
+
- **Premium status and pricing** — whether the domain is classified as premium by the registry, and if so, the price per action (create / renew / transfer / restore). See the [Premium domains](/products/domains/premium) guide for background on how premium domains are priced and registered.
|
|
7607
|
+
|
|
7608
|
+
Domains are queried in parallel, grouped by registry connection. Availability and metadata reflect the registry's state at the moment of the call and are not cached.
|
|
7601
7609
|
*
|
|
7602
7610
|
* @remarks
|
|
7603
7611
|
* This type defines all possible response structures for the GET DomainsCheck endpoint.
|
|
@@ -7608,7 +7616,11 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_422 = HTTPValidatio
|
|
|
7608
7616
|
*
|
|
7609
7617
|
* @path /v1/domains/check
|
|
7610
7618
|
* @param domains (query) -
|
|
7611
|
-
|
|
7619
|
+
One or more fully-qualified domain names to check at the registry.
|
|
7620
|
+
|
|
7621
|
+
Each domain is checked for availability and, when applicable, enriched with
|
|
7622
|
+
trademark claims information and premium pricing. The list of domains may
|
|
7623
|
+
include a mix of TLDs.
|
|
7612
7624
|
|
|
7613
7625
|
*
|
|
7614
7626
|
* @see {@link GET_DomainsCheck_Response_200} - 200 response type
|
|
@@ -7630,7 +7642,11 @@ export type GET_DomainsCheck_Response = GET_DomainsCheck_Response_200 | GET_Doma
|
|
|
7630
7642
|
*
|
|
7631
7643
|
* @path /v1/domains/check
|
|
7632
7644
|
* @param domains (query) -
|
|
7633
|
-
|
|
7645
|
+
One or more fully-qualified domain names to check at the registry.
|
|
7646
|
+
|
|
7647
|
+
Each domain is checked for availability and, when applicable, enriched with
|
|
7648
|
+
trademark claims information and premium pricing. The list of domains may
|
|
7649
|
+
include a mix of TLDs.
|
|
7634
7650
|
|
|
7635
7651
|
*
|
|
7636
7652
|
* @see {@link GET_DomainsCheck_Response} - The main response type definition
|
|
@@ -7650,7 +7666,11 @@ export type GET_DomainsCheck_Response_200 = DomainCheck
|
|
|
7650
7666
|
*
|
|
7651
7667
|
* @path /v1/domains/check
|
|
7652
7668
|
* @param domains (query) -
|
|
7653
|
-
|
|
7669
|
+
One or more fully-qualified domain names to check at the registry.
|
|
7670
|
+
|
|
7671
|
+
Each domain is checked for availability and, when applicable, enriched with
|
|
7672
|
+
trademark claims information and premium pricing. The list of domains may
|
|
7673
|
+
include a mix of TLDs.
|
|
7654
7674
|
|
|
7655
7675
|
*
|
|
7656
7676
|
* @see {@link GET_DomainsCheck_Response} - The main response type definition
|
package/src/openapi.yaml
CHANGED
|
@@ -8704,15 +8704,21 @@ components:
|
|
|
8704
8704
|
PremiumPricingAction:
|
|
8705
8705
|
properties:
|
|
8706
8706
|
action:
|
|
8707
|
-
description: The action (e.g., create, renew, transfer)
|
|
8707
|
+
description: The action this price applies to (e.g., create, renew, transfer)
|
|
8708
|
+
examples:
|
|
8709
|
+
- create
|
|
8708
8710
|
title: Action
|
|
8709
8711
|
type: string
|
|
8710
8712
|
currency:
|
|
8711
|
-
description:
|
|
8713
|
+
description: ISO 4217 currency code
|
|
8714
|
+
examples:
|
|
8715
|
+
- EUR
|
|
8712
8716
|
title: Currency
|
|
8713
8717
|
type: string
|
|
8714
8718
|
price:
|
|
8715
|
-
description:
|
|
8719
|
+
description: Price for the action
|
|
8720
|
+
examples:
|
|
8721
|
+
- '625.00'
|
|
8716
8722
|
pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
|
|
8717
8723
|
title: Price
|
|
8718
8724
|
type: string
|
|
@@ -10566,35 +10572,47 @@ components:
|
|
|
10566
10572
|
common__models__domain__domain__DomainAvailabilityResponse:
|
|
10567
10573
|
properties:
|
|
10568
10574
|
available:
|
|
10575
|
+
description: True if the domain is available for registration
|
|
10569
10576
|
title: Available
|
|
10570
10577
|
type: boolean
|
|
10571
10578
|
claims_key:
|
|
10572
10579
|
anyOf:
|
|
10573
10580
|
- type: string
|
|
10574
10581
|
- type: 'null'
|
|
10575
|
-
description:
|
|
10582
|
+
description: Trademark claims key returned when the TLD is in its claims
|
|
10583
|
+
phase and the domain matches a TMCH-registered mark. When present, the
|
|
10584
|
+
corresponding claims notice must be retrieved and acknowledged before
|
|
10585
|
+
registration.
|
|
10586
|
+
examples:
|
|
10587
|
+
- 2013041500/2/6/9/rJ1NrDO92vDsAzf7EQzgjX4R0000000001
|
|
10576
10588
|
title: Claims Key
|
|
10577
10589
|
domain:
|
|
10578
|
-
description: The domain name
|
|
10590
|
+
description: The domain name that was checked
|
|
10579
10591
|
examples:
|
|
10580
10592
|
- example.com
|
|
10581
10593
|
title: Domain
|
|
10582
10594
|
type: string
|
|
10583
10595
|
is_premium:
|
|
10584
10596
|
default: false
|
|
10585
|
-
description:
|
|
10597
|
+
description: True if the registry classifies this domain as premium (non-standard
|
|
10598
|
+
pricing)
|
|
10586
10599
|
title: Is Premium
|
|
10587
10600
|
type: boolean
|
|
10588
10601
|
premium_pricing:
|
|
10589
10602
|
anyOf:
|
|
10590
10603
|
- $ref: '#/components/schemas/PremiumPricingResponse'
|
|
10591
10604
|
- type: 'null'
|
|
10592
|
-
description: Premium pricing
|
|
10593
|
-
|
|
10605
|
+
description: Premium pricing per action (create / renew / transfer / restore).
|
|
10606
|
+
Present only when `is_premium` is true and the registry returned pricing.
|
|
10594
10607
|
reason:
|
|
10595
10608
|
anyOf:
|
|
10596
10609
|
- type: string
|
|
10597
10610
|
- type: 'null'
|
|
10611
|
+
description: Registry-supplied reason the domain is unavailable (e.g. 'Domain
|
|
10612
|
+
exists', 'Reserved', 'In Use'). May be null when the domain is available,
|
|
10613
|
+
or when the registry did not provide a reason.
|
|
10614
|
+
examples:
|
|
10615
|
+
- Domain exists
|
|
10598
10616
|
title: Reason
|
|
10599
10617
|
required:
|
|
10600
10618
|
- domain
|
|
@@ -10672,7 +10690,7 @@ info:
|
|
|
10672
10690
|
\n\n"
|
|
10673
10691
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10674
10692
|
title: OpusDNS API
|
|
10675
|
-
version: 2026-05-05-
|
|
10693
|
+
version: 2026-05-05-201917
|
|
10676
10694
|
x-logo:
|
|
10677
10695
|
altText: OpusDNS API Reference
|
|
10678
10696
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -17919,16 +17937,39 @@ paths:
|
|
|
17919
17937
|
- domain
|
|
17920
17938
|
/v1/domains/check:
|
|
17921
17939
|
get:
|
|
17940
|
+
description: "Performs a real-time check against the authoritative registry\
|
|
17941
|
+
\ for each domain and returns availability plus any registry-specific metadata\
|
|
17942
|
+
\ needed to register it.\n\nFor each domain the response includes:\n- **Availability**\
|
|
17943
|
+
\ \u2014 whether the domain can be registered, and the registry's reason if\
|
|
17944
|
+
\ not.\n- **Trademark claims (TMCH)** \u2014 when the TLD is in its claims\
|
|
17945
|
+
\ phase and the domain matches a trademark in the Trademark Clearinghouse,\
|
|
17946
|
+
\ a `claims_key` is returned. The corresponding claims notice must be retrieved\
|
|
17947
|
+
\ and acknowledged before the domain can be registered. See the [Trademarked\
|
|
17948
|
+
\ domains](/products/domains/trademarked-domains) guide for the full workflow.\n\
|
|
17949
|
+
- **Premium status and pricing** \u2014 whether the domain is classified as\
|
|
17950
|
+
\ premium by the registry, and if so, the price per action (create / renew\
|
|
17951
|
+
\ / transfer / restore). See the [Premium domains](/products/domains/premium)\
|
|
17952
|
+
\ guide for background on how premium domains are priced and registered.\n\
|
|
17953
|
+
\nDomains are queried in parallel, grouped by registry connection. Availability\
|
|
17954
|
+
\ and metadata reflect the registry's state at the moment of the call and\
|
|
17955
|
+
\ are not cached."
|
|
17922
17956
|
operationId: epp_check_domain_v1_domains_check_get
|
|
17923
17957
|
parameters:
|
|
17924
17958
|
- description: '
|
|
17925
17959
|
|
|
17926
|
-
|
|
17960
|
+
One or more fully-qualified domain names to check at the registry.
|
|
17961
|
+
|
|
17962
|
+
|
|
17963
|
+
Each domain is checked for availability and, when applicable, enriched with
|
|
17964
|
+
|
|
17965
|
+
trademark claims information and premium pricing. The list of domains may
|
|
17966
|
+
|
|
17967
|
+
include a mix of TLDs.
|
|
17927
17968
|
|
|
17928
17969
|
'
|
|
17929
17970
|
examples:
|
|
17930
17971
|
list:
|
|
17931
|
-
summary: A list of
|
|
17972
|
+
summary: A list of domain names to check
|
|
17932
17973
|
value:
|
|
17933
17974
|
- example.com
|
|
17934
17975
|
- example.org
|
|
@@ -17938,7 +17979,16 @@ paths:
|
|
|
17938
17979
|
schema:
|
|
17939
17980
|
description: '
|
|
17940
17981
|
|
|
17941
|
-
|
|
17982
|
+
One or more fully-qualified domain names to check at the registry.
|
|
17983
|
+
|
|
17984
|
+
|
|
17985
|
+
Each domain is checked for availability and, when applicable, enriched
|
|
17986
|
+
with
|
|
17987
|
+
|
|
17988
|
+
trademark claims information and premium pricing. The list of domains
|
|
17989
|
+
may
|
|
17990
|
+
|
|
17991
|
+
include a mix of TLDs.
|
|
17942
17992
|
|
|
17943
17993
|
'
|
|
17944
17994
|
items:
|
|
@@ -17961,7 +18011,7 @@ paths:
|
|
|
17961
18011
|
security:
|
|
17962
18012
|
- OAuth2PasswordBearer: []
|
|
17963
18013
|
- APIKeyHeader: []
|
|
17964
|
-
summary: Check domain availability
|
|
18014
|
+
summary: Check domain availability and registration metadata
|
|
17965
18015
|
tags:
|
|
17966
18016
|
- domain
|
|
17967
18017
|
/v1/domains/summary:
|
package/src/schema.d.ts
CHANGED
|
@@ -1028,7 +1028,17 @@ export interface paths {
|
|
|
1028
1028
|
path?: never;
|
|
1029
1029
|
cookie?: never;
|
|
1030
1030
|
};
|
|
1031
|
-
/**
|
|
1031
|
+
/**
|
|
1032
|
+
* Check domain availability and registration metadata
|
|
1033
|
+
* @description Performs a real-time check against the authoritative registry for each domain and returns availability plus any registry-specific metadata needed to register it.
|
|
1034
|
+
*
|
|
1035
|
+
* For each domain the response includes:
|
|
1036
|
+
* - **Availability** — whether the domain can be registered, and the registry's reason if not.
|
|
1037
|
+
* - **Trademark claims (TMCH)** — when the TLD is in its claims phase and the domain matches a trademark in the Trademark Clearinghouse, a `claims_key` is returned. The corresponding claims notice must be retrieved and acknowledged before the domain can be registered. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
1038
|
+
* - **Premium status and pricing** — whether the domain is classified as premium by the registry, and if so, the price per action (create / renew / transfer / restore). See the [Premium domains](/products/domains/premium) guide for background on how premium domains are priced and registered.
|
|
1039
|
+
*
|
|
1040
|
+
* Domains are queried in parallel, grouped by registry connection. Availability and metadata reflect the registry's state at the moment of the call and are not cached.
|
|
1041
|
+
*/
|
|
1032
1042
|
get: operations["epp_check_domain_v1_domains_check_get"];
|
|
1033
1043
|
put?: never;
|
|
1034
1044
|
post?: never;
|
|
@@ -8209,17 +8219,20 @@ export interface components {
|
|
|
8209
8219
|
PremiumPricingAction: {
|
|
8210
8220
|
/**
|
|
8211
8221
|
* Action
|
|
8212
|
-
* @description The action (e.g., create, renew, transfer)
|
|
8222
|
+
* @description The action this price applies to (e.g., create, renew, transfer)
|
|
8223
|
+
* @example create
|
|
8213
8224
|
*/
|
|
8214
8225
|
action: string;
|
|
8215
8226
|
/**
|
|
8216
8227
|
* Currency
|
|
8217
|
-
* @description
|
|
8228
|
+
* @description ISO 4217 currency code
|
|
8229
|
+
* @example EUR
|
|
8218
8230
|
*/
|
|
8219
8231
|
currency: string;
|
|
8220
8232
|
/**
|
|
8221
8233
|
* Price
|
|
8222
|
-
* @description
|
|
8234
|
+
* @description Price for the action
|
|
8235
|
+
* @example 625.00
|
|
8223
8236
|
*/
|
|
8224
8237
|
price: string;
|
|
8225
8238
|
};
|
|
@@ -9482,28 +9495,36 @@ export interface components {
|
|
|
9482
9495
|
};
|
|
9483
9496
|
/** DomainAvailabilityResponse */
|
|
9484
9497
|
common__models__domain__domain__DomainAvailabilityResponse: {
|
|
9485
|
-
/**
|
|
9498
|
+
/**
|
|
9499
|
+
* Available
|
|
9500
|
+
* @description True if the domain is available for registration
|
|
9501
|
+
*/
|
|
9486
9502
|
available: boolean;
|
|
9487
9503
|
/**
|
|
9488
9504
|
* Claims Key
|
|
9489
|
-
* @description
|
|
9505
|
+
* @description Trademark claims key returned when the TLD is in its claims phase and the domain matches a TMCH-registered mark. When present, the corresponding claims notice must be retrieved and acknowledged before registration.
|
|
9506
|
+
* @example 2013041500/2/6/9/rJ1NrDO92vDsAzf7EQzgjX4R0000000001
|
|
9490
9507
|
*/
|
|
9491
9508
|
claims_key?: string | null;
|
|
9492
9509
|
/**
|
|
9493
9510
|
* Domain
|
|
9494
|
-
* @description The domain name
|
|
9511
|
+
* @description The domain name that was checked
|
|
9495
9512
|
* @example example.com
|
|
9496
9513
|
*/
|
|
9497
9514
|
domain: string;
|
|
9498
9515
|
/**
|
|
9499
9516
|
* Is Premium
|
|
9500
|
-
* @description
|
|
9517
|
+
* @description True if the registry classifies this domain as premium (non-standard pricing)
|
|
9501
9518
|
* @default false
|
|
9502
9519
|
*/
|
|
9503
9520
|
is_premium: boolean;
|
|
9504
|
-
/** @description Premium pricing
|
|
9521
|
+
/** @description Premium pricing per action (create / renew / transfer / restore). Present only when `is_premium` is true and the registry returned pricing. */
|
|
9505
9522
|
premium_pricing?: components["schemas"]["PremiumPricingResponse"] | null;
|
|
9506
|
-
/**
|
|
9523
|
+
/**
|
|
9524
|
+
* Reason
|
|
9525
|
+
* @description Registry-supplied reason the domain is unavailable (e.g. 'Domain exists', 'Reserved', 'In Use'). May be null when the domain is available, or when the registry did not provide a reason.
|
|
9526
|
+
* @example Domain exists
|
|
9527
|
+
*/
|
|
9507
9528
|
reason: string | null;
|
|
9508
9529
|
};
|
|
9509
9530
|
};
|
|
@@ -14625,7 +14646,11 @@ export interface operations {
|
|
|
14625
14646
|
parameters: {
|
|
14626
14647
|
query: {
|
|
14627
14648
|
/** @description
|
|
14628
|
-
*
|
|
14649
|
+
* One or more fully-qualified domain names to check at the registry.
|
|
14650
|
+
*
|
|
14651
|
+
* Each domain is checked for availability and, when applicable, enriched with
|
|
14652
|
+
* trademark claims information and premium pricing. The list of domains may
|
|
14653
|
+
* include a mix of TLDs.
|
|
14629
14654
|
* */
|
|
14630
14655
|
domains: string[];
|
|
14631
14656
|
};
|