@opusdns/api 0.305.0 → 0.307.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.
@@ -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
@@ -3257,6 +3257,116 @@ export type PUT_ContactsByContactIdVerification_Response_404 = Problem
3257
3257
  */
3258
3258
  export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationError
3259
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
+
3260
3370
  /**
3261
3371
  * Response types for GET ContactsVerification endpoint
3262
3372
  *
@@ -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 { StatusTagType, ContactIncludeField, ZoneIncludeField, DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, TmClaim, ClaimsNotice, 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';
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
26
  /**
27
27
  * StatusTagType
@@ -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
  *
@@ -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
  *