@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.
- package/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +3 -1
- package/build/cjs/types/types/recipients/recipients.d.ts +1 -0
- package/build/esm/index.js +2 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +3 -1
- package/build/esm/types/types/recipients/recipients.d.ts +1 -0
- package/build/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -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
|
|
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>>;
|
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
|
|
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>>;
|