@opusdns/api 0.289.0 → 0.291.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 +257 -1
- package/src/helpers/keys.ts +2206 -291
- package/src/helpers/requests.d.ts +45 -5
- package/src/helpers/responses.d.ts +123 -10
- package/src/helpers/schemas-arrays.d.ts +141 -1
- package/src/helpers/schemas.d.ts +368 -16
- package/src/openapi.yaml +644 -132
- package/src/schema.d.ts +458 -88
package/src/schema.d.ts
CHANGED
|
@@ -1012,7 +1012,10 @@ export interface paths {
|
|
|
1012
1012
|
put?: never;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* Create a domain
|
|
1015
|
-
* @description Registers a new domain
|
|
1015
|
+
* @description Registers a new domain.
|
|
1016
|
+
*
|
|
1017
|
+
* - **Premium domains** - when the registry classifies the domain as premium, an `expected_price` must be supplied to confirm the non-standard price returned by the availability check. See the [Premium domains](/products/domains/premium) guide for background on how premium domains are priced and registered.
|
|
1018
|
+
* - **Trademark claims (TMCH)** - when the TLD is in its claims phase and the domain matches a trademark in the Trademark Clearinghouse, a `claims_notice_acceptance_hash` must be supplied to acknowledge the corresponding claims notice. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
1016
1019
|
*/
|
|
1017
1020
|
post: operations["create_domain_v1_domains_post"];
|
|
1018
1021
|
delete?: never;
|
|
@@ -1033,9 +1036,9 @@ export interface paths {
|
|
|
1033
1036
|
* @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
1037
|
*
|
|
1035
1038
|
* For each domain the response includes:
|
|
1036
|
-
* - **Availability**
|
|
1037
|
-
* - **
|
|
1038
|
-
* - **
|
|
1039
|
+
* - **Availability** - whether the domain can be registered, and the registry's reason if not.
|
|
1040
|
+
* - **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.
|
|
1041
|
+
* - **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. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
1039
1042
|
*
|
|
1040
1043
|
* 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
1044
|
*/
|
|
@@ -1048,6 +1051,26 @@ export interface paths {
|
|
|
1048
1051
|
patch?: never;
|
|
1049
1052
|
trace?: never;
|
|
1050
1053
|
};
|
|
1054
|
+
"/v1/domains/claims-notices": {
|
|
1055
|
+
parameters: {
|
|
1056
|
+
query?: never;
|
|
1057
|
+
header?: never;
|
|
1058
|
+
path?: never;
|
|
1059
|
+
cookie?: never;
|
|
1060
|
+
};
|
|
1061
|
+
get?: never;
|
|
1062
|
+
put?: never;
|
|
1063
|
+
/**
|
|
1064
|
+
* Retrieve claims notices from claim keys
|
|
1065
|
+
* @description Retrieves the trademark claims notice for a `claims_key` returned during a domain availability check. The response contains a `claims_notice_acceptance_hash` to acknowledge the notice when registering the domain, a ready-to-display `rendered_html`, and the structured fields needed to render a custom notice. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
1066
|
+
*/
|
|
1067
|
+
post: operations["get_claims_notices_v1_domains_claims_notices_post"];
|
|
1068
|
+
delete?: never;
|
|
1069
|
+
options?: never;
|
|
1070
|
+
head?: never;
|
|
1071
|
+
patch?: never;
|
|
1072
|
+
trace?: never;
|
|
1073
|
+
};
|
|
1051
1074
|
"/v1/domains/summary": {
|
|
1052
1075
|
parameters: {
|
|
1053
1076
|
query?: never;
|
|
@@ -2576,6 +2599,78 @@ export interface components {
|
|
|
2576
2599
|
/** @description The object/tag type (e.g. DOMAIN, CONTACT, ZONE) */
|
|
2577
2600
|
type: components["schemas"]["TagType"];
|
|
2578
2601
|
};
|
|
2602
|
+
/** ClaimsNotice */
|
|
2603
|
+
ClaimsNotice: {
|
|
2604
|
+
/**
|
|
2605
|
+
* Claims
|
|
2606
|
+
* @description List of trademark claims
|
|
2607
|
+
*/
|
|
2608
|
+
claims?: components["schemas"]["TmClaim"][];
|
|
2609
|
+
/**
|
|
2610
|
+
* Claims Key
|
|
2611
|
+
* @description The claims key used to retrieve this claims notice
|
|
2612
|
+
*/
|
|
2613
|
+
claims_key: string;
|
|
2614
|
+
/**
|
|
2615
|
+
* Claims Notice Acceptance Hash
|
|
2616
|
+
* @description Hash to accept the claims notice
|
|
2617
|
+
*/
|
|
2618
|
+
claims_notice_acceptance_hash: string;
|
|
2619
|
+
/**
|
|
2620
|
+
* Label
|
|
2621
|
+
* @description Domain name label covered by this claims notice
|
|
2622
|
+
*/
|
|
2623
|
+
label: string;
|
|
2624
|
+
/**
|
|
2625
|
+
* Notice Footer
|
|
2626
|
+
* @description Claims notice form footer text
|
|
2627
|
+
* @default
|
|
2628
|
+
*/
|
|
2629
|
+
notice_footer: string;
|
|
2630
|
+
/**
|
|
2631
|
+
* Notice Footer Url
|
|
2632
|
+
* @description Claims notice form footer URL
|
|
2633
|
+
* @default
|
|
2634
|
+
*/
|
|
2635
|
+
notice_footer_url: string;
|
|
2636
|
+
/**
|
|
2637
|
+
* Notice Intro
|
|
2638
|
+
* @description Introductory text for the claims notice
|
|
2639
|
+
* @default
|
|
2640
|
+
*/
|
|
2641
|
+
notice_intro: string;
|
|
2642
|
+
/**
|
|
2643
|
+
* Notice Not Exact Match Intro
|
|
2644
|
+
* @description Introductory text for the non-exact match section
|
|
2645
|
+
* @default
|
|
2646
|
+
*/
|
|
2647
|
+
notice_not_exact_match_intro: string;
|
|
2648
|
+
/**
|
|
2649
|
+
* Notice Title
|
|
2650
|
+
* @description Title for the claims notice
|
|
2651
|
+
* @default
|
|
2652
|
+
*/
|
|
2653
|
+
notice_title: string;
|
|
2654
|
+
/**
|
|
2655
|
+
* Rendered Html
|
|
2656
|
+
* @description The rendered trademark claims notice HTML
|
|
2657
|
+
* @default
|
|
2658
|
+
*/
|
|
2659
|
+
rendered_html: string;
|
|
2660
|
+
};
|
|
2661
|
+
/** ClaimsNoticesRequest */
|
|
2662
|
+
ClaimsNoticesRequest: {
|
|
2663
|
+
/**
|
|
2664
|
+
* Claims Keys
|
|
2665
|
+
* @description List of claims keys to retrieve claims notices for, for the time being limited to one claims key
|
|
2666
|
+
*/
|
|
2667
|
+
claims_keys: string[];
|
|
2668
|
+
};
|
|
2669
|
+
/** ClaimsNoticesResponse */
|
|
2670
|
+
ClaimsNoticesResponse: {
|
|
2671
|
+
/** Claims Notices */
|
|
2672
|
+
claims_notices: components["schemas"]["ClaimsNotice"][];
|
|
2673
|
+
};
|
|
2579
2674
|
/** CommandError */
|
|
2580
2675
|
CommandError: {
|
|
2581
2676
|
/**
|
|
@@ -3348,6 +3443,11 @@ export interface components {
|
|
|
3348
3443
|
* @enum {string}
|
|
3349
3444
|
*/
|
|
3350
3445
|
ContactSortField: "first_name" | "last_name" | "email" | "created_on";
|
|
3446
|
+
/**
|
|
3447
|
+
* ContactType
|
|
3448
|
+
* @enum {string}
|
|
3449
|
+
*/
|
|
3450
|
+
ContactType: "owner" | "agent" | "third party";
|
|
3351
3451
|
/** ContactVerificationApiResponse */
|
|
3352
3452
|
ContactVerificationApiResponse: {
|
|
3353
3453
|
/**
|
|
@@ -4985,6 +5085,19 @@ export interface components {
|
|
|
4985
5085
|
/** @description The period by which the domain was extended */
|
|
4986
5086
|
period_extended: components["schemas"]["DomainPeriod"];
|
|
4987
5087
|
};
|
|
5088
|
+
/** DomainRenewalDetails */
|
|
5089
|
+
DomainRenewalDetails: {
|
|
5090
|
+
/**
|
|
5091
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5092
|
+
* @enum {string}
|
|
5093
|
+
*/
|
|
5094
|
+
detail_type: "domain_renewal";
|
|
5095
|
+
/**
|
|
5096
|
+
* Expires On
|
|
5097
|
+
* Format: date-time
|
|
5098
|
+
*/
|
|
5099
|
+
expires_on: Date;
|
|
5100
|
+
};
|
|
4988
5101
|
/** DomainResponse */
|
|
4989
5102
|
DomainResponse: {
|
|
4990
5103
|
/**
|
|
@@ -5695,6 +5808,22 @@ export interface components {
|
|
|
5695
5808
|
*/
|
|
5696
5809
|
type: "domain_update" | "domain_update_bulk";
|
|
5697
5810
|
};
|
|
5811
|
+
/** DomainVerificationDetails */
|
|
5812
|
+
DomainVerificationDetails: {
|
|
5813
|
+
/**
|
|
5814
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5815
|
+
* @enum {string}
|
|
5816
|
+
*/
|
|
5817
|
+
detail_type: "domain_verification";
|
|
5818
|
+
/** Domain Id */
|
|
5819
|
+
domain_id: string;
|
|
5820
|
+
/** Registrants */
|
|
5821
|
+
registrants?: components["schemas"]["VerificationRegistrantDetails"][];
|
|
5822
|
+
/** Verification Claims */
|
|
5823
|
+
verification_claims?: components["schemas"]["VerificationClaimType"][];
|
|
5824
|
+
/** Verification Deadlines */
|
|
5825
|
+
verification_deadlines?: components["schemas"]["VerificationDeadline"][];
|
|
5826
|
+
};
|
|
5698
5827
|
/** DomainWithdrawRequest */
|
|
5699
5828
|
DomainWithdrawRequest: {
|
|
5700
5829
|
/**
|
|
@@ -6083,6 +6212,23 @@ export interface components {
|
|
|
6083
6212
|
* @enum {string}
|
|
6084
6213
|
*/
|
|
6085
6214
|
EmailVerificationStatus: "verified" | "pending" | "canceled";
|
|
6215
|
+
/** EventData */
|
|
6216
|
+
EventData: {
|
|
6217
|
+
/** Details */
|
|
6218
|
+
details?: (components["schemas"]["DomainRenewalDetails"] | components["schemas"]["DomainVerificationDetails"]) | null;
|
|
6219
|
+
error?: components["schemas"]["EventError"] | null;
|
|
6220
|
+
/** Message */
|
|
6221
|
+
message: string;
|
|
6222
|
+
/** @default 1.0 */
|
|
6223
|
+
version: components["schemas"]["EventVersion"];
|
|
6224
|
+
};
|
|
6225
|
+
/** EventError */
|
|
6226
|
+
EventError: {
|
|
6227
|
+
/** Code */
|
|
6228
|
+
code: string;
|
|
6229
|
+
/** Detail */
|
|
6230
|
+
detail: string;
|
|
6231
|
+
};
|
|
6086
6232
|
/**
|
|
6087
6233
|
* EventObjectType
|
|
6088
6234
|
* @enum {string}
|
|
@@ -6101,10 +6247,7 @@ export interface components {
|
|
|
6101
6247
|
* @description When the event was created
|
|
6102
6248
|
*/
|
|
6103
6249
|
created_on: Date;
|
|
6104
|
-
|
|
6105
|
-
event_data?: {
|
|
6106
|
-
[key: string]: unknown;
|
|
6107
|
-
};
|
|
6250
|
+
event_data: components["schemas"]["EventData"];
|
|
6108
6251
|
/**
|
|
6109
6252
|
* Event Id
|
|
6110
6253
|
* Format: typeid
|
|
@@ -6126,62 +6269,6 @@ export interface components {
|
|
|
6126
6269
|
/** @description The type of the event - indicates the kind of operation occurring (e.g., 'ACCOUNT_CREATE', 'DOMAIN_MODIFICATION') */
|
|
6127
6270
|
type?: components["schemas"]["EventType"] | null;
|
|
6128
6271
|
};
|
|
6129
|
-
/** EventSchema */
|
|
6130
|
-
EventSchema: {
|
|
6131
|
-
/**
|
|
6132
|
-
* Acknowledged On
|
|
6133
|
-
* @description The date/time the event was acknowledged
|
|
6134
|
-
*/
|
|
6135
|
-
acknowledged_on?: Date | null;
|
|
6136
|
-
/**
|
|
6137
|
-
* Created On
|
|
6138
|
-
* Format: date-time
|
|
6139
|
-
* @description The date/time the entry was created on
|
|
6140
|
-
*/
|
|
6141
|
-
created_on?: Date;
|
|
6142
|
-
/** @description Additional details about the action */
|
|
6143
|
-
event_data: components["schemas"]["JsonValue"];
|
|
6144
|
-
/**
|
|
6145
|
-
* Event Id
|
|
6146
|
-
* Format: typeid
|
|
6147
|
-
* @example epp_event_01h45ytscbebyvny4gc8cr8ma2
|
|
6148
|
-
*/
|
|
6149
|
-
event_id?: TypeId<"epp_event">;
|
|
6150
|
-
/**
|
|
6151
|
-
* Message Queue Id
|
|
6152
|
-
* @description A composite key with the registry account + message queue ID from the poll operation.
|
|
6153
|
-
*/
|
|
6154
|
-
message_queue_id?: string | null;
|
|
6155
|
-
/**
|
|
6156
|
-
* Object Id
|
|
6157
|
-
* @description The id of the object that the event is about
|
|
6158
|
-
*/
|
|
6159
|
-
object_id?: string | null;
|
|
6160
|
-
/**
|
|
6161
|
-
* @description The type of object that the event is about
|
|
6162
|
-
* @default RAW
|
|
6163
|
-
*/
|
|
6164
|
-
object_type: components["schemas"]["EventObjectType"];
|
|
6165
|
-
/**
|
|
6166
|
-
* Source
|
|
6167
|
-
* @description The source of the event
|
|
6168
|
-
*/
|
|
6169
|
-
source: string;
|
|
6170
|
-
/**
|
|
6171
|
-
* Source Event Id
|
|
6172
|
-
* @description The reference of the original registry event (if any) that triggered this customer-facing event
|
|
6173
|
-
*/
|
|
6174
|
-
source_event_id?: TypeId<"epp_event"> | null;
|
|
6175
|
-
/** @description The specific type/result of operation (considering the type property), more detailed (e.g., 'NOTIFICATION' with the 'DOMAIN_MODIFICATION' class) */
|
|
6176
|
-
subtype?: components["schemas"]["EventSubtype"] | null;
|
|
6177
|
-
/**
|
|
6178
|
-
* Target
|
|
6179
|
-
* @description The target of the event
|
|
6180
|
-
*/
|
|
6181
|
-
target?: TypeId<"organization"> | null;
|
|
6182
|
-
/** @description The type of the event - indicates the kind of operation occurring (e.g., 'ACCOUNT_CREATE', 'DOMAIN_MODIFICATION') */
|
|
6183
|
-
type?: components["schemas"]["EventType"] | null;
|
|
6184
|
-
};
|
|
6185
6272
|
/**
|
|
6186
6273
|
* EventSortField
|
|
6187
6274
|
* @enum {string}
|
|
@@ -6197,6 +6284,11 @@ export interface components {
|
|
|
6197
6284
|
* @enum {string}
|
|
6198
6285
|
*/
|
|
6199
6286
|
EventType: "REGISTRATION" | "RENEWAL" | "MODIFICATION" | "DELETION" | "INBOUND_TRANSFER" | "OUTBOUND_TRANSFER" | "TRANSIT" | "WITHDRAW" | "VERIFICATION";
|
|
6287
|
+
/**
|
|
6288
|
+
* EventVersion
|
|
6289
|
+
* @enum {string}
|
|
6290
|
+
*/
|
|
6291
|
+
EventVersion: "1.0";
|
|
6200
6292
|
/**
|
|
6201
6293
|
* ExecutingEntity
|
|
6202
6294
|
* @enum {string}
|
|
@@ -6247,6 +6339,11 @@ export interface components {
|
|
|
6247
6339
|
/** Problem type */
|
|
6248
6340
|
type: string;
|
|
6249
6341
|
};
|
|
6342
|
+
/**
|
|
6343
|
+
* HolderEntitlement
|
|
6344
|
+
* @enum {string}
|
|
6345
|
+
*/
|
|
6346
|
+
HolderEntitlement: "owner" | "assignee" | "licensee";
|
|
6250
6347
|
/** HostSchema */
|
|
6251
6348
|
HostSchema: {
|
|
6252
6349
|
/**
|
|
@@ -8849,6 +8946,186 @@ export interface components {
|
|
|
8849
8946
|
/** @description WHOIS configuration */
|
|
8850
8947
|
whois?: components["schemas"]["WhoisBase"] | null;
|
|
8851
8948
|
};
|
|
8949
|
+
/**
|
|
8950
|
+
* TmAddr
|
|
8951
|
+
* @description Address information (addrType in RFC 9361)
|
|
8952
|
+
*/
|
|
8953
|
+
TmAddr: {
|
|
8954
|
+
/**
|
|
8955
|
+
* Cc
|
|
8956
|
+
* @description ISO 3166-2 two-character country code
|
|
8957
|
+
*/
|
|
8958
|
+
cc: string;
|
|
8959
|
+
/** City */
|
|
8960
|
+
city: string;
|
|
8961
|
+
/** Pc */
|
|
8962
|
+
pc?: string | null;
|
|
8963
|
+
/** Sp */
|
|
8964
|
+
sp?: string | null;
|
|
8965
|
+
/** Street */
|
|
8966
|
+
street: string[];
|
|
8967
|
+
};
|
|
8968
|
+
/**
|
|
8969
|
+
* TmClaim
|
|
8970
|
+
* @description A single trademark claim within a notice (claimType in RFC 9361)
|
|
8971
|
+
*/
|
|
8972
|
+
TmClaim: {
|
|
8973
|
+
/**
|
|
8974
|
+
* Class Descs
|
|
8975
|
+
* @description Nice Classification descriptions
|
|
8976
|
+
*/
|
|
8977
|
+
class_descs?: components["schemas"]["TmClassDesc"][];
|
|
8978
|
+
/**
|
|
8979
|
+
* Contacts
|
|
8980
|
+
* @description Zero or more contacts/representatives
|
|
8981
|
+
*/
|
|
8982
|
+
contacts?: components["schemas"]["TmContact"][];
|
|
8983
|
+
/**
|
|
8984
|
+
* Goods And Services
|
|
8985
|
+
* @description Full description of goods and services
|
|
8986
|
+
*/
|
|
8987
|
+
goods_and_services: string;
|
|
8988
|
+
/**
|
|
8989
|
+
* Holders
|
|
8990
|
+
* @description One or more holders of the mark
|
|
8991
|
+
*/
|
|
8992
|
+
holders: components["schemas"]["TmHolder"][];
|
|
8993
|
+
/** @description Jurisdiction where the mark is protected */
|
|
8994
|
+
jur_desc: components["schemas"]["TmJurDesc"];
|
|
8995
|
+
/**
|
|
8996
|
+
* Mark Name
|
|
8997
|
+
* @description Mark text string
|
|
8998
|
+
*/
|
|
8999
|
+
mark_name: string;
|
|
9000
|
+
/** @description Present if claim added by non-exact match rule */
|
|
9001
|
+
not_exact_match?: components["schemas"]["TmNotExactMatch"] | null;
|
|
9002
|
+
};
|
|
9003
|
+
/**
|
|
9004
|
+
* TmClassDesc
|
|
9005
|
+
* @description Nice Classification description (classDescType in RFC 9361)
|
|
9006
|
+
*/
|
|
9007
|
+
TmClassDesc: {
|
|
9008
|
+
/**
|
|
9009
|
+
* Class Num
|
|
9010
|
+
* @description Nice Classification class number
|
|
9011
|
+
*/
|
|
9012
|
+
class_num: number;
|
|
9013
|
+
/**
|
|
9014
|
+
* Description
|
|
9015
|
+
* @description Description of the class in English
|
|
9016
|
+
*/
|
|
9017
|
+
description: string;
|
|
9018
|
+
};
|
|
9019
|
+
/**
|
|
9020
|
+
* TmContact
|
|
9021
|
+
* @description Contact / representative of the mark (contactType in RFC 9361)
|
|
9022
|
+
*/
|
|
9023
|
+
TmContact: {
|
|
9024
|
+
addr: components["schemas"]["TmAddr"];
|
|
9025
|
+
/** Email */
|
|
9026
|
+
email: string;
|
|
9027
|
+
/** Fax */
|
|
9028
|
+
fax?: string | null;
|
|
9029
|
+
/** Name */
|
|
9030
|
+
name: string;
|
|
9031
|
+
/** Org */
|
|
9032
|
+
org?: string | null;
|
|
9033
|
+
type: components["schemas"]["ContactType"];
|
|
9034
|
+
/** Voice */
|
|
9035
|
+
voice: string;
|
|
9036
|
+
};
|
|
9037
|
+
/**
|
|
9038
|
+
* TmCourt
|
|
9039
|
+
* @description Court resolution reference (courtType in RFC 9361)
|
|
9040
|
+
*/
|
|
9041
|
+
TmCourt: {
|
|
9042
|
+
/**
|
|
9043
|
+
* Cc
|
|
9044
|
+
* @description ISO 3166-2 jurisdiction country code
|
|
9045
|
+
*/
|
|
9046
|
+
cc: string;
|
|
9047
|
+
/**
|
|
9048
|
+
* Court Name
|
|
9049
|
+
* @description Name of the court
|
|
9050
|
+
*/
|
|
9051
|
+
court_name: string;
|
|
9052
|
+
/**
|
|
9053
|
+
* Ref Num
|
|
9054
|
+
* @description Reference number of the court resolution
|
|
9055
|
+
*/
|
|
9056
|
+
ref_num: string;
|
|
9057
|
+
/**
|
|
9058
|
+
* Region
|
|
9059
|
+
* @description Region(s) within the jurisdiction
|
|
9060
|
+
*/
|
|
9061
|
+
region?: string[];
|
|
9062
|
+
};
|
|
9063
|
+
/**
|
|
9064
|
+
* TmHolder
|
|
9065
|
+
* @description Holder of the mark (holderType in RFC 9361). name or org must be set.
|
|
9066
|
+
*/
|
|
9067
|
+
TmHolder: {
|
|
9068
|
+
addr: components["schemas"]["TmAddr"];
|
|
9069
|
+
/** Email */
|
|
9070
|
+
email?: string | null;
|
|
9071
|
+
entitlement: components["schemas"]["HolderEntitlement"];
|
|
9072
|
+
/** Fax */
|
|
9073
|
+
fax?: string | null;
|
|
9074
|
+
/** Name */
|
|
9075
|
+
name?: string | null;
|
|
9076
|
+
/** Org */
|
|
9077
|
+
org?: string | null;
|
|
9078
|
+
/** Voice */
|
|
9079
|
+
voice?: string | null;
|
|
9080
|
+
};
|
|
9081
|
+
/**
|
|
9082
|
+
* TmJurDesc
|
|
9083
|
+
* @description Jurisdiction description (jurDescType in RFC 9361)
|
|
9084
|
+
*/
|
|
9085
|
+
TmJurDesc: {
|
|
9086
|
+
/**
|
|
9087
|
+
* Description
|
|
9088
|
+
* @description Name of jurisdiction in English
|
|
9089
|
+
*/
|
|
9090
|
+
description: string;
|
|
9091
|
+
/**
|
|
9092
|
+
* Jur Cc
|
|
9093
|
+
* @description WIPO ST.3 two-character jurisdiction code
|
|
9094
|
+
*/
|
|
9095
|
+
jur_cc: string;
|
|
9096
|
+
};
|
|
9097
|
+
/**
|
|
9098
|
+
* TmNotExactMatch
|
|
9099
|
+
* @description Signals claim was added by non-exact match rules (noExactMatchType in RFC 9361)
|
|
9100
|
+
*/
|
|
9101
|
+
TmNotExactMatch: {
|
|
9102
|
+
/** Court */
|
|
9103
|
+
court?: components["schemas"]["TmCourt"][];
|
|
9104
|
+
/**
|
|
9105
|
+
* Intro
|
|
9106
|
+
* @description Introductory text for the non-exact match section
|
|
9107
|
+
* @default This domain name label has previously been found to be used or registered abusively against the following trademarks according to the referenced decisions:
|
|
9108
|
+
*/
|
|
9109
|
+
intro: string;
|
|
9110
|
+
/** Udrp */
|
|
9111
|
+
udrp?: components["schemas"]["TmUdrp"][];
|
|
9112
|
+
};
|
|
9113
|
+
/**
|
|
9114
|
+
* TmUdrp
|
|
9115
|
+
* @description UDRP case reference (udrpType in RFC 9361)
|
|
9116
|
+
*/
|
|
9117
|
+
TmUdrp: {
|
|
9118
|
+
/**
|
|
9119
|
+
* Case No
|
|
9120
|
+
* @description UDRP case number
|
|
9121
|
+
*/
|
|
9122
|
+
case_no: string;
|
|
9123
|
+
/**
|
|
9124
|
+
* Udrp Provider
|
|
9125
|
+
* @description Name of the UDRP provider
|
|
9126
|
+
*/
|
|
9127
|
+
udrp_provider: string;
|
|
9128
|
+
};
|
|
8852
9129
|
/** TrademarkClaimsBase */
|
|
8853
9130
|
TrademarkClaimsBase: {
|
|
8854
9131
|
/**
|
|
@@ -9441,6 +9718,34 @@ export interface components {
|
|
|
9441
9718
|
/** Error Type */
|
|
9442
9719
|
type: string;
|
|
9443
9720
|
};
|
|
9721
|
+
/**
|
|
9722
|
+
* VerificationClaimType
|
|
9723
|
+
* @enum {string}
|
|
9724
|
+
*/
|
|
9725
|
+
VerificationClaimType: "name" | "address" | "email" | "phone";
|
|
9726
|
+
/** VerificationDeadline */
|
|
9727
|
+
VerificationDeadline: {
|
|
9728
|
+
/**
|
|
9729
|
+
* Date
|
|
9730
|
+
* Format: date-time
|
|
9731
|
+
*/
|
|
9732
|
+
date: Date;
|
|
9733
|
+
type: components["schemas"]["VerificationDeadlineType"];
|
|
9734
|
+
};
|
|
9735
|
+
/**
|
|
9736
|
+
* VerificationDeadlineType
|
|
9737
|
+
* @enum {string}
|
|
9738
|
+
*/
|
|
9739
|
+
VerificationDeadlineType: "dedelegation" | "deletion";
|
|
9740
|
+
/** VerificationRegistrantDetails */
|
|
9741
|
+
VerificationRegistrantDetails: {
|
|
9742
|
+
/** Contact Id */
|
|
9743
|
+
contact_id: string;
|
|
9744
|
+
/** Email */
|
|
9745
|
+
email: string;
|
|
9746
|
+
/** Name */
|
|
9747
|
+
name: string;
|
|
9748
|
+
};
|
|
9444
9749
|
/**
|
|
9445
9750
|
* VerificationType
|
|
9446
9751
|
* @enum {string}
|
|
@@ -14618,14 +14923,6 @@ export interface operations {
|
|
|
14618
14923
|
[name: string]: unknown;
|
|
14619
14924
|
};
|
|
14620
14925
|
content: {
|
|
14621
|
-
/** @example {
|
|
14622
|
-
* "code": "ERROR_TLD_NOT_AVAILABLE",
|
|
14623
|
-
* "detail": "This TLD is not available",
|
|
14624
|
-
* "status": 400,
|
|
14625
|
-
* "title": "Domain Management Error",
|
|
14626
|
-
* "tld": "Additional error context.",
|
|
14627
|
-
* "type": "domain-tld-not-available"
|
|
14628
|
-
* } */
|
|
14629
14926
|
"application/problem+json": components["schemas"]["Problem"];
|
|
14630
14927
|
};
|
|
14631
14928
|
};
|
|
@@ -14635,41 +14932,49 @@ export interface operations {
|
|
|
14635
14932
|
[name: string]: unknown;
|
|
14636
14933
|
};
|
|
14637
14934
|
content: {
|
|
14638
|
-
/** @example {
|
|
14639
|
-
* "code": "ERROR_CONTACT_NOT_FOUND",
|
|
14640
|
-
* "contact_id": "Additional error context.",
|
|
14641
|
-
* "detail": "Contact not found",
|
|
14642
|
-
* "status": 404,
|
|
14643
|
-
* "title": "Contact Management Error",
|
|
14644
|
-
* "type": "contact-not-found"
|
|
14645
|
-
* } */
|
|
14646
14935
|
"application/problem+json": components["schemas"]["Problem"];
|
|
14647
14936
|
};
|
|
14648
14937
|
};
|
|
14649
14938
|
/** @description Conflict */
|
|
14650
14939
|
409: {
|
|
14940
|
+
headers: {
|
|
14941
|
+
[name: string]: unknown;
|
|
14942
|
+
};
|
|
14943
|
+
content: {
|
|
14944
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
14945
|
+
};
|
|
14946
|
+
};
|
|
14947
|
+
/** @description Unprocessable Content */
|
|
14948
|
+
422: {
|
|
14651
14949
|
headers: {
|
|
14652
14950
|
[name: string]: unknown;
|
|
14653
14951
|
};
|
|
14654
14952
|
content: {
|
|
14655
14953
|
/** @example {
|
|
14656
|
-
* "code": "
|
|
14657
|
-
* "detail": "
|
|
14954
|
+
* "code": "ERROR_CLAIMS_NOTICE_HASH_MISMATCH",
|
|
14955
|
+
* "detail": "The provided claims notice acceptance hash does not match",
|
|
14658
14956
|
* "domain_name": "Additional error context.",
|
|
14659
|
-
* "status":
|
|
14957
|
+
* "status": 422,
|
|
14660
14958
|
* "title": "Domain Management Error",
|
|
14661
|
-
* "type": "
|
|
14959
|
+
* "type": "claims-notice-hash-mismatch"
|
|
14662
14960
|
* } */
|
|
14663
14961
|
"application/problem+json": components["schemas"]["Problem"];
|
|
14664
14962
|
};
|
|
14665
14963
|
};
|
|
14666
|
-
/** @description
|
|
14667
|
-
|
|
14964
|
+
/** @description Service Unavailable */
|
|
14965
|
+
503: {
|
|
14668
14966
|
headers: {
|
|
14669
14967
|
[name: string]: unknown;
|
|
14670
14968
|
};
|
|
14671
14969
|
content: {
|
|
14672
|
-
|
|
14970
|
+
/** @example {
|
|
14971
|
+
* "code": "ERROR_CLAIMS_SERVICE_ERROR",
|
|
14972
|
+
* "detail": "Additional error context.",
|
|
14973
|
+
* "status": 503,
|
|
14974
|
+
* "title": "Claims Error",
|
|
14975
|
+
* "type": "claims-service"
|
|
14976
|
+
* } */
|
|
14977
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
14673
14978
|
};
|
|
14674
14979
|
};
|
|
14675
14980
|
};
|
|
@@ -14712,6 +15017,71 @@ export interface operations {
|
|
|
14712
15017
|
};
|
|
14713
15018
|
};
|
|
14714
15019
|
};
|
|
15020
|
+
get_claims_notices_v1_domains_claims_notices_post: {
|
|
15021
|
+
parameters: {
|
|
15022
|
+
query?: never;
|
|
15023
|
+
header?: never;
|
|
15024
|
+
path?: never;
|
|
15025
|
+
cookie?: never;
|
|
15026
|
+
};
|
|
15027
|
+
requestBody: {
|
|
15028
|
+
content: {
|
|
15029
|
+
"application/json": components["schemas"]["ClaimsNoticesRequest"];
|
|
15030
|
+
};
|
|
15031
|
+
};
|
|
15032
|
+
responses: {
|
|
15033
|
+
/** @description Successful Response */
|
|
15034
|
+
200: {
|
|
15035
|
+
headers: {
|
|
15036
|
+
[name: string]: unknown;
|
|
15037
|
+
};
|
|
15038
|
+
content: {
|
|
15039
|
+
"application/json": components["schemas"]["ClaimsNoticesResponse"];
|
|
15040
|
+
};
|
|
15041
|
+
};
|
|
15042
|
+
/** @description Not Found */
|
|
15043
|
+
404: {
|
|
15044
|
+
headers: {
|
|
15045
|
+
[name: string]: unknown;
|
|
15046
|
+
};
|
|
15047
|
+
content: {
|
|
15048
|
+
/** @example {
|
|
15049
|
+
* "code": "ERROR_CLAIMS_NOTICE_NOT_FOUND",
|
|
15050
|
+
* "detail": "Claims notice not found for claims key: Additional error context.",
|
|
15051
|
+
* "status": 404,
|
|
15052
|
+
* "title": "Claims Error",
|
|
15053
|
+
* "type": "claims-notice-not-found"
|
|
15054
|
+
* } */
|
|
15055
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
15056
|
+
};
|
|
15057
|
+
};
|
|
15058
|
+
/** @description Validation Error */
|
|
15059
|
+
422: {
|
|
15060
|
+
headers: {
|
|
15061
|
+
[name: string]: unknown;
|
|
15062
|
+
};
|
|
15063
|
+
content: {
|
|
15064
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
15065
|
+
};
|
|
15066
|
+
};
|
|
15067
|
+
/** @description Service Unavailable */
|
|
15068
|
+
503: {
|
|
15069
|
+
headers: {
|
|
15070
|
+
[name: string]: unknown;
|
|
15071
|
+
};
|
|
15072
|
+
content: {
|
|
15073
|
+
/** @example {
|
|
15074
|
+
* "code": "ERROR_CLAIMS_SERVICE_ERROR",
|
|
15075
|
+
* "detail": "Additional error context.",
|
|
15076
|
+
* "status": 503,
|
|
15077
|
+
* "title": "Claims Error",
|
|
15078
|
+
* "type": "claims-service"
|
|
15079
|
+
* } */
|
|
15080
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
15081
|
+
};
|
|
15082
|
+
};
|
|
15083
|
+
};
|
|
15084
|
+
};
|
|
14715
15085
|
get_domain_summary_v1_domains_summary_get: {
|
|
14716
15086
|
parameters: {
|
|
14717
15087
|
query?: never;
|
|
@@ -16487,7 +16857,7 @@ export interface operations {
|
|
|
16487
16857
|
[name: string]: unknown;
|
|
16488
16858
|
};
|
|
16489
16859
|
content: {
|
|
16490
|
-
"application/json": components["schemas"]["
|
|
16860
|
+
"application/json": components["schemas"]["EventResponse"];
|
|
16491
16861
|
};
|
|
16492
16862
|
};
|
|
16493
16863
|
/** @description Unauthorized */
|