google-apis-dialogflow_v2 0.97.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: 684cf061f962748d1abeaba170827495774555e12ba7c35c7a09b88c9fa3eb06
4
- data.tar.gz: c42f685b62d27bdcad9065db5083b1e7e683fb2bd41219de4d13513c45be47a2
3
+ metadata.gz: ff896f610241848b5d66ad820e48b1d34692bf4b093f67ad091d8dda51d4a807
4
+ data.tar.gz: 5a59c7563d5350ed9902b479bab09dd9d9798845d72d45a8e4a5122bb9efcb2e
5
5
  SHA512:
6
- metadata.gz: 779f694ac2fa3b46ceef4037d95fd4e2da8b49be076da8a3e260e9e109b7d5f2e918e648d8a5161a26e86d265939bf8af4c63a0380a5d31388ec00a80220a0fc
7
- data.tar.gz: 7123ed942de7d2f1cfe9249508b7b72c6856bddca09cef70f02e7c1cdbf7f6cbdc1b24f05a2505bc0e07afc761d490324e353160f630db9da240a1b9102a4083
6
+ metadata.gz: a011dbdb6b68c4415588a1f8a1394f494bc8f5b7abeb1a1a9b49d62278cff237f40f7d4838207dfdd89a3324fff4fd378eb88ef5f254eaa09d13d48dda2b9d1d
7
+ data.tar.gz: 7988c188c52bec6cce166a1197114287df02eeed7101ee3f447659c6873a3277b5565a05ba03d4b8252c440a58493196ba8f7afc2f5f077869047f723345bf38
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.97.0 (2025-01-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20250103
@@ -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 sensitivy as seconds of
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 evalauted in the following order: *
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
- # Required. The client secret provided by the 3rd party platform.
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 sensitivy as seconds of
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 evalauted in the following order: *
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
- # Required. The client secret provided by the 3rd party platform.
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]: INCORRECT
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
@@ -9090,7 +9140,7 @@ module Google
9090
9140
  # @return [String]
9091
9141
  attr_accessor :name
9092
9142
 
9093
- # Output only. Human eval template in csv format. It tooks real-world
9143
+ # Output only. Human eval template in csv format. It takes real-world
9094
9144
  # conversations provided through input dataset, generates example suggestions
9095
9145
  # for customer to verify quality of the model. For Smart Reply, the generated
9096
9146
  # csv file contains columns of Context, (Suggestions,Q1,Q2)*3, Actual reply.
@@ -14054,7 +14104,8 @@ module Google
14054
14104
  # @return [String]
14055
14105
  attr_accessor :participant_role
14056
14106
 
14057
- # 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.
14058
14109
  # Corresponds to the JSON property `sendTime`
14059
14110
  # @return [String]
14060
14111
  attr_accessor :send_time
@@ -14907,12 +14958,18 @@ module Google
14907
14958
  class GoogleCloudDialogflowV2SearchKnowledgeRequestSearchConfig
14908
14959
  include Google::Apis::Core::Hashable
14909
14960
 
14910
- # 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.
14911
14965
  # Corresponds to the JSON property `boostSpecs`
14912
14966
  # @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequestSearchConfigBoostSpecs>]
14913
14967
  attr_accessor :boost_specs
14914
14968
 
14915
- # 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.
14916
14973
  # Corresponds to the JSON property `filterSpecs`
14917
14974
  # @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeRequestSearchConfigFilterSpecs>]
14918
14975
  attr_accessor :filter_specs
@@ -14964,7 +15021,7 @@ module Google
14964
15021
  include Google::Apis::Core::Hashable
14965
15022
 
14966
15023
  # Optional. Condition boost specifications. If a document matches multiple
14967
- # conditions in the specifictions, boost scores from these specifications are
15024
+ # conditions in the specifications, boost scores from these specifications are
14968
15025
  # all applied and combined in a non-linear way. Maximum number of specifications
14969
15026
  # is 20.
14970
15027
  # Corresponds to the JSON property `conditionBoostSpecs`
@@ -15561,8 +15618,8 @@ module Google
15561
15618
  # @return [String]
15562
15619
  attr_accessor :speech_model_variant
15563
15620
 
15564
- # Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
15565
- # timeout value.
15621
+ # Use timeout based endpointing, interpreting endpointer sensitivity as seconds
15622
+ # of timeout value.
15566
15623
  # Corresponds to the JSON property `useTimeoutBasedEndpointing`
15567
15624
  # @return [Boolean]
15568
15625
  attr_accessor :use_timeout_based_endpointing
@@ -15983,7 +16040,7 @@ module Google
15983
16040
  attr_accessor :latest_message
15984
16041
 
15985
16042
  # Optional. The previously suggested query for the given conversation. This
15986
- # helps identify whether the next suggestion we generate is resonably different
16043
+ # helps identify whether the next suggestion we generate is reasonably different
15987
16044
  # from the previous one. This is useful to avoid similar suggestions within the
15988
16045
  # conversation.
15989
16046
  # Corresponds to the JSON property `previousSuggestedQuery`
@@ -19567,7 +19624,8 @@ module Google
19567
19624
  # @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1ResponseMessage>]
19568
19625
  attr_accessor :response_messages
19569
19626
 
19570
- # 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.
19571
19629
  # Corresponds to the JSON property `sendTime`
19572
19630
  # @return [String]
19573
19631
  attr_accessor :send_time
@@ -19854,9 +19912,9 @@ module Google
19854
19912
  # Dialogflow only uses this to determine which conversations were handed off to
19855
19913
  # a human agent for measurement purposes. What else to do with this signal is up
19856
19914
  # to you and your handoff procedures. You may set this, for example: * In the
19857
- # entry fulfillment of a CX Page if entering the page indicates something went
19858
- # extremely wrong in the conversation. * In a webhook response when you
19859
- # 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.
19860
19918
  # Corresponds to the JSON property `liveAgentHandoff`
19861
19919
  # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
19862
19920
  attr_accessor :live_agent_handoff
@@ -19915,9 +19973,9 @@ module Google
19915
19973
  # Dialogflow only uses this to determine which conversations were handed off to
19916
19974
  # a human agent for measurement purposes. What else to do with this signal is up
19917
19975
  # to you and your handoff procedures. You may set this, for example: * In the
19918
- # entry fulfillment of a CX Page if entering the page indicates something went
19919
- # extremely wrong in the conversation. * In a webhook response when you
19920
- # 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.
19921
19979
  class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
19922
19980
  include Google::Apis::Core::Hashable
19923
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.97.0"
19
+ GEM_VERSION = "0.98.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250103"
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
 
@@ -3546,6 +3552,7 @@ module Google
3546
3552
  class Representation < Google::Apis::Core::JsonRepresentation
3547
3553
  property :data_store, as: 'dataStore'
3548
3554
  property :data_store_type, as: 'dataStoreType'
3555
+ property :document_processing_mode, as: 'documentProcessingMode'
3549
3556
  end
3550
3557
  end
3551
3558
 
@@ -4547,6 +4554,7 @@ module Google
4547
4554
  class Representation < Google::Apis::Core::JsonRepresentation
4548
4555
  property :data_store, as: 'dataStore'
4549
4556
  property :data_store_type, as: 'dataStoreType'
4557
+ property :document_processing_mode, as: 'documentProcessingMode'
4550
4558
  end
4551
4559
  end
4552
4560
 
@@ -5508,6 +5516,8 @@ module Google
5508
5516
  class Representation < Google::Apis::Core::JsonRepresentation
5509
5517
  property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters::Representation
5510
5518
 
5519
+ property :audio_input, as: 'audioInput', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AudioInput::Representation
5520
+
5511
5521
  hash :cx_parameters, as: 'cxParameters'
5512
5522
  property :event_input, as: 'eventInput', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput::Representation
5513
5523
 
@@ -5601,6 +5611,15 @@ module Google
5601
5611
  end
5602
5612
  end
5603
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
+
5604
5623
  class GoogleCloudDialogflowV2AutomatedAgentConfig
5605
5624
  # @private
5606
5625
  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. Marked
3008
- # deprecated as it hasn't been, and isn't currently, supported. For more
3009
- # information about filtering, see [API Filtering](https://aip.dev/160).
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. Marked
7553
- # deprecated as it hasn't been, and isn't currently, supported. For more
7554
- # information about filtering, see [API Filtering](https://aip.dev/160).
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,13 +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.97.0
4
+ version: 0.98.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.97.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.98.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Dialogflow API V2
79
79
  test_files: []