@opusdns/api 0.289.0 → 0.291.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/constants.ts +257 -1
- package/src/helpers/keys.ts +2206 -291
- package/src/helpers/requests.d.ts +45 -5
- package/src/helpers/responses.d.ts +123 -10
- package/src/helpers/schemas-arrays.d.ts +141 -1
- package/src/helpers/schemas.d.ts +368 -16
- package/src/openapi.yaml +644 -132
- package/src/schema.d.ts +458 -88
package/src/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
|
*
|
|
@@ -2474,6 +2538,22 @@ export type DomainRenewRequest = components['schemas']['DomainRenewRequest'];
|
|
|
2474
2538
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2475
2539
|
*/
|
|
2476
2540
|
export type DomainRenew = components['schemas']['DomainRenewResponse'];
|
|
2541
|
+
/**
|
|
2542
|
+
* DomainRenewalDetails
|
|
2543
|
+
*
|
|
2544
|
+
* @remarks
|
|
2545
|
+
* Type alias for the `DomainRenewalDetails` OpenAPI schema.
|
|
2546
|
+
* This type represents domainrenewaldetails data structures used in API requests and responses.
|
|
2547
|
+
*
|
|
2548
|
+
* @example
|
|
2549
|
+
* ```typescript
|
|
2550
|
+
* const response = await api.getDomainRenewalDetails();
|
|
2551
|
+
* const item: DomainRenewalDetails = response.results;
|
|
2552
|
+
* ```
|
|
2553
|
+
*
|
|
2554
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2555
|
+
*/
|
|
2556
|
+
export type DomainRenewalDetails = components['schemas']['DomainRenewalDetails'];
|
|
2477
2557
|
/**
|
|
2478
2558
|
* DomainResponse
|
|
2479
2559
|
*
|
|
@@ -2970,6 +3050,22 @@ export type DomainUpdatePayloadData = components['schemas']['DomainUpdatePayload
|
|
|
2970
3050
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2971
3051
|
*/
|
|
2972
3052
|
export type DomainUpdateWorkerPayload = components['schemas']['DomainUpdateWorkerPayload'];
|
|
3053
|
+
/**
|
|
3054
|
+
* DomainVerificationDetails
|
|
3055
|
+
*
|
|
3056
|
+
* @remarks
|
|
3057
|
+
* Type alias for the `DomainVerificationDetails` OpenAPI schema.
|
|
3058
|
+
* This type represents domainverificationdetails data structures used in API requests and responses.
|
|
3059
|
+
*
|
|
3060
|
+
* @example
|
|
3061
|
+
* ```typescript
|
|
3062
|
+
* const response = await api.getDomainVerificationDetails();
|
|
3063
|
+
* const item: DomainVerificationDetails = response.results;
|
|
3064
|
+
* ```
|
|
3065
|
+
*
|
|
3066
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3067
|
+
*/
|
|
3068
|
+
export type DomainVerificationDetails = components['schemas']['DomainVerificationDetails'];
|
|
2973
3069
|
/**
|
|
2974
3070
|
* DomainWithdrawRequest
|
|
2975
3071
|
*
|
|
@@ -3306,6 +3402,38 @@ export type EmailForwardZoneSortField = components['schemas']['EmailForwardZoneS
|
|
|
3306
3402
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3307
3403
|
*/
|
|
3308
3404
|
export type EmailVerificationStatus = components['schemas']['EmailVerificationStatus'];
|
|
3405
|
+
/**
|
|
3406
|
+
* EventData
|
|
3407
|
+
*
|
|
3408
|
+
* @remarks
|
|
3409
|
+
* Type alias for the `EventData` OpenAPI schema.
|
|
3410
|
+
* This type represents eventdata data structures used in API requests and responses.
|
|
3411
|
+
*
|
|
3412
|
+
* @example
|
|
3413
|
+
* ```typescript
|
|
3414
|
+
* const response = await api.getEventData();
|
|
3415
|
+
* const item: EventData = response.results;
|
|
3416
|
+
* ```
|
|
3417
|
+
*
|
|
3418
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3419
|
+
*/
|
|
3420
|
+
export type EventData = components['schemas']['EventData'];
|
|
3421
|
+
/**
|
|
3422
|
+
* EventError
|
|
3423
|
+
*
|
|
3424
|
+
* @remarks
|
|
3425
|
+
* Type alias for the `EventError` OpenAPI schema.
|
|
3426
|
+
* This type represents eventerror data structures used in API requests and responses.
|
|
3427
|
+
*
|
|
3428
|
+
* @example
|
|
3429
|
+
* ```typescript
|
|
3430
|
+
* const response = await api.getEventError();
|
|
3431
|
+
* const item: EventError = response.results;
|
|
3432
|
+
* ```
|
|
3433
|
+
*
|
|
3434
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3435
|
+
*/
|
|
3436
|
+
export type EventError = components['schemas']['EventError'];
|
|
3309
3437
|
/**
|
|
3310
3438
|
* EventObjectType
|
|
3311
3439
|
*
|
|
@@ -3338,22 +3466,6 @@ export type EventObjectType = components['schemas']['EventObjectType'];
|
|
|
3338
3466
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3339
3467
|
*/
|
|
3340
3468
|
export type EventResponse = components['schemas']['EventResponse'];
|
|
3341
|
-
/**
|
|
3342
|
-
* EventSchema
|
|
3343
|
-
*
|
|
3344
|
-
* @remarks
|
|
3345
|
-
* Type alias for the `EventSchema` OpenAPI schema.
|
|
3346
|
-
* This type represents eventschema data structures used in API requests and responses.
|
|
3347
|
-
*
|
|
3348
|
-
* @example
|
|
3349
|
-
* ```typescript
|
|
3350
|
-
* const response = await api.getEventSchema();
|
|
3351
|
-
* const item: EventSchema = response.results;
|
|
3352
|
-
* ```
|
|
3353
|
-
*
|
|
3354
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
3355
|
-
*/
|
|
3356
|
-
export type EventSchema = components['schemas']['EventSchema'];
|
|
3357
3469
|
/**
|
|
3358
3470
|
* EventSortField
|
|
3359
3471
|
*
|
|
@@ -3402,6 +3514,22 @@ export type EventSubtype = components['schemas']['EventSubtype'];
|
|
|
3402
3514
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3403
3515
|
*/
|
|
3404
3516
|
export type EventType = components['schemas']['EventType'];
|
|
3517
|
+
/**
|
|
3518
|
+
* EventVersion
|
|
3519
|
+
*
|
|
3520
|
+
* @remarks
|
|
3521
|
+
* Type alias for the `EventVersion` OpenAPI schema.
|
|
3522
|
+
* This type represents eventversion data structures used in API requests and responses.
|
|
3523
|
+
*
|
|
3524
|
+
* @example
|
|
3525
|
+
* ```typescript
|
|
3526
|
+
* const response = await api.getEventVersion();
|
|
3527
|
+
* const item: EventVersion = response.results;
|
|
3528
|
+
* ```
|
|
3529
|
+
*
|
|
3530
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3531
|
+
*/
|
|
3532
|
+
export type EventVersion = components['schemas']['EventVersion'];
|
|
3405
3533
|
/**
|
|
3406
3534
|
* ExecutingEntity
|
|
3407
3535
|
*
|
|
@@ -3503,6 +3631,22 @@ export type HTTPMethod = components['schemas']['HTTPMethod'];
|
|
|
3503
3631
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3504
3632
|
*/
|
|
3505
3633
|
export type HTTPValidationError = components['schemas']['HTTPValidationError'];
|
|
3634
|
+
/**
|
|
3635
|
+
* HolderEntitlement
|
|
3636
|
+
*
|
|
3637
|
+
* @remarks
|
|
3638
|
+
* Type alias for the `HolderEntitlement` OpenAPI schema.
|
|
3639
|
+
* This type represents holderentitlement data structures used in API requests and responses.
|
|
3640
|
+
*
|
|
3641
|
+
* @example
|
|
3642
|
+
* ```typescript
|
|
3643
|
+
* const response = await api.getHolderEntitlement();
|
|
3644
|
+
* const item: HolderEntitlement = response.results;
|
|
3645
|
+
* ```
|
|
3646
|
+
*
|
|
3647
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
3648
|
+
*/
|
|
3649
|
+
export type HolderEntitlement = components['schemas']['HolderEntitlement'];
|
|
3506
3650
|
/**
|
|
3507
3651
|
* HostSchema
|
|
3508
3652
|
*
|
|
@@ -6228,6 +6372,150 @@ export type TldResponseShort = components['schemas']['TldResponseShort'];
|
|
|
6228
6372
|
* @see {@link components} - The OpenAPI components schema definition
|
|
6229
6373
|
*/
|
|
6230
6374
|
export type TldSpecification = components['schemas']['TldSpecificationResponse'];
|
|
6375
|
+
/**
|
|
6376
|
+
* TmAddr. Address information (addrType in RFC 9361)
|
|
6377
|
+
*
|
|
6378
|
+
* @remarks
|
|
6379
|
+
* Type alias for the `TmAddr` OpenAPI schema.
|
|
6380
|
+
* This type represents tmaddr data structures used in API requests and responses.
|
|
6381
|
+
*
|
|
6382
|
+
* @example
|
|
6383
|
+
* ```typescript
|
|
6384
|
+
* const response = await api.getTmAddr();
|
|
6385
|
+
* const item: TmAddr = response.results;
|
|
6386
|
+
* ```
|
|
6387
|
+
*
|
|
6388
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6389
|
+
*/
|
|
6390
|
+
export type TmAddr = components['schemas']['TmAddr'];
|
|
6391
|
+
/**
|
|
6392
|
+
* TmClaim. A single trademark claim within a notice (claimType in RFC 9361)
|
|
6393
|
+
*
|
|
6394
|
+
* @remarks
|
|
6395
|
+
* Type alias for the `TmClaim` OpenAPI schema.
|
|
6396
|
+
* This type represents tmclaim data structures used in API requests and responses.
|
|
6397
|
+
*
|
|
6398
|
+
* @example
|
|
6399
|
+
* ```typescript
|
|
6400
|
+
* const response = await api.getTmClaim();
|
|
6401
|
+
* const item: TmClaim = response.results;
|
|
6402
|
+
* ```
|
|
6403
|
+
*
|
|
6404
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6405
|
+
*/
|
|
6406
|
+
export type TmClaim = components['schemas']['TmClaim'];
|
|
6407
|
+
/**
|
|
6408
|
+
* TmClassDesc. Nice Classification description (classDescType in RFC 9361)
|
|
6409
|
+
*
|
|
6410
|
+
* @remarks
|
|
6411
|
+
* Type alias for the `TmClassDesc` OpenAPI schema.
|
|
6412
|
+
* This type represents tmclassdesc data structures used in API requests and responses.
|
|
6413
|
+
*
|
|
6414
|
+
* @example
|
|
6415
|
+
* ```typescript
|
|
6416
|
+
* const response = await api.getTmClassDesc();
|
|
6417
|
+
* const item: TmClassDesc = response.results;
|
|
6418
|
+
* ```
|
|
6419
|
+
*
|
|
6420
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6421
|
+
*/
|
|
6422
|
+
export type TmClassDesc = components['schemas']['TmClassDesc'];
|
|
6423
|
+
/**
|
|
6424
|
+
* TmContact. Contact / representative of the mark (contactType in RFC 9361)
|
|
6425
|
+
*
|
|
6426
|
+
* @remarks
|
|
6427
|
+
* Type alias for the `TmContact` OpenAPI schema.
|
|
6428
|
+
* This type represents tmcontact data structures used in API requests and responses.
|
|
6429
|
+
*
|
|
6430
|
+
* @example
|
|
6431
|
+
* ```typescript
|
|
6432
|
+
* const response = await api.getTmContact();
|
|
6433
|
+
* const item: TmContact = response.results;
|
|
6434
|
+
* ```
|
|
6435
|
+
*
|
|
6436
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6437
|
+
*/
|
|
6438
|
+
export type TmContact = components['schemas']['TmContact'];
|
|
6439
|
+
/**
|
|
6440
|
+
* TmCourt. Court resolution reference (courtType in RFC 9361)
|
|
6441
|
+
*
|
|
6442
|
+
* @remarks
|
|
6443
|
+
* Type alias for the `TmCourt` OpenAPI schema.
|
|
6444
|
+
* This type represents tmcourt data structures used in API requests and responses.
|
|
6445
|
+
*
|
|
6446
|
+
* @example
|
|
6447
|
+
* ```typescript
|
|
6448
|
+
* const response = await api.getTmCourt();
|
|
6449
|
+
* const item: TmCourt = response.results;
|
|
6450
|
+
* ```
|
|
6451
|
+
*
|
|
6452
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6453
|
+
*/
|
|
6454
|
+
export type TmCourt = components['schemas']['TmCourt'];
|
|
6455
|
+
/**
|
|
6456
|
+
* TmHolder. Holder of the mark (holderType in RFC 9361). name or org must be set.
|
|
6457
|
+
*
|
|
6458
|
+
* @remarks
|
|
6459
|
+
* Type alias for the `TmHolder` OpenAPI schema.
|
|
6460
|
+
* This type represents tmholder data structures used in API requests and responses.
|
|
6461
|
+
*
|
|
6462
|
+
* @example
|
|
6463
|
+
* ```typescript
|
|
6464
|
+
* const response = await api.getTmHolder();
|
|
6465
|
+
* const item: TmHolder = response.results;
|
|
6466
|
+
* ```
|
|
6467
|
+
*
|
|
6468
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6469
|
+
*/
|
|
6470
|
+
export type TmHolder = components['schemas']['TmHolder'];
|
|
6471
|
+
/**
|
|
6472
|
+
* TmJurDesc. Jurisdiction description (jurDescType in RFC 9361)
|
|
6473
|
+
*
|
|
6474
|
+
* @remarks
|
|
6475
|
+
* Type alias for the `TmJurDesc` OpenAPI schema.
|
|
6476
|
+
* This type represents tmjurdesc data structures used in API requests and responses.
|
|
6477
|
+
*
|
|
6478
|
+
* @example
|
|
6479
|
+
* ```typescript
|
|
6480
|
+
* const response = await api.getTmJurDesc();
|
|
6481
|
+
* const item: TmJurDesc = response.results;
|
|
6482
|
+
* ```
|
|
6483
|
+
*
|
|
6484
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6485
|
+
*/
|
|
6486
|
+
export type TmJurDesc = components['schemas']['TmJurDesc'];
|
|
6487
|
+
/**
|
|
6488
|
+
* TmNotExactMatch. Signals claim was added by non-exact match rules (noExactMatchType in RFC 9361)
|
|
6489
|
+
*
|
|
6490
|
+
* @remarks
|
|
6491
|
+
* Type alias for the `TmNotExactMatch` OpenAPI schema.
|
|
6492
|
+
* This type represents tmnotexactmatch data structures used in API requests and responses.
|
|
6493
|
+
*
|
|
6494
|
+
* @example
|
|
6495
|
+
* ```typescript
|
|
6496
|
+
* const response = await api.getTmNotExactMatch();
|
|
6497
|
+
* const item: TmNotExactMatch = response.results;
|
|
6498
|
+
* ```
|
|
6499
|
+
*
|
|
6500
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6501
|
+
*/
|
|
6502
|
+
export type TmNotExactMatch = components['schemas']['TmNotExactMatch'];
|
|
6503
|
+
/**
|
|
6504
|
+
* TmUdrp. UDRP case reference (udrpType in RFC 9361)
|
|
6505
|
+
*
|
|
6506
|
+
* @remarks
|
|
6507
|
+
* Type alias for the `TmUdrp` OpenAPI schema.
|
|
6508
|
+
* This type represents tmudrp data structures used in API requests and responses.
|
|
6509
|
+
*
|
|
6510
|
+
* @example
|
|
6511
|
+
* ```typescript
|
|
6512
|
+
* const response = await api.getTmUdrp();
|
|
6513
|
+
* const item: TmUdrp = response.results;
|
|
6514
|
+
* ```
|
|
6515
|
+
*
|
|
6516
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6517
|
+
*/
|
|
6518
|
+
export type TmUdrp = components['schemas']['TmUdrp'];
|
|
6231
6519
|
/**
|
|
6232
6520
|
* TrademarkClaimsBase
|
|
6233
6521
|
*
|
|
@@ -6500,6 +6788,70 @@ export type UserWithRelationPermissions = components['schemas']['UserWithRelatio
|
|
|
6500
6788
|
* @see {@link components} - The OpenAPI components schema definition
|
|
6501
6789
|
*/
|
|
6502
6790
|
export type ValidationError = components['schemas']['ValidationError'];
|
|
6791
|
+
/**
|
|
6792
|
+
* VerificationClaimType
|
|
6793
|
+
*
|
|
6794
|
+
* @remarks
|
|
6795
|
+
* Type alias for the `VerificationClaimType` OpenAPI schema.
|
|
6796
|
+
* This type represents verificationclaimtype data structures used in API requests and responses.
|
|
6797
|
+
*
|
|
6798
|
+
* @example
|
|
6799
|
+
* ```typescript
|
|
6800
|
+
* const response = await api.getVerificationClaimType();
|
|
6801
|
+
* const item: VerificationClaimType = response.results;
|
|
6802
|
+
* ```
|
|
6803
|
+
*
|
|
6804
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6805
|
+
*/
|
|
6806
|
+
export type VerificationClaimType = components['schemas']['VerificationClaimType'];
|
|
6807
|
+
/**
|
|
6808
|
+
* VerificationDeadline
|
|
6809
|
+
*
|
|
6810
|
+
* @remarks
|
|
6811
|
+
* Type alias for the `VerificationDeadline` OpenAPI schema.
|
|
6812
|
+
* This type represents verificationdeadline data structures used in API requests and responses.
|
|
6813
|
+
*
|
|
6814
|
+
* @example
|
|
6815
|
+
* ```typescript
|
|
6816
|
+
* const response = await api.getVerificationDeadline();
|
|
6817
|
+
* const item: VerificationDeadline = response.results;
|
|
6818
|
+
* ```
|
|
6819
|
+
*
|
|
6820
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6821
|
+
*/
|
|
6822
|
+
export type VerificationDeadline = components['schemas']['VerificationDeadline'];
|
|
6823
|
+
/**
|
|
6824
|
+
* VerificationDeadlineType
|
|
6825
|
+
*
|
|
6826
|
+
* @remarks
|
|
6827
|
+
* Type alias for the `VerificationDeadlineType` OpenAPI schema.
|
|
6828
|
+
* This type represents verificationdeadlinetype data structures used in API requests and responses.
|
|
6829
|
+
*
|
|
6830
|
+
* @example
|
|
6831
|
+
* ```typescript
|
|
6832
|
+
* const response = await api.getVerificationDeadlineType();
|
|
6833
|
+
* const item: VerificationDeadlineType = response.results;
|
|
6834
|
+
* ```
|
|
6835
|
+
*
|
|
6836
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6837
|
+
*/
|
|
6838
|
+
export type VerificationDeadlineType = components['schemas']['VerificationDeadlineType'];
|
|
6839
|
+
/**
|
|
6840
|
+
* VerificationRegistrantDetails
|
|
6841
|
+
*
|
|
6842
|
+
* @remarks
|
|
6843
|
+
* Type alias for the `VerificationRegistrantDetails` OpenAPI schema.
|
|
6844
|
+
* This type represents verificationregistrantdetails data structures used in API requests and responses.
|
|
6845
|
+
*
|
|
6846
|
+
* @example
|
|
6847
|
+
* ```typescript
|
|
6848
|
+
* const response = await api.getVerificationRegistrantDetails();
|
|
6849
|
+
* const item: VerificationRegistrantDetails = response.results;
|
|
6850
|
+
* ```
|
|
6851
|
+
*
|
|
6852
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6853
|
+
*/
|
|
6854
|
+
export type VerificationRegistrantDetails = components['schemas']['VerificationRegistrantDetails'];
|
|
6503
6855
|
/**
|
|
6504
6856
|
* VerificationType
|
|
6505
6857
|
*
|