assemblyai 1.0.0.pre.beta.13 → 1.0.0.pre.beta.14

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: 57111906829dc5c8b672c47fcfac95d6e6e05d6fd3df8523d16c5299f09e5aaf
4
- data.tar.gz: 0300a4db2f0fa441594d7053f5232e06aaf70fddba251abe6664f4fbe4c1a617
3
+ metadata.gz: b7f6b9de145dc0cb85875b9680ddb0102e0df821868a143ca40dd770003d5932
4
+ data.tar.gz: ffc6e2dce5b33b542f25ad316537cbe6bb18032aaaa5e780f955bf0b22f958bd
5
5
  SHA512:
6
- metadata.gz: 501408f75273f6695433ea50640fa988db643e729341d70e1cc9275b0f3c26731d3321d62b3b610ccdbc6791ee8fc4a7824d448c3060d9f403ed7bf0e2e550ec
7
- data.tar.gz: 4ee7018bf271a68a4fdec8c7676253188375ee9f00fb40a7d34d284fc93b87a0e3a31e702f5883031cb27712674abc9aa8462ad289ce7dd8aba4b66eb98f93a5
6
+ metadata.gz: 15af95d44a789a2d9973a3029aa147b7a869deb2c08988077c2a921ecf7aeab8531d602b4ca101515de253b0a2611f0ef90f99c67bc37432df8bcdaabb03b408
7
+ data.tar.gz: 20c104e38452399c68b5b29f3d2e1ab262aadad3c4d1737d80f7a0107fab74ca30a64440620eb570c6da182dc0cd7c64ed32a094ed45e9049ec0d30ae7140b04
@@ -11,7 +11,7 @@ module AssemblyAI
11
11
  attr_reader :id
12
12
  # @return [Float]
13
13
  attr_reader :confidence
14
- # @return [Integer]
14
+ # @return [Float]
15
15
  attr_reader :audio_duration
16
16
  # @return [Array<AssemblyAI::Transcripts::TranscriptParagraph>]
17
17
  attr_reader :paragraphs
@@ -25,7 +25,7 @@ module AssemblyAI
25
25
 
26
26
  # @param id [String]
27
27
  # @param confidence [Float]
28
- # @param audio_duration [Integer]
28
+ # @param audio_duration [Float]
29
29
  # @param paragraphs [Array<AssemblyAI::Transcripts::TranscriptParagraph>]
30
30
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
31
31
  # @return [AssemblyAI::Transcripts::ParagraphsResponse]
@@ -77,7 +77,7 @@ module AssemblyAI
77
77
  def self.validate_raw(obj:)
78
78
  obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
79
79
  obj.confidence.is_a?(Float) != false || raise("Passed value for field obj.confidence is not the expected type, validation failed.")
80
- obj.audio_duration.is_a?(Integer) != false || raise("Passed value for field obj.audio_duration is not the expected type, validation failed.")
80
+ obj.audio_duration.is_a?(Float) != false || raise("Passed value for field obj.audio_duration is not the expected type, validation failed.")
81
81
  obj.paragraphs.is_a?(Array) != false || raise("Passed value for field obj.paragraphs is not the expected type, validation failed.")
82
82
  end
83
83
  end
@@ -11,7 +11,7 @@ module AssemblyAI
11
11
  attr_reader :id
12
12
  # @return [Float]
13
13
  attr_reader :confidence
14
- # @return [Integer]
14
+ # @return [Float]
15
15
  attr_reader :audio_duration
16
16
  # @return [Array<AssemblyAI::Transcripts::TranscriptSentence>]
17
17
  attr_reader :sentences
@@ -25,7 +25,7 @@ module AssemblyAI
25
25
 
26
26
  # @param id [String]
27
27
  # @param confidence [Float]
28
- # @param audio_duration [Integer]
28
+ # @param audio_duration [Float]
29
29
  # @param sentences [Array<AssemblyAI::Transcripts::TranscriptSentence>]
30
30
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
31
31
  # @return [AssemblyAI::Transcripts::SentencesResponse]
@@ -77,7 +77,7 @@ module AssemblyAI
77
77
  def self.validate_raw(obj:)
78
78
  obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
79
79
  obj.confidence.is_a?(Float) != false || raise("Passed value for field obj.confidence is not the expected type, validation failed.")
80
- obj.audio_duration.is_a?(Integer) != false || raise("Passed value for field obj.audio_duration is not the expected type, validation failed.")
80
+ obj.audio_duration.is_a?(Float) != false || raise("Passed value for field obj.audio_duration is not the expected type, validation failed.")
81
81
  obj.sentences.is_a?(Array) != false || raise("Passed value for field obj.sentences is not the expected type, validation failed.")
82
82
  end
83
83
  end
data/lib/gemconfig.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  module AssemblyAI
4
4
  module Gemconfig
5
- VERSION = "1.0.0-beta.13"
5
+ VERSION = "1.0.0-beta.14"
6
6
  AUTHORS = [""].freeze
7
7
  EMAIL = "support@assemblyai.com"
8
8
  SUMMARY = "AssemblyAI Ruby SDK"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: assemblyai
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.beta.13
4
+ version: 1.0.0.pre.beta.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - ''
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-27 00:00:00.000000000 Z
11
+ date: 2024-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-http-faraday