@yuno-payments/dashboard-api-mfe 1.7.6 → 1.7.9-export-beta.1
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 +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +14 -0
- package/build/cjs/types/msw/handlers/recipients.d.ts +1 -0
- package/build/cjs/types/msw/mocks/recipients/recipients.mock.d.ts +775 -0
- package/build/cjs/types/mutations/index.d.ts +1 -0
- package/build/cjs/types/mutations/recipients/index.d.ts +1 -0
- package/build/cjs/types/mutations/recipients/recipients.mutation.d.ts +14 -0
- package/build/cjs/types/queries/recipients/recipients.query.d.ts +5 -1
- package/build/cjs/types/types/recipients/index.d.ts +2 -0
- package/build/cjs/types/types/recipients/recipients-export.d.ts +52 -0
- package/build/cjs/types/types/recipients/recipients-mutations.d.ts +136 -0
- package/build/cjs/types/types/recipients/recipients.d.ts +7 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +14 -0
- package/build/esm/types/msw/handlers/recipients.d.ts +1 -0
- package/build/esm/types/msw/mocks/recipients/recipients.mock.d.ts +775 -0
- package/build/esm/types/mutations/index.d.ts +1 -0
- package/build/esm/types/mutations/recipients/index.d.ts +1 -0
- package/build/esm/types/mutations/recipients/recipients.mutation.d.ts +14 -0
- package/build/esm/types/queries/recipients/recipients.query.d.ts +5 -1
- package/build/esm/types/types/recipients/index.d.ts +2 -0
- package/build/esm/types/types/recipients/recipients-export.d.ts +52 -0
- package/build/esm/types/types/recipients/recipients-mutations.d.ts +136 -0
- package/build/esm/types/types/recipients/recipients.d.ts +7 -0
- package/build/index.d.ts +225 -2
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ import { ConversionRateParams, ConversionRateBody, ConversionRateOverview, Conve
|
|
|
6
6
|
import { RoutingMonitors } from '../types/routing-monitors';
|
|
7
7
|
import { ChangePaymentsWebhook } from '../mutations';
|
|
8
8
|
import { S3Client } from '../types/s3-client';
|
|
9
|
+
import { CreateRecipientPayload, UpdateRecipientPayload, CreateOnboardingPayload, UpdateOnboardingPayload } from '../types/recipients/recipients-mutations';
|
|
9
10
|
import { AllowedList } from '../types/allowed-list';
|
|
10
11
|
import { Cost } from '../types/connection/costs';
|
|
11
12
|
import { Styling, StylingSettings } from '../types/checkout/styling/styling';
|
|
@@ -663,5 +664,18 @@ export declare class Api extends HttpClient {
|
|
|
663
664
|
getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
|
|
664
665
|
getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
665
666
|
getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
667
|
+
createRecipientExport<T>(payload: unknown, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
668
|
+
getRecipientExports<T>(params: {
|
|
669
|
+
page?: number;
|
|
670
|
+
size?: number;
|
|
671
|
+
}, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
672
|
+
downloadRecipientExport<T>(exportCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
673
|
+
createRecipient<T>(organizationCode: string, payload: CreateRecipientPayload): Promise<AxiosResponse<T, any>>;
|
|
674
|
+
updateRecipient<T>(organizationCode: string, recipientId: string, payload: UpdateRecipientPayload): Promise<AxiosResponse<T, any>>;
|
|
675
|
+
deleteRecipient<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
|
|
676
|
+
createOnboarding<T>(organizationCode: string, recipientId: string, payload: CreateOnboardingPayload): Promise<AxiosResponse<T, any>>;
|
|
677
|
+
updateOnboarding<T>(organizationCode: string, recipientId: string, onboardingId: string, payload: UpdateOnboardingPayload): Promise<AxiosResponse<T, any>>;
|
|
678
|
+
blockOnboarding<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
679
|
+
unblockOnboarding<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
666
680
|
}
|
|
667
681
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const recipientsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|