google-apis-dialogflow_v3 0.47.0 → 0.49.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: b41d4ca37cc1762e662f368835d503feee74272cfd84445988c812871a8fbdb6
4
- data.tar.gz: f26b2623ceb9f0098f0cba41b47804cd5001be865da13081eb86b6e6c2c0d26a
3
+ metadata.gz: 1ca4d8023312cb5616b3624ef852cea30a3e0003b9f50153bb4a31fb60f5dce7
4
+ data.tar.gz: 179f0e2eb77902d3f1db8d1bcb561d5e358af08a088b28d9f1d6f4e6221eb06d
5
5
  SHA512:
6
- metadata.gz: e8b1fec123719f1894a551d0cf64bc5867f62109c04a6deba6574a1a617a964d233a7a4622aa038f9b6d8253bad7a4f12c8ce02b96445966493b71158294c815
7
- data.tar.gz: bd237b1d19506be6ec0d7dec381cdbe459ae5472257a16df5154ee387597adef44e4d5a69a4112baa90fc85dd9de61a56d95d2b3ef5754a7ffdfd0f9a893d434
6
+ metadata.gz: a0d17823e82df34c6191ca720fc06252a6e55bfd0a6638315cfba539690c225e0eb0ec1c0aa71b09fdb8fe081ed10590725b0e33dafd4d32a41b44a81cb4014f
7
+ data.tar.gz: 87d554de786fb759160b7c92b29a2e08d0b8a7f61974c130fd2e00c1eb60ed768a98f72215956f7b407bd483b34e7c98034aa4a8923c01a50dc9585bbf76d8ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.49.0 (2023-01-15)
4
+
5
+ * Regenerated from discovery document revision 20230110
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.48.0 (2023-01-04)
9
+
10
+ * Regenerated from discovery document revision 20230103
11
+
3
12
  ### v0.47.0 (2022-11-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20221115
@@ -541,6 +541,27 @@ module Google
541
541
  end
542
542
  end
543
543
 
544
+ # This message is used to hold all the Conversation Signals data, which will be
545
+ # converted to JSON and exported to BigQuery.
546
+ class GoogleCloudDialogflowCxV3ConversationSignals
547
+ include Google::Apis::Core::Hashable
548
+
549
+ # Collection of all signals that were extracted for a single turn of the
550
+ # conversation.
551
+ # Corresponds to the JSON property `turnSignals`
552
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals]
553
+ attr_accessor :turn_signals
554
+
555
+ def initialize(**args)
556
+ update!(**args)
557
+ end
558
+
559
+ # Update properties of this object
560
+ def update!(**args)
561
+ @turn_signals = args[:turn_signals] if args.key?(:turn_signals)
562
+ end
563
+ end
564
+
544
565
  # One interaction between a human and virtual agent. The human provides some
545
566
  # input and the virtual agent provides a response.
546
567
  class GoogleCloudDialogflowCxV3ConversationTurn
@@ -3918,6 +3939,15 @@ module Google
3918
3939
  attr_accessor :analyze_query_text_sentiment
3919
3940
  alias_method :analyze_query_text_sentiment?, :analyze_query_text_sentiment
3920
3941
 
3942
+ # The channel which this query is for. If specified, only the ResponseMessage
3943
+ # associated with the channel will be returned. If no ResponseMessage is
3944
+ # associated with the channel, it falls back to the ResponseMessage with
3945
+ # unspecified channel. If unspecified, the ResponseMessage with unspecified
3946
+ # channel will be returned.
3947
+ # Corresponds to the JSON property `channel`
3948
+ # @return [String]
3949
+ attr_accessor :channel
3950
+
3921
3951
  # The unique identifier of the page to override the current page in the session.
3922
3952
  # Format: `projects//locations//agents//flows//pages/`. If `current_page` is
3923
3953
  # specified, the previous state of the session will be ignored by Dialogflow,
@@ -4009,6 +4039,7 @@ module Google
4009
4039
  # Update properties of this object
4010
4040
  def update!(**args)
4011
4041
  @analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
4042
+ @channel = args[:channel] if args.key?(:channel)
4012
4043
  @current_page = args[:current_page] if args.key?(:current_page)
4013
4044
  @disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
4014
4045
  @flow_versions = args[:flow_versions] if args.key?(:flow_versions)
@@ -4239,6 +4270,13 @@ module Google
4239
4270
  class GoogleCloudDialogflowCxV3ResponseMessage
4240
4271
  include Google::Apis::Core::Hashable
4241
4272
 
4273
+ # The channel which the response is associated with. Clients can specify the
4274
+ # channel via QueryParameters.channel, and only associated channel response will
4275
+ # be returned.
4276
+ # Corresponds to the JSON property `channel`
4277
+ # @return [String]
4278
+ attr_accessor :channel
4279
+
4242
4280
  # Indicates that the conversation succeeded, i.e., the bot handled the issue
4243
4281
  # that the customer talked to it about. Dialogflow only uses this to determine
4244
4282
  # which conversations should be counted as successful and doesn't process the
@@ -4310,6 +4348,7 @@ module Google
4310
4348
 
4311
4349
  # Update properties of this object
4312
4350
  def update!(**args)
4351
+ @channel = args[:channel] if args.key?(:channel)
4313
4352
  @conversation_success = args[:conversation_success] if args.key?(:conversation_success)
4314
4353
  @end_interaction = args[:end_interaction] if args.key?(:end_interaction)
4315
4354
  @live_agent_handoff = args[:live_agent_handoff] if args.key?(:live_agent_handoff)
@@ -5784,6 +5823,74 @@ module Google
5784
5823
  end
5785
5824
  end
5786
5825
 
5826
+ # Collection of all signals that were extracted for a single turn of the
5827
+ # conversation.
5828
+ class GoogleCloudDialogflowCxV3TurnSignals
5829
+ include Google::Apis::Core::Hashable
5830
+
5831
+ # Whether agent responded with LiveAgentHandoff fulfillment.
5832
+ # Corresponds to the JSON property `agentEscalated`
5833
+ # @return [Boolean]
5834
+ attr_accessor :agent_escalated
5835
+ alias_method :agent_escalated?, :agent_escalated
5836
+
5837
+ # Whether user was using DTMF input.
5838
+ # Corresponds to the JSON property `dtmfUsed`
5839
+ # @return [Boolean]
5840
+ attr_accessor :dtmf_used
5841
+ alias_method :dtmf_used?, :dtmf_used
5842
+
5843
+ # Failure reasons of the turn.
5844
+ # Corresponds to the JSON property `failureReasons`
5845
+ # @return [Array<String>]
5846
+ attr_accessor :failure_reasons
5847
+
5848
+ # Whether NLU predicted NO_MATCH.
5849
+ # Corresponds to the JSON property `noMatch`
5850
+ # @return [Boolean]
5851
+ attr_accessor :no_match
5852
+ alias_method :no_match?, :no_match
5853
+
5854
+ # Whether user provided no input.
5855
+ # Corresponds to the JSON property `noUserInput`
5856
+ # @return [Boolean]
5857
+ attr_accessor :no_user_input
5858
+ alias_method :no_user_input?, :no_user_input
5859
+
5860
+ # Whether turn resulted in End Session page.
5861
+ # Corresponds to the JSON property `reachedEndPage`
5862
+ # @return [Boolean]
5863
+ attr_accessor :reached_end_page
5864
+ alias_method :reached_end_page?, :reached_end_page
5865
+
5866
+ # Whether user was specifically asking for a live agent.
5867
+ # Corresponds to the JSON property `userEscalated`
5868
+ # @return [Boolean]
5869
+ attr_accessor :user_escalated
5870
+ alias_method :user_escalated?, :user_escalated
5871
+
5872
+ # Human-readable statuses of the webhooks triggered during this turn.
5873
+ # Corresponds to the JSON property `webhookStatuses`
5874
+ # @return [Array<String>]
5875
+ attr_accessor :webhook_statuses
5876
+
5877
+ def initialize(**args)
5878
+ update!(**args)
5879
+ end
5880
+
5881
+ # Update properties of this object
5882
+ def update!(**args)
5883
+ @agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
5884
+ @dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
5885
+ @failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
5886
+ @no_match = args[:no_match] if args.key?(:no_match)
5887
+ @no_user_input = args[:no_user_input] if args.key?(:no_user_input)
5888
+ @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
5889
+ @user_escalated = args[:user_escalated] if args.key?(:user_escalated)
5890
+ @webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
5891
+ end
5892
+ end
5893
+
5787
5894
  # Metadata for UpdateDocument operation.
5788
5895
  class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
5789
5896
  include Google::Apis::Core::Hashable
@@ -6585,6 +6692,27 @@ module Google
6585
6692
  end
6586
6693
  end
6587
6694
 
6695
+ # This message is used to hold all the Conversation Signals data, which will be
6696
+ # converted to JSON and exported to BigQuery.
6697
+ class GoogleCloudDialogflowCxV3beta1ConversationSignals
6698
+ include Google::Apis::Core::Hashable
6699
+
6700
+ # Collection of all signals that were extracted for a single turn of the
6701
+ # conversation.
6702
+ # Corresponds to the JSON property `turnSignals`
6703
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TurnSignals]
6704
+ attr_accessor :turn_signals
6705
+
6706
+ def initialize(**args)
6707
+ update!(**args)
6708
+ end
6709
+
6710
+ # Update properties of this object
6711
+ def update!(**args)
6712
+ @turn_signals = args[:turn_signals] if args.key?(:turn_signals)
6713
+ end
6714
+ end
6715
+
6588
6716
  # One interaction between a human and virtual agent. The human provides some
6589
6717
  # input and the virtual agent provides a response.
6590
6718
  class GoogleCloudDialogflowCxV3beta1ConversationTurn
@@ -8197,6 +8325,13 @@ module Google
8197
8325
  class GoogleCloudDialogflowCxV3beta1ResponseMessage
8198
8326
  include Google::Apis::Core::Hashable
8199
8327
 
8328
+ # The channel which the response is associated with. Clients can specify the
8329
+ # channel via QueryParameters.channel, and only associated channel response will
8330
+ # be returned.
8331
+ # Corresponds to the JSON property `channel`
8332
+ # @return [String]
8333
+ attr_accessor :channel
8334
+
8200
8335
  # Indicates that the conversation succeeded, i.e., the bot handled the issue
8201
8336
  # that the customer talked to it about. Dialogflow only uses this to determine
8202
8337
  # which conversations should be counted as successful and doesn't process the
@@ -8268,6 +8403,7 @@ module Google
8268
8403
 
8269
8404
  # Update properties of this object
8270
8405
  def update!(**args)
8406
+ @channel = args[:channel] if args.key?(:channel)
8271
8407
  @conversation_success = args[:conversation_success] if args.key?(:conversation_success)
8272
8408
  @end_interaction = args[:end_interaction] if args.key?(:end_interaction)
8273
8409
  @live_agent_handoff = args[:live_agent_handoff] if args.key?(:live_agent_handoff)
@@ -8955,6 +9091,74 @@ module Google
8955
9091
  end
8956
9092
  end
8957
9093
 
9094
+ # Collection of all signals that were extracted for a single turn of the
9095
+ # conversation.
9096
+ class GoogleCloudDialogflowCxV3beta1TurnSignals
9097
+ include Google::Apis::Core::Hashable
9098
+
9099
+ # Whether agent responded with LiveAgentHandoff fulfillment.
9100
+ # Corresponds to the JSON property `agentEscalated`
9101
+ # @return [Boolean]
9102
+ attr_accessor :agent_escalated
9103
+ alias_method :agent_escalated?, :agent_escalated
9104
+
9105
+ # Whether user was using DTMF input.
9106
+ # Corresponds to the JSON property `dtmfUsed`
9107
+ # @return [Boolean]
9108
+ attr_accessor :dtmf_used
9109
+ alias_method :dtmf_used?, :dtmf_used
9110
+
9111
+ # Failure reasons of the turn.
9112
+ # Corresponds to the JSON property `failureReasons`
9113
+ # @return [Array<String>]
9114
+ attr_accessor :failure_reasons
9115
+
9116
+ # Whether NLU predicted NO_MATCH.
9117
+ # Corresponds to the JSON property `noMatch`
9118
+ # @return [Boolean]
9119
+ attr_accessor :no_match
9120
+ alias_method :no_match?, :no_match
9121
+
9122
+ # Whether user provided no input.
9123
+ # Corresponds to the JSON property `noUserInput`
9124
+ # @return [Boolean]
9125
+ attr_accessor :no_user_input
9126
+ alias_method :no_user_input?, :no_user_input
9127
+
9128
+ # Whether turn resulted in End Session page.
9129
+ # Corresponds to the JSON property `reachedEndPage`
9130
+ # @return [Boolean]
9131
+ attr_accessor :reached_end_page
9132
+ alias_method :reached_end_page?, :reached_end_page
9133
+
9134
+ # Whether user was specifically asking for a live agent.
9135
+ # Corresponds to the JSON property `userEscalated`
9136
+ # @return [Boolean]
9137
+ attr_accessor :user_escalated
9138
+ alias_method :user_escalated?, :user_escalated
9139
+
9140
+ # Human-readable statuses of the webhooks triggered during this turn.
9141
+ # Corresponds to the JSON property `webhookStatuses`
9142
+ # @return [Array<String>]
9143
+ attr_accessor :webhook_statuses
9144
+
9145
+ def initialize(**args)
9146
+ update!(**args)
9147
+ end
9148
+
9149
+ # Update properties of this object
9150
+ def update!(**args)
9151
+ @agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
9152
+ @dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
9153
+ @failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
9154
+ @no_match = args[:no_match] if args.key?(:no_match)
9155
+ @no_user_input = args[:no_user_input] if args.key?(:no_user_input)
9156
+ @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
9157
+ @user_escalated = args[:user_escalated] if args.key?(:user_escalated)
9158
+ @webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
9159
+ end
9160
+ end
9161
+
8958
9162
  # Metadata for UpdateDocument operation.
8959
9163
  class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
8960
9164
  include Google::Apis::Core::Hashable
@@ -15602,6 +15806,27 @@ module Google
15602
15806
  end
15603
15807
  end
15604
15808
 
15809
+ # This message is used to hold all the Conversation Signals data, which will be
15810
+ # converted to JSON and exported to BigQuery.
15811
+ class GoogleCloudDialogflowV3alpha1ConversationSignals
15812
+ include Google::Apis::Core::Hashable
15813
+
15814
+ # Collection of all signals that were extracted for a single turn of the
15815
+ # conversation.
15816
+ # Corresponds to the JSON property `turnSignals`
15817
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1TurnSignals]
15818
+ attr_accessor :turn_signals
15819
+
15820
+ def initialize(**args)
15821
+ update!(**args)
15822
+ end
15823
+
15824
+ # Update properties of this object
15825
+ def update!(**args)
15826
+ @turn_signals = args[:turn_signals] if args.key?(:turn_signals)
15827
+ end
15828
+ end
15829
+
15605
15830
  # Metadata for CreateDocument operation.
15606
15831
  class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
15607
15832
  include Google::Apis::Core::Hashable
@@ -15716,6 +15941,82 @@ module Google
15716
15941
  end
15717
15942
  end
15718
15943
 
15944
+ # Collection of all signals that were extracted for a single turn of the
15945
+ # conversation.
15946
+ class GoogleCloudDialogflowV3alpha1TurnSignals
15947
+ include Google::Apis::Core::Hashable
15948
+
15949
+ # Whether agent responded with LiveAgentHandoff fulfillment.
15950
+ # Corresponds to the JSON property `agentEscalated`
15951
+ # @return [Boolean]
15952
+ attr_accessor :agent_escalated
15953
+ alias_method :agent_escalated?, :agent_escalated
15954
+
15955
+ # Whether user was using DTMF input.
15956
+ # Corresponds to the JSON property `dtmfUsed`
15957
+ # @return [Boolean]
15958
+ attr_accessor :dtmf_used
15959
+ alias_method :dtmf_used?, :dtmf_used
15960
+
15961
+ # Failure reasons of the turn.
15962
+ # Corresponds to the JSON property `failureReasons`
15963
+ # @return [Array<String>]
15964
+ attr_accessor :failure_reasons
15965
+
15966
+ # Whether NLU predicted NO_MATCH.
15967
+ # Corresponds to the JSON property `noMatch`
15968
+ # @return [Boolean]
15969
+ attr_accessor :no_match
15970
+ alias_method :no_match?, :no_match
15971
+
15972
+ # Whether user provided no input.
15973
+ # Corresponds to the JSON property `noUserInput`
15974
+ # @return [Boolean]
15975
+ attr_accessor :no_user_input
15976
+ alias_method :no_user_input?, :no_user_input
15977
+
15978
+ # Whether turn resulted in End Session page.
15979
+ # Corresponds to the JSON property `reachedEndPage`
15980
+ # @return [Boolean]
15981
+ attr_accessor :reached_end_page
15982
+ alias_method :reached_end_page?, :reached_end_page
15983
+
15984
+ # Whether agent has triggered the event corresponding to user abandoning the
15985
+ # conversation.
15986
+ # Corresponds to the JSON property `triggeredAbandonmentEvent`
15987
+ # @return [Boolean]
15988
+ attr_accessor :triggered_abandonment_event
15989
+ alias_method :triggered_abandonment_event?, :triggered_abandonment_event
15990
+
15991
+ # Whether user was specifically asking for a live agent.
15992
+ # Corresponds to the JSON property `userEscalated`
15993
+ # @return [Boolean]
15994
+ attr_accessor :user_escalated
15995
+ alias_method :user_escalated?, :user_escalated
15996
+
15997
+ # Human-readable statuses of the webhooks triggered during this turn.
15998
+ # Corresponds to the JSON property `webhookStatuses`
15999
+ # @return [Array<String>]
16000
+ attr_accessor :webhook_statuses
16001
+
16002
+ def initialize(**args)
16003
+ update!(**args)
16004
+ end
16005
+
16006
+ # Update properties of this object
16007
+ def update!(**args)
16008
+ @agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
16009
+ @dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
16010
+ @failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
16011
+ @no_match = args[:no_match] if args.key?(:no_match)
16012
+ @no_user_input = args[:no_user_input] if args.key?(:no_user_input)
16013
+ @reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
16014
+ @triggered_abandonment_event = args[:triggered_abandonment_event] if args.key?(:triggered_abandonment_event)
16015
+ @user_escalated = args[:user_escalated] if args.key?(:user_escalated)
16016
+ @webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
16017
+ end
16018
+ end
16019
+
15719
16020
  # Metadata for UpdateDocument operation.
15720
16021
  class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
15721
16022
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3
18
18
  # Version of the google-apis-dialogflow_v3 gem
19
- GEM_VERSION = "0.47.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221115"
25
+ REVISION = "20230110"
26
26
  end
27
27
  end
28
28
  end
@@ -106,6 +106,12 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
+ class GoogleCloudDialogflowCxV3ConversationSignals
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
109
115
  class GoogleCloudDialogflowCxV3ConversationTurn
110
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
117
 
@@ -964,6 +970,12 @@ module Google
964
970
  include Google::Apis::Core::JsonObjectSupport
965
971
  end
966
972
 
973
+ class GoogleCloudDialogflowCxV3TurnSignals
974
+ class Representation < Google::Apis::Core::JsonRepresentation; end
975
+
976
+ include Google::Apis::Core::JsonObjectSupport
977
+ end
978
+
967
979
  class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
968
980
  class Representation < Google::Apis::Core::JsonRepresentation; end
969
981
 
@@ -1102,6 +1114,12 @@ module Google
1102
1114
  include Google::Apis::Core::JsonObjectSupport
1103
1115
  end
1104
1116
 
1117
+ class GoogleCloudDialogflowCxV3beta1ConversationSignals
1118
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1119
+
1120
+ include Google::Apis::Core::JsonObjectSupport
1121
+ end
1122
+
1105
1123
  class GoogleCloudDialogflowCxV3beta1ConversationTurn
1106
1124
  class Representation < Google::Apis::Core::JsonRepresentation; end
1107
1125
 
@@ -1510,6 +1528,12 @@ module Google
1510
1528
  include Google::Apis::Core::JsonObjectSupport
1511
1529
  end
1512
1530
 
1531
+ class GoogleCloudDialogflowCxV3beta1TurnSignals
1532
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1533
+
1534
+ include Google::Apis::Core::JsonObjectSupport
1535
+ end
1536
+
1513
1537
  class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
1514
1538
  class Representation < Google::Apis::Core::JsonRepresentation; end
1515
1539
 
@@ -2530,6 +2554,12 @@ module Google
2530
2554
  include Google::Apis::Core::JsonObjectSupport
2531
2555
  end
2532
2556
 
2557
+ class GoogleCloudDialogflowV3alpha1ConversationSignals
2558
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2559
+
2560
+ include Google::Apis::Core::JsonObjectSupport
2561
+ end
2562
+
2533
2563
  class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
2534
2564
  class Representation < Google::Apis::Core::JsonRepresentation; end
2535
2565
 
@@ -2566,6 +2596,12 @@ module Google
2566
2596
  include Google::Apis::Core::JsonObjectSupport
2567
2597
  end
2568
2598
 
2599
+ class GoogleCloudDialogflowV3alpha1TurnSignals
2600
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2601
+
2602
+ include Google::Apis::Core::JsonObjectSupport
2603
+ end
2604
+
2569
2605
  class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
2570
2606
  class Representation < Google::Apis::Core::JsonRepresentation; end
2571
2607
 
@@ -2754,6 +2790,14 @@ module Google
2754
2790
  end
2755
2791
  end
2756
2792
 
2793
+ class GoogleCloudDialogflowCxV3ConversationSignals
2794
+ # @private
2795
+ class Representation < Google::Apis::Core::JsonRepresentation
2796
+ property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals::Representation
2797
+
2798
+ end
2799
+ end
2800
+
2757
2801
  class GoogleCloudDialogflowCxV3ConversationTurn
2758
2802
  # @private
2759
2803
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3684,6 +3728,7 @@ module Google
3684
3728
  # @private
3685
3729
  class Representation < Google::Apis::Core::JsonRepresentation
3686
3730
  property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
3731
+ property :channel, as: 'channel'
3687
3732
  property :current_page, as: 'currentPage'
3688
3733
  property :disable_webhook, as: 'disableWebhook'
3689
3734
  collection :flow_versions, as: 'flowVersions'
@@ -3746,6 +3791,7 @@ module Google
3746
3791
  class GoogleCloudDialogflowCxV3ResponseMessage
3747
3792
  # @private
3748
3793
  class Representation < Google::Apis::Core::JsonRepresentation
3794
+ property :channel, as: 'channel'
3749
3795
  property :conversation_success, as: 'conversationSuccess', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess::Representation
3750
3796
 
3751
3797
  property :end_interaction, as: 'endInteraction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageEndInteraction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageEndInteraction::Representation
@@ -4173,6 +4219,20 @@ module Google
4173
4219
  end
4174
4220
  end
4175
4221
 
4222
+ class GoogleCloudDialogflowCxV3TurnSignals
4223
+ # @private
4224
+ class Representation < Google::Apis::Core::JsonRepresentation
4225
+ property :agent_escalated, as: 'agentEscalated'
4226
+ property :dtmf_used, as: 'dtmfUsed'
4227
+ collection :failure_reasons, as: 'failureReasons'
4228
+ property :no_match, as: 'noMatch'
4229
+ property :no_user_input, as: 'noUserInput'
4230
+ property :reached_end_page, as: 'reachedEndPage'
4231
+ property :user_escalated, as: 'userEscalated'
4232
+ collection :webhook_statuses, as: 'webhookStatuses'
4233
+ end
4234
+ end
4235
+
4176
4236
  class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
4177
4237
  # @private
4178
4238
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4406,6 +4466,14 @@ module Google
4406
4466
  end
4407
4467
  end
4408
4468
 
4469
+ class GoogleCloudDialogflowCxV3beta1ConversationSignals
4470
+ # @private
4471
+ class Representation < Google::Apis::Core::JsonRepresentation
4472
+ property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TurnSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TurnSignals::Representation
4473
+
4474
+ end
4475
+ end
4476
+
4409
4477
  class GoogleCloudDialogflowCxV3beta1ConversationTurn
4410
4478
  # @private
4411
4479
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4847,6 +4915,7 @@ module Google
4847
4915
  class GoogleCloudDialogflowCxV3beta1ResponseMessage
4848
4916
  # @private
4849
4917
  class Representation < Google::Apis::Core::JsonRepresentation
4918
+ property :channel, as: 'channel'
4850
4919
  property :conversation_success, as: 'conversationSuccess', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess::Representation
4851
4920
 
4852
4921
  property :end_interaction, as: 'endInteraction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction::Representation
@@ -5060,6 +5129,20 @@ module Google
5060
5129
  end
5061
5130
  end
5062
5131
 
5132
+ class GoogleCloudDialogflowCxV3beta1TurnSignals
5133
+ # @private
5134
+ class Representation < Google::Apis::Core::JsonRepresentation
5135
+ property :agent_escalated, as: 'agentEscalated'
5136
+ property :dtmf_used, as: 'dtmfUsed'
5137
+ collection :failure_reasons, as: 'failureReasons'
5138
+ property :no_match, as: 'noMatch'
5139
+ property :no_user_input, as: 'noUserInput'
5140
+ property :reached_end_page, as: 'reachedEndPage'
5141
+ property :user_escalated, as: 'userEscalated'
5142
+ collection :webhook_statuses, as: 'webhookStatuses'
5143
+ end
5144
+ end
5145
+
5063
5146
  class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
5064
5147
  # @private
5065
5148
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6859,6 +6942,14 @@ module Google
6859
6942
  end
6860
6943
  end
6861
6944
 
6945
+ class GoogleCloudDialogflowV3alpha1ConversationSignals
6946
+ # @private
6947
+ class Representation < Google::Apis::Core::JsonRepresentation
6948
+ property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1TurnSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1TurnSignals::Representation
6949
+
6950
+ end
6951
+ end
6952
+
6862
6953
  class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
6863
6954
  # @private
6864
6955
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6906,6 +6997,21 @@ module Google
6906
6997
  end
6907
6998
  end
6908
6999
 
7000
+ class GoogleCloudDialogflowV3alpha1TurnSignals
7001
+ # @private
7002
+ class Representation < Google::Apis::Core::JsonRepresentation
7003
+ property :agent_escalated, as: 'agentEscalated'
7004
+ property :dtmf_used, as: 'dtmfUsed'
7005
+ collection :failure_reasons, as: 'failureReasons'
7006
+ property :no_match, as: 'noMatch'
7007
+ property :no_user_input, as: 'noUserInput'
7008
+ property :reached_end_page, as: 'reachedEndPage'
7009
+ property :triggered_abandonment_event, as: 'triggeredAbandonmentEvent'
7010
+ property :user_escalated, as: 'userEscalated'
7011
+ collection :webhook_statuses, as: 'webhookStatuses'
7012
+ end
7013
+ end
7014
+
6909
7015
  class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
6910
7016
  # @private
6911
7017
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2023-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.49.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dialogflow API V3