google-apis-dialogflow_v2beta1 0.46.0 → 0.48.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afafdc4074f7116833b2983fc02ade7207831a17a3522d03fbc9a549a454edf7
|
4
|
+
data.tar.gz: 2f0a012d5f912832abf8514512f89b644e0c82e71c33102d9f827024410d30a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b310f0987c22dbc63a77f1ceb7c7644748d96c0b61376d167ed540f0607e341b5aefa66baea70044f57794281eaa35f48c378ba2861057e50036fe8720c92e8c
|
7
|
+
data.tar.gz: 35168fdb61c80125179d8b99435f6a89edf3732e393e0eef73085eb40c6238827d3c228c2726db7f62fd96f05b9164b58f004c8b86335bb9c836e72376ce80ce
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
2
2
|
|
3
|
+
### v0.48.0 (2023-01-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230110
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
8
|
+
### v0.47.0 (2023-01-04)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20230103
|
11
|
+
|
3
12
|
### v0.46.0 (2022-11-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221115
|
@@ -131,6 +131,27 @@ module Google
|
|
131
131
|
end
|
132
132
|
end
|
133
133
|
|
134
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
135
|
+
# converted to JSON and exported to BigQuery.
|
136
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
137
|
+
include Google::Apis::Core::Hashable
|
138
|
+
|
139
|
+
# Collection of all signals that were extracted for a single turn of the
|
140
|
+
# conversation.
|
141
|
+
# Corresponds to the JSON property `turnSignals`
|
142
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TurnSignals]
|
143
|
+
attr_accessor :turn_signals
|
144
|
+
|
145
|
+
def initialize(**args)
|
146
|
+
update!(**args)
|
147
|
+
end
|
148
|
+
|
149
|
+
# Update properties of this object
|
150
|
+
def update!(**args)
|
151
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
134
155
|
# One interaction between a human and virtual agent. The human provides some
|
135
156
|
# input and the virtual agent provides a response.
|
136
157
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
@@ -1743,6 +1764,13 @@ module Google
|
|
1743
1764
|
class GoogleCloudDialogflowCxV3ResponseMessage
|
1744
1765
|
include Google::Apis::Core::Hashable
|
1745
1766
|
|
1767
|
+
# The channel which the response is associated with. Clients can specify the
|
1768
|
+
# channel via QueryParameters.channel, and only associated channel response will
|
1769
|
+
# be returned.
|
1770
|
+
# Corresponds to the JSON property `channel`
|
1771
|
+
# @return [String]
|
1772
|
+
attr_accessor :channel
|
1773
|
+
|
1746
1774
|
# Indicates that the conversation succeeded, i.e., the bot handled the issue
|
1747
1775
|
# that the customer talked to it about. Dialogflow only uses this to determine
|
1748
1776
|
# which conversations should be counted as successful and doesn't process the
|
@@ -1814,6 +1842,7 @@ module Google
|
|
1814
1842
|
|
1815
1843
|
# Update properties of this object
|
1816
1844
|
def update!(**args)
|
1845
|
+
@channel = args[:channel] if args.key?(:channel)
|
1817
1846
|
@conversation_success = args[:conversation_success] if args.key?(:conversation_success)
|
1818
1847
|
@end_interaction = args[:end_interaction] if args.key?(:end_interaction)
|
1819
1848
|
@live_agent_handoff = args[:live_agent_handoff] if args.key?(:live_agent_handoff)
|
@@ -2501,6 +2530,74 @@ module Google
|
|
2501
2530
|
end
|
2502
2531
|
end
|
2503
2532
|
|
2533
|
+
# Collection of all signals that were extracted for a single turn of the
|
2534
|
+
# conversation.
|
2535
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
2536
|
+
include Google::Apis::Core::Hashable
|
2537
|
+
|
2538
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
2539
|
+
# Corresponds to the JSON property `agentEscalated`
|
2540
|
+
# @return [Boolean]
|
2541
|
+
attr_accessor :agent_escalated
|
2542
|
+
alias_method :agent_escalated?, :agent_escalated
|
2543
|
+
|
2544
|
+
# Whether user was using DTMF input.
|
2545
|
+
# Corresponds to the JSON property `dtmfUsed`
|
2546
|
+
# @return [Boolean]
|
2547
|
+
attr_accessor :dtmf_used
|
2548
|
+
alias_method :dtmf_used?, :dtmf_used
|
2549
|
+
|
2550
|
+
# Failure reasons of the turn.
|
2551
|
+
# Corresponds to the JSON property `failureReasons`
|
2552
|
+
# @return [Array<String>]
|
2553
|
+
attr_accessor :failure_reasons
|
2554
|
+
|
2555
|
+
# Whether NLU predicted NO_MATCH.
|
2556
|
+
# Corresponds to the JSON property `noMatch`
|
2557
|
+
# @return [Boolean]
|
2558
|
+
attr_accessor :no_match
|
2559
|
+
alias_method :no_match?, :no_match
|
2560
|
+
|
2561
|
+
# Whether user provided no input.
|
2562
|
+
# Corresponds to the JSON property `noUserInput`
|
2563
|
+
# @return [Boolean]
|
2564
|
+
attr_accessor :no_user_input
|
2565
|
+
alias_method :no_user_input?, :no_user_input
|
2566
|
+
|
2567
|
+
# Whether turn resulted in End Session page.
|
2568
|
+
# Corresponds to the JSON property `reachedEndPage`
|
2569
|
+
# @return [Boolean]
|
2570
|
+
attr_accessor :reached_end_page
|
2571
|
+
alias_method :reached_end_page?, :reached_end_page
|
2572
|
+
|
2573
|
+
# Whether user was specifically asking for a live agent.
|
2574
|
+
# Corresponds to the JSON property `userEscalated`
|
2575
|
+
# @return [Boolean]
|
2576
|
+
attr_accessor :user_escalated
|
2577
|
+
alias_method :user_escalated?, :user_escalated
|
2578
|
+
|
2579
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
2580
|
+
# Corresponds to the JSON property `webhookStatuses`
|
2581
|
+
# @return [Array<String>]
|
2582
|
+
attr_accessor :webhook_statuses
|
2583
|
+
|
2584
|
+
def initialize(**args)
|
2585
|
+
update!(**args)
|
2586
|
+
end
|
2587
|
+
|
2588
|
+
# Update properties of this object
|
2589
|
+
def update!(**args)
|
2590
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
2591
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
2592
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
2593
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
2594
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
2595
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
2596
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
2597
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
2598
|
+
end
|
2599
|
+
end
|
2600
|
+
|
2504
2601
|
# Metadata for UpdateDocument operation.
|
2505
2602
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
2506
2603
|
include Google::Apis::Core::Hashable
|
@@ -3059,6 +3156,27 @@ module Google
|
|
3059
3156
|
end
|
3060
3157
|
end
|
3061
3158
|
|
3159
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
3160
|
+
# converted to JSON and exported to BigQuery.
|
3161
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
3162
|
+
include Google::Apis::Core::Hashable
|
3163
|
+
|
3164
|
+
# Collection of all signals that were extracted for a single turn of the
|
3165
|
+
# conversation.
|
3166
|
+
# Corresponds to the JSON property `turnSignals`
|
3167
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TurnSignals]
|
3168
|
+
attr_accessor :turn_signals
|
3169
|
+
|
3170
|
+
def initialize(**args)
|
3171
|
+
update!(**args)
|
3172
|
+
end
|
3173
|
+
|
3174
|
+
# Update properties of this object
|
3175
|
+
def update!(**args)
|
3176
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
3177
|
+
end
|
3178
|
+
end
|
3179
|
+
|
3062
3180
|
# One interaction between a human and virtual agent. The human provides some
|
3063
3181
|
# input and the virtual agent provides a response.
|
3064
3182
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
@@ -4671,6 +4789,13 @@ module Google
|
|
4671
4789
|
class GoogleCloudDialogflowCxV3beta1ResponseMessage
|
4672
4790
|
include Google::Apis::Core::Hashable
|
4673
4791
|
|
4792
|
+
# The channel which the response is associated with. Clients can specify the
|
4793
|
+
# channel via QueryParameters.channel, and only associated channel response will
|
4794
|
+
# be returned.
|
4795
|
+
# Corresponds to the JSON property `channel`
|
4796
|
+
# @return [String]
|
4797
|
+
attr_accessor :channel
|
4798
|
+
|
4674
4799
|
# Indicates that the conversation succeeded, i.e., the bot handled the issue
|
4675
4800
|
# that the customer talked to it about. Dialogflow only uses this to determine
|
4676
4801
|
# which conversations should be counted as successful and doesn't process the
|
@@ -4742,6 +4867,7 @@ module Google
|
|
4742
4867
|
|
4743
4868
|
# Update properties of this object
|
4744
4869
|
def update!(**args)
|
4870
|
+
@channel = args[:channel] if args.key?(:channel)
|
4745
4871
|
@conversation_success = args[:conversation_success] if args.key?(:conversation_success)
|
4746
4872
|
@end_interaction = args[:end_interaction] if args.key?(:end_interaction)
|
4747
4873
|
@live_agent_handoff = args[:live_agent_handoff] if args.key?(:live_agent_handoff)
|
@@ -5429,6 +5555,74 @@ module Google
|
|
5429
5555
|
end
|
5430
5556
|
end
|
5431
5557
|
|
5558
|
+
# Collection of all signals that were extracted for a single turn of the
|
5559
|
+
# conversation.
|
5560
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
5561
|
+
include Google::Apis::Core::Hashable
|
5562
|
+
|
5563
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
5564
|
+
# Corresponds to the JSON property `agentEscalated`
|
5565
|
+
# @return [Boolean]
|
5566
|
+
attr_accessor :agent_escalated
|
5567
|
+
alias_method :agent_escalated?, :agent_escalated
|
5568
|
+
|
5569
|
+
# Whether user was using DTMF input.
|
5570
|
+
# Corresponds to the JSON property `dtmfUsed`
|
5571
|
+
# @return [Boolean]
|
5572
|
+
attr_accessor :dtmf_used
|
5573
|
+
alias_method :dtmf_used?, :dtmf_used
|
5574
|
+
|
5575
|
+
# Failure reasons of the turn.
|
5576
|
+
# Corresponds to the JSON property `failureReasons`
|
5577
|
+
# @return [Array<String>]
|
5578
|
+
attr_accessor :failure_reasons
|
5579
|
+
|
5580
|
+
# Whether NLU predicted NO_MATCH.
|
5581
|
+
# Corresponds to the JSON property `noMatch`
|
5582
|
+
# @return [Boolean]
|
5583
|
+
attr_accessor :no_match
|
5584
|
+
alias_method :no_match?, :no_match
|
5585
|
+
|
5586
|
+
# Whether user provided no input.
|
5587
|
+
# Corresponds to the JSON property `noUserInput`
|
5588
|
+
# @return [Boolean]
|
5589
|
+
attr_accessor :no_user_input
|
5590
|
+
alias_method :no_user_input?, :no_user_input
|
5591
|
+
|
5592
|
+
# Whether turn resulted in End Session page.
|
5593
|
+
# Corresponds to the JSON property `reachedEndPage`
|
5594
|
+
# @return [Boolean]
|
5595
|
+
attr_accessor :reached_end_page
|
5596
|
+
alias_method :reached_end_page?, :reached_end_page
|
5597
|
+
|
5598
|
+
# Whether user was specifically asking for a live agent.
|
5599
|
+
# Corresponds to the JSON property `userEscalated`
|
5600
|
+
# @return [Boolean]
|
5601
|
+
attr_accessor :user_escalated
|
5602
|
+
alias_method :user_escalated?, :user_escalated
|
5603
|
+
|
5604
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
5605
|
+
# Corresponds to the JSON property `webhookStatuses`
|
5606
|
+
# @return [Array<String>]
|
5607
|
+
attr_accessor :webhook_statuses
|
5608
|
+
|
5609
|
+
def initialize(**args)
|
5610
|
+
update!(**args)
|
5611
|
+
end
|
5612
|
+
|
5613
|
+
# Update properties of this object
|
5614
|
+
def update!(**args)
|
5615
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
5616
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
5617
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
5618
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
5619
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
5620
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
5621
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
5622
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
5623
|
+
end
|
5624
|
+
end
|
5625
|
+
|
5432
5626
|
# Metadata for UpdateDocument operation.
|
5433
5627
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
5434
5628
|
include Google::Apis::Core::Hashable
|
@@ -16474,6 +16668,27 @@ module Google
|
|
16474
16668
|
end
|
16475
16669
|
end
|
16476
16670
|
|
16671
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
16672
|
+
# converted to JSON and exported to BigQuery.
|
16673
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
16674
|
+
include Google::Apis::Core::Hashable
|
16675
|
+
|
16676
|
+
# Collection of all signals that were extracted for a single turn of the
|
16677
|
+
# conversation.
|
16678
|
+
# Corresponds to the JSON property `turnSignals`
|
16679
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV3alpha1TurnSignals]
|
16680
|
+
attr_accessor :turn_signals
|
16681
|
+
|
16682
|
+
def initialize(**args)
|
16683
|
+
update!(**args)
|
16684
|
+
end
|
16685
|
+
|
16686
|
+
# Update properties of this object
|
16687
|
+
def update!(**args)
|
16688
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
16689
|
+
end
|
16690
|
+
end
|
16691
|
+
|
16477
16692
|
# Metadata for CreateDocument operation.
|
16478
16693
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
16479
16694
|
include Google::Apis::Core::Hashable
|
@@ -16588,6 +16803,82 @@ module Google
|
|
16588
16803
|
end
|
16589
16804
|
end
|
16590
16805
|
|
16806
|
+
# Collection of all signals that were extracted for a single turn of the
|
16807
|
+
# conversation.
|
16808
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
16809
|
+
include Google::Apis::Core::Hashable
|
16810
|
+
|
16811
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
16812
|
+
# Corresponds to the JSON property `agentEscalated`
|
16813
|
+
# @return [Boolean]
|
16814
|
+
attr_accessor :agent_escalated
|
16815
|
+
alias_method :agent_escalated?, :agent_escalated
|
16816
|
+
|
16817
|
+
# Whether user was using DTMF input.
|
16818
|
+
# Corresponds to the JSON property `dtmfUsed`
|
16819
|
+
# @return [Boolean]
|
16820
|
+
attr_accessor :dtmf_used
|
16821
|
+
alias_method :dtmf_used?, :dtmf_used
|
16822
|
+
|
16823
|
+
# Failure reasons of the turn.
|
16824
|
+
# Corresponds to the JSON property `failureReasons`
|
16825
|
+
# @return [Array<String>]
|
16826
|
+
attr_accessor :failure_reasons
|
16827
|
+
|
16828
|
+
# Whether NLU predicted NO_MATCH.
|
16829
|
+
# Corresponds to the JSON property `noMatch`
|
16830
|
+
# @return [Boolean]
|
16831
|
+
attr_accessor :no_match
|
16832
|
+
alias_method :no_match?, :no_match
|
16833
|
+
|
16834
|
+
# Whether user provided no input.
|
16835
|
+
# Corresponds to the JSON property `noUserInput`
|
16836
|
+
# @return [Boolean]
|
16837
|
+
attr_accessor :no_user_input
|
16838
|
+
alias_method :no_user_input?, :no_user_input
|
16839
|
+
|
16840
|
+
# Whether turn resulted in End Session page.
|
16841
|
+
# Corresponds to the JSON property `reachedEndPage`
|
16842
|
+
# @return [Boolean]
|
16843
|
+
attr_accessor :reached_end_page
|
16844
|
+
alias_method :reached_end_page?, :reached_end_page
|
16845
|
+
|
16846
|
+
# Whether agent has triggered the event corresponding to user abandoning the
|
16847
|
+
# conversation.
|
16848
|
+
# Corresponds to the JSON property `triggeredAbandonmentEvent`
|
16849
|
+
# @return [Boolean]
|
16850
|
+
attr_accessor :triggered_abandonment_event
|
16851
|
+
alias_method :triggered_abandonment_event?, :triggered_abandonment_event
|
16852
|
+
|
16853
|
+
# Whether user was specifically asking for a live agent.
|
16854
|
+
# Corresponds to the JSON property `userEscalated`
|
16855
|
+
# @return [Boolean]
|
16856
|
+
attr_accessor :user_escalated
|
16857
|
+
alias_method :user_escalated?, :user_escalated
|
16858
|
+
|
16859
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
16860
|
+
# Corresponds to the JSON property `webhookStatuses`
|
16861
|
+
# @return [Array<String>]
|
16862
|
+
attr_accessor :webhook_statuses
|
16863
|
+
|
16864
|
+
def initialize(**args)
|
16865
|
+
update!(**args)
|
16866
|
+
end
|
16867
|
+
|
16868
|
+
# Update properties of this object
|
16869
|
+
def update!(**args)
|
16870
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
16871
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
16872
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
16873
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
16874
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
16875
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
16876
|
+
@triggered_abandonment_event = args[:triggered_abandonment_event] if args.key?(:triggered_abandonment_event)
|
16877
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
16878
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
16879
|
+
end
|
16880
|
+
end
|
16881
|
+
|
16591
16882
|
# Metadata for UpdateDocument operation.
|
16592
16883
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
16593
16884
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230110"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -454,6 +460,12 @@ module Google
|
|
454
460
|
include Google::Apis::Core::JsonObjectSupport
|
455
461
|
end
|
456
462
|
|
463
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
457
469
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
458
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
471
|
|
@@ -544,6 +556,12 @@ module Google
|
|
544
556
|
include Google::Apis::Core::JsonObjectSupport
|
545
557
|
end
|
546
558
|
|
559
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
547
565
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
548
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
567
|
|
@@ -952,6 +970,12 @@ module Google
|
|
952
970
|
include Google::Apis::Core::JsonObjectSupport
|
953
971
|
end
|
954
972
|
|
973
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
955
979
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
956
980
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
957
981
|
|
@@ -2692,6 +2716,12 @@ module Google
|
|
2692
2716
|
include Google::Apis::Core::JsonObjectSupport
|
2693
2717
|
end
|
2694
2718
|
|
2719
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
2720
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2721
|
+
|
2722
|
+
include Google::Apis::Core::JsonObjectSupport
|
2723
|
+
end
|
2724
|
+
|
2695
2725
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
2696
2726
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2697
2727
|
|
@@ -2728,6 +2758,12 @@ module Google
|
|
2728
2758
|
include Google::Apis::Core::JsonObjectSupport
|
2729
2759
|
end
|
2730
2760
|
|
2761
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
2762
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2763
|
+
|
2764
|
+
include Google::Apis::Core::JsonObjectSupport
|
2765
|
+
end
|
2766
|
+
|
2731
2767
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
2732
2768
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2733
2769
|
|
@@ -2811,6 +2847,14 @@ module Google
|
|
2811
2847
|
end
|
2812
2848
|
end
|
2813
2849
|
|
2850
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
2851
|
+
# @private
|
2852
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2853
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TurnSignals, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TurnSignals::Representation
|
2854
|
+
|
2855
|
+
end
|
2856
|
+
end
|
2857
|
+
|
2814
2858
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
2815
2859
|
# @private
|
2816
2860
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3252,6 +3296,7 @@ module Google
|
|
3252
3296
|
class GoogleCloudDialogflowCxV3ResponseMessage
|
3253
3297
|
# @private
|
3254
3298
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3299
|
+
property :channel, as: 'channel'
|
3255
3300
|
property :conversation_success, as: 'conversationSuccess', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess::Representation
|
3256
3301
|
|
3257
3302
|
property :end_interaction, as: 'endInteraction', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageEndInteraction, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageEndInteraction::Representation
|
@@ -3465,6 +3510,20 @@ module Google
|
|
3465
3510
|
end
|
3466
3511
|
end
|
3467
3512
|
|
3513
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
3514
|
+
# @private
|
3515
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3516
|
+
property :agent_escalated, as: 'agentEscalated'
|
3517
|
+
property :dtmf_used, as: 'dtmfUsed'
|
3518
|
+
collection :failure_reasons, as: 'failureReasons'
|
3519
|
+
property :no_match, as: 'noMatch'
|
3520
|
+
property :no_user_input, as: 'noUserInput'
|
3521
|
+
property :reached_end_page, as: 'reachedEndPage'
|
3522
|
+
property :user_escalated, as: 'userEscalated'
|
3523
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
3524
|
+
end
|
3525
|
+
end
|
3526
|
+
|
3468
3527
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
3469
3528
|
# @private
|
3470
3529
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3625,6 +3684,14 @@ module Google
|
|
3625
3684
|
end
|
3626
3685
|
end
|
3627
3686
|
|
3687
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
3688
|
+
# @private
|
3689
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3690
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TurnSignals, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TurnSignals::Representation
|
3691
|
+
|
3692
|
+
end
|
3693
|
+
end
|
3694
|
+
|
3628
3695
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
3629
3696
|
# @private
|
3630
3697
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4066,6 +4133,7 @@ module Google
|
|
4066
4133
|
class GoogleCloudDialogflowCxV3beta1ResponseMessage
|
4067
4134
|
# @private
|
4068
4135
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4136
|
+
property :channel, as: 'channel'
|
4069
4137
|
property :conversation_success, as: 'conversationSuccess', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageConversationSuccess::Representation
|
4070
4138
|
|
4071
4139
|
property :end_interaction, as: 'endInteraction', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageEndInteraction::Representation
|
@@ -4279,6 +4347,20 @@ module Google
|
|
4279
4347
|
end
|
4280
4348
|
end
|
4281
4349
|
|
4350
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
4351
|
+
# @private
|
4352
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4353
|
+
property :agent_escalated, as: 'agentEscalated'
|
4354
|
+
property :dtmf_used, as: 'dtmfUsed'
|
4355
|
+
collection :failure_reasons, as: 'failureReasons'
|
4356
|
+
property :no_match, as: 'noMatch'
|
4357
|
+
property :no_user_input, as: 'noUserInput'
|
4358
|
+
property :reached_end_page, as: 'reachedEndPage'
|
4359
|
+
property :user_escalated, as: 'userEscalated'
|
4360
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
4361
|
+
end
|
4362
|
+
end
|
4363
|
+
|
4282
4364
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
4283
4365
|
# @private
|
4284
4366
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7278,6 +7360,14 @@ module Google
|
|
7278
7360
|
end
|
7279
7361
|
end
|
7280
7362
|
|
7363
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
7364
|
+
# @private
|
7365
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7366
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV3alpha1TurnSignals, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV3alpha1TurnSignals::Representation
|
7367
|
+
|
7368
|
+
end
|
7369
|
+
end
|
7370
|
+
|
7281
7371
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
7282
7372
|
# @private
|
7283
7373
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7325,6 +7415,21 @@ module Google
|
|
7325
7415
|
end
|
7326
7416
|
end
|
7327
7417
|
|
7418
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
7419
|
+
# @private
|
7420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7421
|
+
property :agent_escalated, as: 'agentEscalated'
|
7422
|
+
property :dtmf_used, as: 'dtmfUsed'
|
7423
|
+
collection :failure_reasons, as: 'failureReasons'
|
7424
|
+
property :no_match, as: 'noMatch'
|
7425
|
+
property :no_user_input, as: 'noUserInput'
|
7426
|
+
property :reached_end_page, as: 'reachedEndPage'
|
7427
|
+
property :triggered_abandonment_event, as: 'triggeredAbandonmentEvent'
|
7428
|
+
property :user_escalated, as: 'userEscalated'
|
7429
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
7430
|
+
end
|
7431
|
+
end
|
7432
|
+
|
7328
7433
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
7329
7434
|
# @private
|
7330
7435
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.48.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:
|
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_v2beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.48.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
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.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dialogflow API V2beta1
|