@yuno-payments/dashboard-api-mfe 0.42.15-recipients-beta.1 → 0.42.16
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 +5 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -17
- package/build/cjs/types/mutations/reports/reports.mutation.d.ts +1 -0
- package/build/cjs/types/queries/index.d.ts +0 -1
- package/build/cjs/types/types/index.d.ts +0 -1
- package/build/cjs/types/types/reports/reports.d.ts +4 -0
- package/build/cjs/types/types/webhook/webhook.d.ts +6 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -17
- package/build/esm/types/mutations/reports/reports.mutation.d.ts +1 -0
- package/build/esm/types/queries/index.d.ts +0 -1
- package/build/esm/types/types/index.d.ts +0 -1
- package/build/esm/types/types/reports/reports.d.ts +4 -0
- package/build/esm/types/types/webhook/webhook.d.ts +6 -0
- package/build/index.d.ts +14 -241
- package/package.json +4 -4
- package/build/cjs/types/queries/recipients/index.d.ts +0 -1
- package/build/cjs/types/queries/recipients/recipients.query.d.ts +0 -8
- package/build/cjs/types/types/recipients/index.d.ts +0 -1
- package/build/cjs/types/types/recipients/recipients.d.ts +0 -216
- package/build/esm/types/queries/recipients/index.d.ts +0 -1
- package/build/esm/types/queries/recipients/recipients.query.d.ts +0 -8
- package/build/esm/types/types/recipients/index.d.ts +0 -1
- package/build/esm/types/types/recipients/recipients.d.ts +0 -216
|
@@ -269,6 +269,7 @@ export declare class Api extends HttpClient {
|
|
|
269
269
|
getReportTemplates<T>(): Promise<AxiosResponse<T>>;
|
|
270
270
|
createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
271
271
|
updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
272
|
+
deletePaymentsReportTemplate<T>(payload: Reports.IDeletePaymentsReportTemplate): Promise<AxiosResponse<T>>;
|
|
272
273
|
getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
|
|
273
274
|
searchReportTemplates<T>(payload: TemplateReporting.SearchTemplatesRequest): Promise<AxiosResponse<T>>;
|
|
274
275
|
searchReportTemplateById<T>(templateId: number, payload: TemplateReporting.SearchTemplateByIdRequest): Promise<AxiosResponse<T>>;
|
|
@@ -569,22 +570,5 @@ export declare class Api extends HttpClient {
|
|
|
569
570
|
}): Promise<AxiosResponse<T, any>>;
|
|
570
571
|
getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
|
|
571
572
|
getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
572
|
-
getRecipients<T>(organizationCode: string, params: {
|
|
573
|
-
account_ids?: string;
|
|
574
|
-
countries?: string;
|
|
575
|
-
national_entities?: string;
|
|
576
|
-
entity_types?: string;
|
|
577
|
-
start_date?: string;
|
|
578
|
-
end_date?: string;
|
|
579
|
-
search_type?: string;
|
|
580
|
-
search_value?: string;
|
|
581
|
-
page?: number;
|
|
582
|
-
page_size?: number;
|
|
583
|
-
sort_by?: string;
|
|
584
|
-
sort_order?: string;
|
|
585
|
-
}): Promise<AxiosResponse<T, any>>;
|
|
586
|
-
getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
|
|
587
|
-
getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
588
|
-
getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
589
573
|
}
|
|
590
574
|
export {};
|
|
@@ -7,3 +7,4 @@ export declare function useCountRowsForReport(): UseMutationResult<Reports.Count
|
|
|
7
7
|
export declare function useCancelReport(): UseMutationResult<string, unknown>;
|
|
8
8
|
export declare function useCreateReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reports.ICreateTemplate>;
|
|
9
9
|
export declare function useUpdateReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown>;
|
|
10
|
+
export declare function useDeleteReportTemplate(): UseMutationResult<unknown>;
|
|
@@ -43,6 +43,9 @@ export declare namespace Webhook {
|
|
|
43
43
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
44
44
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
45
45
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
46
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
47
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
48
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
46
49
|
created_at: string;
|
|
47
50
|
updated_at?: string;
|
|
48
51
|
}
|
|
@@ -59,6 +62,9 @@ export declare namespace Webhook {
|
|
|
59
62
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
60
63
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
61
64
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
65
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
66
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
67
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
62
68
|
created_at: string;
|
|
63
69
|
updated_at?: string;
|
|
64
70
|
}
|