waldur-js-client 8.0.8-dev.8 → 8.0.8-dev.9
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 +12 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3697,6 +3697,18 @@ export type ChatResponse = {
|
|
|
3697
3697
|
* State display name filters (e.g. ['OK', 'Erred']). Present when k='resource_list'.
|
|
3698
3698
|
*/
|
|
3699
3699
|
state?: Array<unknown>;
|
|
3700
|
+
/**
|
|
3701
|
+
* Table headers - list of column names. Present when k='table'.
|
|
3702
|
+
*/
|
|
3703
|
+
h?: Array<unknown>;
|
|
3704
|
+
/**
|
|
3705
|
+
* Table rows - list of row data (each row is a list of strings). Present when k='table'.
|
|
3706
|
+
*/
|
|
3707
|
+
r?: Array<unknown>;
|
|
3708
|
+
/**
|
|
3709
|
+
* Total count of rows in the table (used for pagination display). Present when k='table'.
|
|
3710
|
+
*/
|
|
3711
|
+
n?: number | null;
|
|
3700
3712
|
};
|
|
3701
3713
|
export type ChatSession = {
|
|
3702
3714
|
readonly uuid?: string;
|