@yuno-payments/dashboard-api-mfe 0.42.10 → 0.42.15
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 +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +3 -2
- package/build/cjs/types/mutations/reports/reports.mutation.d.ts +1 -0
- package/build/cjs/types/types/reports/reports.d.ts +4 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +3 -2
- package/build/esm/types/mutations/reports/reports.mutation.d.ts +1 -0
- package/build/esm/types/types/reports/reports.d.ts +4 -0
- package/build/index.d.ts +9 -3
- package/package.json +1 -1
|
@@ -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>>;
|
|
@@ -506,14 +507,14 @@ export declare class Api extends HttpClient {
|
|
|
506
507
|
postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
507
508
|
postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
508
509
|
postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
509
|
-
patchApiKeysEditNote<T>(payload: any, keyCode: any): Promise<AxiosResponse<T, any>>;
|
|
510
|
+
patchApiKeysEditNote<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
510
511
|
getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
|
|
511
512
|
getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
|
|
512
513
|
postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
513
514
|
pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
|
|
514
515
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
515
516
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
516
|
-
getCustomizedApiKeysToken<T>(code:
|
|
517
|
+
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
517
518
|
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
518
519
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
519
520
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -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>;
|