google-apis-dialogflow_v3 0.85.0 → 0.86.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: c6eeb04959b71ba8d3094f93ddc4a32ee0d96cc8ed5388852799b86cddc9c6b5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: fc36c0aeb09286497b1155781b30efb1760fed60d16bd4d1c828812182c873e1
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: b4420835b9db54b662770a577fafe74f4d25437011c2f5bb6bfd51f5bb2c26d415bc54318359a43ab8e97edc960e625e2b21aed830812196c30896d62239f32d
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 38dda1cc8f46adcffd1f5b3353188d8b7d07e03d61cdf64c2ae2dd7e63c90f1176ba11bd6141eeaf2a5201bed86c3ae4e75b2e2a5d808b8e512c66f1bd8cecfe
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,5 +1,10 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Release history for google-apis-dialogflow_v3
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
      
 3 
     | 
    
         
            +
            ### v0.86.0 (2024-05-19)
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            * Regenerated from discovery document revision 20240507
         
     | 
| 
      
 6 
     | 
    
         
            +
            * Regenerated using generator version 0.15.0
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
       3 
8 
     | 
    
         
             
            ### v0.85.0 (2024-04-21)
         
     | 
| 
       4 
9 
     | 
    
         | 
| 
       5 
10 
     | 
    
         
             
            * Regenerated from discovery document revision 20240417
         
     | 
| 
         @@ -81,11 +81,21 @@ module Google 
     | 
|
| 
       81 
81 
     | 
    
         
             
                    attr_accessor :enabled
         
     | 
| 
       82 
82 
     | 
    
         
             
                    alias_method :enabled?, :enabled
         
     | 
| 
       83 
83 
     | 
    
         | 
| 
      
 84 
     | 
    
         
            +
                    # Endpoint timeout setting for matching dtmf input to regex.
         
     | 
| 
      
 85 
     | 
    
         
            +
                    # Corresponds to the JSON property `endpointingTimeoutDuration`
         
     | 
| 
      
 86 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 87 
     | 
    
         
            +
                    attr_accessor :endpointing_timeout_duration
         
     | 
| 
      
 88 
     | 
    
         
            +
                  
         
     | 
| 
       84 
89 
     | 
    
         
             
                    # The digit that terminates a DTMF digit sequence.
         
     | 
| 
       85 
90 
     | 
    
         
             
                    # Corresponds to the JSON property `finishDigit`
         
     | 
| 
       86 
91 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       87 
92 
     | 
    
         
             
                    attr_accessor :finish_digit
         
     | 
| 
       88 
93 
     | 
    
         | 
| 
      
 94 
     | 
    
         
            +
                    # Interdigit timeout setting for matching dtmf input to regex.
         
     | 
| 
      
 95 
     | 
    
         
            +
                    # Corresponds to the JSON property `interdigitTimeoutDuration`
         
     | 
| 
      
 96 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 97 
     | 
    
         
            +
                    attr_accessor :interdigit_timeout_duration
         
     | 
| 
      
 98 
     | 
    
         
            +
                  
         
     | 
| 
       89 
99 
     | 
    
         
             
                    # Max length of DTMF digits.
         
     | 
| 
       90 
100 
     | 
    
         
             
                    # Corresponds to the JSON property `maxDigits`
         
     | 
| 
       91 
101 
     | 
    
         
             
                    # @return [Fixnum]
         
     | 
| 
         @@ -98,7 +108,9 @@ module Google 
     | 
|
| 
       98 
108 
     | 
    
         
             
                    # Update properties of this object
         
     | 
| 
       99 
109 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
       100 
110 
     | 
    
         
             
                      @enabled = args[:enabled] if args.key?(:enabled)
         
     | 
| 
      
 111 
     | 
    
         
            +
                      @endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
         
     | 
| 
       101 
112 
     | 
    
         
             
                      @finish_digit = args[:finish_digit] if args.key?(:finish_digit)
         
     | 
| 
      
 113 
     | 
    
         
            +
                      @interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
         
     | 
| 
       102 
114 
     | 
    
         
             
                      @max_digits = args[:max_digits] if args.key?(:max_digits)
         
     | 
| 
       103 
115 
     | 
    
         
             
                    end
         
     | 
| 
       104 
116 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -7012,6 +7024,13 @@ module Google 
     | 
|
| 
       7012 
7024 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       7013 
7025 
     | 
    
         
             
                    attr_accessor :gcs_bucket
         
     | 
| 
       7014 
7026 
     | 
    
         | 
| 
      
 7027 
     | 
    
         
            +
                    # Whether to store TTS audio. By default, TTS audio from the virtual agent is
         
     | 
| 
      
 7028 
     | 
    
         
            +
                    # not exported.
         
     | 
| 
      
 7029 
     | 
    
         
            +
                    # Corresponds to the JSON property `storeTtsAudio`
         
     | 
| 
      
 7030 
     | 
    
         
            +
                    # @return [Boolean]
         
     | 
| 
      
 7031 
     | 
    
         
            +
                    attr_accessor :store_tts_audio
         
     | 
| 
      
 7032 
     | 
    
         
            +
                    alias_method :store_tts_audio?, :store_tts_audio
         
     | 
| 
      
 7033 
     | 
    
         
            +
                  
         
     | 
| 
       7015 
7034 
     | 
    
         
             
                    def initialize(**args)
         
     | 
| 
       7016 
7035 
     | 
    
         
             
                       update!(**args)
         
     | 
| 
       7017 
7036 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -7022,6 +7041,7 @@ module Google 
     | 
|
| 
       7022 
7041 
     | 
    
         
             
                      @audio_format = args[:audio_format] if args.key?(:audio_format)
         
     | 
| 
       7023 
7042 
     | 
    
         
             
                      @enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
         
     | 
| 
       7024 
7043 
     | 
    
         
             
                      @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
         
     | 
| 
      
 7044 
     | 
    
         
            +
                      @store_tts_audio = args[:store_tts_audio] if args.key?(:store_tts_audio)
         
     | 
| 
       7025 
7045 
     | 
    
         
             
                    end
         
     | 
| 
       7026 
7046 
     | 
    
         
             
                  end
         
     | 
| 
       7027 
7047 
     | 
    
         | 
| 
         @@ -8856,11 +8876,21 @@ module Google 
     | 
|
| 
       8856 
8876 
     | 
    
         
             
                    attr_accessor :enabled
         
     | 
| 
       8857 
8877 
     | 
    
         
             
                    alias_method :enabled?, :enabled
         
     | 
| 
       8858 
8878 
     | 
    
         | 
| 
      
 8879 
     | 
    
         
            +
                    # Endpoint timeout setting for matching dtmf input to regex.
         
     | 
| 
      
 8880 
     | 
    
         
            +
                    # Corresponds to the JSON property `endpointingTimeoutDuration`
         
     | 
| 
      
 8881 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 8882 
     | 
    
         
            +
                    attr_accessor :endpointing_timeout_duration
         
     | 
| 
      
 8883 
     | 
    
         
            +
                  
         
     | 
| 
       8859 
8884 
     | 
    
         
             
                    # The digit that terminates a DTMF digit sequence.
         
     | 
| 
       8860 
8885 
     | 
    
         
             
                    # Corresponds to the JSON property `finishDigit`
         
     | 
| 
       8861 
8886 
     | 
    
         
             
                    # @return [String]
         
     | 
| 
       8862 
8887 
     | 
    
         
             
                    attr_accessor :finish_digit
         
     | 
| 
       8863 
8888 
     | 
    
         | 
| 
      
 8889 
     | 
    
         
            +
                    # Interdigit timeout setting for matching dtmf input to regex.
         
     | 
| 
      
 8890 
     | 
    
         
            +
                    # Corresponds to the JSON property `interdigitTimeoutDuration`
         
     | 
| 
      
 8891 
     | 
    
         
            +
                    # @return [String]
         
     | 
| 
      
 8892 
     | 
    
         
            +
                    attr_accessor :interdigit_timeout_duration
         
     | 
| 
      
 8893 
     | 
    
         
            +
                  
         
     | 
| 
       8864 
8894 
     | 
    
         
             
                    # Max length of DTMF digits.
         
     | 
| 
       8865 
8895 
     | 
    
         
             
                    # Corresponds to the JSON property `maxDigits`
         
     | 
| 
       8866 
8896 
     | 
    
         
             
                    # @return [Fixnum]
         
     | 
| 
         @@ -8873,7 +8903,9 @@ module Google 
     | 
|
| 
       8873 
8903 
     | 
    
         
             
                    # Update properties of this object
         
     | 
| 
       8874 
8904 
     | 
    
         
             
                    def update!(**args)
         
     | 
| 
       8875 
8905 
     | 
    
         
             
                      @enabled = args[:enabled] if args.key?(:enabled)
         
     | 
| 
      
 8906 
     | 
    
         
            +
                      @endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
         
     | 
| 
       8876 
8907 
     | 
    
         
             
                      @finish_digit = args[:finish_digit] if args.key?(:finish_digit)
         
     | 
| 
      
 8908 
     | 
    
         
            +
                      @interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
         
     | 
| 
       8877 
8909 
     | 
    
         
             
                      @max_digits = args[:max_digits] if args.key?(:max_digits)
         
     | 
| 
       8878 
8910 
     | 
    
         
             
                    end
         
     | 
| 
       8879 
8911 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -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. 
     | 
| 
      
 19 
     | 
    
         
            +
                  GEM_VERSION = "0.86.0"
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         
             
                  # Version of the code generator used to generate this client
         
     | 
| 
       22 
     | 
    
         
            -
                  GENERATOR_VERSION = "0. 
     | 
| 
      
 22 
     | 
    
         
            +
                  GENERATOR_VERSION = "0.15.0"
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
                  # Revision of the discovery document this client was generated from
         
     | 
| 
       25 
     | 
    
         
            -
                  REVISION = " 
     | 
| 
      
 25 
     | 
    
         
            +
                  REVISION = "20240507"
         
     | 
| 
       26 
26 
     | 
    
         
             
                end
         
     | 
| 
       27 
27 
     | 
    
         
             
              end
         
     | 
| 
       28 
28 
     | 
    
         
             
            end
         
     | 
| 
         @@ -3184,7 +3184,9 @@ module Google 
     | 
|
| 
       3184 
3184 
     | 
    
         
             
                    # @private
         
     | 
| 
       3185 
3185 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
       3186 
3186 
     | 
    
         
             
                      property :enabled, as: 'enabled'
         
     | 
| 
      
 3187 
     | 
    
         
            +
                      property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
         
     | 
| 
       3187 
3188 
     | 
    
         
             
                      property :finish_digit, as: 'finishDigit'
         
     | 
| 
      
 3189 
     | 
    
         
            +
                      property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
         
     | 
| 
       3188 
3190 
     | 
    
         
             
                      property :max_digits, as: 'maxDigits'
         
     | 
| 
       3189 
3191 
     | 
    
         
             
                    end
         
     | 
| 
       3190 
3192 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -5072,6 +5074,7 @@ module Google 
     | 
|
| 
       5072 
5074 
     | 
    
         
             
                      property :audio_format, as: 'audioFormat'
         
     | 
| 
       5073 
5075 
     | 
    
         
             
                      property :enable_audio_redaction, as: 'enableAudioRedaction'
         
     | 
| 
       5074 
5076 
     | 
    
         
             
                      property :gcs_bucket, as: 'gcsBucket'
         
     | 
| 
      
 5077 
     | 
    
         
            +
                      property :store_tts_audio, as: 'storeTtsAudio'
         
     | 
| 
       5075 
5078 
     | 
    
         
             
                    end
         
     | 
| 
       5076 
5079 
     | 
    
         
             
                  end
         
     | 
| 
       5077 
5080 
     | 
    
         | 
| 
         @@ -5576,7 +5579,9 @@ module Google 
     | 
|
| 
       5576 
5579 
     | 
    
         
             
                    # @private
         
     | 
| 
       5577 
5580 
     | 
    
         
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         
     | 
| 
       5578 
5581 
     | 
    
         
             
                      property :enabled, as: 'enabled'
         
     | 
| 
      
 5582 
     | 
    
         
            +
                      property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
         
     | 
| 
       5579 
5583 
     | 
    
         
             
                      property :finish_digit, as: 'finishDigit'
         
     | 
| 
      
 5584 
     | 
    
         
            +
                      property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
         
     | 
| 
       5580 
5585 
     | 
    
         
             
                      property :max_digits, as: 'maxDigits'
         
     | 
| 
       5581 
5586 
     | 
    
         
             
                    end
         
     | 
| 
       5582 
5587 
     | 
    
         
             
                  end
         
     | 
    
        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. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.86.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: 2024- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-05-19 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: google-apis-core
         
     | 
| 
         @@ -16,7 +16,7 @@ dependencies: 
     | 
|
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
17 
     | 
    
         
             
                - - ">="
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: 0. 
     | 
| 
      
 19 
     | 
    
         
            +
                    version: 0.15.0
         
     | 
| 
       20 
20 
     | 
    
         
             
                - - "<"
         
     | 
| 
       21 
21 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       22 
22 
     | 
    
         
             
                    version: 2.a
         
     | 
| 
         @@ -26,7 +26,7 @@ dependencies: 
     | 
|
| 
       26 
26 
     | 
    
         
             
                requirements:
         
     | 
| 
       27 
27 
     | 
    
         
             
                - - ">="
         
     | 
| 
       28 
28 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       29 
     | 
    
         
            -
                    version: 0. 
     | 
| 
      
 29 
     | 
    
         
            +
                    version: 0.15.0
         
     | 
| 
       30 
30 
     | 
    
         
             
                - - "<"
         
     | 
| 
       31 
31 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       32 
32 
     | 
    
         
             
                    version: 2.a
         
     | 
| 
         @@ -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. 
     | 
| 
      
 61 
     | 
    
         
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.86.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: []
         
     |