@yuno-payments/dashboard-api-mfe 0.35.0-beta.15 → 0.35.0-beta.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 +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/mutations/chartgpt/chartgpt.mutation.d.ts +1 -0
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/mutations/chartgpt/chartgpt.mutation.d.ts +1 -0
- package/build/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export interface CreateAndExecuteChartPayload {
|
|
|
26
26
|
export interface CreateAndExecuteChartResult {
|
|
27
27
|
chart: ChartGPTChart;
|
|
28
28
|
execution: ChartGPTExecuteResponse;
|
|
29
|
+
chartgpt_id: string;
|
|
29
30
|
}
|
|
30
31
|
export declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
31
32
|
export declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
package/build/index.d.ts
CHANGED
|
@@ -4585,6 +4585,7 @@ interface CreateAndExecuteChartPayload {
|
|
|
4585
4585
|
interface CreateAndExecuteChartResult {
|
|
4586
4586
|
chart: ChartGPTChart;
|
|
4587
4587
|
execution: ChartGPTExecuteResponse;
|
|
4588
|
+
chartgpt_id: string;
|
|
4588
4589
|
}
|
|
4589
4590
|
declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
4590
4591
|
declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|