waldur-js-client 7.9.8-dev.2 → 7.9.8
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/dist/types.gen.d.ts +13 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2660,7 +2660,7 @@ export type ChatRequestRequest = {
|
|
|
2660
2660
|
};
|
|
2661
2661
|
export type ChatResponse = {
|
|
2662
2662
|
/**
|
|
2663
|
-
* Component Alias (e.g. 'markdown', 'code').
|
|
2663
|
+
* Component Alias (e.g. 'markdown', 'code', 'table').
|
|
2664
2664
|
*/
|
|
2665
2665
|
k?: string;
|
|
2666
2666
|
/**
|
|
@@ -2671,6 +2671,18 @@ export type ChatResponse = {
|
|
|
2671
2671
|
* Tag or language for dynamic blocks.
|
|
2672
2672
|
*/
|
|
2673
2673
|
t?: string;
|
|
2674
|
+
/**
|
|
2675
|
+
* Table headers.
|
|
2676
|
+
*/
|
|
2677
|
+
h?: Array<unknown>;
|
|
2678
|
+
/**
|
|
2679
|
+
* Table rows.
|
|
2680
|
+
*/
|
|
2681
|
+
r?: Array<unknown>;
|
|
2682
|
+
/**
|
|
2683
|
+
* Total row count.
|
|
2684
|
+
*/
|
|
2685
|
+
n?: number;
|
|
2674
2686
|
/**
|
|
2675
2687
|
* System metadata.
|
|
2676
2688
|
*/
|