@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>>;
|