@rasadov/lumoar-sdk 1.1.6 → 1.1.8

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/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
@@ -2085,6 +2160,19 @@ export interface ValidationError {
2085
2160
  */
2086
2161
  export interface ValidationErrorLocInner {
2087
2162
  }
2163
+ /**
2164
+ * Schema for email verification
2165
+ * @export
2166
+ * @interface VerifyEmailSchema
2167
+ */
2168
+ export interface VerifyEmailSchema {
2169
+ /**
2170
+ *
2171
+ * @type {string}
2172
+ * @memberof VerifyEmailSchema
2173
+ */
2174
+ 'otp_code': string;
2175
+ }
2088
2176
  /**
2089
2177
  * AuditLogsApi - axios parameter creator
2090
2178
  * @export
@@ -4522,7 +4610,7 @@ export type ListTasksForUserV1TasksUserGetOrderEnum = typeof ListTasksForUserV1T
4522
4610
  */
4523
4611
  export declare const UserApiAxiosParamCreator: (configuration?: Configuration) => {
4524
4612
  /**
4525
- * Change user password
4613
+ *
4526
4614
  * @summary Change Password
4527
4615
  * @param {UpdatePassword} updatePassword
4528
4616
  * @param {string | null} [sessionId]
@@ -4531,7 +4619,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
4531
4619
  */
4532
4620
  changePasswordV1UserPasswordChangePatch: (updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4533
4621
  /**
4534
- * Delete user
4622
+ *
4535
4623
  * @summary Delete User
4536
4624
  * @param {string | null} [sessionId]
4537
4625
  * @param {*} [options] Override http request option.
@@ -4539,7 +4627,15 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
4539
4627
  */
4540
4628
  deleteUserV1UserDeleteDelete: (sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4541
4629
  /**
4542
- * Get current user with relations
4630
+ *
4631
+ * @summary Forgot Password
4632
+ * @param {ForgotPasswordSchema} forgotPasswordSchema
4633
+ * @param {*} [options] Override http request option.
4634
+ * @throws {RequiredError}
4635
+ */
4636
+ forgotPasswordV1UserForgotPasswordPost: (forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4637
+ /**
4638
+ *
4543
4639
  * @summary Get User Dash
4544
4640
  * @param {string | null} [sessionId]
4545
4641
  * @param {*} [options] Override http request option.
@@ -4547,7 +4643,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
4547
4643
  */
4548
4644
  getUserDashV1UserMeDashGet: (sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4549
4645
  /**
4550
- * Get current user
4646
+ *
4551
4647
  * @summary Get User
4552
4648
  * @param {string | null} [sessionId]
4553
4649
  * @param {*} [options] Override http request option.
@@ -4555,7 +4651,32 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
4555
4651
  */
4556
4652
  getUserV1UserMeGet: (sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4557
4653
  /**
4558
- * Update user
4654
+ *
4655
+ * @summary Resend Otp
4656
+ * @param {ResendOTPSchema} resendOTPSchema
4657
+ * @param {*} [options] Override http request option.
4658
+ * @throws {RequiredError}
4659
+ */
4660
+ resendOtpV1UserResendOtpPost: (resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4661
+ /**
4662
+ *
4663
+ * @summary Reset Password
4664
+ * @param {ResetPasswordSchema} resetPasswordSchema
4665
+ * @param {*} [options] Override http request option.
4666
+ * @throws {RequiredError}
4667
+ */
4668
+ resetPasswordV1UserResetPasswordPost: (resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4669
+ /**
4670
+ *
4671
+ * @summary Send Verification Email
4672
+ * @param {string} [authorization]
4673
+ * @param {string} [sessionId]
4674
+ * @param {*} [options] Override http request option.
4675
+ * @throws {RequiredError}
4676
+ */
4677
+ sendVerificationEmailV1UserSendVerificationEmailPost: (authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4678
+ /**
4679
+ *
4559
4680
  * @summary Update User
4560
4681
  * @param {UserUpdate} userUpdate
4561
4682
  * @param {string | null} [sessionId]
@@ -4563,6 +4684,16 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
4563
4684
  * @throws {RequiredError}
4564
4685
  */
4565
4686
  updateUserV1UserUpdatePatch: (userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4687
+ /**
4688
+ *
4689
+ * @summary Verify Email
4690
+ * @param {VerifyEmailSchema} verifyEmailSchema
4691
+ * @param {string} [authorization]
4692
+ * @param {string} [sessionId]
4693
+ * @param {*} [options] Override http request option.
4694
+ * @throws {RequiredError}
4695
+ */
4696
+ verifyEmailV1UserVerifyEmailPost: (verifyEmailSchema: VerifyEmailSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4566
4697
  };
4567
4698
  /**
4568
4699
  * UserApi - functional programming interface
@@ -4570,7 +4701,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
4570
4701
  */
4571
4702
  export declare const UserApiFp: (configuration?: Configuration) => {
4572
4703
  /**
4573
- * Change user password
4704
+ *
4574
4705
  * @summary Change Password
4575
4706
  * @param {UpdatePassword} updatePassword
4576
4707
  * @param {string | null} [sessionId]
@@ -4579,7 +4710,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
4579
4710
  */
4580
4711
  changePasswordV1UserPasswordChangePatch(updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4581
4712
  /**
4582
- * Delete user
4713
+ *
4583
4714
  * @summary Delete User
4584
4715
  * @param {string | null} [sessionId]
4585
4716
  * @param {*} [options] Override http request option.
@@ -4587,7 +4718,15 @@ export declare const UserApiFp: (configuration?: Configuration) => {
4587
4718
  */
4588
4719
  deleteUserV1UserDeleteDelete(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4589
4720
  /**
4590
- * Get current user with relations
4721
+ *
4722
+ * @summary Forgot Password
4723
+ * @param {ForgotPasswordSchema} forgotPasswordSchema
4724
+ * @param {*} [options] Override http request option.
4725
+ * @throws {RequiredError}
4726
+ */
4727
+ forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4728
+ /**
4729
+ *
4591
4730
  * @summary Get User Dash
4592
4731
  * @param {string | null} [sessionId]
4593
4732
  * @param {*} [options] Override http request option.
@@ -4595,7 +4734,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
4595
4734
  */
4596
4735
  getUserDashV1UserMeDashGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserWithRelations>>;
4597
4736
  /**
4598
- * Get current user
4737
+ *
4599
4738
  * @summary Get User
4600
4739
  * @param {string | null} [sessionId]
4601
4740
  * @param {*} [options] Override http request option.
@@ -4603,7 +4742,32 @@ export declare const UserApiFp: (configuration?: Configuration) => {
4603
4742
  */
4604
4743
  getUserV1UserMeGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserInDBBase>>;
4605
4744
  /**
4606
- * Update user
4745
+ *
4746
+ * @summary Resend Otp
4747
+ * @param {ResendOTPSchema} resendOTPSchema
4748
+ * @param {*} [options] Override http request option.
4749
+ * @throws {RequiredError}
4750
+ */
4751
+ resendOtpV1UserResendOtpPost(resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4752
+ /**
4753
+ *
4754
+ * @summary Reset Password
4755
+ * @param {ResetPasswordSchema} resetPasswordSchema
4756
+ * @param {*} [options] Override http request option.
4757
+ * @throws {RequiredError}
4758
+ */
4759
+ resetPasswordV1UserResetPasswordPost(resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4760
+ /**
4761
+ *
4762
+ * @summary Send Verification Email
4763
+ * @param {string} [authorization]
4764
+ * @param {string} [sessionId]
4765
+ * @param {*} [options] Override http request option.
4766
+ * @throws {RequiredError}
4767
+ */
4768
+ sendVerificationEmailV1UserSendVerificationEmailPost(authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4769
+ /**
4770
+ *
4607
4771
  * @summary Update User
4608
4772
  * @param {UserUpdate} userUpdate
4609
4773
  * @param {string | null} [sessionId]
@@ -4611,6 +4775,16 @@ export declare const UserApiFp: (configuration?: Configuration) => {
4611
4775
  * @throws {RequiredError}
4612
4776
  */
4613
4777
  updateUserV1UserUpdatePatch(userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4778
+ /**
4779
+ *
4780
+ * @summary Verify Email
4781
+ * @param {VerifyEmailSchema} verifyEmailSchema
4782
+ * @param {string} [authorization]
4783
+ * @param {string} [sessionId]
4784
+ * @param {*} [options] Override http request option.
4785
+ * @throws {RequiredError}
4786
+ */
4787
+ verifyEmailV1UserVerifyEmailPost(verifyEmailSchema: VerifyEmailSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Details>>;
4614
4788
  };
4615
4789
  /**
4616
4790
  * UserApi - factory interface
@@ -4618,7 +4792,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
4618
4792
  */
4619
4793
  export declare const UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4620
4794
  /**
4621
- * Change user password
4795
+ *
4622
4796
  * @summary Change Password
4623
4797
  * @param {UpdatePassword} updatePassword
4624
4798
  * @param {string | null} [sessionId]
@@ -4627,7 +4801,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
4627
4801
  */
4628
4802
  changePasswordV1UserPasswordChangePatch(updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4629
4803
  /**
4630
- * Delete user
4804
+ *
4631
4805
  * @summary Delete User
4632
4806
  * @param {string | null} [sessionId]
4633
4807
  * @param {*} [options] Override http request option.
@@ -4635,7 +4809,15 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
4635
4809
  */
4636
4810
  deleteUserV1UserDeleteDelete(sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4637
4811
  /**
4638
- * Get current user with relations
4812
+ *
4813
+ * @summary Forgot Password
4814
+ * @param {ForgotPasswordSchema} forgotPasswordSchema
4815
+ * @param {*} [options] Override http request option.
4816
+ * @throws {RequiredError}
4817
+ */
4818
+ forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4819
+ /**
4820
+ *
4639
4821
  * @summary Get User Dash
4640
4822
  * @param {string | null} [sessionId]
4641
4823
  * @param {*} [options] Override http request option.
@@ -4643,7 +4825,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
4643
4825
  */
4644
4826
  getUserDashV1UserMeDashGet(sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<UserWithRelations>;
4645
4827
  /**
4646
- * Get current user
4828
+ *
4647
4829
  * @summary Get User
4648
4830
  * @param {string | null} [sessionId]
4649
4831
  * @param {*} [options] Override http request option.
@@ -4651,7 +4833,32 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
4651
4833
  */
4652
4834
  getUserV1UserMeGet(sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<UserInDBBase>;
4653
4835
  /**
4654
- * Update user
4836
+ *
4837
+ * @summary Resend Otp
4838
+ * @param {ResendOTPSchema} resendOTPSchema
4839
+ * @param {*} [options] Override http request option.
4840
+ * @throws {RequiredError}
4841
+ */
4842
+ resendOtpV1UserResendOtpPost(resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4843
+ /**
4844
+ *
4845
+ * @summary Reset Password
4846
+ * @param {ResetPasswordSchema} resetPasswordSchema
4847
+ * @param {*} [options] Override http request option.
4848
+ * @throws {RequiredError}
4849
+ */
4850
+ resetPasswordV1UserResetPasswordPost(resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4851
+ /**
4852
+ *
4853
+ * @summary Send Verification Email
4854
+ * @param {string} [authorization]
4855
+ * @param {string} [sessionId]
4856
+ * @param {*} [options] Override http request option.
4857
+ * @throws {RequiredError}
4858
+ */
4859
+ sendVerificationEmailV1UserSendVerificationEmailPost(authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4860
+ /**
4861
+ *
4655
4862
  * @summary Update User
4656
4863
  * @param {UserUpdate} userUpdate
4657
4864
  * @param {string | null} [sessionId]
@@ -4659,6 +4866,16 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
4659
4866
  * @throws {RequiredError}
4660
4867
  */
4661
4868
  updateUserV1UserUpdatePatch(userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4869
+ /**
4870
+ *
4871
+ * @summary Verify Email
4872
+ * @param {VerifyEmailSchema} verifyEmailSchema
4873
+ * @param {string} [authorization]
4874
+ * @param {string} [sessionId]
4875
+ * @param {*} [options] Override http request option.
4876
+ * @throws {RequiredError}
4877
+ */
4878
+ verifyEmailV1UserVerifyEmailPost(verifyEmailSchema: VerifyEmailSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Details>;
4662
4879
  };
4663
4880
  /**
4664
4881
  * UserApi - object-oriented interface
@@ -4668,7 +4885,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
4668
4885
  */
4669
4886
  export declare class UserApi extends BaseAPI {
4670
4887
  /**
4671
- * Change user password
4888
+ *
4672
4889
  * @summary Change Password
4673
4890
  * @param {UpdatePassword} updatePassword
4674
4891
  * @param {string | null} [sessionId]
@@ -4678,7 +4895,7 @@ export declare class UserApi extends BaseAPI {
4678
4895
  */
4679
4896
  changePasswordV1UserPasswordChangePatch(updatePassword: UpdatePassword, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4680
4897
  /**
4681
- * Delete user
4898
+ *
4682
4899
  * @summary Delete User
4683
4900
  * @param {string | null} [sessionId]
4684
4901
  * @param {*} [options] Override http request option.
@@ -4687,7 +4904,16 @@ export declare class UserApi extends BaseAPI {
4687
4904
  */
4688
4905
  deleteUserV1UserDeleteDelete(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4689
4906
  /**
4690
- * Get current user with relations
4907
+ *
4908
+ * @summary Forgot Password
4909
+ * @param {ForgotPasswordSchema} forgotPasswordSchema
4910
+ * @param {*} [options] Override http request option.
4911
+ * @throws {RequiredError}
4912
+ * @memberof UserApi
4913
+ */
4914
+ forgotPasswordV1UserForgotPasswordPost(forgotPasswordSchema: ForgotPasswordSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4915
+ /**
4916
+ *
4691
4917
  * @summary Get User Dash
4692
4918
  * @param {string | null} [sessionId]
4693
4919
  * @param {*} [options] Override http request option.
@@ -4696,7 +4922,7 @@ export declare class UserApi extends BaseAPI {
4696
4922
  */
4697
4923
  getUserDashV1UserMeDashGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserWithRelations, any, {}>>;
4698
4924
  /**
4699
- * Get current user
4925
+ *
4700
4926
  * @summary Get User
4701
4927
  * @param {string | null} [sessionId]
4702
4928
  * @param {*} [options] Override http request option.
@@ -4705,7 +4931,35 @@ export declare class UserApi extends BaseAPI {
4705
4931
  */
4706
4932
  getUserV1UserMeGet(sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserInDBBase, any, {}>>;
4707
4933
  /**
4708
- * Update user
4934
+ *
4935
+ * @summary Resend Otp
4936
+ * @param {ResendOTPSchema} resendOTPSchema
4937
+ * @param {*} [options] Override http request option.
4938
+ * @throws {RequiredError}
4939
+ * @memberof UserApi
4940
+ */
4941
+ resendOtpV1UserResendOtpPost(resendOTPSchema: ResendOTPSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4942
+ /**
4943
+ *
4944
+ * @summary Reset Password
4945
+ * @param {ResetPasswordSchema} resetPasswordSchema
4946
+ * @param {*} [options] Override http request option.
4947
+ * @throws {RequiredError}
4948
+ * @memberof UserApi
4949
+ */
4950
+ resetPasswordV1UserResetPasswordPost(resetPasswordSchema: ResetPasswordSchema, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4951
+ /**
4952
+ *
4953
+ * @summary Send Verification Email
4954
+ * @param {string} [authorization]
4955
+ * @param {string} [sessionId]
4956
+ * @param {*} [options] Override http request option.
4957
+ * @throws {RequiredError}
4958
+ * @memberof UserApi
4959
+ */
4960
+ sendVerificationEmailV1UserSendVerificationEmailPost(authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4961
+ /**
4962
+ *
4709
4963
  * @summary Update User
4710
4964
  * @param {UserUpdate} userUpdate
4711
4965
  * @param {string | null} [sessionId]
@@ -4714,4 +4968,15 @@ export declare class UserApi extends BaseAPI {
4714
4968
  * @memberof UserApi
4715
4969
  */
4716
4970
  updateUserV1UserUpdatePatch(userUpdate: UserUpdate, sessionId?: string | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4971
+ /**
4972
+ *
4973
+ * @summary Verify Email
4974
+ * @param {VerifyEmailSchema} verifyEmailSchema
4975
+ * @param {string} [authorization]
4976
+ * @param {string} [sessionId]
4977
+ * @param {*} [options] Override http request option.
4978
+ * @throws {RequiredError}
4979
+ * @memberof UserApi
4980
+ */
4981
+ verifyEmailV1UserVerifyEmailPost(verifyEmailSchema: VerifyEmailSchema, authorization?: string, sessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Details, any, {}>>;
4717
4982
  }