@yuno-payments/dashboard-api-mfe 0.35.0-beta.3 → 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.
- package/build/cjs/index.js +217 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +3 -3
- package/build/cjs/types/queries/chartgpt/chartgpt.query.d.ts +1 -1
- package/build/esm/index.js +217 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +3 -3
- package/build/esm/types/queries/chartgpt/chartgpt.query.d.ts +1 -1
- package/build/index.d.ts +3 -3
- package/package.json +2 -16
|
@@ -581,12 +581,12 @@ export declare class Api extends HttpClient {
|
|
|
581
581
|
createChartGPTChart<T>(payload: {
|
|
582
582
|
user_prompt: string;
|
|
583
583
|
}): Promise<AxiosResponse<T, any>>;
|
|
584
|
-
deleteChartGPTChart<T>(
|
|
585
|
-
patchChartGPTChart<T>(
|
|
584
|
+
deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
585
|
+
patchChartGPTChart<T>(chartgpt_id: string, payload: {
|
|
586
586
|
type: string;
|
|
587
587
|
name: string;
|
|
588
588
|
}): Promise<AxiosResponse<T, any>>;
|
|
589
|
+
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
589
590
|
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
590
|
-
executeChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
591
591
|
}
|
|
592
592
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
export declare function useChartExecute(chartgpt_id: string): UseQueryResult<any, unknown>;
|
|
2
3
|
export declare function useGetChartsByUser(): UseQueryResult<any, unknown>;
|
|
3
|
-
export declare function useChartExecute(chartgptId: string): UseQueryResult<any, unknown>;
|