@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;
package/build/index.d.ts CHANGED
@@ -5429,6 +5429,7 @@ interface GetRecipientsParams {
5429
5429
  }
5430
5430
  interface GetRecipientByIdParams {
5431
5431
  recipient_id: string;
5432
+ masking_mode?: 'full';
5432
5433
  }
5433
5434
  interface GetOnboardingDetailParams {
5434
5435
  recipient_id: string;
@@ -8300,7 +8301,9 @@ declare class Api extends HttpClient {
8300
8301
  sort_order?: string;
8301
8302
  }): Promise<AxiosResponse<T, any>>;
8302
8303
  getRecipientsV2<T>(organizationCode: string, params: GetRecipientsParams): Promise<AxiosResponse<T, any>>;
8303
- getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
8304
+ getRecipientById<T>(organizationCode: string, recipientId: string, params?: {
8305
+ masking_mode?: string;
8306
+ }): Promise<AxiosResponse<T, any>>;
8304
8307
  getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
8305
8308
  getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
8306
8309
  createRecipientExport<T>(payload: unknown, accountCode: string): Promise<AxiosResponse<T, any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",