assemblyai 1.0.0.pre.beta.13 → 1.0.0.pre.beta.14
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7f6b9de145dc0cb85875b9680ddb0102e0df821868a143ca40dd770003d5932
|
4
|
+
data.tar.gz: ffc6e2dce5b33b542f25ad316537cbe6bb18032aaaa5e780f955bf0b22f958bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 [
|
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 [
|
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?(
|
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 [
|
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 [
|
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?(
|
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
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.
|
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-
|
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
|