@yuno-payments/dashboard-api-mfe 0.35.0-beta.5 → 0.35.0-beta.6

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.
@@ -586,5 +586,7 @@ export declare class Api extends HttpClient {
586
586
  type: string;
587
587
  name: string;
588
588
  }): Promise<AxiosResponse<T, any>>;
589
+ executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
590
+ getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
589
591
  }
590
592
  export {};
@@ -0,0 +1,3 @@
1
+ import { UseQueryResult } from '@tanstack/react-query';
2
+ export declare function useChartExecute(chartgpt_id: string): UseQueryResult<any, unknown>;
3
+ export declare function useGetChartsByUser(): UseQueryResult<any, unknown>;