google-apis-dialogflow_v3beta1 0.96.0 → 0.97.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0bfb876f06e6a9693c2e6e4bc1c8a2adacdd2fec41fe04bbc2395b575305388
4
- data.tar.gz: dd7f2e0d38b8700ca30b266a1e8666dcba3e2b5f0ebbdb8508c288293bd3f2ec
3
+ metadata.gz: '088e195a5645b6ecaf529170a84370f5612698c03c42ea983b2b20480e5acb7c'
4
+ data.tar.gz: 1948e42846435d696f255a7c01ecae238a7543d47287c389718a96a197e7c4f0
5
5
  SHA512:
6
- metadata.gz: aa399f65e19f56edd21e46f19faaaf52c33ed230d6d0f0d8a9127d3a715143629eb86e319f65dbba4233290f3f4ae73fe4a2fedc71f4d3c6654dfb7bb1de7359
7
- data.tar.gz: 0252e09fedc67ea542068729af28f307f1c52798fcf1a0919d33ce169c11189f157491c8d2fde7067baaa3bc913659de11fba0bc93f1ce4945b86f11538303bd
6
+ metadata.gz: 36061448596c93033da8e389735c6c28a4d03e975c6b15635be32d702f64c3883a8611d815e87abf6a661e1ee3795656ee53196d9a5a7aa1750f9ae560fb5263
7
+ data.tar.gz: da94f8c2dabc2d22cf513b2722b089e1bbb909ff6728c9aa05e704dcb3ae4ea047fd7fb7fc83569fb2bc5dae344efb95ba2e1fca5c9a1d2cf70771d17bcd3354
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.97.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250313
6
+
3
7
  ### v0.96.0 (2025-03-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20250310
@@ -3769,16 +3769,33 @@ module Google
3769
3769
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentUtterance]
3770
3770
  attr_accessor :agent_utterance
3771
3771
 
3772
+ # Event represents the event sent by the customer.
3773
+ # Corresponds to the JSON property `event`
3774
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Event]
3775
+ attr_accessor :event
3776
+
3772
3777
  # Stores metadata of the invocation of a CX flow.
3773
3778
  # Corresponds to the JSON property `flowInvocation`
3774
3779
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation]
3775
3780
  attr_accessor :flow_invocation
3776
3781
 
3782
+ # Stores metadata of the transition to a target CX flow. Flow transition actions
3783
+ # exit the caller playbook and enter the child flow.
3784
+ # Corresponds to the JSON property `flowTransition`
3785
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowTransition]
3786
+ attr_accessor :flow_transition
3787
+
3777
3788
  # Stores metadata of the invocation of a child playbook.
3778
3789
  # Corresponds to the JSON property `playbookInvocation`
3779
3790
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInvocation]
3780
3791
  attr_accessor :playbook_invocation
3781
3792
 
3793
+ # Stores metadata of the transition to another target playbook. Playbook
3794
+ # transition actions exit the caller playbook and enter the target playbook.
3795
+ # Corresponds to the JSON property `playbookTransition`
3796
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition]
3797
+ attr_accessor :playbook_transition
3798
+
3782
3799
  # Stores metadata of the invocation of an action supported by a tool.
3783
3800
  # Corresponds to the JSON property `toolUse`
3784
3801
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolUse]
@@ -3796,8 +3813,11 @@ module Google
3796
3813
  # Update properties of this object
3797
3814
  def update!(**args)
3798
3815
  @agent_utterance = args[:agent_utterance] if args.key?(:agent_utterance)
3816
+ @event = args[:event] if args.key?(:event)
3799
3817
  @flow_invocation = args[:flow_invocation] if args.key?(:flow_invocation)
3818
+ @flow_transition = args[:flow_transition] if args.key?(:flow_transition)
3800
3819
  @playbook_invocation = args[:playbook_invocation] if args.key?(:playbook_invocation)
3820
+ @playbook_transition = args[:playbook_transition] if args.key?(:playbook_transition)
3801
3821
  @tool_use = args[:tool_use] if args.key?(:tool_use)
3802
3822
  @user_utterance = args[:user_utterance] if args.key?(:user_utterance)
3803
3823
  end
@@ -6524,6 +6544,25 @@ module Google
6524
6544
  end
6525
6545
  end
6526
6546
 
6547
+ # Event represents the event sent by the customer.
6548
+ class GoogleCloudDialogflowCxV3beta1Event
6549
+ include Google::Apis::Core::Hashable
6550
+
6551
+ # Required. Name of the event.
6552
+ # Corresponds to the JSON property `event`
6553
+ # @return [String]
6554
+ attr_accessor :event
6555
+
6556
+ def initialize(**args)
6557
+ update!(**args)
6558
+ end
6559
+
6560
+ # Update properties of this object
6561
+ def update!(**args)
6562
+ @event = args[:event] if args.key?(:event)
6563
+ end
6564
+ end
6565
+
6527
6566
  # An event handler specifies an event that can be handled during a session. When
6528
6567
  # the specified event happens, the following actions are taken in order: * If
6529
6568
  # there is a `trigger_fulfillment` associated with the event, it will be called.
@@ -7706,6 +7745,33 @@ module Google
7706
7745
  end
7707
7746
  end
7708
7747
 
7748
+ # Stores metadata of the transition to a target CX flow. Flow transition actions
7749
+ # exit the caller playbook and enter the child flow.
7750
+ class GoogleCloudDialogflowCxV3beta1FlowTransition
7751
+ include Google::Apis::Core::Hashable
7752
+
7753
+ # Output only. The display name of the flow.
7754
+ # Corresponds to the JSON property `displayName`
7755
+ # @return [String]
7756
+ attr_accessor :display_name
7757
+
7758
+ # Required. The unique identifier of the flow. Format: `projects//locations//
7759
+ # agents/`.
7760
+ # Corresponds to the JSON property `flow`
7761
+ # @return [String]
7762
+ attr_accessor :flow
7763
+
7764
+ def initialize(**args)
7765
+ update!(**args)
7766
+ end
7767
+
7768
+ # Update properties of this object
7769
+ def update!(**args)
7770
+ @display_name = args[:display_name] if args.key?(:display_name)
7771
+ @flow = args[:flow] if args.key?(:flow)
7772
+ end
7773
+ end
7774
+
7709
7775
  # The response message for Flows.GetFlowValidationResult.
7710
7776
  class GoogleCloudDialogflowCxV3beta1FlowValidationResult
7711
7777
  include Google::Apis::Core::Hashable
@@ -10812,6 +10878,11 @@ module Google
10812
10878
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
10813
10879
  attr_accessor :output_parameter_definitions
10814
10880
 
10881
+ # Optional. Type of the playbook.
10882
+ # Corresponds to the JSON property `playbookType`
10883
+ # @return [String]
10884
+ attr_accessor :playbook_type
10885
+
10815
10886
  # Output only. The resource name of flows referenced by the current playbook in
10816
10887
  # the instructions.
10817
10888
  # Corresponds to the JSON property `referencedFlows`
@@ -10862,6 +10933,7 @@ module Google
10862
10933
  @llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
10863
10934
  @name = args[:name] if args.key?(:name)
10864
10935
  @output_parameter_definitions = args[:output_parameter_definitions] if args.key?(:output_parameter_definitions)
10936
+ @playbook_type = args[:playbook_type] if args.key?(:playbook_type)
10865
10937
  @referenced_flows = args[:referenced_flows] if args.key?(:referenced_flows)
10866
10938
  @referenced_playbooks = args[:referenced_playbooks] if args.key?(:referenced_playbooks)
10867
10939
  @referenced_tools = args[:referenced_tools] if args.key?(:referenced_tools)
@@ -11018,6 +11090,33 @@ module Google
11018
11090
  end
11019
11091
  end
11020
11092
 
11093
+ # Stores metadata of the transition to another target playbook. Playbook
11094
+ # transition actions exit the caller playbook and enter the target playbook.
11095
+ class GoogleCloudDialogflowCxV3beta1PlaybookTransition
11096
+ include Google::Apis::Core::Hashable
11097
+
11098
+ # Output only. The display name of the playbook.
11099
+ # Corresponds to the JSON property `displayName`
11100
+ # @return [String]
11101
+ attr_accessor :display_name
11102
+
11103
+ # Required. The unique identifier of the playbook. Format: `projects//locations//
11104
+ # agents//playbooks/`.
11105
+ # Corresponds to the JSON property `playbook`
11106
+ # @return [String]
11107
+ attr_accessor :playbook
11108
+
11109
+ def initialize(**args)
11110
+ update!(**args)
11111
+ end
11112
+
11113
+ # Update properties of this object
11114
+ def update!(**args)
11115
+ @display_name = args[:display_name] if args.key?(:display_name)
11116
+ @playbook = args[:playbook] if args.key?(:playbook)
11117
+ end
11118
+ end
11119
+
11021
11120
  # Playbook version is a snapshot of the playbook at certain timestamp.
11022
11121
  class GoogleCloudDialogflowCxV3beta1PlaybookVersion
11023
11122
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 gem
19
- GEM_VERSION = "0.96.0"
19
+ GEM_VERSION = "0.97.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250310"
25
+ REVISION = "20250313"
26
26
  end
27
27
  end
28
28
  end
@@ -1042,6 +1042,12 @@ module Google
1042
1042
  include Google::Apis::Core::JsonObjectSupport
1043
1043
  end
1044
1044
 
1045
+ class GoogleCloudDialogflowCxV3beta1Event
1046
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1047
+
1048
+ include Google::Apis::Core::JsonObjectSupport
1049
+ end
1050
+
1045
1051
  class GoogleCloudDialogflowCxV3beta1EventHandler
1046
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1047
1053
 
@@ -1216,6 +1222,12 @@ module Google
1216
1222
  include Google::Apis::Core::JsonObjectSupport
1217
1223
  end
1218
1224
 
1225
+ class GoogleCloudDialogflowCxV3beta1FlowTransition
1226
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1227
+
1228
+ include Google::Apis::Core::JsonObjectSupport
1229
+ end
1230
+
1219
1231
  class GoogleCloudDialogflowCxV3beta1FlowValidationResult
1220
1232
  class Representation < Google::Apis::Core::JsonRepresentation; end
1221
1233
 
@@ -1774,6 +1786,12 @@ module Google
1774
1786
  include Google::Apis::Core::JsonObjectSupport
1775
1787
  end
1776
1788
 
1789
+ class GoogleCloudDialogflowCxV3beta1PlaybookTransition
1790
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1791
+
1792
+ include Google::Apis::Core::JsonObjectSupport
1793
+ end
1794
+
1777
1795
  class GoogleCloudDialogflowCxV3beta1PlaybookVersion
1778
1796
  class Representation < Google::Apis::Core::JsonRepresentation; end
1779
1797
 
@@ -4719,10 +4737,16 @@ module Google
4719
4737
  class Representation < Google::Apis::Core::JsonRepresentation
4720
4738
  property :agent_utterance, as: 'agentUtterance', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentUtterance, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentUtterance::Representation
4721
4739
 
4740
+ property :event, as: 'event', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Event, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Event::Representation
4741
+
4722
4742
  property :flow_invocation, as: 'flowInvocation', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation::Representation
4723
4743
 
4744
+ property :flow_transition, as: 'flowTransition', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowTransition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowTransition::Representation
4745
+
4724
4746
  property :playbook_invocation, as: 'playbookInvocation', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInvocation, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInvocation::Representation
4725
4747
 
4748
+ property :playbook_transition, as: 'playbookTransition', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition::Representation
4749
+
4726
4750
  property :tool_use, as: 'toolUse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolUse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolUse::Representation
4727
4751
 
4728
4752
  property :user_utterance, as: 'userUtterance', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1UserUtterance, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1UserUtterance::Representation
@@ -5465,6 +5489,13 @@ module Google
5465
5489
  end
5466
5490
  end
5467
5491
 
5492
+ class GoogleCloudDialogflowCxV3beta1Event
5493
+ # @private
5494
+ class Representation < Google::Apis::Core::JsonRepresentation
5495
+ property :event, as: 'event'
5496
+ end
5497
+ end
5498
+
5468
5499
  class GoogleCloudDialogflowCxV3beta1EventHandler
5469
5500
  # @private
5470
5501
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5767,6 +5798,14 @@ module Google
5767
5798
  end
5768
5799
  end
5769
5800
 
5801
+ class GoogleCloudDialogflowCxV3beta1FlowTransition
5802
+ # @private
5803
+ class Representation < Google::Apis::Core::JsonRepresentation
5804
+ property :display_name, as: 'displayName'
5805
+ property :flow, as: 'flow'
5806
+ end
5807
+ end
5808
+
5770
5809
  class GoogleCloudDialogflowCxV3beta1FlowValidationResult
5771
5810
  # @private
5772
5811
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6634,6 +6673,7 @@ module Google
6634
6673
  property :name, as: 'name'
6635
6674
  collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
6636
6675
 
6676
+ property :playbook_type, as: 'playbookType'
6637
6677
  collection :referenced_flows, as: 'referencedFlows'
6638
6678
  collection :referenced_playbooks, as: 'referencedPlaybooks'
6639
6679
  collection :referenced_tools, as: 'referencedTools'
@@ -6691,6 +6731,14 @@ module Google
6691
6731
  end
6692
6732
  end
6693
6733
 
6734
+ class GoogleCloudDialogflowCxV3beta1PlaybookTransition
6735
+ # @private
6736
+ class Representation < Google::Apis::Core::JsonRepresentation
6737
+ property :display_name, as: 'displayName'
6738
+ property :playbook, as: 'playbook'
6739
+ end
6740
+ end
6741
+
6694
6742
  class GoogleCloudDialogflowCxV3beta1PlaybookVersion
6695
6743
  # @private
6696
6744
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.96.0
4
+ version: 0.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-16 00:00:00.000000000 Z
10
+ date: 2025-03-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.96.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.97.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
62
62
  rdoc_options: []
63
63
  require_paths: