google-apis-dialogflow_v2 0.96.0 → 0.98.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: ff896f610241848b5d66ad820e48b1d34692bf4b093f67ad091d8dda51d4a807
|
4
|
+
data.tar.gz: 5a59c7563d5350ed9902b479bab09dd9d9798845d72d45a8e4a5122bb9efcb2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a011dbdb6b68c4415588a1f8a1394f494bc8f5b7abeb1a1a9b49d62278cff237f40f7d4838207dfdd89a3324fff4fd378eb88ef5f254eaa09d13d48dda2b9d1d
|
7
|
+
data.tar.gz: 7988c188c52bec6cce166a1197114287df02eeed7101ee3f447659c6873a3277b5565a05ba03d4b8252c440a58493196ba8f7afc2f5f077869047f723345bf38
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.98.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250221
|
6
|
+
|
7
|
+
### v0.97.0 (2025-01-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250103
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.96.0 (2024-12-22)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241216
|
@@ -174,8 +174,8 @@ module Google
|
|
174
174
|
# @return [String]
|
175
175
|
attr_accessor :no_speech_timeout
|
176
176
|
|
177
|
-
# Use timeout based endpointing, interpreting endpointer
|
178
|
-
# timeout value.
|
177
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
178
|
+
# of timeout value.
|
179
179
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
180
180
|
# @return [Boolean]
|
181
181
|
attr_accessor :use_timeout_based_endpointing
|
@@ -547,6 +547,13 @@ module Google
|
|
547
547
|
# @return [String]
|
548
548
|
attr_accessor :data_store_type
|
549
549
|
|
550
|
+
# The document processing mode for the data store connection. Should only be set
|
551
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
552
|
+
# DOCUMENTS, as this is the legacy mode.
|
553
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
554
|
+
# @return [String]
|
555
|
+
attr_accessor :document_processing_mode
|
556
|
+
|
550
557
|
def initialize(**args)
|
551
558
|
update!(**args)
|
552
559
|
end
|
@@ -555,6 +562,7 @@ module Google
|
|
555
562
|
def update!(**args)
|
556
563
|
@data_store = args[:data_store] if args.key?(:data_store)
|
557
564
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
565
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
558
566
|
end
|
559
567
|
end
|
560
568
|
|
@@ -2134,7 +2142,7 @@ module Google
|
|
2134
2142
|
|
2135
2143
|
# A list of transitions for the transition rules of this page. They route the
|
2136
2144
|
# conversation to another page in the same flow, or another flow. When we are in
|
2137
|
-
# a certain page, the TransitionRoutes are
|
2145
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
2138
2146
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
2139
2147
|
# defined in the transition route groups with intent specified. *
|
2140
2148
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -3390,7 +3398,7 @@ module Google
|
|
3390
3398
|
# @return [String]
|
3391
3399
|
attr_accessor :client_id
|
3392
3400
|
|
3393
|
-
#
|
3401
|
+
# Optional. The client secret provided by the 3rd party platform.
|
3394
3402
|
# Corresponds to the JSON property `clientSecret`
|
3395
3403
|
# @return [String]
|
3396
3404
|
attr_accessor :client_secret
|
@@ -3904,8 +3912,8 @@ module Google
|
|
3904
3912
|
# @return [String]
|
3905
3913
|
attr_accessor :no_speech_timeout
|
3906
3914
|
|
3907
|
-
# Use timeout based endpointing, interpreting endpointer
|
3908
|
-
# timeout value.
|
3915
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
3916
|
+
# of timeout value.
|
3909
3917
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
3910
3918
|
# @return [Boolean]
|
3911
3919
|
attr_accessor :use_timeout_based_endpointing
|
@@ -4277,6 +4285,13 @@ module Google
|
|
4277
4285
|
# @return [String]
|
4278
4286
|
attr_accessor :data_store_type
|
4279
4287
|
|
4288
|
+
# The document processing mode for the data store connection. Should only be set
|
4289
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
4290
|
+
# DOCUMENTS, as this is the legacy mode.
|
4291
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
4292
|
+
# @return [String]
|
4293
|
+
attr_accessor :document_processing_mode
|
4294
|
+
|
4280
4295
|
def initialize(**args)
|
4281
4296
|
update!(**args)
|
4282
4297
|
end
|
@@ -4285,6 +4300,7 @@ module Google
|
|
4285
4300
|
def update!(**args)
|
4286
4301
|
@data_store = args[:data_store] if args.key?(:data_store)
|
4287
4302
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
4303
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
4288
4304
|
end
|
4289
4305
|
end
|
4290
4306
|
|
@@ -5864,7 +5880,7 @@ module Google
|
|
5864
5880
|
|
5865
5881
|
# A list of transitions for the transition rules of this page. They route the
|
5866
5882
|
# conversation to another page in the same flow, or another flow. When we are in
|
5867
|
-
# a certain page, the TransitionRoutes are
|
5883
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
5868
5884
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
5869
5885
|
# defined in the transition route groups with intent specified. *
|
5870
5886
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -7215,7 +7231,7 @@ module Google
|
|
7215
7231
|
# @return [String]
|
7216
7232
|
attr_accessor :client_id
|
7217
7233
|
|
7218
|
-
#
|
7234
|
+
# Optional. The client secret provided by the 3rd party platform.
|
7219
7235
|
# Corresponds to the JSON property `clientSecret`
|
7220
7236
|
# @return [String]
|
7221
7237
|
attr_accessor :client_secret
|
@@ -7701,8 +7717,8 @@ module Google
|
|
7701
7717
|
# Optional. Whether or not the information in the document is correct. For
|
7702
7718
|
# example: * Query: "Can I return the package in 2 days once received?" *
|
7703
7719
|
# Suggested document says: "Items must be returned/exchanged within 60 days of
|
7704
|
-
# the purchase date." * Ground truth: "No return or exchange is allowed." *
|
7705
|
-
# document_correctness
|
7720
|
+
# the purchase date." * Ground truth: "No return or exchange is allowed." *
|
7721
|
+
# document_correctness: INCORRECT
|
7706
7722
|
# Corresponds to the JSON property `documentCorrectness`
|
7707
7723
|
# @return [String]
|
7708
7724
|
attr_accessor :document_correctness
|
@@ -7879,6 +7895,11 @@ module Google
|
|
7879
7895
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters]
|
7880
7896
|
attr_accessor :assist_query_params
|
7881
7897
|
|
7898
|
+
# Represents the natural language speech audio to be processed.
|
7899
|
+
# Corresponds to the JSON property `audioInput`
|
7900
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput]
|
7901
|
+
attr_accessor :audio_input
|
7902
|
+
|
7882
7903
|
# Additional parameters to be put into Dialogflow CX session parameters. To
|
7883
7904
|
# remove a parameter from the session, clients should explicitly set the
|
7884
7905
|
# parameter value to null. Note: this field should only be used if you are
|
@@ -7931,6 +7952,7 @@ module Google
|
|
7931
7952
|
# Update properties of this object
|
7932
7953
|
def update!(**args)
|
7933
7954
|
@assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
|
7955
|
+
@audio_input = args[:audio_input] if args.key?(:audio_input)
|
7934
7956
|
@cx_parameters = args[:cx_parameters] if args.key?(:cx_parameters)
|
7935
7957
|
@event_input = args[:event_input] if args.key?(:event_input)
|
7936
7958
|
@query_params = args[:query_params] if args.key?(:query_params)
|
@@ -8244,6 +8266,34 @@ module Google
|
|
8244
8266
|
end
|
8245
8267
|
end
|
8246
8268
|
|
8269
|
+
# Represents the natural language speech audio to be processed.
|
8270
|
+
class GoogleCloudDialogflowV2AudioInput
|
8271
|
+
include Google::Apis::Core::Hashable
|
8272
|
+
|
8273
|
+
# Required. The natural language speech audio to be processed. A single request
|
8274
|
+
# can contain up to 2 minutes of speech audio data. The transcribed text cannot
|
8275
|
+
# contain more than 256 bytes for virtual agent interactions.
|
8276
|
+
# Corresponds to the JSON property `audio`
|
8277
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
8278
|
+
# @return [String]
|
8279
|
+
attr_accessor :audio
|
8280
|
+
|
8281
|
+
# Instructs the speech recognizer how to process the audio content.
|
8282
|
+
# Corresponds to the JSON property `config`
|
8283
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputAudioConfig]
|
8284
|
+
attr_accessor :config
|
8285
|
+
|
8286
|
+
def initialize(**args)
|
8287
|
+
update!(**args)
|
8288
|
+
end
|
8289
|
+
|
8290
|
+
# Update properties of this object
|
8291
|
+
def update!(**args)
|
8292
|
+
@audio = args[:audio] if args.key?(:audio)
|
8293
|
+
@config = args[:config] if args.key?(:config)
|
8294
|
+
end
|
8295
|
+
end
|
8296
|
+
|
8247
8297
|
# Defines the Automated Agent to connect to a conversation.
|
8248
8298
|
class GoogleCloudDialogflowV2AutomatedAgentConfig
|
8249
8299
|
include Google::Apis::Core::Hashable
|
@@ -8773,6 +8823,12 @@ module Google
|
|
8773
8823
|
# @return [String]
|
8774
8824
|
attr_accessor :start_time
|
8775
8825
|
|
8826
|
+
# The information about phone calls connected via phone gateway to the
|
8827
|
+
# conversation.
|
8828
|
+
# Corresponds to the JSON property `telephonyConnectionInfo`
|
8829
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo]
|
8830
|
+
attr_accessor :telephony_connection_info
|
8831
|
+
|
8776
8832
|
def initialize(**args)
|
8777
8833
|
update!(**args)
|
8778
8834
|
end
|
@@ -8786,6 +8842,7 @@ module Google
|
|
8786
8842
|
@name = args[:name] if args.key?(:name)
|
8787
8843
|
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
8788
8844
|
@start_time = args[:start_time] if args.key?(:start_time)
|
8845
|
+
@telephony_connection_info = args[:telephony_connection_info] if args.key?(:telephony_connection_info)
|
8789
8846
|
end
|
8790
8847
|
end
|
8791
8848
|
|
@@ -9083,7 +9140,7 @@ module Google
|
|
9083
9140
|
# @return [String]
|
9084
9141
|
attr_accessor :name
|
9085
9142
|
|
9086
|
-
# Output only. Human eval template in csv format. It
|
9143
|
+
# Output only. Human eval template in csv format. It takes real-world
|
9087
9144
|
# conversations provided through input dataset, generates example suggestions
|
9088
9145
|
# for customer to verify quality of the model. For Smart Reply, the generated
|
9089
9146
|
# csv file contains columns of Context, (Suggestions,Q1,Q2)*3, Actual reply.
|
@@ -9124,6 +9181,11 @@ module Google
|
|
9124
9181
|
class GoogleCloudDialogflowV2ConversationPhoneNumber
|
9125
9182
|
include Google::Apis::Core::Hashable
|
9126
9183
|
|
9184
|
+
# Output only. Desired country code for the phone number.
|
9185
|
+
# Corresponds to the JSON property `countryCode`
|
9186
|
+
# @return [Fixnum]
|
9187
|
+
attr_accessor :country_code
|
9188
|
+
|
9127
9189
|
# Output only. The phone number to connect to this conversation.
|
9128
9190
|
# Corresponds to the JSON property `phoneNumber`
|
9129
9191
|
# @return [String]
|
@@ -9135,6 +9197,7 @@ module Google
|
|
9135
9197
|
|
9136
9198
|
# Update properties of this object
|
9137
9199
|
def update!(**args)
|
9200
|
+
@country_code = args[:country_code] if args.key?(:country_code)
|
9138
9201
|
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
9139
9202
|
end
|
9140
9203
|
end
|
@@ -9257,6 +9320,96 @@ module Google
|
|
9257
9320
|
end
|
9258
9321
|
end
|
9259
9322
|
|
9323
|
+
# The information about phone calls connected via phone gateway to the
|
9324
|
+
# conversation.
|
9325
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo
|
9326
|
+
include Google::Apis::Core::Hashable
|
9327
|
+
|
9328
|
+
# Output only. The number dialed to connect this call in E.164 format.
|
9329
|
+
# Corresponds to the JSON property `dialedNumber`
|
9330
|
+
# @return [String]
|
9331
|
+
attr_accessor :dialed_number
|
9332
|
+
|
9333
|
+
# Output only. The mime content from the initial SIP INVITE.
|
9334
|
+
# Corresponds to the JSON property `extraMimeContents`
|
9335
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent>]
|
9336
|
+
attr_accessor :extra_mime_contents
|
9337
|
+
|
9338
|
+
# Optional. SDP of the call. It's initially the SDP answer to the endpoint, but
|
9339
|
+
# maybe later updated for the purpose of making the link active, etc.
|
9340
|
+
# Corresponds to the JSON property `sdp`
|
9341
|
+
# @return [String]
|
9342
|
+
attr_accessor :sdp
|
9343
|
+
|
9344
|
+
# Output only. The SIP headers from the initial SIP INVITE.
|
9345
|
+
# Corresponds to the JSON property `sipHeaders`
|
9346
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader>]
|
9347
|
+
attr_accessor :sip_headers
|
9348
|
+
|
9349
|
+
def initialize(**args)
|
9350
|
+
update!(**args)
|
9351
|
+
end
|
9352
|
+
|
9353
|
+
# Update properties of this object
|
9354
|
+
def update!(**args)
|
9355
|
+
@dialed_number = args[:dialed_number] if args.key?(:dialed_number)
|
9356
|
+
@extra_mime_contents = args[:extra_mime_contents] if args.key?(:extra_mime_contents)
|
9357
|
+
@sdp = args[:sdp] if args.key?(:sdp)
|
9358
|
+
@sip_headers = args[:sip_headers] if args.key?(:sip_headers)
|
9359
|
+
end
|
9360
|
+
end
|
9361
|
+
|
9362
|
+
# The mime content from the initial SIP INVITE.
|
9363
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent
|
9364
|
+
include Google::Apis::Core::Hashable
|
9365
|
+
|
9366
|
+
# Optional. The content payload.
|
9367
|
+
# Corresponds to the JSON property `content`
|
9368
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
9369
|
+
# @return [String]
|
9370
|
+
attr_accessor :content
|
9371
|
+
|
9372
|
+
# Optional. The mime type of the content.
|
9373
|
+
# Corresponds to the JSON property `mimeType`
|
9374
|
+
# @return [String]
|
9375
|
+
attr_accessor :mime_type
|
9376
|
+
|
9377
|
+
def initialize(**args)
|
9378
|
+
update!(**args)
|
9379
|
+
end
|
9380
|
+
|
9381
|
+
# Update properties of this object
|
9382
|
+
def update!(**args)
|
9383
|
+
@content = args[:content] if args.key?(:content)
|
9384
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
9385
|
+
end
|
9386
|
+
end
|
9387
|
+
|
9388
|
+
# The SIP headers from the initial SIP INVITE.
|
9389
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader
|
9390
|
+
include Google::Apis::Core::Hashable
|
9391
|
+
|
9392
|
+
# Optional. The name of the header.
|
9393
|
+
# Corresponds to the JSON property `name`
|
9394
|
+
# @return [String]
|
9395
|
+
attr_accessor :name
|
9396
|
+
|
9397
|
+
# Optional. The value of the header.
|
9398
|
+
# Corresponds to the JSON property `value`
|
9399
|
+
# @return [String]
|
9400
|
+
attr_accessor :value
|
9401
|
+
|
9402
|
+
def initialize(**args)
|
9403
|
+
update!(**args)
|
9404
|
+
end
|
9405
|
+
|
9406
|
+
# Update properties of this object
|
9407
|
+
def update!(**args)
|
9408
|
+
@name = args[:name] if args.key?(:name)
|
9409
|
+
@value = args[:value] if args.key?(:value)
|
9410
|
+
end
|
9411
|
+
end
|
9412
|
+
|
9260
9413
|
# Metadata for CreateConversationDataset.
|
9261
9414
|
class GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata
|
9262
9415
|
include Google::Apis::Core::Hashable
|
@@ -13951,7 +14104,8 @@ module Google
|
|
13951
14104
|
# @return [String]
|
13952
14105
|
attr_accessor :participant_role
|
13953
14106
|
|
13954
|
-
# Optional. The time when the message was sent.
|
14107
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
14108
|
+
# time when an utterance started.
|
13955
14109
|
# Corresponds to the JSON property `sendTime`
|
13956
14110
|
# @return [String]
|
13957
14111
|
attr_accessor :send_time
|
@@ -14804,12 +14958,18 @@ module Google
|
|
14804
14958
|
class GoogleCloudDialogflowV2SearchKnowledgeRequestSearchConfig
|
14805
14959
|
include Google::Apis::Core::Hashable
|
14806
14960
|
|
14807
|
-
# Optional. Boost specifications for data stores.
|
14961
|
+
# Optional. Boost specifications for data stores. Maps from datastore name to
|
14962
|
+
# their boost configuration. Do not specify more than one BoostSpecs for each
|
14963
|
+
# datastore name. If multiple BoostSpecs are provided for the same datastore
|
14964
|
+
# name, the behavior is undefined.
|
14808
14965
|
# Corresponds to the JSON property `boostSpecs`
|
14809
14966
|
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequestSearchConfigBoostSpecs>]
|
14810
14967
|
attr_accessor :boost_specs
|
14811
14968
|
|
14812
|
-
# Optional. Filter specification for data store queries.
|
14969
|
+
# Optional. Filter specification for data store queries. TMaps from datastore
|
14970
|
+
# name to the filter expression for that datastore. Do not specify more than one
|
14971
|
+
# FilterSpecs for each datastore name. If multiple FilterSpecs are provided for
|
14972
|
+
# the same datastore name, the behavior is undefined.
|
14813
14973
|
# Corresponds to the JSON property `filterSpecs`
|
14814
14974
|
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequestSearchConfigFilterSpecs>]
|
14815
14975
|
attr_accessor :filter_specs
|
@@ -14861,7 +15021,7 @@ module Google
|
|
14861
15021
|
include Google::Apis::Core::Hashable
|
14862
15022
|
|
14863
15023
|
# Optional. Condition boost specifications. If a document matches multiple
|
14864
|
-
# conditions in the
|
15024
|
+
# conditions in the specifications, boost scores from these specifications are
|
14865
15025
|
# all applied and combined in a non-linear way. Maximum number of specifications
|
14866
15026
|
# is 20.
|
14867
15027
|
# Corresponds to the JSON property `conditionBoostSpecs`
|
@@ -15458,8 +15618,8 @@ module Google
|
|
15458
15618
|
# @return [String]
|
15459
15619
|
attr_accessor :speech_model_variant
|
15460
15620
|
|
15461
|
-
# Use timeout based endpointing, interpreting endpointer
|
15462
|
-
# timeout value.
|
15621
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
15622
|
+
# of timeout value.
|
15463
15623
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
15464
15624
|
# @return [Boolean]
|
15465
15625
|
attr_accessor :use_timeout_based_endpointing
|
@@ -15880,7 +16040,7 @@ module Google
|
|
15880
16040
|
attr_accessor :latest_message
|
15881
16041
|
|
15882
16042
|
# Optional. The previously suggested query for the given conversation. This
|
15883
|
-
# helps identify whether the next suggestion we generate is
|
16043
|
+
# helps identify whether the next suggestion we generate is reasonably different
|
15884
16044
|
# from the previous one. This is useful to avoid similar suggestions within the
|
15885
16045
|
# conversation.
|
15886
16046
|
# Corresponds to the JSON property `previousSuggestedQuery`
|
@@ -19464,7 +19624,8 @@ module Google
|
|
19464
19624
|
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1ResponseMessage>]
|
19465
19625
|
attr_accessor :response_messages
|
19466
19626
|
|
19467
|
-
# Optional. The time when the message was sent.
|
19627
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
19628
|
+
# time when an utterance started.
|
19468
19629
|
# Corresponds to the JSON property `sendTime`
|
19469
19630
|
# @return [String]
|
19470
19631
|
attr_accessor :send_time
|
@@ -19751,9 +19912,9 @@ module Google
|
|
19751
19912
|
# Dialogflow only uses this to determine which conversations were handed off to
|
19752
19913
|
# a human agent for measurement purposes. What else to do with this signal is up
|
19753
19914
|
# to you and your handoff procedures. You may set this, for example: * In the
|
19754
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
19755
|
-
# extremely wrong in the conversation. * In a webhook response
|
19756
|
-
# determine that the customer issue can only be handled by a human.
|
19915
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
19916
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
19917
|
+
# when you determine that the customer issue can only be handled by a human.
|
19757
19918
|
# Corresponds to the JSON property `liveAgentHandoff`
|
19758
19919
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
|
19759
19920
|
attr_accessor :live_agent_handoff
|
@@ -19812,9 +19973,9 @@ module Google
|
|
19812
19973
|
# Dialogflow only uses this to determine which conversations were handed off to
|
19813
19974
|
# a human agent for measurement purposes. What else to do with this signal is up
|
19814
19975
|
# to you and your handoff procedures. You may set this, for example: * In the
|
19815
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
19816
|
-
# extremely wrong in the conversation. * In a webhook response
|
19817
|
-
# determine that the customer issue can only be handled by a human.
|
19976
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
19977
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
19978
|
+
# when you determine that the customer issue can only be handled by a human.
|
19818
19979
|
class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
|
19819
19980
|
include Google::Apis::Core::Hashable
|
19820
19981
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.98.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250221"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1324,6 +1324,12 @@ module Google
|
|
1324
1324
|
include Google::Apis::Core::JsonObjectSupport
|
1325
1325
|
end
|
1326
1326
|
|
1327
|
+
class GoogleCloudDialogflowV2AudioInput
|
1328
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1329
|
+
|
1330
|
+
include Google::Apis::Core::JsonObjectSupport
|
1331
|
+
end
|
1332
|
+
|
1327
1333
|
class GoogleCloudDialogflowV2AutomatedAgentConfig
|
1328
1334
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1329
1335
|
|
@@ -1468,6 +1474,24 @@ module Google
|
|
1468
1474
|
include Google::Apis::Core::JsonObjectSupport
|
1469
1475
|
end
|
1470
1476
|
|
1477
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo
|
1478
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1479
|
+
|
1480
|
+
include Google::Apis::Core::JsonObjectSupport
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent
|
1484
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1485
|
+
|
1486
|
+
include Google::Apis::Core::JsonObjectSupport
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader
|
1490
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1491
|
+
|
1492
|
+
include Google::Apis::Core::JsonObjectSupport
|
1493
|
+
end
|
1494
|
+
|
1471
1495
|
class GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata
|
1472
1496
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1473
1497
|
|
@@ -3528,6 +3552,7 @@ module Google
|
|
3528
3552
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3529
3553
|
property :data_store, as: 'dataStore'
|
3530
3554
|
property :data_store_type, as: 'dataStoreType'
|
3555
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
3531
3556
|
end
|
3532
3557
|
end
|
3533
3558
|
|
@@ -4529,6 +4554,7 @@ module Google
|
|
4529
4554
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4530
4555
|
property :data_store, as: 'dataStore'
|
4531
4556
|
property :data_store_type, as: 'dataStoreType'
|
4557
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
4532
4558
|
end
|
4533
4559
|
end
|
4534
4560
|
|
@@ -5490,6 +5516,8 @@ module Google
|
|
5490
5516
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5491
5517
|
property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters::Representation
|
5492
5518
|
|
5519
|
+
property :audio_input, as: 'audioInput', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput::Representation
|
5520
|
+
|
5493
5521
|
hash :cx_parameters, as: 'cxParameters'
|
5494
5522
|
property :event_input, as: 'eventInput', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput::Representation
|
5495
5523
|
|
@@ -5583,6 +5611,15 @@ module Google
|
|
5583
5611
|
end
|
5584
5612
|
end
|
5585
5613
|
|
5614
|
+
class GoogleCloudDialogflowV2AudioInput
|
5615
|
+
# @private
|
5616
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5617
|
+
property :audio, :base64 => true, as: 'audio'
|
5618
|
+
property :config, as: 'config', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputAudioConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InputAudioConfig::Representation
|
5619
|
+
|
5620
|
+
end
|
5621
|
+
end
|
5622
|
+
|
5586
5623
|
class GoogleCloudDialogflowV2AutomatedAgentConfig
|
5587
5624
|
# @private
|
5588
5625
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5727,6 +5764,8 @@ module Google
|
|
5727
5764
|
property :phone_number, as: 'phoneNumber', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationPhoneNumber, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationPhoneNumber::Representation
|
5728
5765
|
|
5729
5766
|
property :start_time, as: 'startTime'
|
5767
|
+
property :telephony_connection_info, as: 'telephonyConnectionInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo::Representation
|
5768
|
+
|
5730
5769
|
end
|
5731
5770
|
end
|
5732
5771
|
|
@@ -5812,6 +5851,7 @@ module Google
|
|
5812
5851
|
class GoogleCloudDialogflowV2ConversationPhoneNumber
|
5813
5852
|
# @private
|
5814
5853
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5854
|
+
property :country_code, as: 'countryCode'
|
5815
5855
|
property :phone_number, as: 'phoneNumber'
|
5816
5856
|
end
|
5817
5857
|
end
|
@@ -5847,6 +5887,34 @@ module Google
|
|
5847
5887
|
end
|
5848
5888
|
end
|
5849
5889
|
|
5890
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfo
|
5891
|
+
# @private
|
5892
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5893
|
+
property :dialed_number, as: 'dialedNumber'
|
5894
|
+
collection :extra_mime_contents, as: 'extraMimeContents', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent::Representation
|
5895
|
+
|
5896
|
+
property :sdp, as: 'sdp'
|
5897
|
+
collection :sip_headers, as: 'sipHeaders', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader::Representation
|
5898
|
+
|
5899
|
+
end
|
5900
|
+
end
|
5901
|
+
|
5902
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoMimeContent
|
5903
|
+
# @private
|
5904
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5905
|
+
property :content, :base64 => true, as: 'content'
|
5906
|
+
property :mime_type, as: 'mimeType'
|
5907
|
+
end
|
5908
|
+
end
|
5909
|
+
|
5910
|
+
class GoogleCloudDialogflowV2ConversationTelephonyConnectionInfoSipHeader
|
5911
|
+
# @private
|
5912
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5913
|
+
property :name, as: 'name'
|
5914
|
+
property :value, as: 'value'
|
5915
|
+
end
|
5916
|
+
end
|
5917
|
+
|
5850
5918
|
class GoogleCloudDialogflowV2CreateConversationDatasetOperationMetadata
|
5851
5919
|
# @private
|
5852
5920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3004,9 +3004,13 @@ module Google
|
|
3004
3004
|
# Required. The project to list all answer records for in reverse chronological
|
3005
3005
|
# order. Format: `projects//locations/`.
|
3006
3006
|
# @param [String] filter
|
3007
|
-
# Optional. Filters to restrict results to specific answer records.
|
3008
|
-
#
|
3009
|
-
#
|
3007
|
+
# Optional. Filters to restrict results to specific answer records. The
|
3008
|
+
# expression has the following syntax: [AND ] ... The following fields and
|
3009
|
+
# operators are supported: * conversation_id with equals(=) operator Examples: *
|
3010
|
+
# "conversation_id=bar" matches answer records in the projects/foo/locations/
|
3011
|
+
# global/conversations/bar conversation (assuming the parent is projects/foo/
|
3012
|
+
# locations/global). For more information about filtering, see [API Filtering](
|
3013
|
+
# https://aip.dev/160).
|
3010
3014
|
# @param [Fixnum] page_size
|
3011
3015
|
# Optional. The maximum number of records to return in a single page. The server
|
3012
3016
|
# may return fewer records than this. If unspecified, we use 10. The maximum is
|
@@ -7549,9 +7553,13 @@ module Google
|
|
7549
7553
|
# Required. The project to list all answer records for in reverse chronological
|
7550
7554
|
# order. Format: `projects//locations/`.
|
7551
7555
|
# @param [String] filter
|
7552
|
-
# Optional. Filters to restrict results to specific answer records.
|
7553
|
-
#
|
7554
|
-
#
|
7556
|
+
# Optional. Filters to restrict results to specific answer records. The
|
7557
|
+
# expression has the following syntax: [AND ] ... The following fields and
|
7558
|
+
# operators are supported: * conversation_id with equals(=) operator Examples: *
|
7559
|
+
# "conversation_id=bar" matches answer records in the projects/foo/locations/
|
7560
|
+
# global/conversations/bar conversation (assuming the parent is projects/foo/
|
7561
|
+
# locations/global). For more information about filtering, see [API Filtering](
|
7562
|
+
# https://aip.dev/160).
|
7555
7563
|
# @param [Fixnum] page_size
|
7556
7564
|
# Optional. The maximum number of records to return in a single page. The server
|
7557
7565
|
# may return fewer records than this. If unspecified, we use 10. The maximum is
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.98.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.98.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Dialogflow API V2
|
82
79
|
test_files: []
|