@opusdns/api 0.55.0 → 0.56.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/keys.ts +0 -838
- package/src/helpers/requests.d.ts +1 -315
- package/src/helpers/responses.d.ts +1 -585
- package/src/helpers/schemas.d.ts +0 -80
- package/src/openapi.yaml +1 -596
- package/src/schema.d.ts +47 -722
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray, TldResponseShortArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import { Pagination_OrganizationCredential, Problem, HTTPValidationError, OrganizationCredentialCreated, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DnsZoneSummary, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, GetCurrentAvailablePlans, GetPrices, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet,
|
|
37
|
+
import { Pagination_OrganizationCredential, Problem, HTTPValidationError, OrganizationCredentialCreated, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DnsZoneSummary, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainRestore, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_Organization, Organization, OrganizationWithBillingData, GetCurrentAvailablePlans, GetPrices, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Response types for GET AuthClientCredentials endpoint
|
|
@@ -5344,353 +5344,6 @@ export type PATCH_UsersByUserIdRoles_Response_200 = RelationSet
|
|
|
5344
5344
|
*/
|
|
5345
5345
|
export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
5346
5346
|
|
|
5347
|
-
/**
|
|
5348
|
-
* Response types for GET UsersByUserIdVerification endpoint
|
|
5349
|
-
*
|
|
5350
|
-
* Get Verification Status
|
|
5351
|
-
*
|
|
5352
|
-
* @remarks
|
|
5353
|
-
* This type defines all possible response structures for the GET UsersByUserIdVerification endpoint.
|
|
5354
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5355
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5356
|
-
*
|
|
5357
|
-
|
|
5358
|
-
*
|
|
5359
|
-
* @path /v1/users/{user_id}/verification
|
|
5360
|
-
*
|
|
5361
|
-
* @see {@link GET_UsersByUserIdVerification_Response_200} - 200 response type
|
|
5362
|
-
* @see {@link GET_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5363
|
-
* @see {@link GET_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5364
|
-
*
|
|
5365
|
-
|
|
5366
|
-
*/
|
|
5367
|
-
export type GET_UsersByUserIdVerification_Response = GET_UsersByUserIdVerification_Response_200 | GET_UsersByUserIdVerification_Response_401 | GET_UsersByUserIdVerification_Response_422;
|
|
5368
|
-
|
|
5369
|
-
/**
|
|
5370
|
-
* 200 response for GET UsersByUserIdVerification endpoint
|
|
5371
|
-
*
|
|
5372
|
-
* @remarks
|
|
5373
|
-
* This type defines the response structure for the 200 status code
|
|
5374
|
-
* of the GET UsersByUserIdVerification endpoint.
|
|
5375
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5376
|
-
*
|
|
5377
|
-
|
|
5378
|
-
*
|
|
5379
|
-
* @path /v1/users/{user_id}/verification
|
|
5380
|
-
*
|
|
5381
|
-
* @see {@link GET_UsersByUserIdVerification_Response} - The main response type definition
|
|
5382
|
-
* @see {@link UserVerification} - The actual schema type definition
|
|
5383
|
-
*/
|
|
5384
|
-
export type GET_UsersByUserIdVerification_Response_200 = UserVerification
|
|
5385
|
-
|
|
5386
|
-
/**
|
|
5387
|
-
* 401 response for GET UsersByUserIdVerification endpoint
|
|
5388
|
-
*
|
|
5389
|
-
* @remarks
|
|
5390
|
-
* This type defines the response structure for the 401 status code
|
|
5391
|
-
* of the GET UsersByUserIdVerification endpoint.
|
|
5392
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5393
|
-
*
|
|
5394
|
-
|
|
5395
|
-
*
|
|
5396
|
-
* @path /v1/users/{user_id}/verification
|
|
5397
|
-
*
|
|
5398
|
-
* @see {@link GET_UsersByUserIdVerification_Response} - The main response type definition
|
|
5399
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5400
|
-
*/
|
|
5401
|
-
export type GET_UsersByUserIdVerification_Response_401 = Problem
|
|
5402
|
-
|
|
5403
|
-
/**
|
|
5404
|
-
* 422 response for GET UsersByUserIdVerification endpoint
|
|
5405
|
-
*
|
|
5406
|
-
* @remarks
|
|
5407
|
-
* This type defines the response structure for the 422 status code
|
|
5408
|
-
* of the GET UsersByUserIdVerification endpoint.
|
|
5409
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5410
|
-
*
|
|
5411
|
-
|
|
5412
|
-
*
|
|
5413
|
-
* @path /v1/users/{user_id}/verification
|
|
5414
|
-
*
|
|
5415
|
-
* @see {@link GET_UsersByUserIdVerification_Response} - The main response type definition
|
|
5416
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5417
|
-
*/
|
|
5418
|
-
export type GET_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5419
|
-
|
|
5420
|
-
/**
|
|
5421
|
-
* Response types for PATCH UsersByUserIdVerification endpoint
|
|
5422
|
-
*
|
|
5423
|
-
* Update Verification
|
|
5424
|
-
*
|
|
5425
|
-
* @remarks
|
|
5426
|
-
* This type defines all possible response structures for the PATCH UsersByUserIdVerification endpoint.
|
|
5427
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5428
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5429
|
-
*
|
|
5430
|
-
|
|
5431
|
-
*
|
|
5432
|
-
* @path /v1/users/{user_id}/verification
|
|
5433
|
-
*
|
|
5434
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response_400} - 400 response type
|
|
5435
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5436
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response_404} - 404 response type
|
|
5437
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5438
|
-
*
|
|
5439
|
-
|
|
5440
|
-
*/
|
|
5441
|
-
export type PATCH_UsersByUserIdVerification_Response = PATCH_UsersByUserIdVerification_Response_400 | PATCH_UsersByUserIdVerification_Response_401 | PATCH_UsersByUserIdVerification_Response_404 | PATCH_UsersByUserIdVerification_Response_422;
|
|
5442
|
-
|
|
5443
|
-
/**
|
|
5444
|
-
* 400 response for PATCH UsersByUserIdVerification endpoint
|
|
5445
|
-
*
|
|
5446
|
-
* @remarks
|
|
5447
|
-
* This type defines the response structure for the 400 status code
|
|
5448
|
-
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5449
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5450
|
-
*
|
|
5451
|
-
|
|
5452
|
-
*
|
|
5453
|
-
* @path /v1/users/{user_id}/verification
|
|
5454
|
-
*
|
|
5455
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5456
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5457
|
-
*/
|
|
5458
|
-
export type PATCH_UsersByUserIdVerification_Response_400 = Problem
|
|
5459
|
-
|
|
5460
|
-
/**
|
|
5461
|
-
* 401 response for PATCH UsersByUserIdVerification endpoint
|
|
5462
|
-
*
|
|
5463
|
-
* @remarks
|
|
5464
|
-
* This type defines the response structure for the 401 status code
|
|
5465
|
-
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5466
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5467
|
-
*
|
|
5468
|
-
|
|
5469
|
-
*
|
|
5470
|
-
* @path /v1/users/{user_id}/verification
|
|
5471
|
-
*
|
|
5472
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5473
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5474
|
-
*/
|
|
5475
|
-
export type PATCH_UsersByUserIdVerification_Response_401 = Problem
|
|
5476
|
-
|
|
5477
|
-
/**
|
|
5478
|
-
* 404 response for PATCH UsersByUserIdVerification endpoint
|
|
5479
|
-
*
|
|
5480
|
-
* @remarks
|
|
5481
|
-
* This type defines the response structure for the 404 status code
|
|
5482
|
-
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5483
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5484
|
-
*
|
|
5485
|
-
|
|
5486
|
-
*
|
|
5487
|
-
* @path /v1/users/{user_id}/verification
|
|
5488
|
-
*
|
|
5489
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5490
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5491
|
-
*/
|
|
5492
|
-
export type PATCH_UsersByUserIdVerification_Response_404 = Problem
|
|
5493
|
-
|
|
5494
|
-
/**
|
|
5495
|
-
* 422 response for PATCH UsersByUserIdVerification endpoint
|
|
5496
|
-
*
|
|
5497
|
-
* @remarks
|
|
5498
|
-
* This type defines the response structure for the 422 status code
|
|
5499
|
-
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5500
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5501
|
-
*
|
|
5502
|
-
|
|
5503
|
-
*
|
|
5504
|
-
* @path /v1/users/{user_id}/verification
|
|
5505
|
-
*
|
|
5506
|
-
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5507
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5508
|
-
*/
|
|
5509
|
-
export type PATCH_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5510
|
-
|
|
5511
|
-
/**
|
|
5512
|
-
* Response types for POST UsersByUserIdVerification endpoint
|
|
5513
|
-
*
|
|
5514
|
-
* Create Verification
|
|
5515
|
-
*
|
|
5516
|
-
* @remarks
|
|
5517
|
-
* This type defines all possible response structures for the POST UsersByUserIdVerification endpoint.
|
|
5518
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5519
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5520
|
-
*
|
|
5521
|
-
|
|
5522
|
-
*
|
|
5523
|
-
* @path /v1/users/{user_id}/verification
|
|
5524
|
-
*
|
|
5525
|
-
* @see {@link POST_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5526
|
-
* @see {@link POST_UsersByUserIdVerification_Response_404} - 404 response type
|
|
5527
|
-
* @see {@link POST_UsersByUserIdVerification_Response_405} - 405 response type
|
|
5528
|
-
* @see {@link POST_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5529
|
-
*
|
|
5530
|
-
|
|
5531
|
-
*/
|
|
5532
|
-
export type POST_UsersByUserIdVerification_Response = POST_UsersByUserIdVerification_Response_401 | POST_UsersByUserIdVerification_Response_404 | POST_UsersByUserIdVerification_Response_405 | POST_UsersByUserIdVerification_Response_422;
|
|
5533
|
-
|
|
5534
|
-
/**
|
|
5535
|
-
* 401 response for POST UsersByUserIdVerification endpoint
|
|
5536
|
-
*
|
|
5537
|
-
* @remarks
|
|
5538
|
-
* This type defines the response structure for the 401 status code
|
|
5539
|
-
* of the POST UsersByUserIdVerification endpoint.
|
|
5540
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5541
|
-
*
|
|
5542
|
-
|
|
5543
|
-
*
|
|
5544
|
-
* @path /v1/users/{user_id}/verification
|
|
5545
|
-
*
|
|
5546
|
-
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5547
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5548
|
-
*/
|
|
5549
|
-
export type POST_UsersByUserIdVerification_Response_401 = Problem
|
|
5550
|
-
|
|
5551
|
-
/**
|
|
5552
|
-
* 404 response for POST UsersByUserIdVerification endpoint
|
|
5553
|
-
*
|
|
5554
|
-
* @remarks
|
|
5555
|
-
* This type defines the response structure for the 404 status code
|
|
5556
|
-
* of the POST UsersByUserIdVerification endpoint.
|
|
5557
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5558
|
-
*
|
|
5559
|
-
|
|
5560
|
-
*
|
|
5561
|
-
* @path /v1/users/{user_id}/verification
|
|
5562
|
-
*
|
|
5563
|
-
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5564
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5565
|
-
*/
|
|
5566
|
-
export type POST_UsersByUserIdVerification_Response_404 = Problem
|
|
5567
|
-
|
|
5568
|
-
/**
|
|
5569
|
-
* 405 response for POST UsersByUserIdVerification endpoint
|
|
5570
|
-
*
|
|
5571
|
-
* @remarks
|
|
5572
|
-
* This type defines the response structure for the 405 status code
|
|
5573
|
-
* of the POST UsersByUserIdVerification endpoint.
|
|
5574
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5575
|
-
*
|
|
5576
|
-
|
|
5577
|
-
*
|
|
5578
|
-
* @path /v1/users/{user_id}/verification
|
|
5579
|
-
*
|
|
5580
|
-
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5581
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5582
|
-
*/
|
|
5583
|
-
export type POST_UsersByUserIdVerification_Response_405 = Problem
|
|
5584
|
-
|
|
5585
|
-
/**
|
|
5586
|
-
* 422 response for POST UsersByUserIdVerification endpoint
|
|
5587
|
-
*
|
|
5588
|
-
* @remarks
|
|
5589
|
-
* This type defines the response structure for the 422 status code
|
|
5590
|
-
* of the POST UsersByUserIdVerification endpoint.
|
|
5591
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5592
|
-
*
|
|
5593
|
-
|
|
5594
|
-
*
|
|
5595
|
-
* @path /v1/users/{user_id}/verification
|
|
5596
|
-
*
|
|
5597
|
-
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5598
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5599
|
-
*/
|
|
5600
|
-
export type POST_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5601
|
-
|
|
5602
|
-
/**
|
|
5603
|
-
* Response types for POST UsersEmailPasswordReset endpoint
|
|
5604
|
-
*
|
|
5605
|
-
* Create User Password Reset
|
|
5606
|
-
*
|
|
5607
|
-
* @remarks
|
|
5608
|
-
* This type defines all possible response structures for the POST UsersEmailPasswordReset endpoint.
|
|
5609
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5610
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5611
|
-
*
|
|
5612
|
-
|
|
5613
|
-
*
|
|
5614
|
-
* @path /v1/users/email/password-reset
|
|
5615
|
-
*
|
|
5616
|
-
* @see {@link POST_UsersEmailPasswordReset_Response_201} - 201 response type
|
|
5617
|
-
* @see {@link POST_UsersEmailPasswordReset_Response_422} - 422 response type
|
|
5618
|
-
*
|
|
5619
|
-
|
|
5620
|
-
*/
|
|
5621
|
-
export type POST_UsersEmailPasswordReset_Response = POST_UsersEmailPasswordReset_Response_201 | POST_UsersEmailPasswordReset_Response_422;
|
|
5622
|
-
|
|
5623
|
-
/**
|
|
5624
|
-
* 201 response for POST UsersEmailPasswordReset endpoint
|
|
5625
|
-
*
|
|
5626
|
-
* @remarks
|
|
5627
|
-
* This type defines the response structure for the 201 status code
|
|
5628
|
-
* of the POST UsersEmailPasswordReset endpoint.
|
|
5629
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5630
|
-
*
|
|
5631
|
-
|
|
5632
|
-
*
|
|
5633
|
-
* @path /v1/users/email/password-reset
|
|
5634
|
-
*
|
|
5635
|
-
* @see {@link POST_UsersEmailPasswordReset_Response} - The main response type definition
|
|
5636
|
-
* @see {@link UserPasswordResetEmail} - The actual schema type definition
|
|
5637
|
-
*/
|
|
5638
|
-
export type POST_UsersEmailPasswordReset_Response_201 = UserPasswordResetEmail
|
|
5639
|
-
|
|
5640
|
-
/**
|
|
5641
|
-
* 422 response for POST UsersEmailPasswordReset endpoint
|
|
5642
|
-
*
|
|
5643
|
-
* @remarks
|
|
5644
|
-
* This type defines the response structure for the 422 status code
|
|
5645
|
-
* of the POST UsersEmailPasswordReset endpoint.
|
|
5646
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5647
|
-
*
|
|
5648
|
-
|
|
5649
|
-
*
|
|
5650
|
-
* @path /v1/users/email/password-reset
|
|
5651
|
-
*
|
|
5652
|
-
* @see {@link POST_UsersEmailPasswordReset_Response} - The main response type definition
|
|
5653
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5654
|
-
*/
|
|
5655
|
-
export type POST_UsersEmailPasswordReset_Response_422 = HTTPValidationError
|
|
5656
|
-
|
|
5657
|
-
/**
|
|
5658
|
-
* Response types for GET UsersEmailVerify endpoint
|
|
5659
|
-
*
|
|
5660
|
-
* Redirect Verify User
|
|
5661
|
-
*
|
|
5662
|
-
* @remarks
|
|
5663
|
-
* This type defines all possible response structures for the GET UsersEmailVerify endpoint.
|
|
5664
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5665
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5666
|
-
*
|
|
5667
|
-
|
|
5668
|
-
*
|
|
5669
|
-
* @path /v1/users/email/verify
|
|
5670
|
-
*
|
|
5671
|
-
* @see {@link GET_UsersEmailVerify_Response_422} - 422 response type
|
|
5672
|
-
*
|
|
5673
|
-
|
|
5674
|
-
*/
|
|
5675
|
-
export type GET_UsersEmailVerify_Response = GET_UsersEmailVerify_Response_422;
|
|
5676
|
-
|
|
5677
|
-
/**
|
|
5678
|
-
* 422 response for GET UsersEmailVerify endpoint
|
|
5679
|
-
*
|
|
5680
|
-
* @remarks
|
|
5681
|
-
* This type defines the response structure for the 422 status code
|
|
5682
|
-
* of the GET UsersEmailVerify endpoint.
|
|
5683
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5684
|
-
*
|
|
5685
|
-
|
|
5686
|
-
*
|
|
5687
|
-
* @path /v1/users/email/verify
|
|
5688
|
-
*
|
|
5689
|
-
* @see {@link GET_UsersEmailVerify_Response} - The main response type definition
|
|
5690
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5691
|
-
*/
|
|
5692
|
-
export type GET_UsersEmailVerify_Response_422 = HTTPValidationError
|
|
5693
|
-
|
|
5694
5347
|
/**
|
|
5695
5348
|
* Response types for GET UsersMe endpoint
|
|
5696
5349
|
*
|
|
@@ -5801,240 +5454,3 @@ export type PATCH_UsersMePasswordReset_Response_401 = Problem
|
|
|
5801
5454
|
*/
|
|
5802
5455
|
export type PATCH_UsersMePasswordReset_Response_422 = HTTPValidationError
|
|
5803
5456
|
|
|
5804
|
-
/**
|
|
5805
|
-
* Response types for GET UsersMeVerification endpoint
|
|
5806
|
-
*
|
|
5807
|
-
* Get Verification Status Me
|
|
5808
|
-
*
|
|
5809
|
-
* @remarks
|
|
5810
|
-
* This type defines all possible response structures for the GET UsersMeVerification endpoint.
|
|
5811
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5812
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5813
|
-
*
|
|
5814
|
-
|
|
5815
|
-
*
|
|
5816
|
-
* @path /v1/users/me/verification
|
|
5817
|
-
*
|
|
5818
|
-
* @see {@link GET_UsersMeVerification_Response_200} - 200 response type
|
|
5819
|
-
* @see {@link GET_UsersMeVerification_Response_401} - 401 response type
|
|
5820
|
-
*
|
|
5821
|
-
|
|
5822
|
-
*/
|
|
5823
|
-
export type GET_UsersMeVerification_Response = GET_UsersMeVerification_Response_200 | GET_UsersMeVerification_Response_401;
|
|
5824
|
-
|
|
5825
|
-
/**
|
|
5826
|
-
* 200 response for GET UsersMeVerification endpoint
|
|
5827
|
-
*
|
|
5828
|
-
* @remarks
|
|
5829
|
-
* This type defines the response structure for the 200 status code
|
|
5830
|
-
* of the GET UsersMeVerification endpoint.
|
|
5831
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5832
|
-
*
|
|
5833
|
-
|
|
5834
|
-
*
|
|
5835
|
-
* @path /v1/users/me/verification
|
|
5836
|
-
*
|
|
5837
|
-
* @see {@link GET_UsersMeVerification_Response} - The main response type definition
|
|
5838
|
-
* @see {@link UserVerification} - The actual schema type definition
|
|
5839
|
-
*/
|
|
5840
|
-
export type GET_UsersMeVerification_Response_200 = UserVerification
|
|
5841
|
-
|
|
5842
|
-
/**
|
|
5843
|
-
* 401 response for GET UsersMeVerification endpoint
|
|
5844
|
-
*
|
|
5845
|
-
* @remarks
|
|
5846
|
-
* This type defines the response structure for the 401 status code
|
|
5847
|
-
* of the GET UsersMeVerification endpoint.
|
|
5848
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5849
|
-
*
|
|
5850
|
-
|
|
5851
|
-
*
|
|
5852
|
-
* @path /v1/users/me/verification
|
|
5853
|
-
*
|
|
5854
|
-
* @see {@link GET_UsersMeVerification_Response} - The main response type definition
|
|
5855
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5856
|
-
*/
|
|
5857
|
-
export type GET_UsersMeVerification_Response_401 = Problem
|
|
5858
|
-
|
|
5859
|
-
/**
|
|
5860
|
-
* Response types for PATCH UsersMeVerification endpoint
|
|
5861
|
-
*
|
|
5862
|
-
* Update Verification Me
|
|
5863
|
-
*
|
|
5864
|
-
* @remarks
|
|
5865
|
-
* This type defines all possible response structures for the PATCH UsersMeVerification endpoint.
|
|
5866
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5867
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5868
|
-
*
|
|
5869
|
-
|
|
5870
|
-
*
|
|
5871
|
-
* @path /v1/users/me/verification
|
|
5872
|
-
*
|
|
5873
|
-
* @see {@link PATCH_UsersMeVerification_Response_400} - 400 response type
|
|
5874
|
-
* @see {@link PATCH_UsersMeVerification_Response_401} - 401 response type
|
|
5875
|
-
* @see {@link PATCH_UsersMeVerification_Response_404} - 404 response type
|
|
5876
|
-
* @see {@link PATCH_UsersMeVerification_Response_422} - 422 response type
|
|
5877
|
-
*
|
|
5878
|
-
|
|
5879
|
-
*/
|
|
5880
|
-
export type PATCH_UsersMeVerification_Response = PATCH_UsersMeVerification_Response_400 | PATCH_UsersMeVerification_Response_401 | PATCH_UsersMeVerification_Response_404 | PATCH_UsersMeVerification_Response_422;
|
|
5881
|
-
|
|
5882
|
-
/**
|
|
5883
|
-
* 400 response for PATCH UsersMeVerification endpoint
|
|
5884
|
-
*
|
|
5885
|
-
* @remarks
|
|
5886
|
-
* This type defines the response structure for the 400 status code
|
|
5887
|
-
* of the PATCH UsersMeVerification endpoint.
|
|
5888
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5889
|
-
*
|
|
5890
|
-
|
|
5891
|
-
*
|
|
5892
|
-
* @path /v1/users/me/verification
|
|
5893
|
-
*
|
|
5894
|
-
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
5895
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5896
|
-
*/
|
|
5897
|
-
export type PATCH_UsersMeVerification_Response_400 = Problem
|
|
5898
|
-
|
|
5899
|
-
/**
|
|
5900
|
-
* 401 response for PATCH UsersMeVerification endpoint
|
|
5901
|
-
*
|
|
5902
|
-
* @remarks
|
|
5903
|
-
* This type defines the response structure for the 401 status code
|
|
5904
|
-
* of the PATCH UsersMeVerification endpoint.
|
|
5905
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5906
|
-
*
|
|
5907
|
-
|
|
5908
|
-
*
|
|
5909
|
-
* @path /v1/users/me/verification
|
|
5910
|
-
*
|
|
5911
|
-
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
5912
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5913
|
-
*/
|
|
5914
|
-
export type PATCH_UsersMeVerification_Response_401 = Problem
|
|
5915
|
-
|
|
5916
|
-
/**
|
|
5917
|
-
* 404 response for PATCH UsersMeVerification endpoint
|
|
5918
|
-
*
|
|
5919
|
-
* @remarks
|
|
5920
|
-
* This type defines the response structure for the 404 status code
|
|
5921
|
-
* of the PATCH UsersMeVerification endpoint.
|
|
5922
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5923
|
-
*
|
|
5924
|
-
|
|
5925
|
-
*
|
|
5926
|
-
* @path /v1/users/me/verification
|
|
5927
|
-
*
|
|
5928
|
-
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
5929
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5930
|
-
*/
|
|
5931
|
-
export type PATCH_UsersMeVerification_Response_404 = Problem
|
|
5932
|
-
|
|
5933
|
-
/**
|
|
5934
|
-
* 422 response for PATCH UsersMeVerification endpoint
|
|
5935
|
-
*
|
|
5936
|
-
* @remarks
|
|
5937
|
-
* This type defines the response structure for the 422 status code
|
|
5938
|
-
* of the PATCH UsersMeVerification endpoint.
|
|
5939
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5940
|
-
*
|
|
5941
|
-
|
|
5942
|
-
*
|
|
5943
|
-
* @path /v1/users/me/verification
|
|
5944
|
-
*
|
|
5945
|
-
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
5946
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5947
|
-
*/
|
|
5948
|
-
export type PATCH_UsersMeVerification_Response_422 = HTTPValidationError
|
|
5949
|
-
|
|
5950
|
-
/**
|
|
5951
|
-
* Response types for POST UsersMeVerification endpoint
|
|
5952
|
-
*
|
|
5953
|
-
* Create Verification Me
|
|
5954
|
-
*
|
|
5955
|
-
* @remarks
|
|
5956
|
-
* This type defines all possible response structures for the POST UsersMeVerification endpoint.
|
|
5957
|
-
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5958
|
-
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5959
|
-
*
|
|
5960
|
-
|
|
5961
|
-
*
|
|
5962
|
-
* @path /v1/users/me/verification
|
|
5963
|
-
*
|
|
5964
|
-
* @see {@link POST_UsersMeVerification_Response_401} - 401 response type
|
|
5965
|
-
* @see {@link POST_UsersMeVerification_Response_404} - 404 response type
|
|
5966
|
-
* @see {@link POST_UsersMeVerification_Response_405} - 405 response type
|
|
5967
|
-
* @see {@link POST_UsersMeVerification_Response_422} - 422 response type
|
|
5968
|
-
*
|
|
5969
|
-
|
|
5970
|
-
*/
|
|
5971
|
-
export type POST_UsersMeVerification_Response = POST_UsersMeVerification_Response_401 | POST_UsersMeVerification_Response_404 | POST_UsersMeVerification_Response_405 | POST_UsersMeVerification_Response_422;
|
|
5972
|
-
|
|
5973
|
-
/**
|
|
5974
|
-
* 401 response for POST UsersMeVerification endpoint
|
|
5975
|
-
*
|
|
5976
|
-
* @remarks
|
|
5977
|
-
* This type defines the response structure for the 401 status code
|
|
5978
|
-
* of the POST UsersMeVerification endpoint.
|
|
5979
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5980
|
-
*
|
|
5981
|
-
|
|
5982
|
-
*
|
|
5983
|
-
* @path /v1/users/me/verification
|
|
5984
|
-
*
|
|
5985
|
-
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
5986
|
-
* @see {@link Problem} - The actual schema type definition
|
|
5987
|
-
*/
|
|
5988
|
-
export type POST_UsersMeVerification_Response_401 = Problem
|
|
5989
|
-
|
|
5990
|
-
/**
|
|
5991
|
-
* 404 response for POST UsersMeVerification endpoint
|
|
5992
|
-
*
|
|
5993
|
-
* @remarks
|
|
5994
|
-
* This type defines the response structure for the 404 status code
|
|
5995
|
-
* of the POST UsersMeVerification endpoint.
|
|
5996
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5997
|
-
*
|
|
5998
|
-
|
|
5999
|
-
*
|
|
6000
|
-
* @path /v1/users/me/verification
|
|
6001
|
-
*
|
|
6002
|
-
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6003
|
-
* @see {@link Problem} - The actual schema type definition
|
|
6004
|
-
*/
|
|
6005
|
-
export type POST_UsersMeVerification_Response_404 = Problem
|
|
6006
|
-
|
|
6007
|
-
/**
|
|
6008
|
-
* 405 response for POST UsersMeVerification endpoint
|
|
6009
|
-
*
|
|
6010
|
-
* @remarks
|
|
6011
|
-
* This type defines the response structure for the 405 status code
|
|
6012
|
-
* of the POST UsersMeVerification endpoint.
|
|
6013
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6014
|
-
*
|
|
6015
|
-
|
|
6016
|
-
*
|
|
6017
|
-
* @path /v1/users/me/verification
|
|
6018
|
-
*
|
|
6019
|
-
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6020
|
-
* @see {@link Problem} - The actual schema type definition
|
|
6021
|
-
*/
|
|
6022
|
-
export type POST_UsersMeVerification_Response_405 = Problem
|
|
6023
|
-
|
|
6024
|
-
/**
|
|
6025
|
-
* 422 response for POST UsersMeVerification endpoint
|
|
6026
|
-
*
|
|
6027
|
-
* @remarks
|
|
6028
|
-
* This type defines the response structure for the 422 status code
|
|
6029
|
-
* of the POST UsersMeVerification endpoint.
|
|
6030
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6031
|
-
*
|
|
6032
|
-
|
|
6033
|
-
*
|
|
6034
|
-
* @path /v1/users/me/verification
|
|
6035
|
-
*
|
|
6036
|
-
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6037
|
-
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
6038
|
-
*/
|
|
6039
|
-
export type POST_UsersMeVerification_Response_422 = HTTPValidationError
|
|
6040
|
-
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -2527,22 +2527,6 @@ export type SortOrder = components['schemas']['SortOrder'];
|
|
|
2527
2527
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2528
2528
|
*/
|
|
2529
2529
|
export type SpiceDbRelationshipUpdate = components['schemas']['SpiceDbRelationshipUpdate'];
|
|
2530
|
-
/**
|
|
2531
|
-
* StartPasswordReset
|
|
2532
|
-
*
|
|
2533
|
-
* @remarks
|
|
2534
|
-
* Type alias for the `StartPasswordReset` OpenAPI schema.
|
|
2535
|
-
* This type represents startpasswordreset data structures used in API requests and responses.
|
|
2536
|
-
*
|
|
2537
|
-
* @example
|
|
2538
|
-
* ```typescript
|
|
2539
|
-
* const response = await api.getStartPasswordReset();
|
|
2540
|
-
* const item: StartPasswordReset = response.results;
|
|
2541
|
-
* ```
|
|
2542
|
-
*
|
|
2543
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2544
|
-
*/
|
|
2545
|
-
export type StartPasswordReset = components['schemas']['StartPasswordReset'];
|
|
2546
2530
|
/**
|
|
2547
2531
|
* SyncOperationType
|
|
2548
2532
|
*
|
|
@@ -2751,22 +2735,6 @@ export type UserAttributeBase = components['schemas']['UserAttributeBase'];
|
|
|
2751
2735
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2752
2736
|
*/
|
|
2753
2737
|
export type UserCreate = components['schemas']['UserCreate'];
|
|
2754
|
-
/**
|
|
2755
|
-
* UserPasswordResetEmailResponse
|
|
2756
|
-
*
|
|
2757
|
-
* @remarks
|
|
2758
|
-
* Type alias for the `UserPasswordResetEmailResponse` OpenAPI schema.
|
|
2759
|
-
* This type represents userpasswordresetemailresponse data structures used in API requests and responses.
|
|
2760
|
-
*
|
|
2761
|
-
* @example
|
|
2762
|
-
* ```typescript
|
|
2763
|
-
* const response = await api.getUserPasswordResetEmail();
|
|
2764
|
-
* const item: UserPasswordResetEmail = response.results;
|
|
2765
|
-
* ```
|
|
2766
|
-
*
|
|
2767
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2768
|
-
*/
|
|
2769
|
-
export type UserPasswordResetEmail = components['schemas']['UserPasswordResetEmailResponse'];
|
|
2770
2738
|
/**
|
|
2771
2739
|
* UserStatus
|
|
2772
2740
|
*
|
|
@@ -2815,54 +2783,6 @@ export type UserToken = components['schemas']['UserTokenResponse'];
|
|
|
2815
2783
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2816
2784
|
*/
|
|
2817
2785
|
export type UserUpdate = components['schemas']['UserUpdate'];
|
|
2818
|
-
/**
|
|
2819
|
-
* UserVerificationApiResponse
|
|
2820
|
-
*
|
|
2821
|
-
* @remarks
|
|
2822
|
-
* Type alias for the `UserVerificationApiResponse` OpenAPI schema.
|
|
2823
|
-
* This type represents userverificationapiresponse data structures used in API requests and responses.
|
|
2824
|
-
*
|
|
2825
|
-
* @example
|
|
2826
|
-
* ```typescript
|
|
2827
|
-
* const response = await api.getUserVerificationApi();
|
|
2828
|
-
* const item: UserVerificationApi = response.results;
|
|
2829
|
-
* ```
|
|
2830
|
-
*
|
|
2831
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2832
|
-
*/
|
|
2833
|
-
export type UserVerificationApi = components['schemas']['UserVerificationApiResponse'];
|
|
2834
|
-
/**
|
|
2835
|
-
* UserVerificationEmailResponse
|
|
2836
|
-
*
|
|
2837
|
-
* @remarks
|
|
2838
|
-
* Type alias for the `UserVerificationEmailResponse` OpenAPI schema.
|
|
2839
|
-
* This type represents userverificationemailresponse data structures used in API requests and responses.
|
|
2840
|
-
*
|
|
2841
|
-
* @example
|
|
2842
|
-
* ```typescript
|
|
2843
|
-
* const response = await api.getUserVerificationEmail();
|
|
2844
|
-
* const item: UserVerificationEmail = response.results;
|
|
2845
|
-
* ```
|
|
2846
|
-
*
|
|
2847
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2848
|
-
*/
|
|
2849
|
-
export type UserVerificationEmail = components['schemas']['UserVerificationEmailResponse'];
|
|
2850
|
-
/**
|
|
2851
|
-
* UserVerificationResponse
|
|
2852
|
-
*
|
|
2853
|
-
* @remarks
|
|
2854
|
-
* Type alias for the `UserVerificationResponse` OpenAPI schema.
|
|
2855
|
-
* This type represents userverificationresponse data structures used in API requests and responses.
|
|
2856
|
-
*
|
|
2857
|
-
* @example
|
|
2858
|
-
* ```typescript
|
|
2859
|
-
* const response = await api.getUserVerification();
|
|
2860
|
-
* const item: UserVerification = response.results;
|
|
2861
|
-
* ```
|
|
2862
|
-
*
|
|
2863
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2864
|
-
*/
|
|
2865
|
-
export type UserVerification = components['schemas']['UserVerificationResponse'];
|
|
2866
2786
|
/**
|
|
2867
2787
|
* UserWithAttributes
|
|
2868
2788
|
*
|