@opusdns/api 0.304.0 → 0.306.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 +255 -1
- package/src/helpers/keys.ts +454 -0
- package/src/helpers/requests.d.ts +56 -1
- package/src/helpers/responses.d.ts +114 -1
- package/src/helpers/schemas-arrays.d.ts +57 -29
- package/src/helpers/schemas.d.ts +128 -0
- package/src/openapi.yaml +295 -4
- package/src/schema.d.ts +163 -0
|
@@ -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, ClaimsNotices, DomainSummary, DomainWithdraw, RequestAuthcode, DomainTransit, RequestAuthcode2, Pagination_EmailForward, EmailForward, EmailForwardAlias, EmailForwardMetrics, Pagination_Event, EventResponse, Job, Pagination_JobBatchMetadata, CreateJobBatch, JobBatchStatus, Pagination_Job, JobBatchRetry, 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, ContactAttestRes, 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, EventResponse, Job, Pagination_JobBatchMetadata, CreateJobBatch, JobBatchStatus, Pagination_Job, JobBatchRetry, 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
|
|
@@ -2201,6 +2201,7 @@ export type POST_AvailabilityStream_Response_422 = HTTPValidationError
|
|
|
2201
2201
|
|
|
2202
2202
|
*
|
|
2203
2203
|
* @path /v1/contacts
|
|
2204
|
+
* @param status_tags (query) - Filter by status tag types. Can be specified multiple times.
|
|
2204
2205
|
* @param tag_ids (query) - Filter by user tag IDs. Can be specified multiple times.
|
|
2205
2206
|
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
2206
2207
|
*
|
|
@@ -2222,6 +2223,7 @@ export type GET_Contacts_Response = GET_Contacts_Response_200 | GET_Contacts_Res
|
|
|
2222
2223
|
|
|
2223
2224
|
*
|
|
2224
2225
|
* @path /v1/contacts
|
|
2226
|
+
* @param status_tags (query) - Filter by status tag types. Can be specified multiple times.
|
|
2225
2227
|
* @param tag_ids (query) - Filter by user tag IDs. Can be specified multiple times.
|
|
2226
2228
|
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
2227
2229
|
*
|
|
@@ -2241,6 +2243,7 @@ export type GET_Contacts_Response_200 = Pagination_Contact
|
|
|
2241
2243
|
|
|
2242
2244
|
*
|
|
2243
2245
|
* @path /v1/contacts
|
|
2246
|
+
* @param status_tags (query) - Filter by status tag types. Can be specified multiple times.
|
|
2244
2247
|
* @param tag_ids (query) - Filter by user tag IDs. Can be specified multiple times.
|
|
2245
2248
|
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
2246
2249
|
*
|
|
@@ -3254,6 +3257,116 @@ export type PUT_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
3254
3257
|
*/
|
|
3255
3258
|
export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
3256
3259
|
|
|
3260
|
+
/**
|
|
3261
|
+
* Response types for POST ContactsByContactIdVerificationsAttest endpoint
|
|
3262
|
+
*
|
|
3263
|
+
* Attest a contact verification
|
|
3264
|
+
* Submit one or more contact-verification attestations. Returns the per-claim verification state.
|
|
3265
|
+
*
|
|
3266
|
+
* @remarks
|
|
3267
|
+
* This type defines all possible response structures for the POST ContactsByContactIdVerificationsAttest endpoint.
|
|
3268
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
3269
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
3270
|
+
*
|
|
3271
|
+
|
|
3272
|
+
*
|
|
3273
|
+
* @path /v1/contacts/{contact_id}/verifications/attest
|
|
3274
|
+
*
|
|
3275
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response_200} - 200 response type
|
|
3276
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response_400} - 400 response type
|
|
3277
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response_401} - 401 response type
|
|
3278
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response_422} - 422 response type
|
|
3279
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response_502} - 502 response type
|
|
3280
|
+
*
|
|
3281
|
+
|
|
3282
|
+
*/
|
|
3283
|
+
export type POST_ContactsByContactIdVerificationsAttest_Response = POST_ContactsByContactIdVerificationsAttest_Response_200 | POST_ContactsByContactIdVerificationsAttest_Response_400 | POST_ContactsByContactIdVerificationsAttest_Response_401 | POST_ContactsByContactIdVerificationsAttest_Response_422 | POST_ContactsByContactIdVerificationsAttest_Response_502;
|
|
3284
|
+
|
|
3285
|
+
/**
|
|
3286
|
+
* 200 response for POST ContactsByContactIdVerificationsAttest endpoint
|
|
3287
|
+
*
|
|
3288
|
+
* @remarks
|
|
3289
|
+
* This type defines the response structure for the 200 status code
|
|
3290
|
+
* of the POST ContactsByContactIdVerificationsAttest endpoint.
|
|
3291
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3292
|
+
*
|
|
3293
|
+
|
|
3294
|
+
*
|
|
3295
|
+
* @path /v1/contacts/{contact_id}/verifications/attest
|
|
3296
|
+
*
|
|
3297
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response} - The main response type definition
|
|
3298
|
+
* @see {@link ContactAttestRes} - The actual schema type definition
|
|
3299
|
+
*/
|
|
3300
|
+
export type POST_ContactsByContactIdVerificationsAttest_Response_200 = ContactAttestRes
|
|
3301
|
+
|
|
3302
|
+
/**
|
|
3303
|
+
* 400 response for POST ContactsByContactIdVerificationsAttest endpoint
|
|
3304
|
+
*
|
|
3305
|
+
* @remarks
|
|
3306
|
+
* This type defines the response structure for the 400 status code
|
|
3307
|
+
* of the POST ContactsByContactIdVerificationsAttest endpoint.
|
|
3308
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3309
|
+
*
|
|
3310
|
+
|
|
3311
|
+
*
|
|
3312
|
+
* @path /v1/contacts/{contact_id}/verifications/attest
|
|
3313
|
+
*
|
|
3314
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response} - The main response type definition
|
|
3315
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3316
|
+
*/
|
|
3317
|
+
export type POST_ContactsByContactIdVerificationsAttest_Response_400 = Problem
|
|
3318
|
+
|
|
3319
|
+
/**
|
|
3320
|
+
* 401 response for POST ContactsByContactIdVerificationsAttest endpoint
|
|
3321
|
+
*
|
|
3322
|
+
* @remarks
|
|
3323
|
+
* This type defines the response structure for the 401 status code
|
|
3324
|
+
* of the POST ContactsByContactIdVerificationsAttest endpoint.
|
|
3325
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3326
|
+
*
|
|
3327
|
+
|
|
3328
|
+
*
|
|
3329
|
+
* @path /v1/contacts/{contact_id}/verifications/attest
|
|
3330
|
+
*
|
|
3331
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response} - The main response type definition
|
|
3332
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3333
|
+
*/
|
|
3334
|
+
export type POST_ContactsByContactIdVerificationsAttest_Response_401 = Problem
|
|
3335
|
+
|
|
3336
|
+
/**
|
|
3337
|
+
* 422 response for POST ContactsByContactIdVerificationsAttest endpoint
|
|
3338
|
+
*
|
|
3339
|
+
* @remarks
|
|
3340
|
+
* This type defines the response structure for the 422 status code
|
|
3341
|
+
* of the POST ContactsByContactIdVerificationsAttest endpoint.
|
|
3342
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3343
|
+
*
|
|
3344
|
+
|
|
3345
|
+
*
|
|
3346
|
+
* @path /v1/contacts/{contact_id}/verifications/attest
|
|
3347
|
+
*
|
|
3348
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response} - The main response type definition
|
|
3349
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3350
|
+
*/
|
|
3351
|
+
export type POST_ContactsByContactIdVerificationsAttest_Response_422 = HTTPValidationError
|
|
3352
|
+
|
|
3353
|
+
/**
|
|
3354
|
+
* 502 response for POST ContactsByContactIdVerificationsAttest endpoint
|
|
3355
|
+
*
|
|
3356
|
+
* @remarks
|
|
3357
|
+
* This type defines the response structure for the 502 status code
|
|
3358
|
+
* of the POST ContactsByContactIdVerificationsAttest endpoint.
|
|
3359
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
3360
|
+
*
|
|
3361
|
+
|
|
3362
|
+
*
|
|
3363
|
+
* @path /v1/contacts/{contact_id}/verifications/attest
|
|
3364
|
+
*
|
|
3365
|
+
* @see {@link POST_ContactsByContactIdVerificationsAttest_Response} - The main response type definition
|
|
3366
|
+
* @see {@link Problem} - The actual schema type definition
|
|
3367
|
+
*/
|
|
3368
|
+
export type POST_ContactsByContactIdVerificationsAttest_Response_502 = Problem
|
|
3369
|
+
|
|
3257
3370
|
/**
|
|
3258
3371
|
* Response types for GET ContactsVerification endpoint
|
|
3259
3372
|
*
|
|
@@ -21,8 +21,22 @@
|
|
|
21
21
|
* This file is auto-generated from the OpenAPI specification.
|
|
22
22
|
* Do not edit manually.
|
|
23
23
|
*/
|
|
24
|
-
import { ContactIncludeField, ZoneIncludeField,
|
|
24
|
+
import { StatusTagType, ContactIncludeField, ZoneIncludeField, DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, TmClaim, ClaimsNotice, ContactAttestVerificationReq, ContactVerificationStatus, AttributeCondition, DomainContactType, ContactCreateBulkInstance, ContactAttributeLinkDetail, StatusTag, 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, VerificationRegistrantDetails, VerificationClaimType, VerificationDeadline, 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
|
+
/**
|
|
27
|
+
* StatusTagType
|
|
28
|
+
*
|
|
29
|
+
* @remarks
|
|
30
|
+
* Array type for StatusTagType objects. Used when the API returns a collection of StatusTagType instances.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* ```typescript
|
|
34
|
+
* const items: StatusTagTypeArray = await api.getStatusTagTypes();
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @see {@link StatusTagType} - The individual StatusTagType type definition
|
|
38
|
+
*/
|
|
39
|
+
export type StatusTagTypeArray = StatusTagType[];
|
|
26
40
|
/**
|
|
27
41
|
* ContactIncludeField
|
|
28
42
|
*
|
|
@@ -51,20 +65,6 @@ export type ContactIncludeFieldArray = ContactIncludeField[];
|
|
|
51
65
|
* @see {@link ZoneIncludeField} - The individual ZoneIncludeField type definition
|
|
52
66
|
*/
|
|
53
67
|
export type ZoneIncludeFieldArray = ZoneIncludeField[];
|
|
54
|
-
/**
|
|
55
|
-
* StatusTagType
|
|
56
|
-
*
|
|
57
|
-
* @remarks
|
|
58
|
-
* Array type for StatusTagType objects. Used when the API returns a collection of StatusTagType instances.
|
|
59
|
-
*
|
|
60
|
-
* @example
|
|
61
|
-
* ```typescript
|
|
62
|
-
* const items: StatusTagTypeArray = await api.getStatusTagTypes();
|
|
63
|
-
* ```
|
|
64
|
-
*
|
|
65
|
-
* @see {@link StatusTagType} - The individual StatusTagType type definition
|
|
66
|
-
*/
|
|
67
|
-
export type StatusTagTypeArray = StatusTagType[];
|
|
68
68
|
/**
|
|
69
69
|
* DomainIncludeField
|
|
70
70
|
*
|
|
@@ -247,6 +247,34 @@ export type TmClaimArray = TmClaim[];
|
|
|
247
247
|
* @see {@link ClaimsNotice} - The individual ClaimsNotice type definition
|
|
248
248
|
*/
|
|
249
249
|
export type ClaimsNoticeArray = ClaimsNotice[];
|
|
250
|
+
/**
|
|
251
|
+
* ContactAttestVerificationReq
|
|
252
|
+
*
|
|
253
|
+
* @remarks
|
|
254
|
+
* Array type for ContactAttestVerificationReq objects. Used when the API returns a collection of ContactAttestVerificationReq instances.
|
|
255
|
+
*
|
|
256
|
+
* @example
|
|
257
|
+
* ```typescript
|
|
258
|
+
* const items: ContactAttestVerificationReqArray = await api.getContactAttestVerificationReqs();
|
|
259
|
+
* ```
|
|
260
|
+
*
|
|
261
|
+
* @see {@link ContactAttestVerificationReq} - The individual ContactAttestVerificationReq type definition
|
|
262
|
+
*/
|
|
263
|
+
export type ContactAttestVerificationReqArray = ContactAttestVerificationReq[];
|
|
264
|
+
/**
|
|
265
|
+
* ContactVerificationStatus
|
|
266
|
+
*
|
|
267
|
+
* @remarks
|
|
268
|
+
* Array type for ContactVerificationStatus objects. Used when the API returns a collection of ContactVerificationStatus instances.
|
|
269
|
+
*
|
|
270
|
+
* @example
|
|
271
|
+
* ```typescript
|
|
272
|
+
* const items: ContactVerificationStatusArray = await api.getContactVerificationStatuss();
|
|
273
|
+
* ```
|
|
274
|
+
*
|
|
275
|
+
* @see {@link ContactVerificationStatus} - The individual ContactVerificationStatus type definition
|
|
276
|
+
*/
|
|
277
|
+
export type ContactVerificationStatusArray = ContactVerificationStatus[];
|
|
250
278
|
/**
|
|
251
279
|
* AttributeCondition
|
|
252
280
|
*
|
|
@@ -303,6 +331,20 @@ export type ContactCreateBulkInstanceArray = ContactCreateBulkInstance[];
|
|
|
303
331
|
* @see {@link ContactAttributeLinkDetail} - The individual ContactAttributeLinkDetail type definition
|
|
304
332
|
*/
|
|
305
333
|
export type ContactAttributeLinkDetailArray = ContactAttributeLinkDetail[];
|
|
334
|
+
/**
|
|
335
|
+
* StatusTagResponse
|
|
336
|
+
*
|
|
337
|
+
* @remarks
|
|
338
|
+
* Array type for StatusTagResponse objects. Used when the API returns a collection of StatusTagResponse instances.
|
|
339
|
+
*
|
|
340
|
+
* @example
|
|
341
|
+
* ```typescript
|
|
342
|
+
* const items: StatusTagArray = await api.getStatusTags();
|
|
343
|
+
* ```
|
|
344
|
+
*
|
|
345
|
+
* @see {@link StatusTag} - The individual StatusTagResponse type definition
|
|
346
|
+
*/
|
|
347
|
+
export type StatusTagArray = StatusTag[];
|
|
306
348
|
/**
|
|
307
349
|
* TagEnrichedResponse
|
|
308
350
|
*
|
|
@@ -849,20 +891,6 @@ export type DomainContactArray = DomainContact[];
|
|
|
849
891
|
* @see {@link DomainHost} - The individual DomainHostResponse type definition
|
|
850
892
|
*/
|
|
851
893
|
export type DomainHostArray = DomainHost[];
|
|
852
|
-
/**
|
|
853
|
-
* StatusTagResponse
|
|
854
|
-
*
|
|
855
|
-
* @remarks
|
|
856
|
-
* Array type for StatusTagResponse objects. Used when the API returns a collection of StatusTagResponse instances.
|
|
857
|
-
*
|
|
858
|
-
* @example
|
|
859
|
-
* ```typescript
|
|
860
|
-
* const items: StatusTagArray = await api.getStatusTags();
|
|
861
|
-
* ```
|
|
862
|
-
*
|
|
863
|
-
* @see {@link StatusTag} - The individual StatusTagResponse type definition
|
|
864
|
-
*/
|
|
865
|
-
export type StatusTagArray = StatusTag[];
|
|
866
894
|
/**
|
|
867
895
|
* DomainSearchSuggestionWithPrice
|
|
868
896
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -362,6 +362,54 @@ export type ComplianceStatus = components['schemas']['ComplianceStatus'];
|
|
|
362
362
|
* @see {@link components} - The OpenAPI components schema definition
|
|
363
363
|
*/
|
|
364
364
|
export type ConditionOperator = components['schemas']['ConditionOperator'];
|
|
365
|
+
/**
|
|
366
|
+
* ContactAttestReq
|
|
367
|
+
*
|
|
368
|
+
* @remarks
|
|
369
|
+
* Type alias for the `ContactAttestReq` OpenAPI schema.
|
|
370
|
+
* This type represents contactattestreq data structures used in API requests and responses.
|
|
371
|
+
*
|
|
372
|
+
* @example
|
|
373
|
+
* ```typescript
|
|
374
|
+
* const response = await api.getContactAttestReq();
|
|
375
|
+
* const item: ContactAttestReq = response.results;
|
|
376
|
+
* ```
|
|
377
|
+
*
|
|
378
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
379
|
+
*/
|
|
380
|
+
export type ContactAttestReq = components['schemas']['ContactAttestReq'];
|
|
381
|
+
/**
|
|
382
|
+
* ContactAttestRes
|
|
383
|
+
*
|
|
384
|
+
* @remarks
|
|
385
|
+
* Type alias for the `ContactAttestRes` OpenAPI schema.
|
|
386
|
+
* This type represents contactattestres data structures used in API requests and responses.
|
|
387
|
+
*
|
|
388
|
+
* @example
|
|
389
|
+
* ```typescript
|
|
390
|
+
* const response = await api.getContactAttestRes();
|
|
391
|
+
* const item: ContactAttestRes = response.results;
|
|
392
|
+
* ```
|
|
393
|
+
*
|
|
394
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
395
|
+
*/
|
|
396
|
+
export type ContactAttestRes = components['schemas']['ContactAttestRes'];
|
|
397
|
+
/**
|
|
398
|
+
* ContactAttestVerificationReq
|
|
399
|
+
*
|
|
400
|
+
* @remarks
|
|
401
|
+
* Type alias for the `ContactAttestVerificationReq` OpenAPI schema.
|
|
402
|
+
* This type represents contactattestverificationreq data structures used in API requests and responses.
|
|
403
|
+
*
|
|
404
|
+
* @example
|
|
405
|
+
* ```typescript
|
|
406
|
+
* const response = await api.getContactAttestVerificationReq();
|
|
407
|
+
* const item: ContactAttestVerificationReq = response.results;
|
|
408
|
+
* ```
|
|
409
|
+
*
|
|
410
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
411
|
+
*/
|
|
412
|
+
export type ContactAttestVerificationReq = components['schemas']['ContactAttestVerificationReq'];
|
|
365
413
|
/**
|
|
366
414
|
* ContactAttributeDefinition. Definition of a possible attribute for a TLD.
|
|
367
415
|
*
|
|
@@ -762,6 +810,22 @@ export type ContactType = components['schemas']['ContactType'];
|
|
|
762
810
|
* @see {@link components} - The OpenAPI components schema definition
|
|
763
811
|
*/
|
|
764
812
|
export type ContactVerificationApi = components['schemas']['ContactVerificationApiResponse'];
|
|
813
|
+
/**
|
|
814
|
+
* ContactVerificationClaim
|
|
815
|
+
*
|
|
816
|
+
* @remarks
|
|
817
|
+
* Type alias for the `ContactVerificationClaim` OpenAPI schema.
|
|
818
|
+
* This type represents contactverificationclaim data structures used in API requests and responses.
|
|
819
|
+
*
|
|
820
|
+
* @example
|
|
821
|
+
* ```typescript
|
|
822
|
+
* const response = await api.getContactVerificationClaim();
|
|
823
|
+
* const item: ContactVerificationClaim = response.results;
|
|
824
|
+
* ```
|
|
825
|
+
*
|
|
826
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
827
|
+
*/
|
|
828
|
+
export type ContactVerificationClaim = components['schemas']['ContactVerificationClaim'];
|
|
765
829
|
/**
|
|
766
830
|
* ContactVerificationEmailResponse
|
|
767
831
|
*
|
|
@@ -778,6 +842,38 @@ export type ContactVerificationApi = components['schemas']['ContactVerificationA
|
|
|
778
842
|
* @see {@link components} - The OpenAPI components schema definition
|
|
779
843
|
*/
|
|
780
844
|
export type ContactVerificationEmail = components['schemas']['ContactVerificationEmailResponse'];
|
|
845
|
+
/**
|
|
846
|
+
* ContactVerificationMethod
|
|
847
|
+
*
|
|
848
|
+
* @remarks
|
|
849
|
+
* Type alias for the `ContactVerificationMethod` OpenAPI schema.
|
|
850
|
+
* This type represents contactverificationmethod data structures used in API requests and responses.
|
|
851
|
+
*
|
|
852
|
+
* @example
|
|
853
|
+
* ```typescript
|
|
854
|
+
* const response = await api.getContactVerificationMethod();
|
|
855
|
+
* const item: ContactVerificationMethod = response.results;
|
|
856
|
+
* ```
|
|
857
|
+
*
|
|
858
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
859
|
+
*/
|
|
860
|
+
export type ContactVerificationMethod = components['schemas']['ContactVerificationMethod'];
|
|
861
|
+
/**
|
|
862
|
+
* ContactVerificationProof
|
|
863
|
+
*
|
|
864
|
+
* @remarks
|
|
865
|
+
* Type alias for the `ContactVerificationProof` OpenAPI schema.
|
|
866
|
+
* This type represents contactverificationproof data structures used in API requests and responses.
|
|
867
|
+
*
|
|
868
|
+
* @example
|
|
869
|
+
* ```typescript
|
|
870
|
+
* const response = await api.getContactVerificationProof();
|
|
871
|
+
* const item: ContactVerificationProof = response.results;
|
|
872
|
+
* ```
|
|
873
|
+
*
|
|
874
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
875
|
+
*/
|
|
876
|
+
export type ContactVerificationProof = components['schemas']['ContactVerificationProof'];
|
|
781
877
|
/**
|
|
782
878
|
* ContactVerificationResponse
|
|
783
879
|
*
|
|
@@ -794,6 +890,38 @@ export type ContactVerificationEmail = components['schemas']['ContactVerificatio
|
|
|
794
890
|
* @see {@link components} - The OpenAPI components schema definition
|
|
795
891
|
*/
|
|
796
892
|
export type ContactVerification = components['schemas']['ContactVerificationResponse'];
|
|
893
|
+
/**
|
|
894
|
+
* ContactVerificationState
|
|
895
|
+
*
|
|
896
|
+
* @remarks
|
|
897
|
+
* Type alias for the `ContactVerificationState` OpenAPI schema.
|
|
898
|
+
* This type represents contactverificationstate data structures used in API requests and responses.
|
|
899
|
+
*
|
|
900
|
+
* @example
|
|
901
|
+
* ```typescript
|
|
902
|
+
* const response = await api.getContactVerificationState();
|
|
903
|
+
* const item: ContactVerificationState = response.results;
|
|
904
|
+
* ```
|
|
905
|
+
*
|
|
906
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
907
|
+
*/
|
|
908
|
+
export type ContactVerificationState = components['schemas']['ContactVerificationState'];
|
|
909
|
+
/**
|
|
910
|
+
* ContactVerificationStatus
|
|
911
|
+
*
|
|
912
|
+
* @remarks
|
|
913
|
+
* Type alias for the `ContactVerificationStatus` OpenAPI schema.
|
|
914
|
+
* This type represents contactverificationstatus data structures used in API requests and responses.
|
|
915
|
+
*
|
|
916
|
+
* @example
|
|
917
|
+
* ```typescript
|
|
918
|
+
* const response = await api.getContactVerificationStatus();
|
|
919
|
+
* const item: ContactVerificationStatus = response.results;
|
|
920
|
+
* ```
|
|
921
|
+
*
|
|
922
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
923
|
+
*/
|
|
924
|
+
export type ContactVerificationStatus = components['schemas']['ContactVerificationStatus'];
|
|
797
925
|
/**
|
|
798
926
|
* ContactsBase
|
|
799
927
|
*
|