|
5343 | 5343 | }
|
5344 | 5344 | }
|
5345 | 5345 | },
|
5346 |
| - "revision": "20250310", |
| 5346 | + "revision": "20250313", |
5347 | 5347 | "rootUrl": "https://dialogflow.googleapis.com/",
|
5348 | 5348 | "schemas": {
|
5349 | 5349 | "GoogleCloudDialogflowCxV3AdvancedSettings": {
|
|
7676 | 7676 | "$ref": "GoogleCloudDialogflowCxV3beta1AgentUtterance",
|
7677 | 7677 | "description": "Optional. Action performed by the agent as a message."
|
7678 | 7678 | },
|
| 7679 | + "event": { |
| 7680 | + "$ref": "GoogleCloudDialogflowCxV3beta1Event", |
| 7681 | + "description": "Optional. The agent received an event from the customer or a system event is emitted." |
| 7682 | + }, |
7679 | 7683 | "flowInvocation": {
|
7680 | 7684 | "$ref": "GoogleCloudDialogflowCxV3beta1FlowInvocation",
|
7681 | 7685 | "description": "Optional. Action performed on behalf of the agent by invoking a CX flow."
|
7682 | 7686 | },
|
| 7687 | + "flowTransition": { |
| 7688 | + "$ref": "GoogleCloudDialogflowCxV3beta1FlowTransition", |
| 7689 | + "description": "Optional. Action performed on behalf of the agent by transitioning to a target CX flow." |
| 7690 | + }, |
7683 | 7691 | "playbookInvocation": {
|
7684 | 7692 | "$ref": "GoogleCloudDialogflowCxV3beta1PlaybookInvocation",
|
7685 | 7693 | "description": "Optional. Action performed on behalf of the agent by invoking a child playbook."
|
7686 | 7694 | },
|
| 7695 | + "playbookTransition": { |
| 7696 | + "$ref": "GoogleCloudDialogflowCxV3beta1PlaybookTransition", |
| 7697 | + "description": "Optional. Action performed on behalf of the agent by transitioning to a target playbook." |
| 7698 | + }, |
7687 | 7699 | "toolUse": {
|
7688 | 7700 | "$ref": "GoogleCloudDialogflowCxV3beta1ToolUse",
|
7689 | 7701 | "description": "Optional. Action performed on behalf of the agent by calling a plugin tool."
|
|
9507 | 9519 | },
|
9508 | 9520 | "type": "object"
|
9509 | 9521 | },
|
| 9522 | + "GoogleCloudDialogflowCxV3beta1Event": { |
| 9523 | + "description": "Event represents the event sent by the customer.", |
| 9524 | + "id": "GoogleCloudDialogflowCxV3beta1Event", |
| 9525 | + "properties": { |
| 9526 | + "event": { |
| 9527 | + "description": "Required. Name of the event.", |
| 9528 | + "type": "string" |
| 9529 | + } |
| 9530 | + }, |
| 9531 | + "type": "object" |
| 9532 | + }, |
9510 | 9533 | "GoogleCloudDialogflowCxV3beta1EventHandler": {
|
9511 | 9534 | "description": "An event handler specifies an event that can be handled during a session. When the specified event happens, the following actions are taken in order: * If there is a `trigger_fulfillment` associated with the event, it will be called. * If there is a `target_page` associated with the event, the session will transition into the specified page. * If there is a `target_flow` associated with the event, the session will transition into the specified flow.",
|
9512 | 9535 | "id": "GoogleCloudDialogflowCxV3beta1EventHandler",
|
|
10341 | 10364 | },
|
10342 | 10365 | "type": "object"
|
10343 | 10366 | },
|
| 10367 | + "GoogleCloudDialogflowCxV3beta1FlowTransition": { |
| 10368 | + "description": "Stores metadata of the transition to a target CX flow. Flow transition actions exit the caller playbook and enter the child flow.", |
| 10369 | + "id": "GoogleCloudDialogflowCxV3beta1FlowTransition", |
| 10370 | + "properties": { |
| 10371 | + "displayName": { |
| 10372 | + "description": "Output only. The display name of the flow.", |
| 10373 | + "readOnly": true, |
| 10374 | + "type": "string" |
| 10375 | + }, |
| 10376 | + "flow": { |
| 10377 | + "description": "Required. The unique identifier of the flow. Format: `projects//locations//agents/`.", |
| 10378 | + "type": "string" |
| 10379 | + } |
| 10380 | + }, |
| 10381 | + "type": "object" |
| 10382 | + }, |
10344 | 10383 | "GoogleCloudDialogflowCxV3beta1FlowValidationResult": {
|
10345 | 10384 | "description": "The response message for Flows.GetFlowValidationResult.",
|
10346 | 10385 | "id": "GoogleCloudDialogflowCxV3beta1FlowValidationResult",
|
|
12347 | 12386 | },
|
12348 | 12387 | "type": "array"
|
12349 | 12388 | },
|
| 12389 | + "playbookType": { |
| 12390 | + "description": "Optional. Type of the playbook.", |
| 12391 | + "enum": [ |
| 12392 | + "PLAYBOOK_TYPE_UNSPECIFIED", |
| 12393 | + "TASK", |
| 12394 | + "ROUTINE" |
| 12395 | + ], |
| 12396 | + "enumDescriptions": [ |
| 12397 | + "Unspecified type. Default to TASK.", |
| 12398 | + "Task playbook.", |
| 12399 | + "Routine playbook." |
| 12400 | + ], |
| 12401 | + "type": "string" |
| 12402 | + }, |
12350 | 12403 | "referencedFlows": {
|
12351 | 12404 | "description": "Output only. The resource name of flows referenced by the current playbook in the instructions.",
|
12352 | 12405 | "items": {
|
|
12507 | 12560 | },
|
12508 | 12561 | "type": "object"
|
12509 | 12562 | },
|
| 12563 | + "GoogleCloudDialogflowCxV3beta1PlaybookTransition": { |
| 12564 | + "description": "Stores metadata of the transition to another target playbook. Playbook transition actions exit the caller playbook and enter the target playbook.", |
| 12565 | + "id": "GoogleCloudDialogflowCxV3beta1PlaybookTransition", |
| 12566 | + "properties": { |
| 12567 | + "displayName": { |
| 12568 | + "description": "Output only. The display name of the playbook.", |
| 12569 | + "readOnly": true, |
| 12570 | + "type": "string" |
| 12571 | + }, |
| 12572 | + "playbook": { |
| 12573 | + "description": "Required. The unique identifier of the playbook. Format: `projects//locations//agents//playbooks/`.", |
| 12574 | + "type": "string" |
| 12575 | + } |
| 12576 | + }, |
| 12577 | + "type": "object" |
| 12578 | + }, |
12510 | 12579 | "GoogleCloudDialogflowCxV3beta1PlaybookVersion": {
|
12511 | 12580 | "description": "Playbook version is a snapshot of the playbook at certain timestamp.",
|
12512 | 12581 | "id": "GoogleCloudDialogflowCxV3beta1PlaybookVersion",
|
|
0 commit comments