@opusdns/api 0.32.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 +889 -0
- package/src/helpers/requests.d.ts +411 -1
- package/src/helpers/responses.d.ts +732 -1
- package/src/helpers/schemas.d.ts +96 -0
- package/src/openapi.yaml +780 -66
- package/src/schema.d.ts +865 -40
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -1994,6 +1994,22 @@ export type Pagination_UserNotificationSummary = components['schemas']['Paginati
|
|
|
1994
1994
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1995
1995
|
*/
|
|
1996
1996
|
export type Pagination_User = components['schemas']['Pagination_User_'];
|
|
1997
|
+
/**
|
|
1998
|
+
* PasswordUpdate
|
|
1999
|
+
*
|
|
2000
|
+
* @remarks
|
|
2001
|
+
* Type alias for the `PasswordUpdate` OpenAPI schema.
|
|
2002
|
+
* This type represents passwordupdate data structures used in API requests and responses.
|
|
2003
|
+
*
|
|
2004
|
+
* @example
|
|
2005
|
+
* ```typescript
|
|
2006
|
+
* const response = await api.getPasswordUpdate();
|
|
2007
|
+
* const item: PasswordUpdate = response.results;
|
|
2008
|
+
* ```
|
|
2009
|
+
*
|
|
2010
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2011
|
+
*/
|
|
2012
|
+
export type PasswordUpdate = components['schemas']['PasswordUpdate'];
|
|
1997
2013
|
/**
|
|
1998
2014
|
* PatchOp
|
|
1999
2015
|
*
|
|
@@ -2458,6 +2474,22 @@ export type SortOrder = components['schemas']['SortOrder'];
|
|
|
2458
2474
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2459
2475
|
*/
|
|
2460
2476
|
export type SpiceDbRelationshipUpdate = components['schemas']['SpiceDbRelationshipUpdate'];
|
|
2477
|
+
/**
|
|
2478
|
+
* StartPasswordReset
|
|
2479
|
+
*
|
|
2480
|
+
* @remarks
|
|
2481
|
+
* Type alias for the `StartPasswordReset` OpenAPI schema.
|
|
2482
|
+
* This type represents startpasswordreset data structures used in API requests and responses.
|
|
2483
|
+
*
|
|
2484
|
+
* @example
|
|
2485
|
+
* ```typescript
|
|
2486
|
+
* const response = await api.getStartPasswordReset();
|
|
2487
|
+
* const item: StartPasswordReset = response.results;
|
|
2488
|
+
* ```
|
|
2489
|
+
*
|
|
2490
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2491
|
+
*/
|
|
2492
|
+
export type StartPasswordReset = components['schemas']['StartPasswordReset'];
|
|
2461
2493
|
/**
|
|
2462
2494
|
* SyncOperationType
|
|
2463
2495
|
*
|
|
@@ -2698,6 +2730,22 @@ export type UserNotificationStatus = components['schemas']['UserNotificationStat
|
|
|
2698
2730
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2699
2731
|
*/
|
|
2700
2732
|
export type UserNotificationSummary = components['schemas']['UserNotificationSummary'];
|
|
2733
|
+
/**
|
|
2734
|
+
* UserPasswordResetEmailResponse
|
|
2735
|
+
*
|
|
2736
|
+
* @remarks
|
|
2737
|
+
* Type alias for the `UserPasswordResetEmailResponse` OpenAPI schema.
|
|
2738
|
+
* This type represents userpasswordresetemailresponse data structures used in API requests and responses.
|
|
2739
|
+
*
|
|
2740
|
+
* @example
|
|
2741
|
+
* ```typescript
|
|
2742
|
+
* const response = await api.getUserPasswordResetEmail();
|
|
2743
|
+
* const item: UserPasswordResetEmail = response.results;
|
|
2744
|
+
* ```
|
|
2745
|
+
*
|
|
2746
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2747
|
+
*/
|
|
2748
|
+
export type UserPasswordResetEmail = components['schemas']['UserPasswordResetEmailResponse'];
|
|
2701
2749
|
/**
|
|
2702
2750
|
* UserStatus
|
|
2703
2751
|
*
|
|
@@ -2746,6 +2794,54 @@ export type UserToken = components['schemas']['UserTokenResponse'];
|
|
|
2746
2794
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2747
2795
|
*/
|
|
2748
2796
|
export type UserUpdate = components['schemas']['UserUpdate'];
|
|
2797
|
+
/**
|
|
2798
|
+
* UserVerificationApiResponse
|
|
2799
|
+
*
|
|
2800
|
+
* @remarks
|
|
2801
|
+
* Type alias for the `UserVerificationApiResponse` OpenAPI schema.
|
|
2802
|
+
* This type represents userverificationapiresponse data structures used in API requests and responses.
|
|
2803
|
+
*
|
|
2804
|
+
* @example
|
|
2805
|
+
* ```typescript
|
|
2806
|
+
* const response = await api.getUserVerificationApi();
|
|
2807
|
+
* const item: UserVerificationApi = response.results;
|
|
2808
|
+
* ```
|
|
2809
|
+
*
|
|
2810
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2811
|
+
*/
|
|
2812
|
+
export type UserVerificationApi = components['schemas']['UserVerificationApiResponse'];
|
|
2813
|
+
/**
|
|
2814
|
+
* UserVerificationEmailResponse
|
|
2815
|
+
*
|
|
2816
|
+
* @remarks
|
|
2817
|
+
* Type alias for the `UserVerificationEmailResponse` OpenAPI schema.
|
|
2818
|
+
* This type represents userverificationemailresponse data structures used in API requests and responses.
|
|
2819
|
+
*
|
|
2820
|
+
* @example
|
|
2821
|
+
* ```typescript
|
|
2822
|
+
* const response = await api.getUserVerificationEmail();
|
|
2823
|
+
* const item: UserVerificationEmail = response.results;
|
|
2824
|
+
* ```
|
|
2825
|
+
*
|
|
2826
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2827
|
+
*/
|
|
2828
|
+
export type UserVerificationEmail = components['schemas']['UserVerificationEmailResponse'];
|
|
2829
|
+
/**
|
|
2830
|
+
* UserVerificationResponse
|
|
2831
|
+
*
|
|
2832
|
+
* @remarks
|
|
2833
|
+
* Type alias for the `UserVerificationResponse` OpenAPI schema.
|
|
2834
|
+
* This type represents userverificationresponse data structures used in API requests and responses.
|
|
2835
|
+
*
|
|
2836
|
+
* @example
|
|
2837
|
+
* ```typescript
|
|
2838
|
+
* const response = await api.getUserVerification();
|
|
2839
|
+
* const item: UserVerification = response.results;
|
|
2840
|
+
* ```
|
|
2841
|
+
*
|
|
2842
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2843
|
+
*/
|
|
2844
|
+
export type UserVerification = components['schemas']['UserVerificationResponse'];
|
|
2749
2845
|
/**
|
|
2750
2846
|
* UserWithAttributes
|
|
2751
2847
|
*
|