@querypanel/node-sdk 1.0.45 → 1.0.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.
- package/README.md +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -216,6 +216,7 @@ type ParamRecord = Record<string, ParamValue>;
|
|
|
216
216
|
interface SdkChart {
|
|
217
217
|
id: string;
|
|
218
218
|
title: string;
|
|
219
|
+
prompt?: string | null;
|
|
219
220
|
description: string | null;
|
|
220
221
|
sql: string;
|
|
221
222
|
sql_params: Record<string, unknown> | null;
|
|
@@ -232,6 +233,7 @@ interface SdkChart {
|
|
|
232
233
|
}
|
|
233
234
|
interface ChartCreateInput {
|
|
234
235
|
title: string;
|
|
236
|
+
prompt?: string;
|
|
235
237
|
description?: string;
|
|
236
238
|
sql: string;
|
|
237
239
|
sql_params?: Record<string, unknown>;
|
|
@@ -242,6 +244,7 @@ interface ChartCreateInput {
|
|
|
242
244
|
}
|
|
243
245
|
interface ChartUpdateInput {
|
|
244
246
|
title?: string;
|
|
247
|
+
prompt?: string;
|
|
245
248
|
description?: string;
|
|
246
249
|
sql?: string;
|
|
247
250
|
sql_params?: Record<string, unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -216,6 +216,7 @@ type ParamRecord = Record<string, ParamValue>;
|
|
|
216
216
|
interface SdkChart {
|
|
217
217
|
id: string;
|
|
218
218
|
title: string;
|
|
219
|
+
prompt?: string | null;
|
|
219
220
|
description: string | null;
|
|
220
221
|
sql: string;
|
|
221
222
|
sql_params: Record<string, unknown> | null;
|
|
@@ -232,6 +233,7 @@ interface SdkChart {
|
|
|
232
233
|
}
|
|
233
234
|
interface ChartCreateInput {
|
|
234
235
|
title: string;
|
|
236
|
+
prompt?: string;
|
|
235
237
|
description?: string;
|
|
236
238
|
sql: string;
|
|
237
239
|
sql_params?: Record<string, unknown>;
|
|
@@ -242,6 +244,7 @@ interface ChartCreateInput {
|
|
|
242
244
|
}
|
|
243
245
|
interface ChartUpdateInput {
|
|
244
246
|
title?: string;
|
|
247
|
+
prompt?: string;
|
|
245
248
|
description?: string;
|
|
246
249
|
sql?: string;
|
|
247
250
|
sql_params?: Record<string, unknown>;
|