Skip to content

Commit bc6d550

Browse files
MarkDaoustcopybara-github
authored andcommitted
feat: add "budget_exceeded" status.
PiperOrigin-RevId: 917923524
1 parent fcf26e3 commit bc6d550

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

src/interactions/resources/interactions.ts

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,14 @@ export interface Interaction {
11871187
/**
11881188
* Required. Output only. The status of the interaction.
11891189
*/
1190-
status: 'in_progress' | 'requires_action' | 'completed' | 'failed' | 'cancelled' | 'incomplete';
1190+
status:
1191+
| 'in_progress'
1192+
| 'requires_action'
1193+
| 'completed'
1194+
| 'failed'
1195+
| 'cancelled'
1196+
| 'incomplete'
1197+
| 'budget_exceeded';
11911198

11921199
/**
11931200
* Required. Output only. The steps that make up the interaction.
@@ -1374,7 +1381,14 @@ export interface InteractionStatusUpdate {
13741381

13751382
interaction_id: string;
13761383

1377-
status: 'in_progress' | 'requires_action' | 'completed' | 'failed' | 'cancelled' | 'incomplete';
1384+
status:
1385+
| 'in_progress'
1386+
| 'requires_action'
1387+
| 'completed'
1388+
| 'failed'
1389+
| 'cancelled'
1390+
| 'incomplete'
1391+
| 'budget_exceeded';
13781392

13791393
/**
13801394
* The event_id token to be used to resume the interaction stream, from this event.

0 commit comments

Comments
 (0)