@opusdns/api 0.31.0 → 0.33.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 +1048 -33
- package/src/helpers/requests.d.ts +411 -1
- package/src/helpers/responses.d.ts +732 -1
- package/src/helpers/schemas-arrays.d.ts +6 -6
- package/src/helpers/schemas.d.ts +118 -6
- package/src/openapi.yaml +757 -22
- package/src/schema.d.ts +874 -40
|
@@ -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, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_UserNotificationSummary, Notification, UserNotification, Pagination_Organization, Organization, OrganizationWithPlan, GetCurrentAvailablePlans, GetPrices, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas.d';
|
|
37
|
+
import { Pagination_OrganizationCredential, Problem, HTTPValidationError, OrganizationCredentialCreated, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DnsZoneSummary, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainCheck, DomainSummary, Pagination_EmailForwardAlias, EmailForwardAlias, Pagination_Event, EventSchema, Pagination_UserNotificationSummary, Notification, UserNotification, Pagination_Organization, Organization, OrganizationWithPlan, GetCurrentAvailablePlans, GetPrices, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserVerification, UserPasswordResetEmail, UserWithRelationPermissions } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Response types for GET AuthClientCredentials endpoint
|
|
@@ -5494,6 +5494,408 @@ export type PATCH_UsersByUserIdRoles_Response_200 = RelationSet
|
|
|
5494
5494
|
*/
|
|
5495
5495
|
export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
5496
5496
|
|
|
5497
|
+
/**
|
|
5498
|
+
* Response types for DELETE UsersByUserIdVerification endpoint
|
|
5499
|
+
*
|
|
5500
|
+
* Cancel Verification
|
|
5501
|
+
*
|
|
5502
|
+
* @remarks
|
|
5503
|
+
* This type defines all possible response structures for the DELETE UsersByUserIdVerification endpoint.
|
|
5504
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5505
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5506
|
+
*
|
|
5507
|
+
|
|
5508
|
+
*
|
|
5509
|
+
* @path /v1/users/{user_id}/verification
|
|
5510
|
+
*
|
|
5511
|
+
* @see {@link DELETE_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5512
|
+
* @see {@link DELETE_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5513
|
+
*
|
|
5514
|
+
|
|
5515
|
+
*/
|
|
5516
|
+
export type DELETE_UsersByUserIdVerification_Response = DELETE_UsersByUserIdVerification_Response_401 | DELETE_UsersByUserIdVerification_Response_422;
|
|
5517
|
+
|
|
5518
|
+
/**
|
|
5519
|
+
* 401 response for DELETE UsersByUserIdVerification endpoint
|
|
5520
|
+
*
|
|
5521
|
+
* @remarks
|
|
5522
|
+
* This type defines the response structure for the 401 status code
|
|
5523
|
+
* of the DELETE UsersByUserIdVerification endpoint.
|
|
5524
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5525
|
+
*
|
|
5526
|
+
|
|
5527
|
+
*
|
|
5528
|
+
* @path /v1/users/{user_id}/verification
|
|
5529
|
+
*
|
|
5530
|
+
* @see {@link DELETE_UsersByUserIdVerification_Response} - The main response type definition
|
|
5531
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5532
|
+
*/
|
|
5533
|
+
export type DELETE_UsersByUserIdVerification_Response_401 = Problem
|
|
5534
|
+
|
|
5535
|
+
/**
|
|
5536
|
+
* 422 response for DELETE UsersByUserIdVerification endpoint
|
|
5537
|
+
*
|
|
5538
|
+
* @remarks
|
|
5539
|
+
* This type defines the response structure for the 422 status code
|
|
5540
|
+
* of the DELETE UsersByUserIdVerification endpoint.
|
|
5541
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5542
|
+
*
|
|
5543
|
+
|
|
5544
|
+
*
|
|
5545
|
+
* @path /v1/users/{user_id}/verification
|
|
5546
|
+
*
|
|
5547
|
+
* @see {@link DELETE_UsersByUserIdVerification_Response} - The main response type definition
|
|
5548
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5549
|
+
*/
|
|
5550
|
+
export type DELETE_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5551
|
+
|
|
5552
|
+
/**
|
|
5553
|
+
* Response types for GET UsersByUserIdVerification endpoint
|
|
5554
|
+
*
|
|
5555
|
+
* Get Verification Status
|
|
5556
|
+
*
|
|
5557
|
+
* @remarks
|
|
5558
|
+
* This type defines all possible response structures for the GET UsersByUserIdVerification endpoint.
|
|
5559
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5560
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5561
|
+
*
|
|
5562
|
+
|
|
5563
|
+
*
|
|
5564
|
+
* @path /v1/users/{user_id}/verification
|
|
5565
|
+
*
|
|
5566
|
+
* @see {@link GET_UsersByUserIdVerification_Response_200} - 200 response type
|
|
5567
|
+
* @see {@link GET_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5568
|
+
* @see {@link GET_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5569
|
+
*
|
|
5570
|
+
|
|
5571
|
+
*/
|
|
5572
|
+
export type GET_UsersByUserIdVerification_Response = GET_UsersByUserIdVerification_Response_200 | GET_UsersByUserIdVerification_Response_401 | GET_UsersByUserIdVerification_Response_422;
|
|
5573
|
+
|
|
5574
|
+
/**
|
|
5575
|
+
* 200 response for GET UsersByUserIdVerification endpoint
|
|
5576
|
+
*
|
|
5577
|
+
* @remarks
|
|
5578
|
+
* This type defines the response structure for the 200 status code
|
|
5579
|
+
* of the GET UsersByUserIdVerification endpoint.
|
|
5580
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5581
|
+
*
|
|
5582
|
+
|
|
5583
|
+
*
|
|
5584
|
+
* @path /v1/users/{user_id}/verification
|
|
5585
|
+
*
|
|
5586
|
+
* @see {@link GET_UsersByUserIdVerification_Response} - The main response type definition
|
|
5587
|
+
* @see {@link UserVerification} - The actual schema type definition
|
|
5588
|
+
*/
|
|
5589
|
+
export type GET_UsersByUserIdVerification_Response_200 = UserVerification
|
|
5590
|
+
|
|
5591
|
+
/**
|
|
5592
|
+
* 401 response for GET UsersByUserIdVerification endpoint
|
|
5593
|
+
*
|
|
5594
|
+
* @remarks
|
|
5595
|
+
* This type defines the response structure for the 401 status code
|
|
5596
|
+
* of the GET UsersByUserIdVerification endpoint.
|
|
5597
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5598
|
+
*
|
|
5599
|
+
|
|
5600
|
+
*
|
|
5601
|
+
* @path /v1/users/{user_id}/verification
|
|
5602
|
+
*
|
|
5603
|
+
* @see {@link GET_UsersByUserIdVerification_Response} - The main response type definition
|
|
5604
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5605
|
+
*/
|
|
5606
|
+
export type GET_UsersByUserIdVerification_Response_401 = Problem
|
|
5607
|
+
|
|
5608
|
+
/**
|
|
5609
|
+
* 422 response for GET UsersByUserIdVerification endpoint
|
|
5610
|
+
*
|
|
5611
|
+
* @remarks
|
|
5612
|
+
* This type defines the response structure for the 422 status code
|
|
5613
|
+
* of the GET UsersByUserIdVerification endpoint.
|
|
5614
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5615
|
+
*
|
|
5616
|
+
|
|
5617
|
+
*
|
|
5618
|
+
* @path /v1/users/{user_id}/verification
|
|
5619
|
+
*
|
|
5620
|
+
* @see {@link GET_UsersByUserIdVerification_Response} - The main response type definition
|
|
5621
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5622
|
+
*/
|
|
5623
|
+
export type GET_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5624
|
+
|
|
5625
|
+
/**
|
|
5626
|
+
* Response types for PATCH UsersByUserIdVerification endpoint
|
|
5627
|
+
*
|
|
5628
|
+
* Update Verification
|
|
5629
|
+
*
|
|
5630
|
+
* @remarks
|
|
5631
|
+
* This type defines all possible response structures for the PATCH UsersByUserIdVerification endpoint.
|
|
5632
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5633
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5634
|
+
*
|
|
5635
|
+
|
|
5636
|
+
*
|
|
5637
|
+
* @path /v1/users/{user_id}/verification
|
|
5638
|
+
*
|
|
5639
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response_400} - 400 response type
|
|
5640
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5641
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response_404} - 404 response type
|
|
5642
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5643
|
+
*
|
|
5644
|
+
|
|
5645
|
+
*/
|
|
5646
|
+
export type PATCH_UsersByUserIdVerification_Response = PATCH_UsersByUserIdVerification_Response_400 | PATCH_UsersByUserIdVerification_Response_401 | PATCH_UsersByUserIdVerification_Response_404 | PATCH_UsersByUserIdVerification_Response_422;
|
|
5647
|
+
|
|
5648
|
+
/**
|
|
5649
|
+
* 400 response for PATCH UsersByUserIdVerification endpoint
|
|
5650
|
+
*
|
|
5651
|
+
* @remarks
|
|
5652
|
+
* This type defines the response structure for the 400 status code
|
|
5653
|
+
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5654
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5655
|
+
*
|
|
5656
|
+
|
|
5657
|
+
*
|
|
5658
|
+
* @path /v1/users/{user_id}/verification
|
|
5659
|
+
*
|
|
5660
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5661
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5662
|
+
*/
|
|
5663
|
+
export type PATCH_UsersByUserIdVerification_Response_400 = Problem
|
|
5664
|
+
|
|
5665
|
+
/**
|
|
5666
|
+
* 401 response for PATCH UsersByUserIdVerification endpoint
|
|
5667
|
+
*
|
|
5668
|
+
* @remarks
|
|
5669
|
+
* This type defines the response structure for the 401 status code
|
|
5670
|
+
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5671
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5672
|
+
*
|
|
5673
|
+
|
|
5674
|
+
*
|
|
5675
|
+
* @path /v1/users/{user_id}/verification
|
|
5676
|
+
*
|
|
5677
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5678
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5679
|
+
*/
|
|
5680
|
+
export type PATCH_UsersByUserIdVerification_Response_401 = Problem
|
|
5681
|
+
|
|
5682
|
+
/**
|
|
5683
|
+
* 404 response for PATCH UsersByUserIdVerification endpoint
|
|
5684
|
+
*
|
|
5685
|
+
* @remarks
|
|
5686
|
+
* This type defines the response structure for the 404 status code
|
|
5687
|
+
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5688
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5689
|
+
*
|
|
5690
|
+
|
|
5691
|
+
*
|
|
5692
|
+
* @path /v1/users/{user_id}/verification
|
|
5693
|
+
*
|
|
5694
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5695
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5696
|
+
*/
|
|
5697
|
+
export type PATCH_UsersByUserIdVerification_Response_404 = Problem
|
|
5698
|
+
|
|
5699
|
+
/**
|
|
5700
|
+
* 422 response for PATCH UsersByUserIdVerification endpoint
|
|
5701
|
+
*
|
|
5702
|
+
* @remarks
|
|
5703
|
+
* This type defines the response structure for the 422 status code
|
|
5704
|
+
* of the PATCH UsersByUserIdVerification endpoint.
|
|
5705
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5706
|
+
*
|
|
5707
|
+
|
|
5708
|
+
*
|
|
5709
|
+
* @path /v1/users/{user_id}/verification
|
|
5710
|
+
*
|
|
5711
|
+
* @see {@link PATCH_UsersByUserIdVerification_Response} - The main response type definition
|
|
5712
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5713
|
+
*/
|
|
5714
|
+
export type PATCH_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5715
|
+
|
|
5716
|
+
/**
|
|
5717
|
+
* Response types for POST UsersByUserIdVerification endpoint
|
|
5718
|
+
*
|
|
5719
|
+
* Create Verification
|
|
5720
|
+
*
|
|
5721
|
+
* @remarks
|
|
5722
|
+
* This type defines all possible response structures for the POST UsersByUserIdVerification endpoint.
|
|
5723
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5724
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5725
|
+
*
|
|
5726
|
+
|
|
5727
|
+
*
|
|
5728
|
+
* @path /v1/users/{user_id}/verification
|
|
5729
|
+
*
|
|
5730
|
+
* @see {@link POST_UsersByUserIdVerification_Response_401} - 401 response type
|
|
5731
|
+
* @see {@link POST_UsersByUserIdVerification_Response_404} - 404 response type
|
|
5732
|
+
* @see {@link POST_UsersByUserIdVerification_Response_405} - 405 response type
|
|
5733
|
+
* @see {@link POST_UsersByUserIdVerification_Response_422} - 422 response type
|
|
5734
|
+
*
|
|
5735
|
+
|
|
5736
|
+
*/
|
|
5737
|
+
export type POST_UsersByUserIdVerification_Response = POST_UsersByUserIdVerification_Response_401 | POST_UsersByUserIdVerification_Response_404 | POST_UsersByUserIdVerification_Response_405 | POST_UsersByUserIdVerification_Response_422;
|
|
5738
|
+
|
|
5739
|
+
/**
|
|
5740
|
+
* 401 response for POST UsersByUserIdVerification endpoint
|
|
5741
|
+
*
|
|
5742
|
+
* @remarks
|
|
5743
|
+
* This type defines the response structure for the 401 status code
|
|
5744
|
+
* of the POST UsersByUserIdVerification endpoint.
|
|
5745
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5746
|
+
*
|
|
5747
|
+
|
|
5748
|
+
*
|
|
5749
|
+
* @path /v1/users/{user_id}/verification
|
|
5750
|
+
*
|
|
5751
|
+
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5752
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5753
|
+
*/
|
|
5754
|
+
export type POST_UsersByUserIdVerification_Response_401 = Problem
|
|
5755
|
+
|
|
5756
|
+
/**
|
|
5757
|
+
* 404 response for POST UsersByUserIdVerification endpoint
|
|
5758
|
+
*
|
|
5759
|
+
* @remarks
|
|
5760
|
+
* This type defines the response structure for the 404 status code
|
|
5761
|
+
* of the POST UsersByUserIdVerification endpoint.
|
|
5762
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5763
|
+
*
|
|
5764
|
+
|
|
5765
|
+
*
|
|
5766
|
+
* @path /v1/users/{user_id}/verification
|
|
5767
|
+
*
|
|
5768
|
+
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5769
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5770
|
+
*/
|
|
5771
|
+
export type POST_UsersByUserIdVerification_Response_404 = Problem
|
|
5772
|
+
|
|
5773
|
+
/**
|
|
5774
|
+
* 405 response for POST UsersByUserIdVerification endpoint
|
|
5775
|
+
*
|
|
5776
|
+
* @remarks
|
|
5777
|
+
* This type defines the response structure for the 405 status code
|
|
5778
|
+
* of the POST UsersByUserIdVerification endpoint.
|
|
5779
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5780
|
+
*
|
|
5781
|
+
|
|
5782
|
+
*
|
|
5783
|
+
* @path /v1/users/{user_id}/verification
|
|
5784
|
+
*
|
|
5785
|
+
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5786
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5787
|
+
*/
|
|
5788
|
+
export type POST_UsersByUserIdVerification_Response_405 = Problem
|
|
5789
|
+
|
|
5790
|
+
/**
|
|
5791
|
+
* 422 response for POST UsersByUserIdVerification endpoint
|
|
5792
|
+
*
|
|
5793
|
+
* @remarks
|
|
5794
|
+
* This type defines the response structure for the 422 status code
|
|
5795
|
+
* of the POST UsersByUserIdVerification endpoint.
|
|
5796
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5797
|
+
*
|
|
5798
|
+
|
|
5799
|
+
*
|
|
5800
|
+
* @path /v1/users/{user_id}/verification
|
|
5801
|
+
*
|
|
5802
|
+
* @see {@link POST_UsersByUserIdVerification_Response} - The main response type definition
|
|
5803
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5804
|
+
*/
|
|
5805
|
+
export type POST_UsersByUserIdVerification_Response_422 = HTTPValidationError
|
|
5806
|
+
|
|
5807
|
+
/**
|
|
5808
|
+
* Response types for POST UsersEmailPasswordReset endpoint
|
|
5809
|
+
*
|
|
5810
|
+
* Create User Password Reset
|
|
5811
|
+
*
|
|
5812
|
+
* @remarks
|
|
5813
|
+
* This type defines all possible response structures for the POST UsersEmailPasswordReset endpoint.
|
|
5814
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5815
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5816
|
+
*
|
|
5817
|
+
|
|
5818
|
+
*
|
|
5819
|
+
* @path /v1/users/email/password-reset
|
|
5820
|
+
*
|
|
5821
|
+
* @see {@link POST_UsersEmailPasswordReset_Response_201} - 201 response type
|
|
5822
|
+
* @see {@link POST_UsersEmailPasswordReset_Response_422} - 422 response type
|
|
5823
|
+
*
|
|
5824
|
+
|
|
5825
|
+
*/
|
|
5826
|
+
export type POST_UsersEmailPasswordReset_Response = POST_UsersEmailPasswordReset_Response_201 | POST_UsersEmailPasswordReset_Response_422;
|
|
5827
|
+
|
|
5828
|
+
/**
|
|
5829
|
+
* 201 response for POST UsersEmailPasswordReset endpoint
|
|
5830
|
+
*
|
|
5831
|
+
* @remarks
|
|
5832
|
+
* This type defines the response structure for the 201 status code
|
|
5833
|
+
* of the POST UsersEmailPasswordReset endpoint.
|
|
5834
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5835
|
+
*
|
|
5836
|
+
|
|
5837
|
+
*
|
|
5838
|
+
* @path /v1/users/email/password-reset
|
|
5839
|
+
*
|
|
5840
|
+
* @see {@link POST_UsersEmailPasswordReset_Response} - The main response type definition
|
|
5841
|
+
* @see {@link UserPasswordResetEmail} - The actual schema type definition
|
|
5842
|
+
*/
|
|
5843
|
+
export type POST_UsersEmailPasswordReset_Response_201 = UserPasswordResetEmail
|
|
5844
|
+
|
|
5845
|
+
/**
|
|
5846
|
+
* 422 response for POST UsersEmailPasswordReset endpoint
|
|
5847
|
+
*
|
|
5848
|
+
* @remarks
|
|
5849
|
+
* This type defines the response structure for the 422 status code
|
|
5850
|
+
* of the POST UsersEmailPasswordReset endpoint.
|
|
5851
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5852
|
+
*
|
|
5853
|
+
|
|
5854
|
+
*
|
|
5855
|
+
* @path /v1/users/email/password-reset
|
|
5856
|
+
*
|
|
5857
|
+
* @see {@link POST_UsersEmailPasswordReset_Response} - The main response type definition
|
|
5858
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5859
|
+
*/
|
|
5860
|
+
export type POST_UsersEmailPasswordReset_Response_422 = HTTPValidationError
|
|
5861
|
+
|
|
5862
|
+
/**
|
|
5863
|
+
* Response types for GET UsersEmailVerify endpoint
|
|
5864
|
+
*
|
|
5865
|
+
* Redirect Verify User
|
|
5866
|
+
*
|
|
5867
|
+
* @remarks
|
|
5868
|
+
* This type defines all possible response structures for the GET UsersEmailVerify endpoint.
|
|
5869
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5870
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5871
|
+
*
|
|
5872
|
+
|
|
5873
|
+
*
|
|
5874
|
+
* @path /v1/users/email/verify
|
|
5875
|
+
*
|
|
5876
|
+
* @see {@link GET_UsersEmailVerify_Response_422} - 422 response type
|
|
5877
|
+
*
|
|
5878
|
+
|
|
5879
|
+
*/
|
|
5880
|
+
export type GET_UsersEmailVerify_Response = GET_UsersEmailVerify_Response_422;
|
|
5881
|
+
|
|
5882
|
+
/**
|
|
5883
|
+
* 422 response for GET UsersEmailVerify endpoint
|
|
5884
|
+
*
|
|
5885
|
+
* @remarks
|
|
5886
|
+
* This type defines the response structure for the 422 status code
|
|
5887
|
+
* of the GET UsersEmailVerify endpoint.
|
|
5888
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5889
|
+
*
|
|
5890
|
+
|
|
5891
|
+
*
|
|
5892
|
+
* @path /v1/users/email/verify
|
|
5893
|
+
*
|
|
5894
|
+
* @see {@link GET_UsersEmailVerify_Response} - The main response type definition
|
|
5895
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5896
|
+
*/
|
|
5897
|
+
export type GET_UsersEmailVerify_Response_422 = HTTPValidationError
|
|
5898
|
+
|
|
5497
5899
|
/**
|
|
5498
5900
|
* Response types for GET UsersMe endpoint
|
|
5499
5901
|
*
|
|
@@ -5549,3 +5951,332 @@ export type GET_UsersMe_Response_200 = UserWithRelationPermissions
|
|
|
5549
5951
|
*/
|
|
5550
5952
|
export type GET_UsersMe_Response_422 = HTTPValidationError
|
|
5551
5953
|
|
|
5954
|
+
/**
|
|
5955
|
+
* Response types for PATCH UsersMePasswordReset endpoint
|
|
5956
|
+
*
|
|
5957
|
+
* Confirm User Password Reset Me
|
|
5958
|
+
*
|
|
5959
|
+
* @remarks
|
|
5960
|
+
* This type defines all possible response structures for the PATCH UsersMePasswordReset endpoint.
|
|
5961
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
5962
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
5963
|
+
*
|
|
5964
|
+
|
|
5965
|
+
*
|
|
5966
|
+
* @path /v1/users/me/password-reset
|
|
5967
|
+
*
|
|
5968
|
+
* @see {@link PATCH_UsersMePasswordReset_Response_401} - 401 response type
|
|
5969
|
+
* @see {@link PATCH_UsersMePasswordReset_Response_422} - 422 response type
|
|
5970
|
+
*
|
|
5971
|
+
|
|
5972
|
+
*/
|
|
5973
|
+
export type PATCH_UsersMePasswordReset_Response = PATCH_UsersMePasswordReset_Response_401 | PATCH_UsersMePasswordReset_Response_422;
|
|
5974
|
+
|
|
5975
|
+
/**
|
|
5976
|
+
* 401 response for PATCH UsersMePasswordReset endpoint
|
|
5977
|
+
*
|
|
5978
|
+
* @remarks
|
|
5979
|
+
* This type defines the response structure for the 401 status code
|
|
5980
|
+
* of the PATCH UsersMePasswordReset endpoint.
|
|
5981
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5982
|
+
*
|
|
5983
|
+
|
|
5984
|
+
*
|
|
5985
|
+
* @path /v1/users/me/password-reset
|
|
5986
|
+
*
|
|
5987
|
+
* @see {@link PATCH_UsersMePasswordReset_Response} - The main response type definition
|
|
5988
|
+
* @see {@link Problem} - The actual schema type definition
|
|
5989
|
+
*/
|
|
5990
|
+
export type PATCH_UsersMePasswordReset_Response_401 = Problem
|
|
5991
|
+
|
|
5992
|
+
/**
|
|
5993
|
+
* 422 response for PATCH UsersMePasswordReset endpoint
|
|
5994
|
+
*
|
|
5995
|
+
* @remarks
|
|
5996
|
+
* This type defines the response structure for the 422 status code
|
|
5997
|
+
* of the PATCH UsersMePasswordReset endpoint.
|
|
5998
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
5999
|
+
*
|
|
6000
|
+
|
|
6001
|
+
*
|
|
6002
|
+
* @path /v1/users/me/password-reset
|
|
6003
|
+
*
|
|
6004
|
+
* @see {@link PATCH_UsersMePasswordReset_Response} - The main response type definition
|
|
6005
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
6006
|
+
*/
|
|
6007
|
+
export type PATCH_UsersMePasswordReset_Response_422 = HTTPValidationError
|
|
6008
|
+
|
|
6009
|
+
/**
|
|
6010
|
+
* Response types for DELETE UsersMeVerification endpoint
|
|
6011
|
+
*
|
|
6012
|
+
* Cancel Verification Me
|
|
6013
|
+
*
|
|
6014
|
+
* @remarks
|
|
6015
|
+
* This type defines all possible response structures for the DELETE UsersMeVerification endpoint.
|
|
6016
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
6017
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
6018
|
+
*
|
|
6019
|
+
|
|
6020
|
+
*
|
|
6021
|
+
* @path /v1/users/me/verification
|
|
6022
|
+
*
|
|
6023
|
+
* @see {@link DELETE_UsersMeVerification_Response_401} - 401 response type
|
|
6024
|
+
*
|
|
6025
|
+
|
|
6026
|
+
*/
|
|
6027
|
+
export type DELETE_UsersMeVerification_Response = DELETE_UsersMeVerification_Response_401;
|
|
6028
|
+
|
|
6029
|
+
/**
|
|
6030
|
+
* 401 response for DELETE UsersMeVerification endpoint
|
|
6031
|
+
*
|
|
6032
|
+
* @remarks
|
|
6033
|
+
* This type defines the response structure for the 401 status code
|
|
6034
|
+
* of the DELETE UsersMeVerification endpoint.
|
|
6035
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6036
|
+
*
|
|
6037
|
+
|
|
6038
|
+
*
|
|
6039
|
+
* @path /v1/users/me/verification
|
|
6040
|
+
*
|
|
6041
|
+
* @see {@link DELETE_UsersMeVerification_Response} - The main response type definition
|
|
6042
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6043
|
+
*/
|
|
6044
|
+
export type DELETE_UsersMeVerification_Response_401 = Problem
|
|
6045
|
+
|
|
6046
|
+
/**
|
|
6047
|
+
* Response types for GET UsersMeVerification endpoint
|
|
6048
|
+
*
|
|
6049
|
+
* Get Verification Status Me
|
|
6050
|
+
*
|
|
6051
|
+
* @remarks
|
|
6052
|
+
* This type defines all possible response structures for the GET UsersMeVerification endpoint.
|
|
6053
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
6054
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
6055
|
+
*
|
|
6056
|
+
|
|
6057
|
+
*
|
|
6058
|
+
* @path /v1/users/me/verification
|
|
6059
|
+
*
|
|
6060
|
+
* @see {@link GET_UsersMeVerification_Response_200} - 200 response type
|
|
6061
|
+
* @see {@link GET_UsersMeVerification_Response_401} - 401 response type
|
|
6062
|
+
*
|
|
6063
|
+
|
|
6064
|
+
*/
|
|
6065
|
+
export type GET_UsersMeVerification_Response = GET_UsersMeVerification_Response_200 | GET_UsersMeVerification_Response_401;
|
|
6066
|
+
|
|
6067
|
+
/**
|
|
6068
|
+
* 200 response for GET UsersMeVerification endpoint
|
|
6069
|
+
*
|
|
6070
|
+
* @remarks
|
|
6071
|
+
* This type defines the response structure for the 200 status code
|
|
6072
|
+
* of the GET UsersMeVerification endpoint.
|
|
6073
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6074
|
+
*
|
|
6075
|
+
|
|
6076
|
+
*
|
|
6077
|
+
* @path /v1/users/me/verification
|
|
6078
|
+
*
|
|
6079
|
+
* @see {@link GET_UsersMeVerification_Response} - The main response type definition
|
|
6080
|
+
* @see {@link UserVerification} - The actual schema type definition
|
|
6081
|
+
*/
|
|
6082
|
+
export type GET_UsersMeVerification_Response_200 = UserVerification
|
|
6083
|
+
|
|
6084
|
+
/**
|
|
6085
|
+
* 401 response for GET UsersMeVerification endpoint
|
|
6086
|
+
*
|
|
6087
|
+
* @remarks
|
|
6088
|
+
* This type defines the response structure for the 401 status code
|
|
6089
|
+
* of the GET UsersMeVerification endpoint.
|
|
6090
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6091
|
+
*
|
|
6092
|
+
|
|
6093
|
+
*
|
|
6094
|
+
* @path /v1/users/me/verification
|
|
6095
|
+
*
|
|
6096
|
+
* @see {@link GET_UsersMeVerification_Response} - The main response type definition
|
|
6097
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6098
|
+
*/
|
|
6099
|
+
export type GET_UsersMeVerification_Response_401 = Problem
|
|
6100
|
+
|
|
6101
|
+
/**
|
|
6102
|
+
* Response types for PATCH UsersMeVerification endpoint
|
|
6103
|
+
*
|
|
6104
|
+
* Update Verification Me
|
|
6105
|
+
*
|
|
6106
|
+
* @remarks
|
|
6107
|
+
* This type defines all possible response structures for the PATCH UsersMeVerification endpoint.
|
|
6108
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
6109
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
6110
|
+
*
|
|
6111
|
+
|
|
6112
|
+
*
|
|
6113
|
+
* @path /v1/users/me/verification
|
|
6114
|
+
*
|
|
6115
|
+
* @see {@link PATCH_UsersMeVerification_Response_400} - 400 response type
|
|
6116
|
+
* @see {@link PATCH_UsersMeVerification_Response_401} - 401 response type
|
|
6117
|
+
* @see {@link PATCH_UsersMeVerification_Response_404} - 404 response type
|
|
6118
|
+
* @see {@link PATCH_UsersMeVerification_Response_422} - 422 response type
|
|
6119
|
+
*
|
|
6120
|
+
|
|
6121
|
+
*/
|
|
6122
|
+
export type PATCH_UsersMeVerification_Response = PATCH_UsersMeVerification_Response_400 | PATCH_UsersMeVerification_Response_401 | PATCH_UsersMeVerification_Response_404 | PATCH_UsersMeVerification_Response_422;
|
|
6123
|
+
|
|
6124
|
+
/**
|
|
6125
|
+
* 400 response for PATCH UsersMeVerification endpoint
|
|
6126
|
+
*
|
|
6127
|
+
* @remarks
|
|
6128
|
+
* This type defines the response structure for the 400 status code
|
|
6129
|
+
* of the PATCH UsersMeVerification endpoint.
|
|
6130
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6131
|
+
*
|
|
6132
|
+
|
|
6133
|
+
*
|
|
6134
|
+
* @path /v1/users/me/verification
|
|
6135
|
+
*
|
|
6136
|
+
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
6137
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6138
|
+
*/
|
|
6139
|
+
export type PATCH_UsersMeVerification_Response_400 = Problem
|
|
6140
|
+
|
|
6141
|
+
/**
|
|
6142
|
+
* 401 response for PATCH UsersMeVerification endpoint
|
|
6143
|
+
*
|
|
6144
|
+
* @remarks
|
|
6145
|
+
* This type defines the response structure for the 401 status code
|
|
6146
|
+
* of the PATCH UsersMeVerification endpoint.
|
|
6147
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6148
|
+
*
|
|
6149
|
+
|
|
6150
|
+
*
|
|
6151
|
+
* @path /v1/users/me/verification
|
|
6152
|
+
*
|
|
6153
|
+
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
6154
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6155
|
+
*/
|
|
6156
|
+
export type PATCH_UsersMeVerification_Response_401 = Problem
|
|
6157
|
+
|
|
6158
|
+
/**
|
|
6159
|
+
* 404 response for PATCH UsersMeVerification endpoint
|
|
6160
|
+
*
|
|
6161
|
+
* @remarks
|
|
6162
|
+
* This type defines the response structure for the 404 status code
|
|
6163
|
+
* of the PATCH UsersMeVerification endpoint.
|
|
6164
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6165
|
+
*
|
|
6166
|
+
|
|
6167
|
+
*
|
|
6168
|
+
* @path /v1/users/me/verification
|
|
6169
|
+
*
|
|
6170
|
+
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
6171
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6172
|
+
*/
|
|
6173
|
+
export type PATCH_UsersMeVerification_Response_404 = Problem
|
|
6174
|
+
|
|
6175
|
+
/**
|
|
6176
|
+
* 422 response for PATCH UsersMeVerification endpoint
|
|
6177
|
+
*
|
|
6178
|
+
* @remarks
|
|
6179
|
+
* This type defines the response structure for the 422 status code
|
|
6180
|
+
* of the PATCH UsersMeVerification endpoint.
|
|
6181
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6182
|
+
*
|
|
6183
|
+
|
|
6184
|
+
*
|
|
6185
|
+
* @path /v1/users/me/verification
|
|
6186
|
+
*
|
|
6187
|
+
* @see {@link PATCH_UsersMeVerification_Response} - The main response type definition
|
|
6188
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
6189
|
+
*/
|
|
6190
|
+
export type PATCH_UsersMeVerification_Response_422 = HTTPValidationError
|
|
6191
|
+
|
|
6192
|
+
/**
|
|
6193
|
+
* Response types for POST UsersMeVerification endpoint
|
|
6194
|
+
*
|
|
6195
|
+
* Create Verification Me
|
|
6196
|
+
*
|
|
6197
|
+
* @remarks
|
|
6198
|
+
* This type defines all possible response structures for the POST UsersMeVerification endpoint.
|
|
6199
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
6200
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
6201
|
+
*
|
|
6202
|
+
|
|
6203
|
+
*
|
|
6204
|
+
* @path /v1/users/me/verification
|
|
6205
|
+
*
|
|
6206
|
+
* @see {@link POST_UsersMeVerification_Response_401} - 401 response type
|
|
6207
|
+
* @see {@link POST_UsersMeVerification_Response_404} - 404 response type
|
|
6208
|
+
* @see {@link POST_UsersMeVerification_Response_405} - 405 response type
|
|
6209
|
+
* @see {@link POST_UsersMeVerification_Response_422} - 422 response type
|
|
6210
|
+
*
|
|
6211
|
+
|
|
6212
|
+
*/
|
|
6213
|
+
export type POST_UsersMeVerification_Response = POST_UsersMeVerification_Response_401 | POST_UsersMeVerification_Response_404 | POST_UsersMeVerification_Response_405 | POST_UsersMeVerification_Response_422;
|
|
6214
|
+
|
|
6215
|
+
/**
|
|
6216
|
+
* 401 response for POST UsersMeVerification endpoint
|
|
6217
|
+
*
|
|
6218
|
+
* @remarks
|
|
6219
|
+
* This type defines the response structure for the 401 status code
|
|
6220
|
+
* of the POST UsersMeVerification endpoint.
|
|
6221
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6222
|
+
*
|
|
6223
|
+
|
|
6224
|
+
*
|
|
6225
|
+
* @path /v1/users/me/verification
|
|
6226
|
+
*
|
|
6227
|
+
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6228
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6229
|
+
*/
|
|
6230
|
+
export type POST_UsersMeVerification_Response_401 = Problem
|
|
6231
|
+
|
|
6232
|
+
/**
|
|
6233
|
+
* 404 response for POST UsersMeVerification endpoint
|
|
6234
|
+
*
|
|
6235
|
+
* @remarks
|
|
6236
|
+
* This type defines the response structure for the 404 status code
|
|
6237
|
+
* of the POST UsersMeVerification endpoint.
|
|
6238
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6239
|
+
*
|
|
6240
|
+
|
|
6241
|
+
*
|
|
6242
|
+
* @path /v1/users/me/verification
|
|
6243
|
+
*
|
|
6244
|
+
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6245
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6246
|
+
*/
|
|
6247
|
+
export type POST_UsersMeVerification_Response_404 = Problem
|
|
6248
|
+
|
|
6249
|
+
/**
|
|
6250
|
+
* 405 response for POST UsersMeVerification endpoint
|
|
6251
|
+
*
|
|
6252
|
+
* @remarks
|
|
6253
|
+
* This type defines the response structure for the 405 status code
|
|
6254
|
+
* of the POST UsersMeVerification endpoint.
|
|
6255
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6256
|
+
*
|
|
6257
|
+
|
|
6258
|
+
*
|
|
6259
|
+
* @path /v1/users/me/verification
|
|
6260
|
+
*
|
|
6261
|
+
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6262
|
+
* @see {@link Problem} - The actual schema type definition
|
|
6263
|
+
*/
|
|
6264
|
+
export type POST_UsersMeVerification_Response_405 = Problem
|
|
6265
|
+
|
|
6266
|
+
/**
|
|
6267
|
+
* 422 response for POST UsersMeVerification endpoint
|
|
6268
|
+
*
|
|
6269
|
+
* @remarks
|
|
6270
|
+
* This type defines the response structure for the 422 status code
|
|
6271
|
+
* of the POST UsersMeVerification endpoint.
|
|
6272
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
6273
|
+
*
|
|
6274
|
+
|
|
6275
|
+
*
|
|
6276
|
+
* @path /v1/users/me/verification
|
|
6277
|
+
*
|
|
6278
|
+
* @see {@link POST_UsersMeVerification_Response} - The main response type definition
|
|
6279
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
6280
|
+
*/
|
|
6281
|
+
export type POST_UsersMeVerification_Response_422 = HTTPValidationError
|
|
6282
|
+
|