@yuno-payments/dashboard-api-mfe 1.2.4 → 1.2.12

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 (28) hide show
  1. package/build/cjs/index.js +39 -205
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/cjs/types/api/api.d.ts +12 -8
  4. package/build/cjs/types/api/api.types.d.ts +2 -0
  5. package/build/cjs/types/msw/mocks/installments/installments.mock.d.ts +3 -0
  6. package/build/cjs/types/mutations/developers/developers.mutation.d.ts +0 -7
  7. package/build/cjs/types/mutations/installments/installments.mutation.d.ts +6 -0
  8. package/build/cjs/types/mutations/security/security.mutation.d.ts +2 -0
  9. package/build/cjs/types/queries/accounts/accounts.query.d.ts +4 -0
  10. package/build/cjs/types/queries/installments/installments.query.d.ts +1 -0
  11. package/build/cjs/types/queries/users/users.query.d.ts +1 -1
  12. package/build/cjs/types/types/installments/installments.d.ts +45 -0
  13. package/build/cjs/types/types/user/user.d.ts +9 -0
  14. package/build/esm/index.js +39 -205
  15. package/build/esm/index.js.map +1 -1
  16. package/build/esm/types/api/api.d.ts +12 -8
  17. package/build/esm/types/api/api.types.d.ts +2 -0
  18. package/build/esm/types/msw/mocks/installments/installments.mock.d.ts +3 -0
  19. package/build/esm/types/mutations/developers/developers.mutation.d.ts +0 -7
  20. package/build/esm/types/mutations/installments/installments.mutation.d.ts +6 -0
  21. package/build/esm/types/mutations/security/security.mutation.d.ts +2 -0
  22. package/build/esm/types/queries/accounts/accounts.query.d.ts +4 -0
  23. package/build/esm/types/queries/installments/installments.query.d.ts +1 -0
  24. package/build/esm/types/queries/users/users.query.d.ts +1 -1
  25. package/build/esm/types/types/installments/installments.d.ts +45 -0
  26. package/build/esm/types/types/user/user.d.ts +9 -0
  27. package/build/index.d.ts +83 -17
  28. package/package.json +2 -6
@@ -296,7 +296,7 @@ export declare class Api extends HttpClient {
296
296
  getUserFull(): Promise<AxiosResponse<GetUserFullResponse, any>>;
297
297
  getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
298
298
  getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
299
- getUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
299
+ getUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string, roleIds?: string[]): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
300
300
  getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
301
301
  response: Array<{
302
302
  name: string;
@@ -304,6 +304,12 @@ export declare class Api extends HttpClient {
304
304
  code_testing: string;
305
305
  }>;
306
306
  }>>;
307
+ getRolesForImpersonation(organizationCode: string): Promise<AxiosResponse<{
308
+ roles: Array<{
309
+ id: string;
310
+ name: string;
311
+ }>;
312
+ }>>;
307
313
  updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
308
314
  inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
309
315
  inviteUsersMassiveV2<T>(data: UserInviteMultiaccountPayload): Promise<AxiosResponse<T>>;
@@ -383,6 +389,8 @@ export declare class Api extends HttpClient {
383
389
  pageSize?: number;
384
390
  }): Promise<AxiosResponse<T>>;
385
391
  changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
392
+ workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
393
+ workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
386
394
  getCardBrands<T>(): Promise<AxiosResponse<T>>;
387
395
  getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
388
396
  getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
@@ -418,6 +426,9 @@ export declare class Api extends HttpClient {
418
426
  createInstallmentsPlan<T, P = unknown>(payload: P): Promise<AxiosResponse<T>>;
419
427
  updateInstallmentsPlan<T, P = unknown>(code: string, payload: P): Promise<AxiosResponse<T>>;
420
428
  deleteInstallmentsPlan<T>(code: string): Promise<AxiosResponse<T>>;
429
+ searchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest): Promise<AxiosResponse<Installments.SearchInstallmentsPlansResponse>>;
430
+ bulkCreateInstallmentsPlans(payload: Installments.BulkCreateInstallmentsPlansRequest): Promise<AxiosResponse<Installments.BulkCreateInstallmentsPlansResponse>>;
431
+ bulkDeleteInstallmentsPlans(payload: Installments.BulkDeleteInstallmentsPlansRequest): Promise<AxiosResponse<Installments.BulkDeleteInstallmentsPlansResponse>>;
421
432
  firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
422
433
  postUserSettings<T>(payload: TimeZoneCatalog | PaymentsSettings): Promise<AxiosResponse<T>>;
423
434
  postUserSettingsTables<T>(payload: PaymentsSettings, section: string): Promise<AxiosResponse<T>>;
@@ -531,13 +542,6 @@ export declare class Api extends HttpClient {
531
542
  getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
532
543
  validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
533
544
  deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
534
- getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
535
- patchOrganizationKeysNote<T>(payload: {
536
- note: string;
537
- }, password: string): Promise<AxiosResponse<T, any>>;
538
- postOrganizationKeysRoll<T>(password: string, otp?: string): Promise<AxiosResponse<T, any>>;
539
- postOrganizationKeysTamRequest<T>(password: string, otp?: string): Promise<AxiosResponse<T, any>>;
540
- postOrganizationKeysMarkRevealed<T>(password: string, otp?: string): Promise<AxiosResponse<T, any>>;
541
545
  postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
542
546
  getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
543
547
  getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
@@ -6,6 +6,7 @@ export interface GetPaymentsParams {
6
6
  enabled?: boolean;
7
7
  account_code?: string;
8
8
  payment_link_code?: string;
9
+ recipient_id?: string;
9
10
  metadata?: Array<{
10
11
  field: string;
11
12
  formatType: 'TEXT' | 'NUMBER';
@@ -133,6 +134,7 @@ export interface GetTransactionsParams {
133
134
  page?: number;
134
135
  size?: number;
135
136
  account_code?: string;
137
+ recipient_id?: string;
136
138
  metadata?: Array<{
137
139
  field: string;
138
140
  formatType: 'TEXT' | 'NUMBER';
@@ -3,3 +3,6 @@ export declare const installmentsPlansMock: Installments.GetInstallmentsPlansRes
3
3
  export declare const createInstallmentsPlanMock: Installments.CreateInstallmentsPlanResponse;
4
4
  export declare const updateInstallmentsPlanMock: Installments.UpdateInstallmentsPlanResponse;
5
5
  export declare const deleteInstallmentsPlanMock: Installments.DeleteInstallmentsPlanResponse;
6
+ export declare const searchInstallmentsPlansMock: Installments.SearchInstallmentsPlansResponse;
7
+ export declare const bulkCreateInstallmentsPlansMock: Installments.BulkCreateInstallmentsPlansResponse;
8
+ export declare const bulkDeleteInstallmentsPlansMock: Installments.BulkDeleteInstallmentsPlansResponse;
@@ -20,12 +20,5 @@ export declare function useGetCredentialsMFA(): UseMutationResult<{
20
20
  }, unknown, {
21
21
  password?: string | undefined;
22
22
  accountCode?: string | undefined;
23
- otp?: string | undefined;
24
- mfaToken?: string | undefined;
25
23
  }, unknown>;
26
24
  export declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
27
- export declare function useGetOrganizationKeysMetadata(): UseMutationResult<unknown>;
28
- export declare function usePatchOrganizationKeysNote(): UseMutationResult<unknown>;
29
- export declare function usePostOrganizationKeysRoll(): UseMutationResult<unknown>;
30
- export declare function usePostOrganizationKeysTamRequest(): UseMutationResult<unknown>;
31
- export declare function usePostOrganizationKeysMarkRevealed(): UseMutationResult<unknown>;
@@ -9,3 +9,9 @@ export declare function useUpdateInstallmentsPlan(): import("@tanstack/react-que
9
9
  export declare function useDeleteInstallmentsPlan(): import("@tanstack/react-query").UseMutationResult<Installments.DeleteInstallmentsPlanResponse, unknown, {
10
10
  code: string;
11
11
  }, unknown>;
12
+ export declare function useBulkCreateInstallmentsPlans(): import("@tanstack/react-query").UseMutationResult<Installments.BulkCreateInstallmentsPlansResponse, unknown, {
13
+ payload: Installments.BulkCreateInstallmentsPlansRequest;
14
+ }, unknown>;
15
+ export declare function useBulkDeleteInstallmentsPlans(): import("@tanstack/react-query").UseMutationResult<Installments.BulkDeleteInstallmentsPlansResponse, unknown, {
16
+ payload: Installments.BulkDeleteInstallmentsPlansRequest;
17
+ }, unknown>;
@@ -1,3 +1,5 @@
1
1
  import { User } from '../../types';
2
2
  import { UseMutationResult } from '@tanstack/react-query';
3
3
  export declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordResponse, User.FailureReason>;
4
+ export declare function useWorkosPasswordReset(): UseMutationResult<User.WorkosPasswordResetResponse, User.FailureReason, User.WorkosPasswordResetRequest>;
5
+ export declare function useWorkosAdminPortal(): UseMutationResult<User.WorkosAdminPortalResponse, User.FailureReason>;
@@ -23,4 +23,8 @@ export declare function useGetAccountsForImpersonation(organizationCode?: string
23
23
  code_live: string;
24
24
  code_testing: string;
25
25
  }>, unknown>;
26
+ export declare function useGetRolesForImpersonation(organizationCode?: string): UseQueryResult<Array<{
27
+ label: string;
28
+ value: string;
29
+ }>, unknown>;
26
30
  export declare function useGetPendingDuplicateAccounts(refetchInterval?: number): UseQueryResult<AxiosResponse<PendingDuplicateAccountsResponse>, AxiosError>;
@@ -1,3 +1,4 @@
1
1
  import { UseQueryResult } from '@tanstack/react-query';
2
2
  import { Installments } from '../../types';
3
3
  export declare function useGetInstallmentsPlans(accountCode: string, enabled?: boolean, params?: Installments.GetInstallmentsPlansParams): UseQueryResult<Installments.GetInstallmentsPlansResponse, Error>;
4
+ export declare function useSearchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest, enabled?: boolean): UseQueryResult<Installments.SearchInstallmentsPlansResponse, Error>;
@@ -8,7 +8,7 @@ export declare function useEmailVerification(email: string): UseQueryResult<User
8
8
  export declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
9
9
  export declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
10
10
  export declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
11
- export declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string): UseQueryResult<User.UsersToImpersonateResponse, AxiosError>;
11
+ export declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string, roleIds?: string[]): UseQueryResult<User.UsersToImpersonateResponse, AxiosError>;
12
12
  export declare function useCommunications(payload: {
13
13
  start_date: string;
14
14
  end_date: string;
@@ -77,4 +77,49 @@ export declare namespace Installments {
77
77
  deleted?: boolean;
78
78
  message?: string;
79
79
  }
80
+ interface SearchInstallmentsPlansRequest {
81
+ account_id?: string[];
82
+ country_code?: string[];
83
+ brand?: string[];
84
+ name?: string;
85
+ merchant_reference?: string;
86
+ issuer?: string;
87
+ bin?: string;
88
+ start_date?: string;
89
+ end_date?: string;
90
+ page?: number;
91
+ size?: number;
92
+ }
93
+ interface SearchInstallmentsPlansResponse {
94
+ data: InstallmentsPlan[];
95
+ total: number;
96
+ page: number;
97
+ size: number;
98
+ }
99
+ interface BulkCreateInstallmentsPlansRequest {
100
+ account_ids: string[];
101
+ name: string;
102
+ source?: string;
103
+ merchant_reference?: string;
104
+ country_code: string;
105
+ amount?: PlanAmount;
106
+ installments_plan?: InstallmentPlanItem[];
107
+ availability?: Availability;
108
+ }
109
+ interface BulkCreateInstallmentsPlansResponse {
110
+ created: InstallmentsPlan[];
111
+ errors?: string[];
112
+ }
113
+ interface BulkDeleteInstallmentsPlansRequest {
114
+ codes: string[];
115
+ }
116
+ interface BulkDeleteError {
117
+ code: string;
118
+ error_code: string;
119
+ message?: string;
120
+ }
121
+ interface BulkDeleteInstallmentsPlansResponse {
122
+ deleted: string[];
123
+ errors?: BulkDeleteError[];
124
+ }
80
125
  }
@@ -116,6 +116,15 @@ export declare namespace User {
116
116
  id_token: string;
117
117
  token_type: string;
118
118
  }
119
+ interface WorkosPasswordResetRequest {
120
+ email: string;
121
+ }
122
+ interface WorkosPasswordResetResponse {
123
+ success: boolean;
124
+ }
125
+ interface WorkosAdminPortalResponse {
126
+ link: string;
127
+ }
119
128
  interface ICustomizedApiKeysMembers {
120
129
  code: string;
121
130
  first_name: string;
package/build/index.d.ts CHANGED
@@ -199,6 +199,7 @@ interface GetPaymentsParams {
199
199
  enabled?: boolean;
200
200
  account_code?: string;
201
201
  payment_link_code?: string;
202
+ recipient_id?: string;
202
203
  metadata?: Array<{
203
204
  field: string;
204
205
  formatType: 'TEXT' | 'NUMBER';
@@ -326,6 +327,7 @@ interface GetTransactionsParams {
326
327
  page?: number;
327
328
  size?: number;
328
329
  account_code?: string;
330
+ recipient_id?: string;
329
331
  metadata?: Array<{
330
332
  field: string;
331
333
  formatType: 'TEXT' | 'NUMBER';
@@ -1518,6 +1520,15 @@ declare namespace User {
1518
1520
  id_token: string;
1519
1521
  token_type: string;
1520
1522
  }
1523
+ interface WorkosPasswordResetRequest {
1524
+ email: string;
1525
+ }
1526
+ interface WorkosPasswordResetResponse {
1527
+ success: boolean;
1528
+ }
1529
+ interface WorkosAdminPortalResponse {
1530
+ link: string;
1531
+ }
1521
1532
  interface ICustomizedApiKeysMembers {
1522
1533
  code: string;
1523
1534
  first_name: string;
@@ -5170,6 +5181,51 @@ declare namespace Installments {
5170
5181
  deleted?: boolean;
5171
5182
  message?: string;
5172
5183
  }
5184
+ interface SearchInstallmentsPlansRequest {
5185
+ account_id?: string[];
5186
+ country_code?: string[];
5187
+ brand?: string[];
5188
+ name?: string;
5189
+ merchant_reference?: string;
5190
+ issuer?: string;
5191
+ bin?: string;
5192
+ start_date?: string;
5193
+ end_date?: string;
5194
+ page?: number;
5195
+ size?: number;
5196
+ }
5197
+ interface SearchInstallmentsPlansResponse {
5198
+ data: InstallmentsPlan[];
5199
+ total: number;
5200
+ page: number;
5201
+ size: number;
5202
+ }
5203
+ interface BulkCreateInstallmentsPlansRequest {
5204
+ account_ids: string[];
5205
+ name: string;
5206
+ source?: string;
5207
+ merchant_reference?: string;
5208
+ country_code: string;
5209
+ amount?: PlanAmount;
5210
+ installments_plan?: InstallmentPlanItem[];
5211
+ availability?: Availability;
5212
+ }
5213
+ interface BulkCreateInstallmentsPlansResponse {
5214
+ created: InstallmentsPlan[];
5215
+ errors?: string[];
5216
+ }
5217
+ interface BulkDeleteInstallmentsPlansRequest {
5218
+ codes: string[];
5219
+ }
5220
+ interface BulkDeleteError {
5221
+ code: string;
5222
+ error_code: string;
5223
+ message?: string;
5224
+ }
5225
+ interface BulkDeleteInstallmentsPlansResponse {
5226
+ deleted: string[];
5227
+ errors?: BulkDeleteError[];
5228
+ }
5173
5229
  }
5174
5230
 
5175
5231
  type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
@@ -5316,6 +5372,8 @@ declare function useUpdateOrganizationStatus(): _tanstack_react_query.UseMutatio
5316
5372
  declare function useValidateOrgName(): _tanstack_react_query.UseMutationResult<void, unknown, string, unknown>;
5317
5373
 
5318
5374
  declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordResponse, User.FailureReason>;
5375
+ declare function useWorkosPasswordReset(): UseMutationResult<User.WorkosPasswordResetResponse, User.FailureReason, User.WorkosPasswordResetRequest>;
5376
+ declare function useWorkosAdminPortal(): UseMutationResult<User.WorkosAdminPortalResponse, User.FailureReason>;
5319
5377
 
5320
5378
  declare function useUpdateProfile({ onSuccessCallback, }: {
5321
5379
  onSuccessCallback?: () => void;
@@ -5642,15 +5700,8 @@ declare function useGetCredentialsMFA(): UseMutationResult<{
5642
5700
  }, unknown, {
5643
5701
  password?: string | undefined;
5644
5702
  accountCode?: string | undefined;
5645
- otp?: string | undefined;
5646
- mfaToken?: string | undefined;
5647
5703
  }, unknown>;
5648
5704
  declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
5649
- declare function useGetOrganizationKeysMetadata(): UseMutationResult<unknown>;
5650
- declare function usePatchOrganizationKeysNote(): UseMutationResult<unknown>;
5651
- declare function usePostOrganizationKeysRoll(): UseMutationResult<unknown>;
5652
- declare function usePostOrganizationKeysTamRequest(): UseMutationResult<unknown>;
5653
- declare function usePostOrganizationKeysMarkRevealed(): UseMutationResult<unknown>;
5654
5705
 
5655
5706
  declare function usePostAuditMonitors({ onMutate }: {
5656
5707
  onMutate: any;
@@ -5866,6 +5917,10 @@ declare function useGetAccountsForImpersonation(organizationCode?: string, isTes
5866
5917
  code_live: string;
5867
5918
  code_testing: string;
5868
5919
  }>, unknown>;
5920
+ declare function useGetRolesForImpersonation(organizationCode?: string): UseQueryResult<Array<{
5921
+ label: string;
5922
+ value: string;
5923
+ }>, unknown>;
5869
5924
  declare function useGetPendingDuplicateAccounts(refetchInterval?: number): UseQueryResult<AxiosResponse<PendingDuplicateAccountsResponse>, AxiosError>;
5870
5925
 
5871
5926
  declare function useGetMenu(): UseQueryResult<Cms.Menu, unknown>;
@@ -6080,7 +6135,7 @@ declare function useEmailVerification(email: string): UseQueryResult<User.UserRe
6080
6135
  declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
6081
6136
  declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
6082
6137
  declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
6083
- declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string): UseQueryResult<User.UsersToImpersonateResponse, AxiosError>;
6138
+ declare function useGetUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string, roleIds?: string[]): UseQueryResult<User.UsersToImpersonateResponse, AxiosError>;
6084
6139
  declare function useCommunications(payload: {
6085
6140
  start_date: string;
6086
6141
  end_date: string;
@@ -6422,6 +6477,7 @@ declare function useGetOnboardingDetail(organizationCode: string, params: GetOnb
6422
6477
  declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
6423
6478
 
6424
6479
  declare function useGetInstallmentsPlans(accountCode: string, enabled?: boolean, params?: Installments.GetInstallmentsPlansParams): UseQueryResult<Installments.GetInstallmentsPlansResponse, Error>;
6480
+ declare function useSearchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest, enabled?: boolean): UseQueryResult<Installments.SearchInstallmentsPlansResponse, Error>;
6425
6481
 
6426
6482
  interface CreateChartGPTChartPayload {
6427
6483
  user_prompt: string;
@@ -6530,6 +6586,12 @@ declare function useUpdateInstallmentsPlan(): _tanstack_react_query.UseMutationR
6530
6586
  declare function useDeleteInstallmentsPlan(): _tanstack_react_query.UseMutationResult<Installments.DeleteInstallmentsPlanResponse, unknown, {
6531
6587
  code: string;
6532
6588
  }, unknown>;
6589
+ declare function useBulkCreateInstallmentsPlans(): _tanstack_react_query.UseMutationResult<Installments.BulkCreateInstallmentsPlansResponse, unknown, {
6590
+ payload: Installments.BulkCreateInstallmentsPlansRequest;
6591
+ }, unknown>;
6592
+ declare function useBulkDeleteInstallmentsPlans(): _tanstack_react_query.UseMutationResult<Installments.BulkDeleteInstallmentsPlansResponse, unknown, {
6593
+ payload: Installments.BulkDeleteInstallmentsPlansRequest;
6594
+ }, unknown>;
6533
6595
 
6534
6596
  interface S3Payload {
6535
6597
  payload: S3Client.PayloadV2;
@@ -6814,7 +6876,7 @@ declare class Api extends HttpClient {
6814
6876
  getUserFull(): Promise<AxiosResponse<GetUserFullResponse, any>>;
6815
6877
  getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
6816
6878
  getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
6817
- getUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
6879
+ getUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string, roleIds?: string[]): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
6818
6880
  getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
6819
6881
  response: Array<{
6820
6882
  name: string;
@@ -6822,6 +6884,12 @@ declare class Api extends HttpClient {
6822
6884
  code_testing: string;
6823
6885
  }>;
6824
6886
  }>>;
6887
+ getRolesForImpersonation(organizationCode: string): Promise<AxiosResponse<{
6888
+ roles: Array<{
6889
+ id: string;
6890
+ name: string;
6891
+ }>;
6892
+ }>>;
6825
6893
  updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
6826
6894
  inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
6827
6895
  inviteUsersMassiveV2<T>(data: UserInviteMultiaccountPayload): Promise<AxiosResponse<T>>;
@@ -6901,6 +6969,8 @@ declare class Api extends HttpClient {
6901
6969
  pageSize?: number;
6902
6970
  }): Promise<AxiosResponse<T>>;
6903
6971
  changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
6972
+ workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
6973
+ workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
6904
6974
  getCardBrands<T>(): Promise<AxiosResponse<T>>;
6905
6975
  getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
6906
6976
  getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
@@ -6936,6 +7006,9 @@ declare class Api extends HttpClient {
6936
7006
  createInstallmentsPlan<T, P = unknown>(payload: P): Promise<AxiosResponse<T>>;
6937
7007
  updateInstallmentsPlan<T, P = unknown>(code: string, payload: P): Promise<AxiosResponse<T>>;
6938
7008
  deleteInstallmentsPlan<T>(code: string): Promise<AxiosResponse<T>>;
7009
+ searchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest): Promise<AxiosResponse<Installments.SearchInstallmentsPlansResponse>>;
7010
+ bulkCreateInstallmentsPlans(payload: Installments.BulkCreateInstallmentsPlansRequest): Promise<AxiosResponse<Installments.BulkCreateInstallmentsPlansResponse>>;
7011
+ bulkDeleteInstallmentsPlans(payload: Installments.BulkDeleteInstallmentsPlansRequest): Promise<AxiosResponse<Installments.BulkDeleteInstallmentsPlansResponse>>;
6939
7012
  firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
6940
7013
  postUserSettings<T>(payload: TimeZoneCatalog | PaymentsSettings): Promise<AxiosResponse<T>>;
6941
7014
  postUserSettingsTables<T>(payload: PaymentsSettings, section: string): Promise<AxiosResponse<T>>;
@@ -7049,13 +7122,6 @@ declare class Api extends HttpClient {
7049
7122
  getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
7050
7123
  validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
7051
7124
  deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
7052
- getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
7053
- patchOrganizationKeysNote<T>(payload: {
7054
- note: string;
7055
- }, password: string): Promise<AxiosResponse<T, any>>;
7056
- postOrganizationKeysRoll<T>(password: string, otp?: string): Promise<AxiosResponse<T, any>>;
7057
- postOrganizationKeysTamRequest<T>(password: string, otp?: string): Promise<AxiosResponse<T, any>>;
7058
- postOrganizationKeysMarkRevealed<T>(password: string, otp?: string): Promise<AxiosResponse<T, any>>;
7059
7125
  postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
7060
7126
  getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
7061
7127
  getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
@@ -7181,5 +7247,5 @@ declare const useOrganizationCode: () => any;
7181
7247
 
7182
7248
  declare const useAccountCode: () => any;
7183
7249
 
7184
- export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
7250
+ export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset };
7185
7251
  export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "1.2.4",
3
+ "version": "1.2.12",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",
@@ -32,11 +32,10 @@
32
32
  "prepare": "husky install",
33
33
  "coverage": "cross-env BABEL_ENV=test jest --coverage",
34
34
  "build:types": "tsc",
35
- "publish": "npm publish --access public"
35
+ "release": "npm publish --access public"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@babel/core": "^7.15.0",
39
- "@babel/eslint-parser": "^7.15.0",
40
39
  "@babel/plugin-transform-runtime": "^7.15.0",
41
40
  "@babel/preset-env": "^7.15.0",
42
41
  "@babel/preset-react": "^7.14.5",
@@ -68,16 +67,13 @@
68
67
  "dotenv-webpack": "^7.1.0",
69
68
  "eslint": "^9.39.2",
70
69
  "eslint-config-prettier": "^8.3.0",
71
- "eslint-config-ts-react-important-stuff": "^3.0.0",
72
70
  "eslint-plugin-jsx-a11y": "^6.10.2",
73
- "eslint-plugin-prettier": "^3.4.1",
74
71
  "eslint-plugin-react": "^7.37.5",
75
72
  "eslint-plugin-react-hooks": "^5.2.0",
76
73
  "fork-ts-checker-webpack-plugin": "^9.1.0",
77
74
  "husky": "^7.0.2",
78
75
  "identity-obj-proxy": "^3.0.0",
79
76
  "jest": "^29.7.0",
80
- "jest-cli": "^27.0.6",
81
77
  "jest-environment-jsdom": "^29.7.0",
82
78
  "jest-html-reporters": "^3.1.7",
83
79
  "msw": "^2.8.2",