waldur-js-client 8.0.8-dev.31 → 8.0.8-dev.32
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 +14 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3738,6 +3738,18 @@ export type ChatResponse = {
|
|
|
3738
3738
|
* Available offering options [{uuid, name}]. Present when status='offering_form'.
|
|
3739
3739
|
*/
|
|
3740
3740
|
offerings?: Array<unknown>;
|
|
3741
|
+
/**
|
|
3742
|
+
* Network name (e.g. 'default'). Present when status='preview'.
|
|
3743
|
+
*/
|
|
3744
|
+
network?: string;
|
|
3745
|
+
/**
|
|
3746
|
+
* SSH key name. Present when status='preview'.
|
|
3747
|
+
*/
|
|
3748
|
+
ssh_key_name?: string;
|
|
3749
|
+
/**
|
|
3750
|
+
* System volume size in GB. Present when status='preview'.
|
|
3751
|
+
*/
|
|
3752
|
+
system_volume_size?: number;
|
|
3741
3753
|
/**
|
|
3742
3754
|
* Customer/organization UUID filter hint. Present when k='resource_list'.
|
|
3743
3755
|
*/
|
|
@@ -10366,9 +10378,9 @@ export type Message = {
|
|
|
10366
10378
|
role: MessageRoleEnum;
|
|
10367
10379
|
readonly blocks: Array<{
|
|
10368
10380
|
id: string;
|
|
10369
|
-
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool';
|
|
10381
|
+
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool';
|
|
10370
10382
|
status: string;
|
|
10371
|
-
[key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool');
|
|
10383
|
+
[key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool');
|
|
10372
10384
|
}>;
|
|
10373
10385
|
readonly warning: string;
|
|
10374
10386
|
readonly sequence_index: number;
|