@yuno-payments/dashboard-api-mfe 0.36.46 → 0.36.47

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.
@@ -8,9 +8,14 @@ export interface ChartGPTExecuteResponse {
8
8
  summary: string;
9
9
  available_types?: string[];
10
10
  results: ChartGPTResult[];
11
+ sql_query?: string;
12
+ user_prompt?: string;
13
+ type: 'BOX' | 'BAR' | 'LINE' | 'PIE' | 'MULTIPLE_LINES';
11
14
  }
12
15
  export interface ChartGPTChart {
13
- chart_id: string;
16
+ chart_id?: string;
17
+ code?: string;
18
+ sql_query?: string;
14
19
  name: string;
15
20
  type: string;
16
21
  user_prompt: string;
package/build/index.d.ts CHANGED
@@ -4840,9 +4840,14 @@ interface ChartGPTExecuteResponse {
4840
4840
  summary: string;
4841
4841
  available_types?: string[];
4842
4842
  results: ChartGPTResult[];
4843
+ sql_query?: string;
4844
+ user_prompt?: string;
4845
+ type: 'BOX' | 'BAR' | 'LINE' | 'PIE' | 'MULTIPLE_LINES';
4843
4846
  }
4844
4847
  interface ChartGPTChart {
4845
- chart_id: string;
4848
+ chart_id?: string;
4849
+ code?: string;
4850
+ sql_query?: string;
4846
4851
  name: string;
4847
4852
  type: string;
4848
4853
  user_prompt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "0.36.46",
3
+ "version": "0.36.47",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",