svelte-reflector 1.0.9 → 1.0.11

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.
Files changed (57) hide show
  1. package/dist/generate-doc.js +3 -0
  2. package/dist/helpers/helpers.d.ts +3 -0
  3. package/dist/helpers/helpers.js +34 -2
  4. package/dist/main.js +12 -6
  5. package/dist/method.d.ts +8 -3
  6. package/dist/method.js +69 -52
  7. package/dist/module.d.ts +8 -1
  8. package/dist/module.js +89 -23
  9. package/dist/property.d.ts +6 -1
  10. package/dist/property.js +31 -18
  11. package/dist/reflector/controllers/admin/account/admin-account.module.svelte.d.ts +7 -0
  12. package/dist/reflector/controllers/admin/account/admin-account.module.svelte.js +28 -0
  13. package/dist/reflector/controllers/admin/account/owner/account-owner.module.svelte.d.ts +15 -0
  14. package/dist/reflector/controllers/admin/account/owner/account-owner.module.svelte.js +79 -0
  15. package/dist/reflector/controllers/admin/kyc/config/kyc-config.module.svelte.d.ts +49 -0
  16. package/dist/reflector/controllers/admin/kyc/config/kyc-config.module.svelte.js +303 -0
  17. package/dist/reflector/controllers/admin/policy/system/policy-system.module.svelte.d.ts +9 -0
  18. package/dist/reflector/controllers/admin/policy/system/policy-system.module.svelte.js +36 -0
  19. package/dist/reflector/controllers/admin/smtp/config/smtp-config.module.svelte.d.ts +19 -0
  20. package/dist/reflector/controllers/admin/smtp/config/smtp-config.module.svelte.js +82 -0
  21. package/dist/reflector/controllers/customer/kyc/file-upload/kyc-file-upload.module.svelte.d.ts +37 -0
  22. package/dist/reflector/controllers/customer/kyc/file-upload/kyc-file-upload.module.svelte.js +228 -0
  23. package/dist/reflector/controllers/member/account/member-account.module.svelte.d.ts +11 -0
  24. package/dist/reflector/controllers/member/account/member-account.module.svelte.js +54 -0
  25. package/dist/reflector/controllers/owner/account/owner-account.module.svelte.d.ts +11 -0
  26. package/dist/reflector/controllers/owner/account/owner-account.module.svelte.js +54 -0
  27. package/dist/reflector/controllers/owner/kyc/config/kyc-config.module.svelte.d.ts +49 -0
  28. package/dist/reflector/controllers/owner/kyc/config/kyc-config.module.svelte.js +303 -0
  29. package/dist/reflector/controllers/owner/kyc/self/create-or-update/self-create-or-update.module.svelte.d.ts +33 -0
  30. package/dist/reflector/controllers/owner/kyc/self/create-or-update/self-create-or-update.module.svelte.js +197 -0
  31. package/dist/reflector/controllers/owner/policy/owner-policy.module.svelte.d.ts +9 -0
  32. package/dist/reflector/controllers/owner/policy/owner-policy.module.svelte.js +36 -0
  33. package/dist/reflector/controllers/owner/smtp/config/smtp-config.module.svelte.d.ts +19 -0
  34. package/dist/reflector/controllers/owner/smtp/config/smtp-config.module.svelte.js +82 -0
  35. package/dist/reflector/controllers/public/auth/sign-in-firebase/auth-sign-in-firebase.module.svelte.d.ts +29 -0
  36. package/dist/reflector/controllers/public/auth/sign-in-firebase/auth-sign-in-firebase.module.svelte.js +223 -0
  37. package/dist/reflector/controllers/public/reset-password/tenant/send-recovery-email/tenant-send-recovery-email.module.svelte.d.ts +13 -0
  38. package/dist/reflector/controllers/public/reset-password/tenant/send-recovery-email/tenant-send-recovery-email.module.svelte.js +49 -0
  39. package/dist/reflector/controllers/restricted/account/avatar-file-upload/account-avatar-file-upload.module.svelte.d.ts +19 -0
  40. package/dist/reflector/controllers/restricted/account/avatar-file-upload/account-avatar-file-upload.module.svelte.js +114 -0
  41. package/dist/reflector/controllers/restricted/bank/restricted-bank.module.svelte.d.ts +15 -0
  42. package/dist/reflector/controllers/restricted/bank/restricted-bank.module.svelte.js +78 -0
  43. package/dist/reflector/controllers/restricted/files/presigned-url/files-presigned-url.module.svelte.d.ts +11 -0
  44. package/dist/reflector/controllers/restricted/files/presigned-url/files-presigned-url.module.svelte.js +56 -0
  45. package/dist/reflector/controllers/restricted/notification/restricted-notification.module.svelte.d.ts +9 -0
  46. package/dist/reflector/controllers/restricted/notification/restricted-notification.module.svelte.js +36 -0
  47. package/dist/reflector/controllers/restricted/two-factor-auth/status/two-factor-auth-status.module.svelte.d.ts +15 -0
  48. package/dist/reflector/controllers/restricted/two-factor-auth/status/two-factor-auth-status.module.svelte.js +68 -0
  49. package/dist/reflector/reflector.types.d.ts +4 -0
  50. package/dist/reflector/reflector.types.js +4 -0
  51. package/dist/reflector/schemas.d.ts +357 -0
  52. package/dist/reflector/schemas.js +1709 -0
  53. package/dist/request.d.ts +2 -0
  54. package/dist/request.js +8 -0
  55. package/dist/schema.d.ts +1 -0
  56. package/dist/schema.js +9 -5
  57. package/package.json +1 -1
@@ -0,0 +1,68 @@
1
+ // AUTO GERADO. QUEM ALTERAR GOSTA DE RAPAZES!
2
+ import repo from "$repository/main";
3
+ import { Behavior } from "$reflector/reflector.types";
4
+ import { PUBLIC_ENVIRONMENT } from "$env/static/public";
5
+ import { RestrictedVerifyTwoFactorAuthDtoSchema, EmptyRestrictedVerifyTwoFactorAuthDtoSchema, RestrictedDisableTwoFactorAuthDtoSchema, EmptyRestrictedDisableTwoFactorAuthDtoSchema, } from "$reflector/schemas";
6
+ export class AccountTwoFactorAuthModule {
7
+ loading = $state(false);
8
+ forms = $state({
9
+ verifyTwoFactorAuth: repo.newForm(EmptyRestrictedVerifyTwoFactorAuthDtoSchema),
10
+ });
11
+ constructor(params) {
12
+ const isEmpty = params?.empty || PUBLIC_ENVIRONMENT != "DEV";
13
+ this.forms = this.buildForms(isEmpty);
14
+ }
15
+ buildForms(isEmpty) {
16
+ if (isEmpty)
17
+ return this.forms;
18
+ return {
19
+ verifyTwoFactorAuth: repo.newForm(RestrictedVerifyTwoFactorAuthDtoSchema),
20
+ };
21
+ }
22
+ /** Necessário verificar o código 2FA após ativar a autenticação de dois fatores */
23
+ async verifyTwoFactorAuth(behavior = new Behavior()) {
24
+ const { onError, onSuccess } = behavior;
25
+ const endpoint = "restricted/two-factor-auth/verify";
26
+ this.loading = true;
27
+ const data = repo.intercept.bundle(this.forms.verifyTwoFactorAuth);
28
+ try {
29
+ const response = await repo.api.post({
30
+ endpoint,
31
+ data,
32
+ });
33
+ onSuccess?.();
34
+ return response;
35
+ }
36
+ catch (e) {
37
+ onError?.(e);
38
+ }
39
+ finally {
40
+ this.loading = false;
41
+ }
42
+ }
43
+ /** Desativar autenticação de dois fatores */
44
+ async disableTwoFactorAuth(behavior = new Behavior()) {
45
+ const { onError, onSuccess } = behavior;
46
+ const endpoint = "restricted/two-factor-auth/disable";
47
+ try {
48
+ const response = await repo.api.delete({
49
+ endpoint,
50
+ queryData: {},
51
+ });
52
+ onSuccess?.();
53
+ return response;
54
+ }
55
+ catch (e) {
56
+ onError?.(e);
57
+ }
58
+ finally {
59
+ this.loading = false;
60
+ }
61
+ }
62
+ clearForms() {
63
+ this.forms = this.buildForms(true);
64
+ }
65
+ reset() {
66
+ this.clearForms();
67
+ }
68
+ }
@@ -0,0 +1,4 @@
1
+ export declare class Behavior {
2
+ onError?: (e: any) => void;
3
+ onSuccess?: () => void;
4
+ }
@@ -0,0 +1,4 @@
1
+ export class Behavior {
2
+ onError;
3
+ onSuccess;
4
+ }
@@ -0,0 +1,357 @@
1
+ import z from "zod";
2
+ export declare const OwnerSignUpResponseSchema: any;
3
+ export type OwnerSignUpResponse = z.infer<typeof OwnerSignUpResponseSchema>;
4
+ export declare const EmptyOwnerSignUpResponseSchema: any;
5
+ export type EmptyOwnerSignUpResponse = z.infer<typeof EmptyOwnerSignUpResponseSchema>;
6
+ export declare const OwnerFirebaseCredentialsSignUpSchema: any;
7
+ export type OwnerFirebaseCredentialsSignUp = z.infer<typeof OwnerFirebaseCredentialsSignUpSchema>;
8
+ export declare const EmptyOwnerFirebaseCredentialsSignUpSchema: any;
9
+ export type EmptyOwnerFirebaseCredentialsSignUp = z.infer<typeof EmptyOwnerFirebaseCredentialsSignUpSchema>;
10
+ export declare const CustomerSignUpResponseSchema: any;
11
+ export type CustomerSignUpResponse = z.infer<typeof CustomerSignUpResponseSchema>;
12
+ export declare const EmptyCustomerSignUpResponseSchema: any;
13
+ export type EmptyCustomerSignUpResponse = z.infer<typeof EmptyCustomerSignUpResponseSchema>;
14
+ export declare const CustomerFirebaseCredentialsSignUpSchema: any;
15
+ export type CustomerFirebaseCredentialsSignUp = z.infer<typeof CustomerFirebaseCredentialsSignUpSchema>;
16
+ export declare const EmptyCustomerFirebaseCredentialsSignUpSchema: any;
17
+ export type EmptyCustomerFirebaseCredentialsSignUp = z.infer<typeof EmptyCustomerFirebaseCredentialsSignUpSchema>;
18
+ export declare const OwnerSignUpDataDtoSchema: any;
19
+ export type OwnerSignUpDataDto = z.infer<typeof OwnerSignUpDataDtoSchema>;
20
+ export declare const EmptyOwnerSignUpDataDtoSchema: any;
21
+ export type EmptyOwnerSignUpDataDto = z.infer<typeof EmptyOwnerSignUpDataDtoSchema>;
22
+ export declare const CustomerSignUpDtoSchema: any;
23
+ export type CustomerSignUpDto = z.infer<typeof CustomerSignUpDtoSchema>;
24
+ export declare const EmptyCustomerSignUpDtoSchema: any;
25
+ export type EmptyCustomerSignUpDto = z.infer<typeof EmptyCustomerSignUpDtoSchema>;
26
+ export declare const DefaultSignInResponseSchema: any;
27
+ export type DefaultSignInResponse = z.infer<typeof DefaultSignInResponseSchema>;
28
+ export declare const EmptyDefaultSignInResponseSchema: any;
29
+ export type EmptyDefaultSignInResponse = z.infer<typeof EmptyDefaultSignInResponseSchema>;
30
+ export declare const BackOfficeSignInDataDtoSchema: any;
31
+ export type BackOfficeSignInDataDto = z.infer<typeof BackOfficeSignInDataDtoSchema>;
32
+ export declare const EmptyBackOfficeSignInDataDtoSchema: any;
33
+ export type EmptyBackOfficeSignInDataDto = z.infer<typeof EmptyBackOfficeSignInDataDtoSchema>;
34
+ export declare const TenantSignInResponseSchema: any;
35
+ export type TenantSignInResponse = z.infer<typeof TenantSignInResponseSchema>;
36
+ export declare const EmptyTenantSignInResponseSchema: any;
37
+ export type EmptyTenantSignInResponse = z.infer<typeof EmptyTenantSignInResponseSchema>;
38
+ export declare const TenantSignInDataDtoSchema: any;
39
+ export type TenantSignInDataDto = z.infer<typeof TenantSignInDataDtoSchema>;
40
+ export declare const EmptyTenantSignInDataDtoSchema: any;
41
+ export type EmptyTenantSignInDataDto = z.infer<typeof EmptyTenantSignInDataDtoSchema>;
42
+ export declare const TenantSendAccountRecoveryEmailDtoSchema: any;
43
+ export type TenantSendAccountRecoveryEmailDto = z.infer<typeof TenantSendAccountRecoveryEmailDtoSchema>;
44
+ export declare const EmptyTenantSendAccountRecoveryEmailDtoSchema: any;
45
+ export type EmptyTenantSendAccountRecoveryEmailDto = z.infer<typeof EmptyTenantSendAccountRecoveryEmailDtoSchema>;
46
+ export declare const BackOfficeSendAccountRecoveryEmailDtoSchema: any;
47
+ export type BackOfficeSendAccountRecoveryEmailDto = z.infer<typeof BackOfficeSendAccountRecoveryEmailDtoSchema>;
48
+ export declare const EmptyBackOfficeSendAccountRecoveryEmailDtoSchema: any;
49
+ export type EmptyBackOfficeSendAccountRecoveryEmailDto = z.infer<typeof EmptyBackOfficeSendAccountRecoveryEmailDtoSchema>;
50
+ export declare const DefaultValidateTokenResSchema: any;
51
+ export type DefaultValidateTokenRes = z.infer<typeof DefaultValidateTokenResSchema>;
52
+ export declare const EmptyDefaultValidateTokenResSchema: any;
53
+ export type EmptyDefaultValidateTokenRes = z.infer<typeof EmptyDefaultValidateTokenResSchema>;
54
+ export declare const DefaultValidateTokenDtoSchema: any;
55
+ export type DefaultValidateTokenDto = z.infer<typeof DefaultValidateTokenDtoSchema>;
56
+ export declare const EmptyDefaultValidateTokenDtoSchema: any;
57
+ export type EmptyDefaultValidateTokenDto = z.infer<typeof EmptyDefaultValidateTokenDtoSchema>;
58
+ export declare const DefaultResetPasswordDtoSchema: any;
59
+ export type DefaultResetPasswordDto = z.infer<typeof DefaultResetPasswordDtoSchema>;
60
+ export declare const EmptyDefaultResetPasswordDtoSchema: any;
61
+ export type EmptyDefaultResetPasswordDto = z.infer<typeof EmptyDefaultResetPasswordDtoSchema>;
62
+ export declare const BankResponseSchema: any;
63
+ export type BankResponse = z.infer<typeof BankResponseSchema>;
64
+ export declare const EmptyBankResponseSchema: any;
65
+ export type EmptyBankResponse = z.infer<typeof EmptyBankResponseSchema>;
66
+ export declare const ListBanksResponseSchema: any;
67
+ export type ListBanksResponse = z.infer<typeof ListBanksResponseSchema>;
68
+ export declare const EmptyListBanksResponseSchema: any;
69
+ export type EmptyListBanksResponse = z.infer<typeof EmptyListBanksResponseSchema>;
70
+ export declare const RepoRequestFileUploadUrlDtoSchema: any;
71
+ export type RepoRequestFileUploadUrlDto = z.infer<typeof RepoRequestFileUploadUrlDtoSchema>;
72
+ export declare const EmptyRepoRequestFileUploadUrlDtoSchema: any;
73
+ export type EmptyRepoRequestFileUploadUrlDto = z.infer<typeof EmptyRepoRequestFileUploadUrlDtoSchema>;
74
+ export declare const RepoSuccessResSchema: any;
75
+ export type RepoSuccessRes = z.infer<typeof RepoSuccessResSchema>;
76
+ export declare const EmptyRepoSuccessResSchema: any;
77
+ export type EmptyRepoSuccessRes = z.infer<typeof EmptyRepoSuccessResSchema>;
78
+ export declare const UpdateNotificationResponseSchema: any;
79
+ export type UpdateNotificationResponse = z.infer<typeof UpdateNotificationResponseSchema>;
80
+ export declare const EmptyUpdateNotificationResponseSchema: any;
81
+ export type EmptyUpdateNotificationResponse = z.infer<typeof EmptyUpdateNotificationResponseSchema>;
82
+ export declare const RepoRequestFileUploadUrlResponseSchema: any;
83
+ export type RepoRequestFileUploadUrlResponse = z.infer<typeof RepoRequestFileUploadUrlResponseSchema>;
84
+ export declare const EmptyRepoRequestFileUploadUrlResponseSchema: any;
85
+ export type EmptyRepoRequestFileUploadUrlResponse = z.infer<typeof EmptyRepoRequestFileUploadUrlResponseSchema>;
86
+ export declare const RepoRequestEssentialFileInfoDtoSchema: any;
87
+ export type RepoRequestEssentialFileInfoDto = z.infer<typeof RepoRequestEssentialFileInfoDtoSchema>;
88
+ export declare const EmptyRepoRequestEssentialFileInfoDtoSchema: any;
89
+ export type EmptyRepoRequestEssentialFileInfoDto = z.infer<typeof EmptyRepoRequestEssentialFileInfoDtoSchema>;
90
+ export declare const DefaultChangePasswordResponseSchema: any;
91
+ export type DefaultChangePasswordResponse = z.infer<typeof DefaultChangePasswordResponseSchema>;
92
+ export declare const EmptyDefaultChangePasswordResponseSchema: any;
93
+ export type EmptyDefaultChangePasswordResponse = z.infer<typeof EmptyDefaultChangePasswordResponseSchema>;
94
+ export declare const DefaultChangePasswordDtoSchema: any;
95
+ export type DefaultChangePasswordDto = z.infer<typeof DefaultChangePasswordDtoSchema>;
96
+ export declare const EmptyDefaultChangePasswordDtoSchema: any;
97
+ export type EmptyDefaultChangePasswordDto = z.infer<typeof EmptyDefaultChangePasswordDtoSchema>;
98
+ export declare const RestrictedSaveAvatarResponseSchema: any;
99
+ export type RestrictedSaveAvatarResponse = z.infer<typeof RestrictedSaveAvatarResponseSchema>;
100
+ export declare const EmptyRestrictedSaveAvatarResponseSchema: any;
101
+ export type EmptyRestrictedSaveAvatarResponse = z.infer<typeof EmptyRestrictedSaveAvatarResponseSchema>;
102
+ export declare const RestrictedSaveAvatarDtoSchema: any;
103
+ export type RestrictedSaveAvatarDto = z.infer<typeof RestrictedSaveAvatarDtoSchema>;
104
+ export declare const EmptyRestrictedSaveAvatarDtoSchema: any;
105
+ export type EmptyRestrictedSaveAvatarDto = z.infer<typeof EmptyRestrictedSaveAvatarDtoSchema>;
106
+ export declare const RestrictedRemoveAvatarResponseSchema: any;
107
+ export type RestrictedRemoveAvatarResponse = z.infer<typeof RestrictedRemoveAvatarResponseSchema>;
108
+ export declare const EmptyRestrictedRemoveAvatarResponseSchema: any;
109
+ export type EmptyRestrictedRemoveAvatarResponse = z.infer<typeof EmptyRestrictedRemoveAvatarResponseSchema>;
110
+ export declare const RestrictedVerifyTwoFactorAuthResponseSchema: any;
111
+ export type RestrictedVerifyTwoFactorAuthResponse = z.infer<typeof RestrictedVerifyTwoFactorAuthResponseSchema>;
112
+ export declare const EmptyRestrictedVerifyTwoFactorAuthResponseSchema: any;
113
+ export type EmptyRestrictedVerifyTwoFactorAuthResponse = z.infer<typeof EmptyRestrictedVerifyTwoFactorAuthResponseSchema>;
114
+ export declare const RestrictedVerifyTwoFactorAuthDtoSchema: any;
115
+ export type RestrictedVerifyTwoFactorAuthDto = z.infer<typeof RestrictedVerifyTwoFactorAuthDtoSchema>;
116
+ export declare const EmptyRestrictedVerifyTwoFactorAuthDtoSchema: any;
117
+ export type EmptyRestrictedVerifyTwoFactorAuthDto = z.infer<typeof EmptyRestrictedVerifyTwoFactorAuthDtoSchema>;
118
+ export declare const RestrictedDisableTwoFactorAuthDtoSchema: any;
119
+ export type RestrictedDisableTwoFactorAuthDto = z.infer<typeof RestrictedDisableTwoFactorAuthDtoSchema>;
120
+ export declare const EmptyRestrictedDisableTwoFactorAuthDtoSchema: any;
121
+ export type EmptyRestrictedDisableTwoFactorAuthDto = z.infer<typeof EmptyRestrictedDisableTwoFactorAuthDtoSchema>;
122
+ export declare const AccountResSchema: any;
123
+ export type AccountRes = z.infer<typeof AccountResSchema>;
124
+ export declare const EmptyAccountResSchema: any;
125
+ export type EmptyAccountRes = z.infer<typeof EmptyAccountResSchema>;
126
+ export declare const OwnerResSchema: any;
127
+ export type OwnerRes = z.infer<typeof OwnerResSchema>;
128
+ export declare const EmptyOwnerResSchema: any;
129
+ export type EmptyOwnerRes = z.infer<typeof EmptyOwnerResSchema>;
130
+ export declare const AdminGetOwnerResponseSchema: any;
131
+ export type AdminGetOwnerResponse = z.infer<typeof AdminGetOwnerResponseSchema>;
132
+ export declare const EmptyAdminGetOwnerResponseSchema: any;
133
+ export type EmptyAdminGetOwnerResponse = z.infer<typeof EmptyAdminGetOwnerResponseSchema>;
134
+ export declare const AdminListOwnersResponseSchema: any;
135
+ export type AdminListOwnersResponse = z.infer<typeof AdminListOwnersResponseSchema>;
136
+ export declare const EmptyAdminListOwnersResponseSchema: any;
137
+ export type EmptyAdminListOwnersResponse = z.infer<typeof EmptyAdminListOwnersResponseSchema>;
138
+ export declare const SelfGetOwnerUserResponseSchema: any;
139
+ export type SelfGetOwnerUserResponse = z.infer<typeof SelfGetOwnerUserResponseSchema>;
140
+ export declare const EmptySelfGetOwnerUserResponseSchema: any;
141
+ export type EmptySelfGetOwnerUserResponse = z.infer<typeof EmptySelfGetOwnerUserResponseSchema>;
142
+ export declare const AdminChangeUserStatusResponseSchema: any;
143
+ export type AdminChangeUserStatusResponse = z.infer<typeof AdminChangeUserStatusResponseSchema>;
144
+ export declare const EmptyAdminChangeUserStatusResponseSchema: any;
145
+ export type EmptyAdminChangeUserStatusResponse = z.infer<typeof EmptyAdminChangeUserStatusResponseSchema>;
146
+ export declare const AdminChangeUserStatusDtoSchema: any;
147
+ export type AdminChangeUserStatusDto = z.infer<typeof AdminChangeUserStatusDtoSchema>;
148
+ export declare const EmptyAdminChangeUserStatusDtoSchema: any;
149
+ export type EmptyAdminChangeUserStatusDto = z.infer<typeof EmptyAdminChangeUserStatusDtoSchema>;
150
+ export declare const MemberResSchema: any;
151
+ export type MemberRes = z.infer<typeof MemberResSchema>;
152
+ export declare const EmptyMemberResSchema: any;
153
+ export type EmptyMemberRes = z.infer<typeof EmptyMemberResSchema>;
154
+ export declare const SelfGetMemberUserAccountResponseSchema: any;
155
+ export type SelfGetMemberUserAccountResponse = z.infer<typeof SelfGetMemberUserAccountResponseSchema>;
156
+ export declare const EmptySelfGetMemberUserAccountResponseSchema: any;
157
+ export type EmptySelfGetMemberUserAccountResponse = z.infer<typeof EmptySelfGetMemberUserAccountResponseSchema>;
158
+ export declare const KycAttemptDetailsResSchema: any;
159
+ export type KycAttemptDetailsRes = z.infer<typeof KycAttemptDetailsResSchema>;
160
+ export declare const EmptyKycAttemptDetailsResSchema: any;
161
+ export type EmptyKycAttemptDetailsRes = z.infer<typeof EmptyKycAttemptDetailsResSchema>;
162
+ export declare const KycDocumentResSchema: any;
163
+ export type KycDocumentRes = z.infer<typeof KycDocumentResSchema>;
164
+ export declare const EmptyKycDocumentResSchema: any;
165
+ export type EmptyKycDocumentRes = z.infer<typeof EmptyKycDocumentResSchema>;
166
+ export declare const KycAttemptCreateCustomerResponseSchema: any;
167
+ export type KycAttemptCreateCustomerResponse = z.infer<typeof KycAttemptCreateCustomerResponseSchema>;
168
+ export declare const EmptyKycAttemptCreateCustomerResponseSchema: any;
169
+ export type EmptyKycAttemptCreateCustomerResponse = z.infer<typeof EmptyKycAttemptCreateCustomerResponseSchema>;
170
+ export declare const RepoKycAttemptDetailsCreateDtoSchema: any;
171
+ export type RepoKycAttemptDetailsCreateDto = z.infer<typeof RepoKycAttemptDetailsCreateDtoSchema>;
172
+ export declare const EmptyRepoKycAttemptDetailsCreateDtoSchema: any;
173
+ export type EmptyRepoKycAttemptDetailsCreateDto = z.infer<typeof EmptyRepoKycAttemptDetailsCreateDtoSchema>;
174
+ export declare const KycAttemptCreateCustomerDtoSchema: any;
175
+ export type KycAttemptCreateCustomerDto = z.infer<typeof KycAttemptCreateCustomerDtoSchema>;
176
+ export declare const EmptyKycAttemptCreateCustomerDtoSchema: any;
177
+ export type EmptyKycAttemptCreateCustomerDto = z.infer<typeof EmptyKycAttemptCreateCustomerDtoSchema>;
178
+ export declare const KycDocumentSaveCustomerResponseSchema: any;
179
+ export type KycDocumentSaveCustomerResponse = z.infer<typeof KycDocumentSaveCustomerResponseSchema>;
180
+ export declare const EmptyKycDocumentSaveCustomerResponseSchema: any;
181
+ export type EmptyKycDocumentSaveCustomerResponse = z.infer<typeof EmptyKycDocumentSaveCustomerResponseSchema>;
182
+ export declare const KycDocumentSaveCustomerDtoSchema: any;
183
+ export type KycDocumentSaveCustomerDto = z.infer<typeof KycDocumentSaveCustomerDtoSchema>;
184
+ export declare const EmptyKycDocumentSaveCustomerDtoSchema: any;
185
+ export type EmptyKycDocumentSaveCustomerDto = z.infer<typeof EmptyKycDocumentSaveCustomerDtoSchema>;
186
+ export declare const KycDocumentWithUrlResponseSchema: any;
187
+ export type KycDocumentWithUrlResponse = z.infer<typeof KycDocumentWithUrlResponseSchema>;
188
+ export declare const EmptyKycDocumentWithUrlResponseSchema: any;
189
+ export type EmptyKycDocumentWithUrlResponse = z.infer<typeof EmptyKycDocumentWithUrlResponseSchema>;
190
+ export declare const KycAttemptGetCustomerResponseSchema: any;
191
+ export type KycAttemptGetCustomerResponse = z.infer<typeof KycAttemptGetCustomerResponseSchema>;
192
+ export declare const EmptyKycAttemptGetCustomerResponseSchema: any;
193
+ export type EmptyKycAttemptGetCustomerResponse = z.infer<typeof EmptyKycAttemptGetCustomerResponseSchema>;
194
+ export declare const RepoKycAttemptCustomerResponseSchema: any;
195
+ export type RepoKycAttemptCustomerResponse = z.infer<typeof RepoKycAttemptCustomerResponseSchema>;
196
+ export declare const EmptyRepoKycAttemptCustomerResponseSchema: any;
197
+ export type EmptyRepoKycAttemptCustomerResponse = z.infer<typeof EmptyRepoKycAttemptCustomerResponseSchema>;
198
+ export declare const KycAttemptsListCustomerResponseSchema: any;
199
+ export type KycAttemptsListCustomerResponse = z.infer<typeof KycAttemptsListCustomerResponseSchema>;
200
+ export declare const EmptyKycAttemptsListCustomerResponseSchema: any;
201
+ export type EmptyKycAttemptsListCustomerResponse = z.infer<typeof EmptyKycAttemptsListCustomerResponseSchema>;
202
+ export declare const KycConfigCreateAdminResponseSchema: any;
203
+ export type KycConfigCreateAdminResponse = z.infer<typeof KycConfigCreateAdminResponseSchema>;
204
+ export declare const EmptyKycConfigCreateAdminResponseSchema: any;
205
+ export type EmptyKycConfigCreateAdminResponse = z.infer<typeof EmptyKycConfigCreateAdminResponseSchema>;
206
+ export declare const KycConfigCreateAdminDtoSchema: any;
207
+ export type KycConfigCreateAdminDto = z.infer<typeof KycConfigCreateAdminDtoSchema>;
208
+ export declare const EmptyKycConfigCreateAdminDtoSchema: any;
209
+ export type EmptyKycConfigCreateAdminDto = z.infer<typeof EmptyKycConfigCreateAdminDtoSchema>;
210
+ export declare const KycConfigGetAdminResponseSchema: any;
211
+ export type KycConfigGetAdminResponse = z.infer<typeof KycConfigGetAdminResponseSchema>;
212
+ export declare const EmptyKycConfigGetAdminResponseSchema: any;
213
+ export type EmptyKycConfigGetAdminResponse = z.infer<typeof EmptyKycConfigGetAdminResponseSchema>;
214
+ export declare const RepoKycAttemptResSchema: any;
215
+ export type RepoKycAttemptRes = z.infer<typeof RepoKycAttemptResSchema>;
216
+ export declare const EmptyRepoKycAttemptResSchema: any;
217
+ export type EmptyRepoKycAttemptRes = z.infer<typeof EmptyRepoKycAttemptResSchema>;
218
+ export declare const KycAttemptListAdminResponseSchema: any;
219
+ export type KycAttemptListAdminResponse = z.infer<typeof KycAttemptListAdminResponseSchema>;
220
+ export declare const EmptyKycAttemptListAdminResponseSchema: any;
221
+ export type EmptyKycAttemptListAdminResponse = z.infer<typeof EmptyKycAttemptListAdminResponseSchema>;
222
+ export declare const KycAttemptGetAdminResponseSchema: any;
223
+ export type KycAttemptGetAdminResponse = z.infer<typeof KycAttemptGetAdminResponseSchema>;
224
+ export declare const EmptyKycAttemptGetAdminResponseSchema: any;
225
+ export type EmptyKycAttemptGetAdminResponse = z.infer<typeof EmptyKycAttemptGetAdminResponseSchema>;
226
+ export declare const KycAttemptApproveAdminResponseSchema: any;
227
+ export type KycAttemptApproveAdminResponse = z.infer<typeof KycAttemptApproveAdminResponseSchema>;
228
+ export declare const EmptyKycAttemptApproveAdminResponseSchema: any;
229
+ export type EmptyKycAttemptApproveAdminResponse = z.infer<typeof EmptyKycAttemptApproveAdminResponseSchema>;
230
+ export declare const KycAttemptApproveAdminDtoSchema: any;
231
+ export type KycAttemptApproveAdminDto = z.infer<typeof KycAttemptApproveAdminDtoSchema>;
232
+ export declare const EmptyKycAttemptApproveAdminDtoSchema: any;
233
+ export type EmptyKycAttemptApproveAdminDto = z.infer<typeof EmptyKycAttemptApproveAdminDtoSchema>;
234
+ export declare const KycAttemptRejectAdminResponseSchema: any;
235
+ export type KycAttemptRejectAdminResponse = z.infer<typeof KycAttemptRejectAdminResponseSchema>;
236
+ export declare const EmptyKycAttemptRejectAdminResponseSchema: any;
237
+ export type EmptyKycAttemptRejectAdminResponse = z.infer<typeof EmptyKycAttemptRejectAdminResponseSchema>;
238
+ export declare const KycAttemptRejectAdminDtoSchema: any;
239
+ export type KycAttemptRejectAdminDto = z.infer<typeof KycAttemptRejectAdminDtoSchema>;
240
+ export declare const EmptyKycAttemptRejectAdminDtoSchema: any;
241
+ export type EmptyKycAttemptRejectAdminDto = z.infer<typeof EmptyKycAttemptRejectAdminDtoSchema>;
242
+ export declare const KycAttemptRequestCorrectionAdminResponseSchema: any;
243
+ export type KycAttemptRequestCorrectionAdminResponse = z.infer<typeof KycAttemptRequestCorrectionAdminResponseSchema>;
244
+ export declare const EmptyKycAttemptRequestCorrectionAdminResponseSchema: any;
245
+ export type EmptyKycAttemptRequestCorrectionAdminResponse = z.infer<typeof EmptyKycAttemptRequestCorrectionAdminResponseSchema>;
246
+ export declare const KycDocumentApproveAdminResponseSchema: any;
247
+ export type KycDocumentApproveAdminResponse = z.infer<typeof KycDocumentApproveAdminResponseSchema>;
248
+ export declare const EmptyKycDocumentApproveAdminResponseSchema: any;
249
+ export type EmptyKycDocumentApproveAdminResponse = z.infer<typeof EmptyKycDocumentApproveAdminResponseSchema>;
250
+ export declare const KycDocumentRejectAdminResponseSchema: any;
251
+ export type KycDocumentRejectAdminResponse = z.infer<typeof KycDocumentRejectAdminResponseSchema>;
252
+ export declare const EmptyKycDocumentRejectAdminResponseSchema: any;
253
+ export type EmptyKycDocumentRejectAdminResponse = z.infer<typeof EmptyKycDocumentRejectAdminResponseSchema>;
254
+ export declare const KycDocumentRejectAdminDtoSchema: any;
255
+ export type KycDocumentRejectAdminDto = z.infer<typeof KycDocumentRejectAdminDtoSchema>;
256
+ export declare const EmptyKycDocumentRejectAdminDtoSchema: any;
257
+ export type EmptyKycDocumentRejectAdminDto = z.infer<typeof EmptyKycDocumentRejectAdminDtoSchema>;
258
+ export declare const KycConfigCreateOwnerResponseSchema: any;
259
+ export type KycConfigCreateOwnerResponse = z.infer<typeof KycConfigCreateOwnerResponseSchema>;
260
+ export declare const EmptyKycConfigCreateOwnerResponseSchema: any;
261
+ export type EmptyKycConfigCreateOwnerResponse = z.infer<typeof EmptyKycConfigCreateOwnerResponseSchema>;
262
+ export declare const KycConfigCreateOwnerDtoSchema: any;
263
+ export type KycConfigCreateOwnerDto = z.infer<typeof KycConfigCreateOwnerDtoSchema>;
264
+ export declare const EmptyKycConfigCreateOwnerDtoSchema: any;
265
+ export type EmptyKycConfigCreateOwnerDto = z.infer<typeof EmptyKycConfigCreateOwnerDtoSchema>;
266
+ export declare const KycConfigGetOwnerResponseSchema: any;
267
+ export type KycConfigGetOwnerResponse = z.infer<typeof KycConfigGetOwnerResponseSchema>;
268
+ export declare const EmptyKycConfigGetOwnerResponseSchema: any;
269
+ export type EmptyKycConfigGetOwnerResponse = z.infer<typeof EmptyKycConfigGetOwnerResponseSchema>;
270
+ export declare const KycAttemptListOwnerResponseSchema: any;
271
+ export type KycAttemptListOwnerResponse = z.infer<typeof KycAttemptListOwnerResponseSchema>;
272
+ export declare const EmptyKycAttemptListOwnerResponseSchema: any;
273
+ export type EmptyKycAttemptListOwnerResponse = z.infer<typeof EmptyKycAttemptListOwnerResponseSchema>;
274
+ export declare const KycAttemptGetOwnerResponseSchema: any;
275
+ export type KycAttemptGetOwnerResponse = z.infer<typeof KycAttemptGetOwnerResponseSchema>;
276
+ export declare const EmptyKycAttemptGetOwnerResponseSchema: any;
277
+ export type EmptyKycAttemptGetOwnerResponse = z.infer<typeof EmptyKycAttemptGetOwnerResponseSchema>;
278
+ export declare const KycAttemptApproveOwnerResponseSchema: any;
279
+ export type KycAttemptApproveOwnerResponse = z.infer<typeof KycAttemptApproveOwnerResponseSchema>;
280
+ export declare const EmptyKycAttemptApproveOwnerResponseSchema: any;
281
+ export type EmptyKycAttemptApproveOwnerResponse = z.infer<typeof EmptyKycAttemptApproveOwnerResponseSchema>;
282
+ export declare const KycAttemptApproveOwnerDtoSchema: any;
283
+ export type KycAttemptApproveOwnerDto = z.infer<typeof KycAttemptApproveOwnerDtoSchema>;
284
+ export declare const EmptyKycAttemptApproveOwnerDtoSchema: any;
285
+ export type EmptyKycAttemptApproveOwnerDto = z.infer<typeof EmptyKycAttemptApproveOwnerDtoSchema>;
286
+ export declare const KycAttemptRejectOwnerResponseSchema: any;
287
+ export type KycAttemptRejectOwnerResponse = z.infer<typeof KycAttemptRejectOwnerResponseSchema>;
288
+ export declare const EmptyKycAttemptRejectOwnerResponseSchema: any;
289
+ export type EmptyKycAttemptRejectOwnerResponse = z.infer<typeof EmptyKycAttemptRejectOwnerResponseSchema>;
290
+ export declare const KycAttemptRejectOwnerDtoSchema: any;
291
+ export type KycAttemptRejectOwnerDto = z.infer<typeof KycAttemptRejectOwnerDtoSchema>;
292
+ export declare const EmptyKycAttemptRejectOwnerDtoSchema: any;
293
+ export type EmptyKycAttemptRejectOwnerDto = z.infer<typeof EmptyKycAttemptRejectOwnerDtoSchema>;
294
+ export declare const KycAttemptRequestCorrectionOwnerResponseSchema: any;
295
+ export type KycAttemptRequestCorrectionOwnerResponse = z.infer<typeof KycAttemptRequestCorrectionOwnerResponseSchema>;
296
+ export declare const EmptyKycAttemptRequestCorrectionOwnerResponseSchema: any;
297
+ export type EmptyKycAttemptRequestCorrectionOwnerResponse = z.infer<typeof EmptyKycAttemptRequestCorrectionOwnerResponseSchema>;
298
+ export declare const KycDocumentApproveOwnerResponseSchema: any;
299
+ export type KycDocumentApproveOwnerResponse = z.infer<typeof KycDocumentApproveOwnerResponseSchema>;
300
+ export declare const EmptyKycDocumentApproveOwnerResponseSchema: any;
301
+ export type EmptyKycDocumentApproveOwnerResponse = z.infer<typeof EmptyKycDocumentApproveOwnerResponseSchema>;
302
+ export declare const KycDocumentRejectOwnerResponseSchema: any;
303
+ export type KycDocumentRejectOwnerResponse = z.infer<typeof KycDocumentRejectOwnerResponseSchema>;
304
+ export declare const EmptyKycDocumentRejectOwnerResponseSchema: any;
305
+ export type EmptyKycDocumentRejectOwnerResponse = z.infer<typeof EmptyKycDocumentRejectOwnerResponseSchema>;
306
+ export declare const KycDocumentRejectOwnerDtoSchema: any;
307
+ export type KycDocumentRejectOwnerDto = z.infer<typeof KycDocumentRejectOwnerDtoSchema>;
308
+ export declare const EmptyKycDocumentRejectOwnerDtoSchema: any;
309
+ export type EmptyKycDocumentRejectOwnerDto = z.infer<typeof EmptyKycDocumentRejectOwnerDtoSchema>;
310
+ export declare const KycAttemptCreateOwnerSelfResponseSchema: any;
311
+ export type KycAttemptCreateOwnerSelfResponse = z.infer<typeof KycAttemptCreateOwnerSelfResponseSchema>;
312
+ export declare const EmptyKycAttemptCreateOwnerSelfResponseSchema: any;
313
+ export type EmptyKycAttemptCreateOwnerSelfResponse = z.infer<typeof EmptyKycAttemptCreateOwnerSelfResponseSchema>;
314
+ export declare const KycAttemptCreateOwnerSelfDtoSchema: any;
315
+ export type KycAttemptCreateOwnerSelfDto = z.infer<typeof KycAttemptCreateOwnerSelfDtoSchema>;
316
+ export declare const EmptyKycAttemptCreateOwnerSelfDtoSchema: any;
317
+ export type EmptyKycAttemptCreateOwnerSelfDto = z.infer<typeof EmptyKycAttemptCreateOwnerSelfDtoSchema>;
318
+ export declare const KycDocumentSaveOwnerSelfResponseSchema: any;
319
+ export type KycDocumentSaveOwnerSelfResponse = z.infer<typeof KycDocumentSaveOwnerSelfResponseSchema>;
320
+ export declare const EmptyKycDocumentSaveOwnerSelfResponseSchema: any;
321
+ export type EmptyKycDocumentSaveOwnerSelfResponse = z.infer<typeof EmptyKycDocumentSaveOwnerSelfResponseSchema>;
322
+ export declare const KycDocumentSaveOwnerSelfDtoSchema: any;
323
+ export type KycDocumentSaveOwnerSelfDto = z.infer<typeof KycDocumentSaveOwnerSelfDtoSchema>;
324
+ export declare const EmptyKycDocumentSaveOwnerSelfDtoSchema: any;
325
+ export type EmptyKycDocumentSaveOwnerSelfDto = z.infer<typeof EmptyKycDocumentSaveOwnerSelfDtoSchema>;
326
+ export declare const KycAttemptGetOwnerSelfResponseSchema: any;
327
+ export type KycAttemptGetOwnerSelfResponse = z.infer<typeof KycAttemptGetOwnerSelfResponseSchema>;
328
+ export declare const EmptyKycAttemptGetOwnerSelfResponseSchema: any;
329
+ export type EmptyKycAttemptGetOwnerSelfResponse = z.infer<typeof EmptyKycAttemptGetOwnerSelfResponseSchema>;
330
+ export declare const KycAttemptsListOwnerSelfResponseSchema: any;
331
+ export type KycAttemptsListOwnerSelfResponse = z.infer<typeof KycAttemptsListOwnerSelfResponseSchema>;
332
+ export declare const EmptyKycAttemptsListOwnerSelfResponseSchema: any;
333
+ export type EmptyKycAttemptsListOwnerSelfResponse = z.infer<typeof EmptyKycAttemptsListOwnerSelfResponseSchema>;
334
+ export declare const GetSmtpConfigResSchema: any;
335
+ export type GetSmtpConfigRes = z.infer<typeof GetSmtpConfigResSchema>;
336
+ export declare const EmptyGetSmtpConfigResSchema: any;
337
+ export type EmptyGetSmtpConfigRes = z.infer<typeof EmptyGetSmtpConfigResSchema>;
338
+ export declare const RepoSaveSmtpConfigDtoSchema: any;
339
+ export type RepoSaveSmtpConfigDto = z.infer<typeof RepoSaveSmtpConfigDtoSchema>;
340
+ export declare const EmptyRepoSaveSmtpConfigDtoSchema: any;
341
+ export type EmptyRepoSaveSmtpConfigDto = z.infer<typeof EmptyRepoSaveSmtpConfigDtoSchema>;
342
+ export declare const AdminCreatePolicyDTOSchema: any;
343
+ export type AdminCreatePolicyDTO = z.infer<typeof AdminCreatePolicyDTOSchema>;
344
+ export declare const EmptyAdminCreatePolicyDTOSchema: any;
345
+ export type EmptyAdminCreatePolicyDTO = z.infer<typeof EmptyAdminCreatePolicyDTOSchema>;
346
+ export declare const AdminUpdatePolicyDTOSchema: any;
347
+ export type AdminUpdatePolicyDTO = z.infer<typeof AdminUpdatePolicyDTOSchema>;
348
+ export declare const EmptyAdminUpdatePolicyDTOSchema: any;
349
+ export type EmptyAdminUpdatePolicyDTO = z.infer<typeof EmptyAdminUpdatePolicyDTOSchema>;
350
+ export declare const OwnerCreatePolicyDTOSchema: any;
351
+ export type OwnerCreatePolicyDTO = z.infer<typeof OwnerCreatePolicyDTOSchema>;
352
+ export declare const EmptyOwnerCreatePolicyDTOSchema: any;
353
+ export type EmptyOwnerCreatePolicyDTO = z.infer<typeof EmptyOwnerCreatePolicyDTOSchema>;
354
+ export declare const OwnerUpdatePolicyDTOSchema: any;
355
+ export type OwnerUpdatePolicyDTO = z.infer<typeof OwnerUpdatePolicyDTOSchema>;
356
+ export declare const EmptyOwnerUpdatePolicyDTOSchema: any;
357
+ export type EmptyOwnerUpdatePolicyDTO = z.infer<typeof EmptyOwnerUpdatePolicyDTOSchema>;