@yuno-payments/dashboard-api-mfe 0.41.5 → 0.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,6 +65,7 @@ export declare class Api extends HttpClient {
65
65
  }): Promise<AxiosResponse<T, any>>;
66
66
  getDeveloperCredentials<T>(password: any, accountCode: any): Promise<AxiosResponse<T, any>>;
67
67
  getDeveloperCredentialsValidatePassword<T>(password: any): Promise<AxiosResponse<T, any>>;
68
+ getDeveloperCredentialsValidatePasswordRegularUser<T>(password: any): Promise<AxiosResponse<T, any>>;
68
69
  getAllowedIps<T>(): Promise<AxiosResponse<T, any>>;
69
70
  patchAllowedIps<T>(request: AllowedList.Request): Promise<AxiosResponse<T, any>>;
70
71
  getOrganization<T>(): Promise<AxiosResponse<T, any>>;
@@ -338,10 +339,14 @@ export declare class Api extends HttpClient {
338
339
  teamsFiltersMembers<T>({ organizationCode, }: {
339
340
  organizationCode: any;
340
341
  }): Promise<AxiosResponse<T, any>>;
341
- postMembersPaginatedV2<T>({ organizationCode, accountCodes, email, page, pageSize, }: {
342
+ postMembersPaginatedV2<T>({ organizationCode, accountCodes, search, status, roleId, statuses, roleIds, page, pageSize, }: {
342
343
  organizationCode: any;
343
344
  accountCodes: any;
344
- email: any;
345
+ search: any;
346
+ status: any;
347
+ roleId: any;
348
+ statuses: any;
349
+ roleIds: any;
345
350
  page: any;
346
351
  pageSize: any;
347
352
  }): Promise<AxiosResponse<T, any>>;
@@ -1,8 +1,10 @@
1
1
  import { UseMutationResult } from '@tanstack/react-query';
2
+ import { ResponseValidatePasswordRegularUser } from './types';
2
3
  export declare function usePostCreateCustomizedApiKeys(): UseMutationResult<unknown>;
3
4
  export declare function usePathCreateCustomizedApiKeys(): UseMutationResult<unknown>;
4
5
  export declare function useGetCustomizedApiKeysToken(): UseMutationResult<unknown>;
5
6
  export declare function usePostCredentialsValidatePassword(): UseMutationResult<unknown>;
7
+ export declare function usePostCredentialsValidatePasswordRegularUser(): UseMutationResult<ResponseValidatePasswordRegularUser>;
6
8
  export declare function useDeleteCustomizedApiKeys(): UseMutationResult<unknown>;
7
9
  export declare function usePatchApiKeysEditNote(): UseMutationResult<unknown>;
8
10
  export declare function usePostApiKeysRoll(): UseMutationResult<unknown>;
@@ -1 +1,2 @@
1
1
  export * from './developers.mutation';
2
+ export * from './types';
@@ -0,0 +1,5 @@
1
+ export type ResponseValidatePasswordRegularUser = {
2
+ mfa_token: string | null;
3
+ } | {
4
+ skip: boolean;
5
+ };
@@ -2,10 +2,14 @@ import { UseQueryResult } from '@tanstack/react-query';
2
2
  import { AxiosError } from 'axios';
3
3
  import { Team } from '../../types';
4
4
  export declare function useGetTeamsFiltersMembers(): UseQueryResult<Team.TeamList[], unknown>;
5
- export declare function usePostMembersPaginatedV2({ organizationCode, accountCodes, email, page, pageSize, }: {
5
+ export declare function usePostMembersPaginatedV2({ organizationCode, accountCodes, search, status, roleId, statuses, roleIds, page, pageSize, }: {
6
6
  organizationCode: any;
7
7
  accountCodes: any;
8
- email: any;
8
+ search: any;
9
+ status: any;
10
+ roleId: any;
11
+ statuses: any;
12
+ roleIds: any;
9
13
  page: any;
10
14
  pageSize: any;
11
15
  }): UseQueryResult<Team.TeamResponse, unknown>;