@rasadov/lumoar-sdk 1.1.6 → 1.1.7
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/.openapi-generator/FILES +5 -0
- package/api.ts +494 -20
- package/dist/api.d.ts +304 -20
- package/dist/api.js +355 -20
- package/docs/ForgotPasswordSchema.md +23 -0
- package/docs/ResendOTPSchema.md +25 -0
- package/docs/ResetPasswordSchema.md +27 -0
- package/docs/SendOTPSchema.md +23 -0
- package/docs/UserApi.md +265 -5
- package/docs/VerifyEmailSchema.md +25 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1030,6 +1030,25 @@ export interface FileDownload {
|
|
|
1030
1030
|
*/
|
|
1031
1031
|
'file_type'?: string | null;
|
|
1032
1032
|
}
|
|
1033
|
+
/**
|
|
1034
|
+
* Schema for forgot password request
|
|
1035
|
+
* @export
|
|
1036
|
+
* @interface ForgotPasswordSchema
|
|
1037
|
+
*/
|
|
1038
|
+
export interface ForgotPasswordSchema {
|
|
1039
|
+
/**
|
|
1040
|
+
*
|
|
1041
|
+
* @type {string}
|
|
1042
|
+
* @memberof ForgotPasswordSchema
|
|
1043
|
+
*/
|
|
1044
|
+
'email': string;
|
|
1045
|
+
/**
|
|
1046
|
+
*
|
|
1047
|
+
* @type {string}
|
|
1048
|
+
* @memberof ForgotPasswordSchema
|
|
1049
|
+
*/
|
|
1050
|
+
'turnstile_token': string;
|
|
1051
|
+
}
|
|
1033
1052
|
/**
|
|
1034
1053
|
*
|
|
1035
1054
|
* @export
|
|
@@ -1535,6 +1554,62 @@ export interface ReportGenerate {
|
|
|
1535
1554
|
*/
|
|
1536
1555
|
'report_id': string;
|
|
1537
1556
|
}
|
|
1557
|
+
/**
|
|
1558
|
+
* Schema for resending OTP
|
|
1559
|
+
* @export
|
|
1560
|
+
* @interface ResendOTPSchema
|
|
1561
|
+
*/
|
|
1562
|
+
export interface ResendOTPSchema {
|
|
1563
|
+
/**
|
|
1564
|
+
*
|
|
1565
|
+
* @type {string}
|
|
1566
|
+
* @memberof ResendOTPSchema
|
|
1567
|
+
*/
|
|
1568
|
+
'email': string;
|
|
1569
|
+
/**
|
|
1570
|
+
*
|
|
1571
|
+
* @type {string}
|
|
1572
|
+
* @memberof ResendOTPSchema
|
|
1573
|
+
*/
|
|
1574
|
+
'otp_type': string;
|
|
1575
|
+
/**
|
|
1576
|
+
*
|
|
1577
|
+
* @type {string}
|
|
1578
|
+
* @memberof ResendOTPSchema
|
|
1579
|
+
*/
|
|
1580
|
+
'turnstile_token': string;
|
|
1581
|
+
}
|
|
1582
|
+
/**
|
|
1583
|
+
* Schema for password reset
|
|
1584
|
+
* @export
|
|
1585
|
+
* @interface ResetPasswordSchema
|
|
1586
|
+
*/
|
|
1587
|
+
export interface ResetPasswordSchema {
|
|
1588
|
+
/**
|
|
1589
|
+
*
|
|
1590
|
+
* @type {string}
|
|
1591
|
+
* @memberof ResetPasswordSchema
|
|
1592
|
+
*/
|
|
1593
|
+
'email': string;
|
|
1594
|
+
/**
|
|
1595
|
+
*
|
|
1596
|
+
* @type {string}
|
|
1597
|
+
* @memberof ResetPasswordSchema
|
|
1598
|
+
*/
|
|
1599
|
+
'otp_code': string;
|
|
1600
|
+
/**
|
|
1601
|
+
*
|
|
1602
|
+
* @type {string}
|
|
1603
|
+
* @memberof ResetPasswordSchema
|
|
1604
|
+
*/
|
|
1605
|
+
'new_password': string;
|
|
1606
|
+
/**
|
|
1607
|
+
*
|
|
1608
|
+
* @type {string}
|
|
1609
|
+
* @memberof ResetPasswordSchema
|
|
1610
|
+
*/
|
|
1611
|
+
'turnstile_token': string;
|
|
1612
|
+
}
|
|
1538
1613
|
/**
|
|
1539
1614
|
*
|
|
1540
1615
|
* @export
|
|
@@ -1604,6 +1679,25 @@ export interface SchedulerRequest {
|
|
|
1604
1679
|
*/
|
|
1605
1680
|
'user_ids_to_assign'?: Array<string>;
|
|
1606
1681
|
}
|
|
1682
|
+
/**
|
|
1683
|
+
* Schema for sending OTP
|
|
1684
|
+
* @export
|
|
1685
|
+
* @interface SendOTPSchema
|
|
1686
|
+
*/
|
|
1687
|
+
export interface SendOTPSchema {
|
|
1688
|
+
/**
|
|
1689
|
+
*
|
|
1690
|
+
* @type {string}
|
|
1691
|
+
* @memberof SendOTPSchema
|
|
1692
|
+
*/
|
|
1693
|
+
'email': string;
|
|
1694
|
+
/**
|
|
1695
|
+
*
|
|
1696
|
+
* @type {string}
|
|
1697
|
+
* @memberof SendOTPSchema
|
|
1698
|
+
*/
|
|
1699
|
+
'turnstile_token': string;
|
|
1700
|
+
}
|
|
1607
1701
|
/**
|
|
1608
1702
|
*
|
|
1609
1703
|
* @export
|
|
@@ -2085,6 +2179,31 @@ export interface ValidationError {
|
|
|
2085
2179
|
*/
|
|
2086
2180
|
export interface ValidationErrorLocInner {
|
|
2087
2181
|
}
|
|
2182
|
+
/**
|
|
2183
|
+
* Schema for email verification
|
|
2184
|
+
* @export
|
|
2185
|
+
* @interface VerifyEmailSchema
|
|
2186
|
+
*/
|
|
2187
|
+
export interface VerifyEmailSchema {
|
|
2188
|
+
/**
|
|
2189
|
+
*
|
|
2190
|
+
* @type {string}
|
|
2191
|
+
* @memberof VerifyEmailSchema
|
|
2192
|
+
*/
|
|
2193
|
+
'email': string;
|
|
2194
|
+
/**
|
|
2195
|
+
*
|
|
2196
|
+
* @type {string}
|
|
2197
|
+
* @memberof VerifyEmailSchema
|
|
2198
|
+
*/
|
|
2199
|
+
'otp_code': string;
|
|
2200
|
+
/**
|
|
2201
|
+
*
|
|
2202
|
+
* @type {string}
|
|
2203
|
+
* @memberof VerifyEmailSchema
|
|
2204
|
+
*/
|
|
2205
|
+
'turnstile_token': string;
|
|
2206
|
+
}
|
|
2088
2207
|
/**
|
|
2089
2208
|
* AuditLogsApi - axios parameter creator
|
|
2090
2209
|
* @export
|
|
@@ -4522,7 +4641,7 @@ export type ListTasksForUserV1TasksUserGetOrderEnum = typeof ListTasksForUserV1T
|
|
|
4522
4641
|
*/
|
|
4523
4642
|
export declare const UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4524
4643
|
/**
|
|
4525
|
-
*
|
|
4644
|
+
*
|
|
4526
4645
|
* @summary Change Password
|
|
4527
4646
|
* @param {UpdatePassword} updatePassword
|
|
4528
4647
|
* @param {string | null} [sessionId]
|
|
@@ -4531,7 +4650,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
4531
4650
|
*/
|
|
4532
4651
|
changePasswordV1UserPasswordChangePatch: (updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4533
4652
|
/**
|
|
4534
|
-
*
|
|
4653
|
+
*
|
|
4535
4654
|
* @summary Delete User
|
|
4536
4655
|
* @param {string | null} [sessionId]
|
|
4537
4656
|
* @param {*} [options] Override http request option.
|
|
@@ -4539,7 +4658,15 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
4539
4658
|
*/
|
|
4540
4659
|
deleteUserV1UserDeleteDelete: (sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4541
4660
|
/**
|
|
4542
|
-
*
|
|
4661
|
+
*
|
|
4662
|
+
* @summary Forgot Password
|
|
4663
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
4664
|
+
* @param {*} [options] Override http request option.
|
|
4665
|
+
* @throws {RequiredError}
|
|
4666
|
+
*/
|
|
4667
|
+
forgotPasswordV1UserForgotPasswordPost: (forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4668
|
+
/**
|
|
4669
|
+
*
|
|
4543
4670
|
* @summary Get User Dash
|
|
4544
4671
|
* @param {string | null} [sessionId]
|
|
4545
4672
|
* @param {*} [options] Override http request option.
|
|
@@ -4547,7 +4674,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
4547
4674
|
*/
|
|
4548
4675
|
getUserDashV1UserMeDashGet: (sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4549
4676
|
/**
|
|
4550
|
-
*
|
|
4677
|
+
*
|
|
4551
4678
|
* @summary Get User
|
|
4552
4679
|
* @param {string | null} [sessionId]
|
|
4553
4680
|
* @param {*} [options] Override http request option.
|
|
@@ -4555,7 +4682,31 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
4555
4682
|
*/
|
|
4556
4683
|
getUserV1UserMeGet: (sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4557
4684
|
/**
|
|
4558
|
-
*
|
|
4685
|
+
*
|
|
4686
|
+
* @summary Resend Otp
|
|
4687
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
4688
|
+
* @param {*} [options] Override http request option.
|
|
4689
|
+
* @throws {RequiredError}
|
|
4690
|
+
*/
|
|
4691
|
+
resendOtpV1UserResendOtpPost: (resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4692
|
+
/**
|
|
4693
|
+
*
|
|
4694
|
+
* @summary Reset Password
|
|
4695
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
4696
|
+
* @param {*} [options] Override http request option.
|
|
4697
|
+
* @throws {RequiredError}
|
|
4698
|
+
*/
|
|
4699
|
+
resetPasswordV1UserResetPasswordPost: (resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4700
|
+
/**
|
|
4701
|
+
*
|
|
4702
|
+
* @summary Send Verification Email
|
|
4703
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
4704
|
+
* @param {*} [options] Override http request option.
|
|
4705
|
+
* @throws {RequiredError}
|
|
4706
|
+
*/
|
|
4707
|
+
sendVerificationEmailV1UserSendVerificationEmailPost: (sendOTPSchema: SendOTPSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4708
|
+
/**
|
|
4709
|
+
*
|
|
4559
4710
|
* @summary Update User
|
|
4560
4711
|
* @param {UserUpdate} userUpdate
|
|
4561
4712
|
* @param {string | null} [sessionId]
|
|
@@ -4563,6 +4714,14 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
4563
4714
|
* @throws {RequiredError}
|
|
4564
4715
|
*/
|
|
4565
4716
|
updateUserV1UserUpdatePatch: (userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4717
|
+
/**
|
|
4718
|
+
*
|
|
4719
|
+
* @summary Verify Email
|
|
4720
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
4721
|
+
* @param {*} [options] Override http request option.
|
|
4722
|
+
* @throws {RequiredError}
|
|
4723
|
+
*/
|
|
4724
|
+
verifyEmailV1UserVerifyEmailPost: (verifyEmailSchema: VerifyEmailSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4566
4725
|
};
|
|
4567
4726
|
/**
|
|
4568
4727
|
* UserApi - functional programming interface
|
|
@@ -4570,7 +4729,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
4570
4729
|
*/
|
|
4571
4730
|
export declare const UserApiFp: (configuration?: Configuration) => {
|
|
4572
4731
|
/**
|
|
4573
|
-
*
|
|
4732
|
+
*
|
|
4574
4733
|
* @summary Change Password
|
|
4575
4734
|
* @param {UpdatePassword} updatePassword
|
|
4576
4735
|
* @param {string | null} [sessionId]
|
|
@@ -4579,7 +4738,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
4579
4738
|
*/
|
|
4580
4739
|
changePasswordV1UserPasswordChangePatch(updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4581
4740
|
/**
|
|
4582
|
-
*
|
|
4741
|
+
*
|
|
4583
4742
|
* @summary Delete User
|
|
4584
4743
|
* @param {string | null} [sessionId]
|
|
4585
4744
|
* @param {*} [options] Override http request option.
|
|
@@ -4587,7 +4746,15 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
4587
4746
|
*/
|
|
4588
4747
|
deleteUserV1UserDeleteDelete(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4589
4748
|
/**
|
|
4590
|
-
*
|
|
4749
|
+
*
|
|
4750
|
+
* @summary Forgot Password
|
|
4751
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
4752
|
+
* @param {*} [options] Override http request option.
|
|
4753
|
+
* @throws {RequiredError}
|
|
4754
|
+
*/
|
|
4755
|
+
forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4756
|
+
/**
|
|
4757
|
+
*
|
|
4591
4758
|
* @summary Get User Dash
|
|
4592
4759
|
* @param {string | null} [sessionId]
|
|
4593
4760
|
* @param {*} [options] Override http request option.
|
|
@@ -4595,7 +4762,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
4595
4762
|
*/
|
|
4596
4763
|
getUserDashV1UserMeDashGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserWithRelations>>;
|
|
4597
4764
|
/**
|
|
4598
|
-
*
|
|
4765
|
+
*
|
|
4599
4766
|
* @summary Get User
|
|
4600
4767
|
* @param {string | null} [sessionId]
|
|
4601
4768
|
* @param {*} [options] Override http request option.
|
|
@@ -4603,7 +4770,31 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
4603
4770
|
*/
|
|
4604
4771
|
getUserV1UserMeGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserInDBBase>>;
|
|
4605
4772
|
/**
|
|
4606
|
-
*
|
|
4773
|
+
*
|
|
4774
|
+
* @summary Resend Otp
|
|
4775
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
4776
|
+
* @param {*} [options] Override http request option.
|
|
4777
|
+
* @throws {RequiredError}
|
|
4778
|
+
*/
|
|
4779
|
+
resendOtpV1UserResendOtpPost(resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4780
|
+
/**
|
|
4781
|
+
*
|
|
4782
|
+
* @summary Reset Password
|
|
4783
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
4784
|
+
* @param {*} [options] Override http request option.
|
|
4785
|
+
* @throws {RequiredError}
|
|
4786
|
+
*/
|
|
4787
|
+
resetPasswordV1UserResetPasswordPost(resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4788
|
+
/**
|
|
4789
|
+
*
|
|
4790
|
+
* @summary Send Verification Email
|
|
4791
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
4792
|
+
* @param {*} [options] Override http request option.
|
|
4793
|
+
* @throws {RequiredError}
|
|
4794
|
+
*/
|
|
4795
|
+
sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema: SendOTPSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4796
|
+
/**
|
|
4797
|
+
*
|
|
4607
4798
|
* @summary Update User
|
|
4608
4799
|
* @param {UserUpdate} userUpdate
|
|
4609
4800
|
* @param {string | null} [sessionId]
|
|
@@ -4611,6 +4802,14 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
4611
4802
|
* @throws {RequiredError}
|
|
4612
4803
|
*/
|
|
4613
4804
|
updateUserV1UserUpdatePatch(userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4805
|
+
/**
|
|
4806
|
+
*
|
|
4807
|
+
* @summary Verify Email
|
|
4808
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
4809
|
+
* @param {*} [options] Override http request option.
|
|
4810
|
+
* @throws {RequiredError}
|
|
4811
|
+
*/
|
|
4812
|
+
verifyEmailV1UserVerifyEmailPost(verifyEmailSchema: VerifyEmailSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
|
|
4614
4813
|
};
|
|
4615
4814
|
/**
|
|
4616
4815
|
* UserApi - factory interface
|
|
@@ -4618,7 +4817,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
4618
4817
|
*/
|
|
4619
4818
|
export declare const UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4620
4819
|
/**
|
|
4621
|
-
*
|
|
4820
|
+
*
|
|
4622
4821
|
* @summary Change Password
|
|
4623
4822
|
* @param {UpdatePassword} updatePassword
|
|
4624
4823
|
* @param {string | null} [sessionId]
|
|
@@ -4627,7 +4826,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4627
4826
|
*/
|
|
4628
4827
|
changePasswordV1UserPasswordChangePatch(updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4629
4828
|
/**
|
|
4630
|
-
*
|
|
4829
|
+
*
|
|
4631
4830
|
* @summary Delete User
|
|
4632
4831
|
* @param {string | null} [sessionId]
|
|
4633
4832
|
* @param {*} [options] Override http request option.
|
|
@@ -4635,7 +4834,15 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4635
4834
|
*/
|
|
4636
4835
|
deleteUserV1UserDeleteDelete(sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4637
4836
|
/**
|
|
4638
|
-
*
|
|
4837
|
+
*
|
|
4838
|
+
* @summary Forgot Password
|
|
4839
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
4840
|
+
* @param {*} [options] Override http request option.
|
|
4841
|
+
* @throws {RequiredError}
|
|
4842
|
+
*/
|
|
4843
|
+
forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4844
|
+
/**
|
|
4845
|
+
*
|
|
4639
4846
|
* @summary Get User Dash
|
|
4640
4847
|
* @param {string | null} [sessionId]
|
|
4641
4848
|
* @param {*} [options] Override http request option.
|
|
@@ -4643,7 +4850,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4643
4850
|
*/
|
|
4644
4851
|
getUserDashV1UserMeDashGet(sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<UserWithRelations>;
|
|
4645
4852
|
/**
|
|
4646
|
-
*
|
|
4853
|
+
*
|
|
4647
4854
|
* @summary Get User
|
|
4648
4855
|
* @param {string | null} [sessionId]
|
|
4649
4856
|
* @param {*} [options] Override http request option.
|
|
@@ -4651,7 +4858,31 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4651
4858
|
*/
|
|
4652
4859
|
getUserV1UserMeGet(sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<UserInDBBase>;
|
|
4653
4860
|
/**
|
|
4654
|
-
*
|
|
4861
|
+
*
|
|
4862
|
+
* @summary Resend Otp
|
|
4863
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
4864
|
+
* @param {*} [options] Override http request option.
|
|
4865
|
+
* @throws {RequiredError}
|
|
4866
|
+
*/
|
|
4867
|
+
resendOtpV1UserResendOtpPost(resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4868
|
+
/**
|
|
4869
|
+
*
|
|
4870
|
+
* @summary Reset Password
|
|
4871
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
4872
|
+
* @param {*} [options] Override http request option.
|
|
4873
|
+
* @throws {RequiredError}
|
|
4874
|
+
*/
|
|
4875
|
+
resetPasswordV1UserResetPasswordPost(resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4876
|
+
/**
|
|
4877
|
+
*
|
|
4878
|
+
* @summary Send Verification Email
|
|
4879
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
4880
|
+
* @param {*} [options] Override http request option.
|
|
4881
|
+
* @throws {RequiredError}
|
|
4882
|
+
*/
|
|
4883
|
+
sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema: SendOTPSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4884
|
+
/**
|
|
4885
|
+
*
|
|
4655
4886
|
* @summary Update User
|
|
4656
4887
|
* @param {UserUpdate} userUpdate
|
|
4657
4888
|
* @param {string | null} [sessionId]
|
|
@@ -4659,6 +4890,14 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4659
4890
|
* @throws {RequiredError}
|
|
4660
4891
|
*/
|
|
4661
4892
|
updateUserV1UserUpdatePatch(userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4893
|
+
/**
|
|
4894
|
+
*
|
|
4895
|
+
* @summary Verify Email
|
|
4896
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
4897
|
+
* @param {*} [options] Override http request option.
|
|
4898
|
+
* @throws {RequiredError}
|
|
4899
|
+
*/
|
|
4900
|
+
verifyEmailV1UserVerifyEmailPost(verifyEmailSchema: VerifyEmailSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
|
|
4662
4901
|
};
|
|
4663
4902
|
/**
|
|
4664
4903
|
* UserApi - object-oriented interface
|
|
@@ -4668,7 +4907,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4668
4907
|
*/
|
|
4669
4908
|
export declare class UserApi extends BaseAPI {
|
|
4670
4909
|
/**
|
|
4671
|
-
*
|
|
4910
|
+
*
|
|
4672
4911
|
* @summary Change Password
|
|
4673
4912
|
* @param {UpdatePassword} updatePassword
|
|
4674
4913
|
* @param {string | null} [sessionId]
|
|
@@ -4678,7 +4917,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
4678
4917
|
*/
|
|
4679
4918
|
changePasswordV1UserPasswordChangePatch(updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4680
4919
|
/**
|
|
4681
|
-
*
|
|
4920
|
+
*
|
|
4682
4921
|
* @summary Delete User
|
|
4683
4922
|
* @param {string | null} [sessionId]
|
|
4684
4923
|
* @param {*} [options] Override http request option.
|
|
@@ -4687,7 +4926,16 @@ export declare class UserApi extends BaseAPI {
|
|
|
4687
4926
|
*/
|
|
4688
4927
|
deleteUserV1UserDeleteDelete(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4689
4928
|
/**
|
|
4690
|
-
*
|
|
4929
|
+
*
|
|
4930
|
+
* @summary Forgot Password
|
|
4931
|
+
* @param {ForgotPasswordSchema} forgotPasswordSchema
|
|
4932
|
+
* @param {*} [options] Override http request option.
|
|
4933
|
+
* @throws {RequiredError}
|
|
4934
|
+
* @memberof UserApi
|
|
4935
|
+
*/
|
|
4936
|
+
forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4937
|
+
/**
|
|
4938
|
+
*
|
|
4691
4939
|
* @summary Get User Dash
|
|
4692
4940
|
* @param {string | null} [sessionId]
|
|
4693
4941
|
* @param {*} [options] Override http request option.
|
|
@@ -4696,7 +4944,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
4696
4944
|
*/
|
|
4697
4945
|
getUserDashV1UserMeDashGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserWithRelations, any, {}>>;
|
|
4698
4946
|
/**
|
|
4699
|
-
*
|
|
4947
|
+
*
|
|
4700
4948
|
* @summary Get User
|
|
4701
4949
|
* @param {string | null} [sessionId]
|
|
4702
4950
|
* @param {*} [options] Override http request option.
|
|
@@ -4705,7 +4953,34 @@ export declare class UserApi extends BaseAPI {
|
|
|
4705
4953
|
*/
|
|
4706
4954
|
getUserV1UserMeGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserInDBBase, any, {}>>;
|
|
4707
4955
|
/**
|
|
4708
|
-
*
|
|
4956
|
+
*
|
|
4957
|
+
* @summary Resend Otp
|
|
4958
|
+
* @param {ResendOTPSchema} resendOTPSchema
|
|
4959
|
+
* @param {*} [options] Override http request option.
|
|
4960
|
+
* @throws {RequiredError}
|
|
4961
|
+
* @memberof UserApi
|
|
4962
|
+
*/
|
|
4963
|
+
resendOtpV1UserResendOtpPost(resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4964
|
+
/**
|
|
4965
|
+
*
|
|
4966
|
+
* @summary Reset Password
|
|
4967
|
+
* @param {ResetPasswordSchema} resetPasswordSchema
|
|
4968
|
+
* @param {*} [options] Override http request option.
|
|
4969
|
+
* @throws {RequiredError}
|
|
4970
|
+
* @memberof UserApi
|
|
4971
|
+
*/
|
|
4972
|
+
resetPasswordV1UserResetPasswordPost(resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4973
|
+
/**
|
|
4974
|
+
*
|
|
4975
|
+
* @summary Send Verification Email
|
|
4976
|
+
* @param {SendOTPSchema} sendOTPSchema
|
|
4977
|
+
* @param {*} [options] Override http request option.
|
|
4978
|
+
* @throws {RequiredError}
|
|
4979
|
+
* @memberof UserApi
|
|
4980
|
+
*/
|
|
4981
|
+
sendVerificationEmailV1UserSendVerificationEmailPost(sendOTPSchema: SendOTPSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4709
4984
|
* @summary Update User
|
|
4710
4985
|
* @param {UserUpdate} userUpdate
|
|
4711
4986
|
* @param {string | null} [sessionId]
|
|
@@ -4714,4 +4989,13 @@ export declare class UserApi extends BaseAPI {
|
|
|
4714
4989
|
* @memberof UserApi
|
|
4715
4990
|
*/
|
|
4716
4991
|
updateUserV1UserUpdatePatch(userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4992
|
+
/**
|
|
4993
|
+
*
|
|
4994
|
+
* @summary Verify Email
|
|
4995
|
+
* @param {VerifyEmailSchema} verifyEmailSchema
|
|
4996
|
+
* @param {*} [options] Override http request option.
|
|
4997
|
+
* @throws {RequiredError}
|
|
4998
|
+
* @memberof UserApi
|
|
4999
|
+
*/
|
|
5000
|
+
verifyEmailV1UserVerifyEmailPost(verifyEmailSchema: VerifyEmailSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
|
|
4717
5001
|
}
|