@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
|
@@ -34,7 +34,7 @@ import { operations } from '../schema';
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataCreateArray, OrganizationAttributeUpdateArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import { ConversationCreateRequest, ConversationPatchRequest, ContextCreateRequest, MessageCreateRequest, MemoryFactCreateRequest, MemoryFactPatchRequest, PublicAuthRequestForm, DomainAvailabilityRequest, ContactCreate, ContactAttributeSetCreate, ContactAttributeSetUpdate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainForwardPatchOps, DomainForwardCreateRequest, DomainForwardSetCreateRequest, DomainForwardSetRequest, DomainCreate, DomainUpdate, DomainRenewRequest, DomainRestoreRequest, DomainWithdrawRequest, DomainTransitRequest, DomainTransferIn, EmailForwardCreate, EmailForwardAliasCreate, EmailForwardAliasUpdate, JobBatchRequest, OrganizationCreate, IpRestrictionCreate, IpRestrictionUpdate, OrganizationUpdate, ParkingSignupRequest, TagCreate, BulkObjectTagChanges, TagUpdate, ObjectTagChanges, UserCreate, PasswordUpdate, UserUpdate, SpiceDbRelationshipUpdate } from './schemas.d';
|
|
37
|
+
import { ConversationCreateRequest, ConversationPatchRequest, ContextCreateRequest, MessageCreateRequest, MemoryFactCreateRequest, MemoryFactPatchRequest, PublicAuthRequestForm, DomainAvailabilityRequest, ContactCreate, ContactAttributeSetCreate, ContactAttributeSetUpdate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainForwardPatchOps, DomainForwardCreateRequest, DomainForwardSetCreateRequest, DomainForwardSetRequest, DomainCreate, ClaimsNoticesRequest, DomainUpdate, DomainRenewRequest, DomainRestoreRequest, DomainWithdrawRequest, DomainTransitRequest, DomainTransferIn, EmailForwardCreate, EmailForwardAliasCreate, EmailForwardAliasUpdate, JobBatchRequest, OrganizationCreate, IpRestrictionCreate, IpRestrictionUpdate, OrganizationUpdate, ParkingSignupRequest, TagCreate, BulkObjectTagChanges, TagUpdate, ObjectTagChanges, UserCreate, PasswordUpdate, UserUpdate, SpiceDbRelationshipUpdate } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Request type for GET AiConciergeContextsContextId endpoint
|
|
@@ -3371,7 +3371,10 @@ export type GET_Domains_Request_Query = GET_Domains_Request['parameters']['query
|
|
|
3371
3371
|
* Request type for POST Domains endpoint
|
|
3372
3372
|
*
|
|
3373
3373
|
* Create a domain
|
|
3374
|
-
* Registers a new domain
|
|
3374
|
+
* Registers a new domain.
|
|
3375
|
+
|
|
3376
|
+
- **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.
|
|
3377
|
+
- **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.
|
|
3375
3378
|
*
|
|
3376
3379
|
* @remarks
|
|
3377
3380
|
* This type defines the complete request structure for the POST Domains endpoint.
|
|
@@ -3411,9 +3414,9 @@ export type POST_Domains_Request_Body = POST_Domains_Request['requestBody'];
|
|
|
3411
3414
|
* 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
3415
|
|
|
3413
3416
|
For each domain the response includes:
|
|
3414
|
-
- **Availability**
|
|
3415
|
-
- **
|
|
3416
|
-
- **
|
|
3417
|
+
- **Availability** - whether the domain can be registered, and the registry's reason if not.
|
|
3418
|
+
- **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.
|
|
3419
|
+
- **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.
|
|
3417
3420
|
|
|
3418
3421
|
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.
|
|
3419
3422
|
*
|
|
@@ -3464,6 +3467,43 @@ include a mix of TLDs.
|
|
|
3464
3467
|
*/
|
|
3465
3468
|
export type GET_DomainsCheck_Request_Query = GET_DomainsCheck_Request['parameters']['query'];
|
|
3466
3469
|
|
|
3470
|
+
/**
|
|
3471
|
+
* Request type for POST DomainsClaimsNotices endpoint
|
|
3472
|
+
*
|
|
3473
|
+
* Retrieve claims notices from claim keys
|
|
3474
|
+
* 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.
|
|
3475
|
+
*
|
|
3476
|
+
* @remarks
|
|
3477
|
+
* This type defines the complete request structure for the POST DomainsClaimsNotices endpoint.
|
|
3478
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3479
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3480
|
+
*
|
|
3481
|
+
* @example
|
|
3482
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3483
|
+
*
|
|
3484
|
+
* @path /v1/domains/claims-notices
|
|
3485
|
+
*
|
|
3486
|
+
* @see {@link POST_DomainsClaimsNotices_Request_Query} - Query parameters type
|
|
3487
|
+
* @see {@link POST_DomainsClaimsNotices_Request_Path} - Path parameters type
|
|
3488
|
+
* @see {@link POST_DomainsClaimsNotices_Request_Body} - Request body type
|
|
3489
|
+
*/
|
|
3490
|
+
export type POST_DomainsClaimsNotices_Request = {
|
|
3491
|
+
requestBody: ClaimsNoticesRequest;
|
|
3492
|
+
}
|
|
3493
|
+
/**
|
|
3494
|
+
* Request body for POST /v1/domains/claims-notices
|
|
3495
|
+
*
|
|
3496
|
+
* @remarks
|
|
3497
|
+
* This type defines the request body structure for the POST /v1/domains/claims-notices endpoint.
|
|
3498
|
+
* It provides type safety for the request body as defined in the OpenAPI specification.
|
|
3499
|
+
*
|
|
3500
|
+
* @example
|
|
3501
|
+
* Use this type to ensure type safety for request body structure.
|
|
3502
|
+
*
|
|
3503
|
+
* @path /v1/domains/claims-notices
|
|
3504
|
+
*/
|
|
3505
|
+
export type POST_DomainsClaimsNotices_Request_Body = POST_DomainsClaimsNotices_Request['requestBody'];
|
|
3506
|
+
|
|
3467
3507
|
/**
|
|
3468
3508
|
* Request type for DELETE DomainsDomainReference endpoint
|
|
3469
3509
|
*
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray, TldResponseShortArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import { Context, Problem, HTTPValidationError, ConversationList, Conversation, ContextList, MessageList, Message, MemoryFactList, MemoryFact, Pagination_EmailForwardLog, Pagination_ObjectLog, Pagination_RequestHistory, DomainAvailabilityList, Pagination_Contact, ContactSchema, Pagination_ContactAttributeSet, ContactAttributeSet, Contact, ContactAttributeLink, ContactVerification, Pagination_DnsZone, DnsZone, DnsChanges, DomainForwardZone, EmailForwardZone, Pagination_DomainForwardZone, Pagination_EmailForwardZone, DnsZoneSummary, Pagination_DomainForward, DomainForward, DomainForwardSet, DomainForwardMetrics, DomainForwardBrowserStats, DomainForwardGeoStats, DomainForwardPlatformStats, DomainForwardReferrerStats, DomainForwardStatusCodeStats, DomainForwardMetricsTimeSeries, DomainForwardUserAgentStats, DomainForwardVisitsByKey, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, DomainWithdraw, RequestAuthcode, DomainTransit, RequestAuthcode2, Pagination_EmailForward, EmailForward, EmailForwardAlias, EmailForwardMetrics, Pagination_Event, EventSchema, Job, Pagination_JobBatchMetadata, CreateJobBatch, JobBatchStatus, Pagination_Job, Pagination_Organization, Organization, OrganizationWithBillingData, Pagination_Invoice, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_UserPublic, Pagination_Parking, ParkingMetrics, ParkingTotalMetrics, ParkingSignup, ParkingSignupStatus, PublicReportListRes, PublicReportRes, Pagination_Tag, Tag, ObjectTagChanges2, TldSpecification, UserPublic, UserPublicWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
37
|
+
import { Context, Problem, HTTPValidationError, ConversationList, Conversation, ContextList, MessageList, Message, MemoryFactList, MemoryFact, Pagination_EmailForwardLog, Pagination_ObjectLog, Pagination_RequestHistory, DomainAvailabilityList, Pagination_Contact, ContactSchema, Pagination_ContactAttributeSet, ContactAttributeSet, Contact, ContactAttributeLink, ContactVerification, Pagination_DnsZone, DnsZone, DnsChanges, DomainForwardZone, EmailForwardZone, Pagination_DomainForwardZone, Pagination_EmailForwardZone, DnsZoneSummary, Pagination_DomainForward, DomainForward, DomainForwardSet, DomainForwardMetrics, DomainForwardBrowserStats, DomainForwardGeoStats, DomainForwardPlatformStats, DomainForwardReferrerStats, DomainForwardStatusCodeStats, DomainForwardMetricsTimeSeries, DomainForwardUserAgentStats, DomainForwardVisitsByKey, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, ClaimsNotices, DomainSummary, DomainWithdraw, RequestAuthcode, DomainTransit, RequestAuthcode2, Pagination_EmailForward, EmailForward, EmailForwardAlias, EmailForwardMetrics, Pagination_Event, EventSchema, Job, Pagination_JobBatchMetadata, CreateJobBatch, JobBatchStatus, Pagination_Job, Pagination_Organization, Organization, OrganizationWithBillingData, Pagination_Invoice, GetPrices, Pagination_BillingTransaction, BillingTransaction, IpRestriction, Pagination_UserPublic, Pagination_Parking, ParkingMetrics, ParkingTotalMetrics, ParkingSignup, ParkingSignupStatus, PublicReportListRes, PublicReportRes, Pagination_Tag, Tag, ObjectTagChanges2, TldSpecification, UserPublic, UserPublicWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Response types for GET AiConciergeContextsByContextId endpoint
|
|
@@ -6741,7 +6741,10 @@ export type GET_Domains_Response_422 = HTTPValidationError
|
|
|
6741
6741
|
* Response types for POST Domains endpoint
|
|
6742
6742
|
*
|
|
6743
6743
|
* Create a domain
|
|
6744
|
-
* Registers a new domain
|
|
6744
|
+
* Registers a new domain.
|
|
6745
|
+
|
|
6746
|
+
- **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.
|
|
6747
|
+
- **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.
|
|
6745
6748
|
*
|
|
6746
6749
|
* @remarks
|
|
6747
6750
|
* This type defines all possible response structures for the POST Domains endpoint.
|
|
@@ -6757,10 +6760,11 @@ export type GET_Domains_Response_422 = HTTPValidationError
|
|
|
6757
6760
|
* @see {@link POST_Domains_Response_404} - 404 response type
|
|
6758
6761
|
* @see {@link POST_Domains_Response_409} - 409 response type
|
|
6759
6762
|
* @see {@link POST_Domains_Response_422} - 422 response type
|
|
6763
|
+
* @see {@link POST_Domains_Response_503} - 503 response type
|
|
6760
6764
|
*
|
|
6761
6765
|
|
|
6762
6766
|
*/
|
|
6763
|
-
export type POST_Domains_Response = POST_Domains_Response_201 | POST_Domains_Response_400 | POST_Domains_Response_404 | POST_Domains_Response_409 | POST_Domains_Response_422;
|
|
6767
|
+
export type POST_Domains_Response = POST_Domains_Response_201 | POST_Domains_Response_400 | POST_Domains_Response_404 | POST_Domains_Response_409 | POST_Domains_Response_422 | POST_Domains_Response_503;
|
|
6764
6768
|
|
|
6765
6769
|
/**
|
|
6766
6770
|
* 201 response for POST Domains endpoint
|
|
@@ -6843,9 +6847,26 @@ export type POST_Domains_Response_409 = Problem
|
|
|
6843
6847
|
* @path /v1/domains
|
|
6844
6848
|
*
|
|
6845
6849
|
* @see {@link POST_Domains_Response} - The main response type definition
|
|
6846
|
-
* @see {@link
|
|
6850
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6851
|
+
*/
|
|
6852
|
+
export type POST_Domains_Response_422 = Problem
|
|
6853
|
+
|
|
6854
|
+
/**
|
|
6855
|
+
* 503 response for POST Domains endpoint
|
|
6856
|
+
*
|
|
6857
|
+
* @remarks
|
|
6858
|
+
* This type defines the response structure for the 503 status code
|
|
6859
|
+
* of the POST Domains endpoint.
|
|
6860
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6861
|
+
*
|
|
6862
|
+
|
|
6863
|
+
*
|
|
6864
|
+
* @path /v1/domains
|
|
6865
|
+
*
|
|
6866
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
6867
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6847
6868
|
*/
|
|
6848
|
-
export type
|
|
6869
|
+
export type POST_Domains_Response_503 = Problem
|
|
6849
6870
|
|
|
6850
6871
|
/**
|
|
6851
6872
|
* Response types for DELETE DomainsByDomainReference endpoint
|
|
@@ -7601,9 +7622,9 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_422 = HTTPValidatio
|
|
|
7601
7622
|
* 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
7623
|
|
|
7603
7624
|
For each domain the response includes:
|
|
7604
|
-
- **Availability**
|
|
7605
|
-
- **
|
|
7606
|
-
- **
|
|
7625
|
+
- **Availability** - whether the domain can be registered, and the registry's reason if not.
|
|
7626
|
+
- **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.
|
|
7627
|
+
- **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.
|
|
7607
7628
|
|
|
7608
7629
|
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.
|
|
7609
7630
|
*
|
|
@@ -7678,6 +7699,98 @@ include a mix of TLDs.
|
|
|
7678
7699
|
*/
|
|
7679
7700
|
export type GET_DomainsCheck_Response_422 = HTTPValidationError
|
|
7680
7701
|
|
|
7702
|
+
/**
|
|
7703
|
+
* Response types for POST DomainsClaimsNotices endpoint
|
|
7704
|
+
*
|
|
7705
|
+
* Retrieve claims notices from claim keys
|
|
7706
|
+
* 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.
|
|
7707
|
+
*
|
|
7708
|
+
* @remarks
|
|
7709
|
+
* This type defines all possible response structures for the POST DomainsClaimsNotices endpoint.
|
|
7710
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
7711
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
7712
|
+
*
|
|
7713
|
+
|
|
7714
|
+
*
|
|
7715
|
+
* @path /v1/domains/claims-notices
|
|
7716
|
+
*
|
|
7717
|
+
* @see {@link POST_DomainsClaimsNotices_Response_200} - 200 response type
|
|
7718
|
+
* @see {@link POST_DomainsClaimsNotices_Response_404} - 404 response type
|
|
7719
|
+
* @see {@link POST_DomainsClaimsNotices_Response_422} - 422 response type
|
|
7720
|
+
* @see {@link POST_DomainsClaimsNotices_Response_503} - 503 response type
|
|
7721
|
+
*
|
|
7722
|
+
|
|
7723
|
+
*/
|
|
7724
|
+
export type POST_DomainsClaimsNotices_Response = POST_DomainsClaimsNotices_Response_200 | POST_DomainsClaimsNotices_Response_404 | POST_DomainsClaimsNotices_Response_422 | POST_DomainsClaimsNotices_Response_503;
|
|
7725
|
+
|
|
7726
|
+
/**
|
|
7727
|
+
* 200 response for POST DomainsClaimsNotices endpoint
|
|
7728
|
+
*
|
|
7729
|
+
* @remarks
|
|
7730
|
+
* This type defines the response structure for the 200 status code
|
|
7731
|
+
* of the POST DomainsClaimsNotices endpoint.
|
|
7732
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
7733
|
+
*
|
|
7734
|
+
|
|
7735
|
+
*
|
|
7736
|
+
* @path /v1/domains/claims-notices
|
|
7737
|
+
*
|
|
7738
|
+
* @see {@link POST_DomainsClaimsNotices_Response} - The main response type definition
|
|
7739
|
+
* @see {@link ClaimsNotices} - The actual schema type definition
|
|
7740
|
+
*/
|
|
7741
|
+
export type POST_DomainsClaimsNotices_Response_200 = ClaimsNotices
|
|
7742
|
+
|
|
7743
|
+
/**
|
|
7744
|
+
* 404 response for POST DomainsClaimsNotices endpoint
|
|
7745
|
+
*
|
|
7746
|
+
* @remarks
|
|
7747
|
+
* This type defines the response structure for the 404 status code
|
|
7748
|
+
* of the POST DomainsClaimsNotices endpoint.
|
|
7749
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
7750
|
+
*
|
|
7751
|
+
|
|
7752
|
+
*
|
|
7753
|
+
* @path /v1/domains/claims-notices
|
|
7754
|
+
*
|
|
7755
|
+
* @see {@link POST_DomainsClaimsNotices_Response} - The main response type definition
|
|
7756
|
+
* @see {@link Problem} - The actual schema type definition
|
|
7757
|
+
*/
|
|
7758
|
+
export type POST_DomainsClaimsNotices_Response_404 = Problem
|
|
7759
|
+
|
|
7760
|
+
/**
|
|
7761
|
+
* 422 response for POST DomainsClaimsNotices endpoint
|
|
7762
|
+
*
|
|
7763
|
+
* @remarks
|
|
7764
|
+
* This type defines the response structure for the 422 status code
|
|
7765
|
+
* of the POST DomainsClaimsNotices endpoint.
|
|
7766
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
7767
|
+
*
|
|
7768
|
+
|
|
7769
|
+
*
|
|
7770
|
+
* @path /v1/domains/claims-notices
|
|
7771
|
+
*
|
|
7772
|
+
* @see {@link POST_DomainsClaimsNotices_Response} - The main response type definition
|
|
7773
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
7774
|
+
*/
|
|
7775
|
+
export type POST_DomainsClaimsNotices_Response_422 = HTTPValidationError
|
|
7776
|
+
|
|
7777
|
+
/**
|
|
7778
|
+
* 503 response for POST DomainsClaimsNotices endpoint
|
|
7779
|
+
*
|
|
7780
|
+
* @remarks
|
|
7781
|
+
* This type defines the response structure for the 503 status code
|
|
7782
|
+
* of the POST DomainsClaimsNotices endpoint.
|
|
7783
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
7784
|
+
*
|
|
7785
|
+
|
|
7786
|
+
*
|
|
7787
|
+
* @path /v1/domains/claims-notices
|
|
7788
|
+
*
|
|
7789
|
+
* @see {@link POST_DomainsClaimsNotices_Response} - The main response type definition
|
|
7790
|
+
* @see {@link Problem} - The actual schema type definition
|
|
7791
|
+
*/
|
|
7792
|
+
export type POST_DomainsClaimsNotices_Response_503 = Problem
|
|
7793
|
+
|
|
7681
7794
|
/**
|
|
7682
7795
|
* Response types for GET DomainsSummary endpoint
|
|
7683
7796
|
*
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* This file is auto-generated from the OpenAPI specification.
|
|
22
22
|
* Do not edit manually.
|
|
23
23
|
*/
|
|
24
|
-
import { ContactIncludeField, ZoneIncludeField, DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, AttributeCondition, DomainContactType, ContactCreateBulkInstance, ContactAttributeLinkDetail, TagEnriched, ContactAttributeDefinition, PostalAddressType, ContactConfigBase, Context, Conversation, DuplicateCommand, CommandError, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsZoneCreateBulkInstance, DnsRecordPatchOp, DnsZonePatchRecordsBulkInstance, DnsRrsetPatchOp, DnsZonePatchRrsetsBulkInstance, DnsRrset, DnsZoneUpdateBulkInstance, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainCreateBulkInstance, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectRequest, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainTransferBulkInstance, DomainClientStatus, DomainUpdateBulkInstance, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAliasMetrics, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LegalRequirementOperationType, LocalPresenceRequirementType, MemoryFact, Message, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactAttributeSet, Contact, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, JobBatchMetadata, Job, ObjectLog, Organization, Parking, RequestHistory, Tag, UserPublic, ParkingCreateBulkInstance, ParkingDeleteBulkInstance, ParkingDisableBulkInstance, ParkingEnableBulkInstance, Period, Permission, PremiumAffectsType, PremiumPriceEntryRes, PremiumPricingAction, PublicReportRes, Relation, LegalRequirementBase, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
24
|
+
import { ContactIncludeField, ZoneIncludeField, DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, TmClaim, ClaimsNotice, AttributeCondition, DomainContactType, ContactCreateBulkInstance, ContactAttributeLinkDetail, TagEnriched, ContactAttributeDefinition, PostalAddressType, ContactConfigBase, Context, Conversation, DuplicateCommand, CommandError, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsZoneCreateBulkInstance, DnsRecordPatchOp, DnsZonePatchRecordsBulkInstance, DnsRrsetPatchOp, DnsZonePatchRrsetsBulkInstance, DnsRrset, DnsZoneUpdateBulkInstance, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainCreateBulkInstance, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectRequest, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainTransferBulkInstance, DomainClientStatus, DomainUpdateBulkInstance, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAliasMetrics, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LegalRequirementOperationType, LocalPresenceRequirementType, MemoryFact, Message, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactAttributeSet, Contact, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, JobBatchMetadata, Job, ObjectLog, Organization, Parking, RequestHistory, Tag, UserPublic, ParkingCreateBulkInstance, ParkingDeleteBulkInstance, ParkingDisableBulkInstance, ParkingEnableBulkInstance, Period, Permission, PremiumAffectsType, PremiumPriceEntryRes, PremiumPricingAction, PublicReportRes, Relation, LegalRequirementBase, TldBase, TmClassDesc, TmContact, TmHolder, TmCourt, TmUdrp, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* ContactIncludeField
|
|
@@ -205,6 +205,34 @@ export type TagTypeArray = TagType[];
|
|
|
205
205
|
* @see {@link TldResponseShort} - The individual TldResponseShort type definition
|
|
206
206
|
*/
|
|
207
207
|
export type TldResponseShortArray = TldResponseShort[];
|
|
208
|
+
/**
|
|
209
|
+
* TmClaim. A single trademark claim within a notice (claimType in RFC 9361)
|
|
210
|
+
*
|
|
211
|
+
* @remarks
|
|
212
|
+
* Array type for TmClaim objects. Used when the API returns a collection of TmClaim instances.
|
|
213
|
+
*
|
|
214
|
+
* @example
|
|
215
|
+
* ```typescript
|
|
216
|
+
* const items: TmClaimArray = await api.getTmClaims();
|
|
217
|
+
* ```
|
|
218
|
+
*
|
|
219
|
+
* @see {@link TmClaim} - The individual TmClaim type definition
|
|
220
|
+
*/
|
|
221
|
+
export type TmClaimArray = TmClaim[];
|
|
222
|
+
/**
|
|
223
|
+
* ClaimsNotice
|
|
224
|
+
*
|
|
225
|
+
* @remarks
|
|
226
|
+
* Array type for ClaimsNotice objects. Used when the API returns a collection of ClaimsNotice instances.
|
|
227
|
+
*
|
|
228
|
+
* @example
|
|
229
|
+
* ```typescript
|
|
230
|
+
* const items: ClaimsNoticeArray = await api.getClaimsNotices();
|
|
231
|
+
* ```
|
|
232
|
+
*
|
|
233
|
+
* @see {@link ClaimsNotice} - The individual ClaimsNotice type definition
|
|
234
|
+
*/
|
|
235
|
+
export type ClaimsNoticeArray = ClaimsNotice[];
|
|
208
236
|
/**
|
|
209
237
|
* AttributeCondition
|
|
210
238
|
*
|
|
@@ -1535,6 +1563,76 @@ export type LegalRequirementBaseArray = LegalRequirementBase[];
|
|
|
1535
1563
|
* @see {@link TldBase} - The individual TldBase type definition
|
|
1536
1564
|
*/
|
|
1537
1565
|
export type TldBaseArray = TldBase[];
|
|
1566
|
+
/**
|
|
1567
|
+
* TmClassDesc. Nice Classification description (classDescType in RFC 9361)
|
|
1568
|
+
*
|
|
1569
|
+
* @remarks
|
|
1570
|
+
* Array type for TmClassDesc objects. Used when the API returns a collection of TmClassDesc instances.
|
|
1571
|
+
*
|
|
1572
|
+
* @example
|
|
1573
|
+
* ```typescript
|
|
1574
|
+
* const items: TmClassDescArray = await api.getTmClassDescs();
|
|
1575
|
+
* ```
|
|
1576
|
+
*
|
|
1577
|
+
* @see {@link TmClassDesc} - The individual TmClassDesc type definition
|
|
1578
|
+
*/
|
|
1579
|
+
export type TmClassDescArray = TmClassDesc[];
|
|
1580
|
+
/**
|
|
1581
|
+
* TmContact. Contact / representative of the mark (contactType in RFC 9361)
|
|
1582
|
+
*
|
|
1583
|
+
* @remarks
|
|
1584
|
+
* Array type for TmContact objects. Used when the API returns a collection of TmContact instances.
|
|
1585
|
+
*
|
|
1586
|
+
* @example
|
|
1587
|
+
* ```typescript
|
|
1588
|
+
* const items: TmContactArray = await api.getTmContacts();
|
|
1589
|
+
* ```
|
|
1590
|
+
*
|
|
1591
|
+
* @see {@link TmContact} - The individual TmContact type definition
|
|
1592
|
+
*/
|
|
1593
|
+
export type TmContactArray = TmContact[];
|
|
1594
|
+
/**
|
|
1595
|
+
* TmHolder. Holder of the mark (holderType in RFC 9361). name or org must be set.
|
|
1596
|
+
*
|
|
1597
|
+
* @remarks
|
|
1598
|
+
* Array type for TmHolder objects. Used when the API returns a collection of TmHolder instances.
|
|
1599
|
+
*
|
|
1600
|
+
* @example
|
|
1601
|
+
* ```typescript
|
|
1602
|
+
* const items: TmHolderArray = await api.getTmHolders();
|
|
1603
|
+
* ```
|
|
1604
|
+
*
|
|
1605
|
+
* @see {@link TmHolder} - The individual TmHolder type definition
|
|
1606
|
+
*/
|
|
1607
|
+
export type TmHolderArray = TmHolder[];
|
|
1608
|
+
/**
|
|
1609
|
+
* TmCourt. Court resolution reference (courtType in RFC 9361)
|
|
1610
|
+
*
|
|
1611
|
+
* @remarks
|
|
1612
|
+
* Array type for TmCourt objects. Used when the API returns a collection of TmCourt instances.
|
|
1613
|
+
*
|
|
1614
|
+
* @example
|
|
1615
|
+
* ```typescript
|
|
1616
|
+
* const items: TmCourtArray = await api.getTmCourts();
|
|
1617
|
+
* ```
|
|
1618
|
+
*
|
|
1619
|
+
* @see {@link TmCourt} - The individual TmCourt type definition
|
|
1620
|
+
*/
|
|
1621
|
+
export type TmCourtArray = TmCourt[];
|
|
1622
|
+
/**
|
|
1623
|
+
* TmUdrp. UDRP case reference (udrpType in RFC 9361)
|
|
1624
|
+
*
|
|
1625
|
+
* @remarks
|
|
1626
|
+
* Array type for TmUdrp objects. Used when the API returns a collection of TmUdrp instances.
|
|
1627
|
+
*
|
|
1628
|
+
* @example
|
|
1629
|
+
* ```typescript
|
|
1630
|
+
* const items: TmUdrpArray = await api.getTmUdrps();
|
|
1631
|
+
* ```
|
|
1632
|
+
*
|
|
1633
|
+
* @see {@link TmUdrp} - The individual TmUdrp type definition
|
|
1634
|
+
*/
|
|
1635
|
+
export type TmUdrpArray = TmUdrp[];
|
|
1538
1636
|
/**
|
|
1539
1637
|
* PostTransferRequirements
|
|
1540
1638
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -266,6 +266,54 @@ export type BrowserStatsBucket = components['schemas']['BrowserStatsBucket'];
|
|
|
266
266
|
* @see {@link components} - The OpenAPI components schema definition
|
|
267
267
|
*/
|
|
268
268
|
export type BulkObjectTagChanges = components['schemas']['BulkObjectTagChanges'];
|
|
269
|
+
/**
|
|
270
|
+
* ClaimsNotice
|
|
271
|
+
*
|
|
272
|
+
* @remarks
|
|
273
|
+
* Type alias for the `ClaimsNotice` OpenAPI schema.
|
|
274
|
+
* This type represents claimsnotice data structures used in API requests and responses.
|
|
275
|
+
*
|
|
276
|
+
* @example
|
|
277
|
+
* ```typescript
|
|
278
|
+
* const response = await api.getClaimsNotice();
|
|
279
|
+
* const item: ClaimsNotice = response.results;
|
|
280
|
+
* ```
|
|
281
|
+
*
|
|
282
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
283
|
+
*/
|
|
284
|
+
export type ClaimsNotice = components['schemas']['ClaimsNotice'];
|
|
285
|
+
/**
|
|
286
|
+
* ClaimsNoticesRequest
|
|
287
|
+
*
|
|
288
|
+
* @remarks
|
|
289
|
+
* Type alias for the `ClaimsNoticesRequest` OpenAPI schema.
|
|
290
|
+
* This type represents claimsnoticesrequest data structures used in API requests and responses.
|
|
291
|
+
*
|
|
292
|
+
* @example
|
|
293
|
+
* ```typescript
|
|
294
|
+
* const response = await api.getClaimsNoticesRequest();
|
|
295
|
+
* const item: ClaimsNoticesRequest = response.results;
|
|
296
|
+
* ```
|
|
297
|
+
*
|
|
298
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
299
|
+
*/
|
|
300
|
+
export type ClaimsNoticesRequest = components['schemas']['ClaimsNoticesRequest'];
|
|
301
|
+
/**
|
|
302
|
+
* ClaimsNoticesResponse
|
|
303
|
+
*
|
|
304
|
+
* @remarks
|
|
305
|
+
* Type alias for the `ClaimsNoticesResponse` OpenAPI schema.
|
|
306
|
+
* This type represents claimsnoticesresponse data structures used in API requests and responses.
|
|
307
|
+
*
|
|
308
|
+
* @example
|
|
309
|
+
* ```typescript
|
|
310
|
+
* const response = await api.getClaimsNotices();
|
|
311
|
+
* const item: ClaimsNotices = response.results;
|
|
312
|
+
* ```
|
|
313
|
+
*
|
|
314
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
315
|
+
*/
|
|
316
|
+
export type ClaimsNotices = components['schemas']['ClaimsNoticesResponse'];
|
|
269
317
|
/**
|
|
270
318
|
* CommandError
|
|
271
319
|
*
|
|
@@ -682,6 +730,22 @@ export type ContactSchema = components['schemas']['ContactSchema'];
|
|
|
682
730
|
* @see {@link components} - The OpenAPI components schema definition
|
|
683
731
|
*/
|
|
684
732
|
export type ContactSortField = components['schemas']['ContactSortField'];
|
|
733
|
+
/**
|
|
734
|
+
* ContactType
|
|
735
|
+
*
|
|
736
|
+
* @remarks
|
|
737
|
+
* Type alias for the `ContactType` OpenAPI schema.
|
|
738
|
+
* This type represents contacttype data structures used in API requests and responses.
|
|
739
|
+
*
|
|
740
|
+
* @example
|
|
741
|
+
* ```typescript
|
|
742
|
+
* const response = await api.getContactType();
|
|
743
|
+
* const item: ContactType = response.results;
|
|
744
|
+
* ```
|
|
745
|
+
*
|
|
746
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
747
|
+
*/
|
|
748
|
+
export type ContactType = components['schemas']['ContactType'];
|
|
685
749
|
/**
|
|
686
750
|
* ContactVerificationApiResponse
|
|
687
751
|
*
|
|
@@ -3503,6 +3567,22 @@ export type HTTPMethod = components['schemas']['HTTPMethod'];
|
|
|
3503
3567
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3504
3568
|
*/
|
|
3505
3569
|
export type HTTPValidationError = components['schemas']['HTTPValidationError'];
|
|
3570
|
+
/**
|
|
3571
|
+
* HolderEntitlement
|
|
3572
|
+
*
|
|
3573
|
+
* @remarks
|
|
3574
|
+
* Type alias for the `HolderEntitlement` OpenAPI schema.
|
|
3575
|
+
* This type represents holderentitlement data structures used in API requests and responses.
|
|
3576
|
+
*
|
|
3577
|
+
* @example
|
|
3578
|
+
* ```typescript
|
|
3579
|
+
* const response = await api.getHolderEntitlement();
|
|
3580
|
+
* const item: HolderEntitlement = response.results;
|
|
3581
|
+
* ```
|
|
3582
|
+
*
|
|
3583
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3584
|
+
*/
|
|
3585
|
+
export type HolderEntitlement = components['schemas']['HolderEntitlement'];
|
|
3506
3586
|
/**
|
|
3507
3587
|
* HostSchema
|
|
3508
3588
|
*
|
|
@@ -6228,6 +6308,150 @@ export type TldResponseShort = components['schemas']['TldResponseShort'];
|
|
|
6228
6308
|
* @see {@link components} - The OpenAPI components schema definition
|
|
6229
6309
|
*/
|
|
6230
6310
|
export type TldSpecification = components['schemas']['TldSpecificationResponse'];
|
|
6311
|
+
/**
|
|
6312
|
+
* TmAddr. Address information (addrType in RFC 9361)
|
|
6313
|
+
*
|
|
6314
|
+
* @remarks
|
|
6315
|
+
* Type alias for the `TmAddr` OpenAPI schema.
|
|
6316
|
+
* This type represents tmaddr data structures used in API requests and responses.
|
|
6317
|
+
*
|
|
6318
|
+
* @example
|
|
6319
|
+
* ```typescript
|
|
6320
|
+
* const response = await api.getTmAddr();
|
|
6321
|
+
* const item: TmAddr = response.results;
|
|
6322
|
+
* ```
|
|
6323
|
+
*
|
|
6324
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6325
|
+
*/
|
|
6326
|
+
export type TmAddr = components['schemas']['TmAddr'];
|
|
6327
|
+
/**
|
|
6328
|
+
* TmClaim. A single trademark claim within a notice (claimType in RFC 9361)
|
|
6329
|
+
*
|
|
6330
|
+
* @remarks
|
|
6331
|
+
* Type alias for the `TmClaim` OpenAPI schema.
|
|
6332
|
+
* This type represents tmclaim data structures used in API requests and responses.
|
|
6333
|
+
*
|
|
6334
|
+
* @example
|
|
6335
|
+
* ```typescript
|
|
6336
|
+
* const response = await api.getTmClaim();
|
|
6337
|
+
* const item: TmClaim = response.results;
|
|
6338
|
+
* ```
|
|
6339
|
+
*
|
|
6340
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6341
|
+
*/
|
|
6342
|
+
export type TmClaim = components['schemas']['TmClaim'];
|
|
6343
|
+
/**
|
|
6344
|
+
* TmClassDesc. Nice Classification description (classDescType in RFC 9361)
|
|
6345
|
+
*
|
|
6346
|
+
* @remarks
|
|
6347
|
+
* Type alias for the `TmClassDesc` OpenAPI schema.
|
|
6348
|
+
* This type represents tmclassdesc data structures used in API requests and responses.
|
|
6349
|
+
*
|
|
6350
|
+
* @example
|
|
6351
|
+
* ```typescript
|
|
6352
|
+
* const response = await api.getTmClassDesc();
|
|
6353
|
+
* const item: TmClassDesc = response.results;
|
|
6354
|
+
* ```
|
|
6355
|
+
*
|
|
6356
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6357
|
+
*/
|
|
6358
|
+
export type TmClassDesc = components['schemas']['TmClassDesc'];
|
|
6359
|
+
/**
|
|
6360
|
+
* TmContact. Contact / representative of the mark (contactType in RFC 9361)
|
|
6361
|
+
*
|
|
6362
|
+
* @remarks
|
|
6363
|
+
* Type alias for the `TmContact` OpenAPI schema.
|
|
6364
|
+
* This type represents tmcontact data structures used in API requests and responses.
|
|
6365
|
+
*
|
|
6366
|
+
* @example
|
|
6367
|
+
* ```typescript
|
|
6368
|
+
* const response = await api.getTmContact();
|
|
6369
|
+
* const item: TmContact = response.results;
|
|
6370
|
+
* ```
|
|
6371
|
+
*
|
|
6372
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6373
|
+
*/
|
|
6374
|
+
export type TmContact = components['schemas']['TmContact'];
|
|
6375
|
+
/**
|
|
6376
|
+
* TmCourt. Court resolution reference (courtType in RFC 9361)
|
|
6377
|
+
*
|
|
6378
|
+
* @remarks
|
|
6379
|
+
* Type alias for the `TmCourt` OpenAPI schema.
|
|
6380
|
+
* This type represents tmcourt data structures used in API requests and responses.
|
|
6381
|
+
*
|
|
6382
|
+
* @example
|
|
6383
|
+
* ```typescript
|
|
6384
|
+
* const response = await api.getTmCourt();
|
|
6385
|
+
* const item: TmCourt = response.results;
|
|
6386
|
+
* ```
|
|
6387
|
+
*
|
|
6388
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6389
|
+
*/
|
|
6390
|
+
export type TmCourt = components['schemas']['TmCourt'];
|
|
6391
|
+
/**
|
|
6392
|
+
* TmHolder. Holder of the mark (holderType in RFC 9361). name or org must be set.
|
|
6393
|
+
*
|
|
6394
|
+
* @remarks
|
|
6395
|
+
* Type alias for the `TmHolder` OpenAPI schema.
|
|
6396
|
+
* This type represents tmholder data structures used in API requests and responses.
|
|
6397
|
+
*
|
|
6398
|
+
* @example
|
|
6399
|
+
* ```typescript
|
|
6400
|
+
* const response = await api.getTmHolder();
|
|
6401
|
+
* const item: TmHolder = response.results;
|
|
6402
|
+
* ```
|
|
6403
|
+
*
|
|
6404
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6405
|
+
*/
|
|
6406
|
+
export type TmHolder = components['schemas']['TmHolder'];
|
|
6407
|
+
/**
|
|
6408
|
+
* TmJurDesc. Jurisdiction description (jurDescType in RFC 9361)
|
|
6409
|
+
*
|
|
6410
|
+
* @remarks
|
|
6411
|
+
* Type alias for the `TmJurDesc` OpenAPI schema.
|
|
6412
|
+
* This type represents tmjurdesc data structures used in API requests and responses.
|
|
6413
|
+
*
|
|
6414
|
+
* @example
|
|
6415
|
+
* ```typescript
|
|
6416
|
+
* const response = await api.getTmJurDesc();
|
|
6417
|
+
* const item: TmJurDesc = response.results;
|
|
6418
|
+
* ```
|
|
6419
|
+
*
|
|
6420
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6421
|
+
*/
|
|
6422
|
+
export type TmJurDesc = components['schemas']['TmJurDesc'];
|
|
6423
|
+
/**
|
|
6424
|
+
* TmNotExactMatch. Signals claim was added by non-exact match rules (noExactMatchType in RFC 9361)
|
|
6425
|
+
*
|
|
6426
|
+
* @remarks
|
|
6427
|
+
* Type alias for the `TmNotExactMatch` OpenAPI schema.
|
|
6428
|
+
* This type represents tmnotexactmatch data structures used in API requests and responses.
|
|
6429
|
+
*
|
|
6430
|
+
* @example
|
|
6431
|
+
* ```typescript
|
|
6432
|
+
* const response = await api.getTmNotExactMatch();
|
|
6433
|
+
* const item: TmNotExactMatch = response.results;
|
|
6434
|
+
* ```
|
|
6435
|
+
*
|
|
6436
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6437
|
+
*/
|
|
6438
|
+
export type TmNotExactMatch = components['schemas']['TmNotExactMatch'];
|
|
6439
|
+
/**
|
|
6440
|
+
* TmUdrp. UDRP case reference (udrpType in RFC 9361)
|
|
6441
|
+
*
|
|
6442
|
+
* @remarks
|
|
6443
|
+
* Type alias for the `TmUdrp` OpenAPI schema.
|
|
6444
|
+
* This type represents tmudrp data structures used in API requests and responses.
|
|
6445
|
+
*
|
|
6446
|
+
* @example
|
|
6447
|
+
* ```typescript
|
|
6448
|
+
* const response = await api.getTmUdrp();
|
|
6449
|
+
* const item: TmUdrp = response.results;
|
|
6450
|
+
* ```
|
|
6451
|
+
*
|
|
6452
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6453
|
+
*/
|
|
6454
|
+
export type TmUdrp = components['schemas']['TmUdrp'];
|
|
6231
6455
|
/**
|
|
6232
6456
|
* TrademarkClaimsBase
|
|
6233
6457
|
*
|