@yuno-payments/dashboard-api-mfe 2.0.3 → 2.0.4

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.
@@ -686,7 +686,9 @@ export declare class Api extends HttpClient {
686
686
  sort_order?: string;
687
687
  }): Promise<AxiosResponse<T, any>>;
688
688
  getRecipientsV2<T>(organizationCode: string, params: GetRecipientsParams): Promise<AxiosResponse<T, any>>;
689
- getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
689
+ getRecipientById<T>(organizationCode: string, recipientId: string, params?: {
690
+ masking_mode?: string;
691
+ }): Promise<AxiosResponse<T, any>>;
690
692
  getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
691
693
  getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
692
694
  createRecipientExport<T>(payload: unknown, accountCode: string): Promise<AxiosResponse<T, any>>;
@@ -231,6 +231,7 @@ export interface GetRecipientsParams {
231
231
  }
232
232
  export interface GetRecipientByIdParams {
233
233
  recipient_id: string;
234
+ masking_mode?: 'full';
234
235
  }
235
236
  export interface GetOnboardingDetailParams {
236
237
  recipient_id: string;