@opusdns/api 0.289.0 → 0.290.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 +105 -1
- package/src/helpers/keys.ts +1641 -0
- package/src/helpers/requests.d.ts +45 -5
- package/src/helpers/responses.d.ts +121 -8
- package/src/helpers/schemas-arrays.d.ts +99 -1
- package/src/helpers/schemas.d.ts +224 -0
- package/src/openapi.yaml +507 -40
- package/src/schema.d.ts +377 -27
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
|
/**
|
|
@@ -6247,6 +6347,11 @@ export interface components {
|
|
|
6247
6347
|
/** Problem type */
|
|
6248
6348
|
type: string;
|
|
6249
6349
|
};
|
|
6350
|
+
/**
|
|
6351
|
+
* HolderEntitlement
|
|
6352
|
+
* @enum {string}
|
|
6353
|
+
*/
|
|
6354
|
+
HolderEntitlement: "owner" | "assignee" | "licensee";
|
|
6250
6355
|
/** HostSchema */
|
|
6251
6356
|
HostSchema: {
|
|
6252
6357
|
/**
|
|
@@ -8849,6 +8954,186 @@ export interface components {
|
|
|
8849
8954
|
/** @description WHOIS configuration */
|
|
8850
8955
|
whois?: components["schemas"]["WhoisBase"] | null;
|
|
8851
8956
|
};
|
|
8957
|
+
/**
|
|
8958
|
+
* TmAddr
|
|
8959
|
+
* @description Address information (addrType in RFC 9361)
|
|
8960
|
+
*/
|
|
8961
|
+
TmAddr: {
|
|
8962
|
+
/**
|
|
8963
|
+
* Cc
|
|
8964
|
+
* @description ISO 3166-2 two-character country code
|
|
8965
|
+
*/
|
|
8966
|
+
cc: string;
|
|
8967
|
+
/** City */
|
|
8968
|
+
city: string;
|
|
8969
|
+
/** Pc */
|
|
8970
|
+
pc?: string | null;
|
|
8971
|
+
/** Sp */
|
|
8972
|
+
sp?: string | null;
|
|
8973
|
+
/** Street */
|
|
8974
|
+
street: string[];
|
|
8975
|
+
};
|
|
8976
|
+
/**
|
|
8977
|
+
* TmClaim
|
|
8978
|
+
* @description A single trademark claim within a notice (claimType in RFC 9361)
|
|
8979
|
+
*/
|
|
8980
|
+
TmClaim: {
|
|
8981
|
+
/**
|
|
8982
|
+
* Class Descs
|
|
8983
|
+
* @description Nice Classification descriptions
|
|
8984
|
+
*/
|
|
8985
|
+
class_descs?: components["schemas"]["TmClassDesc"][];
|
|
8986
|
+
/**
|
|
8987
|
+
* Contacts
|
|
8988
|
+
* @description Zero or more contacts/representatives
|
|
8989
|
+
*/
|
|
8990
|
+
contacts?: components["schemas"]["TmContact"][];
|
|
8991
|
+
/**
|
|
8992
|
+
* Goods And Services
|
|
8993
|
+
* @description Full description of goods and services
|
|
8994
|
+
*/
|
|
8995
|
+
goods_and_services: string;
|
|
8996
|
+
/**
|
|
8997
|
+
* Holders
|
|
8998
|
+
* @description One or more holders of the mark
|
|
8999
|
+
*/
|
|
9000
|
+
holders: components["schemas"]["TmHolder"][];
|
|
9001
|
+
/** @description Jurisdiction where the mark is protected */
|
|
9002
|
+
jur_desc: components["schemas"]["TmJurDesc"];
|
|
9003
|
+
/**
|
|
9004
|
+
* Mark Name
|
|
9005
|
+
* @description Mark text string
|
|
9006
|
+
*/
|
|
9007
|
+
mark_name: string;
|
|
9008
|
+
/** @description Present if claim added by non-exact match rule */
|
|
9009
|
+
not_exact_match?: components["schemas"]["TmNotExactMatch"] | null;
|
|
9010
|
+
};
|
|
9011
|
+
/**
|
|
9012
|
+
* TmClassDesc
|
|
9013
|
+
* @description Nice Classification description (classDescType in RFC 9361)
|
|
9014
|
+
*/
|
|
9015
|
+
TmClassDesc: {
|
|
9016
|
+
/**
|
|
9017
|
+
* Class Num
|
|
9018
|
+
* @description Nice Classification class number
|
|
9019
|
+
*/
|
|
9020
|
+
class_num: number;
|
|
9021
|
+
/**
|
|
9022
|
+
* Description
|
|
9023
|
+
* @description Description of the class in English
|
|
9024
|
+
*/
|
|
9025
|
+
description: string;
|
|
9026
|
+
};
|
|
9027
|
+
/**
|
|
9028
|
+
* TmContact
|
|
9029
|
+
* @description Contact / representative of the mark (contactType in RFC 9361)
|
|
9030
|
+
*/
|
|
9031
|
+
TmContact: {
|
|
9032
|
+
addr: components["schemas"]["TmAddr"];
|
|
9033
|
+
/** Email */
|
|
9034
|
+
email: string;
|
|
9035
|
+
/** Fax */
|
|
9036
|
+
fax?: string | null;
|
|
9037
|
+
/** Name */
|
|
9038
|
+
name: string;
|
|
9039
|
+
/** Org */
|
|
9040
|
+
org?: string | null;
|
|
9041
|
+
type: components["schemas"]["ContactType"];
|
|
9042
|
+
/** Voice */
|
|
9043
|
+
voice: string;
|
|
9044
|
+
};
|
|
9045
|
+
/**
|
|
9046
|
+
* TmCourt
|
|
9047
|
+
* @description Court resolution reference (courtType in RFC 9361)
|
|
9048
|
+
*/
|
|
9049
|
+
TmCourt: {
|
|
9050
|
+
/**
|
|
9051
|
+
* Cc
|
|
9052
|
+
* @description ISO 3166-2 jurisdiction country code
|
|
9053
|
+
*/
|
|
9054
|
+
cc: string;
|
|
9055
|
+
/**
|
|
9056
|
+
* Court Name
|
|
9057
|
+
* @description Name of the court
|
|
9058
|
+
*/
|
|
9059
|
+
court_name: string;
|
|
9060
|
+
/**
|
|
9061
|
+
* Ref Num
|
|
9062
|
+
* @description Reference number of the court resolution
|
|
9063
|
+
*/
|
|
9064
|
+
ref_num: string;
|
|
9065
|
+
/**
|
|
9066
|
+
* Region
|
|
9067
|
+
* @description Region(s) within the jurisdiction
|
|
9068
|
+
*/
|
|
9069
|
+
region?: string[];
|
|
9070
|
+
};
|
|
9071
|
+
/**
|
|
9072
|
+
* TmHolder
|
|
9073
|
+
* @description Holder of the mark (holderType in RFC 9361). name or org must be set.
|
|
9074
|
+
*/
|
|
9075
|
+
TmHolder: {
|
|
9076
|
+
addr: components["schemas"]["TmAddr"];
|
|
9077
|
+
/** Email */
|
|
9078
|
+
email?: string | null;
|
|
9079
|
+
entitlement: components["schemas"]["HolderEntitlement"];
|
|
9080
|
+
/** Fax */
|
|
9081
|
+
fax?: string | null;
|
|
9082
|
+
/** Name */
|
|
9083
|
+
name?: string | null;
|
|
9084
|
+
/** Org */
|
|
9085
|
+
org?: string | null;
|
|
9086
|
+
/** Voice */
|
|
9087
|
+
voice?: string | null;
|
|
9088
|
+
};
|
|
9089
|
+
/**
|
|
9090
|
+
* TmJurDesc
|
|
9091
|
+
* @description Jurisdiction description (jurDescType in RFC 9361)
|
|
9092
|
+
*/
|
|
9093
|
+
TmJurDesc: {
|
|
9094
|
+
/**
|
|
9095
|
+
* Description
|
|
9096
|
+
* @description Name of jurisdiction in English
|
|
9097
|
+
*/
|
|
9098
|
+
description: string;
|
|
9099
|
+
/**
|
|
9100
|
+
* Jur Cc
|
|
9101
|
+
* @description WIPO ST.3 two-character jurisdiction code
|
|
9102
|
+
*/
|
|
9103
|
+
jur_cc: string;
|
|
9104
|
+
};
|
|
9105
|
+
/**
|
|
9106
|
+
* TmNotExactMatch
|
|
9107
|
+
* @description Signals claim was added by non-exact match rules (noExactMatchType in RFC 9361)
|
|
9108
|
+
*/
|
|
9109
|
+
TmNotExactMatch: {
|
|
9110
|
+
/** Court */
|
|
9111
|
+
court?: components["schemas"]["TmCourt"][];
|
|
9112
|
+
/**
|
|
9113
|
+
* Intro
|
|
9114
|
+
* @description Introductory text for the non-exact match section
|
|
9115
|
+
* @default This domain name label has previously been found to be used or registered abusively against the following trademarks according to the referenced decisions:
|
|
9116
|
+
*/
|
|
9117
|
+
intro: string;
|
|
9118
|
+
/** Udrp */
|
|
9119
|
+
udrp?: components["schemas"]["TmUdrp"][];
|
|
9120
|
+
};
|
|
9121
|
+
/**
|
|
9122
|
+
* TmUdrp
|
|
9123
|
+
* @description UDRP case reference (udrpType in RFC 9361)
|
|
9124
|
+
*/
|
|
9125
|
+
TmUdrp: {
|
|
9126
|
+
/**
|
|
9127
|
+
* Case No
|
|
9128
|
+
* @description UDRP case number
|
|
9129
|
+
*/
|
|
9130
|
+
case_no: string;
|
|
9131
|
+
/**
|
|
9132
|
+
* Udrp Provider
|
|
9133
|
+
* @description Name of the UDRP provider
|
|
9134
|
+
*/
|
|
9135
|
+
udrp_provider: string;
|
|
9136
|
+
};
|
|
8852
9137
|
/** TrademarkClaimsBase */
|
|
8853
9138
|
TrademarkClaimsBase: {
|
|
8854
9139
|
/**
|
|
@@ -14618,14 +14903,6 @@ export interface operations {
|
|
|
14618
14903
|
[name: string]: unknown;
|
|
14619
14904
|
};
|
|
14620
14905
|
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
14906
|
"application/problem+json": components["schemas"]["Problem"];
|
|
14630
14907
|
};
|
|
14631
14908
|
};
|
|
@@ -14635,41 +14912,49 @@ export interface operations {
|
|
|
14635
14912
|
[name: string]: unknown;
|
|
14636
14913
|
};
|
|
14637
14914
|
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
14915
|
"application/problem+json": components["schemas"]["Problem"];
|
|
14647
14916
|
};
|
|
14648
14917
|
};
|
|
14649
14918
|
/** @description Conflict */
|
|
14650
14919
|
409: {
|
|
14920
|
+
headers: {
|
|
14921
|
+
[name: string]: unknown;
|
|
14922
|
+
};
|
|
14923
|
+
content: {
|
|
14924
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
14925
|
+
};
|
|
14926
|
+
};
|
|
14927
|
+
/** @description Unprocessable Content */
|
|
14928
|
+
422: {
|
|
14651
14929
|
headers: {
|
|
14652
14930
|
[name: string]: unknown;
|
|
14653
14931
|
};
|
|
14654
14932
|
content: {
|
|
14655
14933
|
/** @example {
|
|
14656
|
-
* "code": "
|
|
14657
|
-
* "detail": "
|
|
14934
|
+
* "code": "ERROR_CLAIMS_NOTICE_HASH_MISMATCH",
|
|
14935
|
+
* "detail": "The provided claims notice acceptance hash does not match",
|
|
14658
14936
|
* "domain_name": "Additional error context.",
|
|
14659
|
-
* "status":
|
|
14937
|
+
* "status": 422,
|
|
14660
14938
|
* "title": "Domain Management Error",
|
|
14661
|
-
* "type": "
|
|
14939
|
+
* "type": "claims-notice-hash-mismatch"
|
|
14662
14940
|
* } */
|
|
14663
14941
|
"application/problem+json": components["schemas"]["Problem"];
|
|
14664
14942
|
};
|
|
14665
14943
|
};
|
|
14666
|
-
/** @description
|
|
14667
|
-
|
|
14944
|
+
/** @description Service Unavailable */
|
|
14945
|
+
503: {
|
|
14668
14946
|
headers: {
|
|
14669
14947
|
[name: string]: unknown;
|
|
14670
14948
|
};
|
|
14671
14949
|
content: {
|
|
14672
|
-
|
|
14950
|
+
/** @example {
|
|
14951
|
+
* "code": "ERROR_CLAIMS_SERVICE_ERROR",
|
|
14952
|
+
* "detail": "Additional error context.",
|
|
14953
|
+
* "status": 503,
|
|
14954
|
+
* "title": "Claims Error",
|
|
14955
|
+
* "type": "claims-service"
|
|
14956
|
+
* } */
|
|
14957
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
14673
14958
|
};
|
|
14674
14959
|
};
|
|
14675
14960
|
};
|
|
@@ -14712,6 +14997,71 @@ export interface operations {
|
|
|
14712
14997
|
};
|
|
14713
14998
|
};
|
|
14714
14999
|
};
|
|
15000
|
+
get_claims_notices_v1_domains_claims_notices_post: {
|
|
15001
|
+
parameters: {
|
|
15002
|
+
query?: never;
|
|
15003
|
+
header?: never;
|
|
15004
|
+
path?: never;
|
|
15005
|
+
cookie?: never;
|
|
15006
|
+
};
|
|
15007
|
+
requestBody: {
|
|
15008
|
+
content: {
|
|
15009
|
+
"application/json": components["schemas"]["ClaimsNoticesRequest"];
|
|
15010
|
+
};
|
|
15011
|
+
};
|
|
15012
|
+
responses: {
|
|
15013
|
+
/** @description Successful Response */
|
|
15014
|
+
200: {
|
|
15015
|
+
headers: {
|
|
15016
|
+
[name: string]: unknown;
|
|
15017
|
+
};
|
|
15018
|
+
content: {
|
|
15019
|
+
"application/json": components["schemas"]["ClaimsNoticesResponse"];
|
|
15020
|
+
};
|
|
15021
|
+
};
|
|
15022
|
+
/** @description Not Found */
|
|
15023
|
+
404: {
|
|
15024
|
+
headers: {
|
|
15025
|
+
[name: string]: unknown;
|
|
15026
|
+
};
|
|
15027
|
+
content: {
|
|
15028
|
+
/** @example {
|
|
15029
|
+
* "code": "ERROR_CLAIMS_NOTICE_NOT_FOUND",
|
|
15030
|
+
* "detail": "Claims notice not found for claims key: Additional error context.",
|
|
15031
|
+
* "status": 404,
|
|
15032
|
+
* "title": "Claims Error",
|
|
15033
|
+
* "type": "claims-notice-not-found"
|
|
15034
|
+
* } */
|
|
15035
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
15036
|
+
};
|
|
15037
|
+
};
|
|
15038
|
+
/** @description Validation Error */
|
|
15039
|
+
422: {
|
|
15040
|
+
headers: {
|
|
15041
|
+
[name: string]: unknown;
|
|
15042
|
+
};
|
|
15043
|
+
content: {
|
|
15044
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
15045
|
+
};
|
|
15046
|
+
};
|
|
15047
|
+
/** @description Service Unavailable */
|
|
15048
|
+
503: {
|
|
15049
|
+
headers: {
|
|
15050
|
+
[name: string]: unknown;
|
|
15051
|
+
};
|
|
15052
|
+
content: {
|
|
15053
|
+
/** @example {
|
|
15054
|
+
* "code": "ERROR_CLAIMS_SERVICE_ERROR",
|
|
15055
|
+
* "detail": "Additional error context.",
|
|
15056
|
+
* "status": 503,
|
|
15057
|
+
* "title": "Claims Error",
|
|
15058
|
+
* "type": "claims-service"
|
|
15059
|
+
* } */
|
|
15060
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
15061
|
+
};
|
|
15062
|
+
};
|
|
15063
|
+
};
|
|
15064
|
+
};
|
|
14715
15065
|
get_domain_summary_v1_domains_summary_get: {
|
|
14716
15066
|
parameters: {
|
|
14717
15067
|
query?: never;
|