freeclimb 2.1.0 → 2.1.1
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +4 -4
- data/docs/RecordUtterance.md +3 -1
- data/docs/RecordUtteranceAllOf.md +3 -1
- data/freeclimb-2.1.0.gem +0 -0
- data/lib/freeclimb/api_client.rb +1 -1
- data/lib/freeclimb/models/record_utterance.rb +14 -4
- data/lib/freeclimb/models/record_utterance_all_of.rb +14 -4
- data/lib/freeclimb/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b2432d5b30385e65f3c0e9a9fc9c2731de5cd03377ef0df110269772cb3d1fd
|
4
|
+
data.tar.gz: eb91292c2fa6fa794fbf1c0c7c5925b79c023a6eea28d167848d9c9aa6f91036
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 648bb6a97a082a2baf5b5edf02effb1312f98ae1cc67e4b309e843905abd98343b8805e9f6e365be7d96517d4b5f6b5bd09cf0f791c3cf5dadd9ecac90128e82
|
7
|
+
data.tar.gz: f238c728fac55b34900af24c2d37072ede3948fd73460ea4f6c9aad62237153095473dc47813d7fba0ea25b1d76aba72be90bc6379420497cc1e6129070cdca5
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
7
7
|
## [Unreleased]
|
8
8
|
None
|
9
9
|
|
10
|
+
|
11
|
+
<a name="2.1.1"></a>
|
12
|
+
## [2.1.1] - 2020-12-16
|
13
|
+
### Added
|
14
|
+
- Add `privacyMode` option to RecordUtterance PerCL command
|
15
|
+
|
10
16
|
<a name="2.1.0"></a>
|
11
17
|
## [2.1.0] - 2020-12-16
|
12
18
|
### Added
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
|
|
5
5
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
6
6
|
|
7
7
|
- API version: 1.0.0
|
8
|
-
- Package version: 2.1.
|
8
|
+
- Package version: 2.1.1
|
9
9
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
10
10
|
|
11
11
|
## Installation
|
@@ -21,16 +21,16 @@ gem build freeclimb.gemspec
|
|
21
21
|
Then either install the gem locally:
|
22
22
|
|
23
23
|
```shell
|
24
|
-
gem install ./freeclimb-2.1.
|
24
|
+
gem install ./freeclimb-2.1.1.gem
|
25
25
|
```
|
26
26
|
|
27
|
-
(for development, run `gem install --dev ./freeclimb-2.1.
|
27
|
+
(for development, run `gem install --dev ./freeclimb-2.1.1.gem` to install the development dependencies)
|
28
28
|
|
29
29
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
30
30
|
|
31
31
|
Finally add this to the Gemfile:
|
32
32
|
|
33
|
-
gem 'freeclimb', '~> 2.1.
|
33
|
+
gem 'freeclimb', '~> 2.1.1'
|
34
34
|
|
35
35
|
### Install from Ruby gems
|
36
36
|
```shell
|
data/docs/RecordUtterance.md
CHANGED
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
10
10
|
**max_length_sec** | **Integer** | Maximum length for the command execution in seconds. | [optional]
|
11
11
|
**play_beep** | **Boolean** | Indicates whether to play a beep sound before the start of the recording. If set to `false`, no beep is played. | [optional]
|
12
12
|
**auto_start** | **Boolean** | If `false`, recording begins immediately after the RecordUtterance command is processed. If `true`, recording begins when audio is present and if audio begins before the `maxLengthSec` timeout. If no audio begins before `maxLengthSec`, no recording is generated. | [optional]
|
13
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
13
14
|
|
14
15
|
## Code Sample
|
15
16
|
|
@@ -21,7 +22,8 @@ instance = Freeclimb::RecordUtterance.new(action_url: nil,
|
|
21
22
|
finish_on_key: nil,
|
22
23
|
max_length_sec: nil,
|
23
24
|
play_beep: nil,
|
24
|
-
auto_start: nil
|
25
|
+
auto_start: nil,
|
26
|
+
privacy_mode: nil)
|
25
27
|
```
|
26
28
|
|
27
29
|
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
10
10
|
**max_length_sec** | **Integer** | Maximum length for the command execution in seconds. | [optional]
|
11
11
|
**play_beep** | **Boolean** | Indicates whether to play a beep sound before the start of the recording. If set to `false`, no beep is played. | [optional]
|
12
12
|
**auto_start** | **Boolean** | If `false`, recording begins immediately after the RecordUtterance command is processed. If `true`, recording begins when audio is present and if audio begins before the `maxLengthSec` timeout. If no audio begins before `maxLengthSec`, no recording is generated. | [optional]
|
13
|
+
**privacy_mode** | **Boolean** | Parameter `privacyMode` will not log the `text` as required by PCI compliance. | [optional]
|
13
14
|
|
14
15
|
## Code Sample
|
15
16
|
|
@@ -21,7 +22,8 @@ instance = Freeclimb::RecordUtteranceAllOf.new(action_url: nil,
|
|
21
22
|
finish_on_key: nil,
|
22
23
|
max_length_sec: nil,
|
23
24
|
play_beep: nil,
|
24
|
-
auto_start: nil
|
25
|
+
auto_start: nil,
|
26
|
+
privacy_mode: nil)
|
25
27
|
```
|
26
28
|
|
27
29
|
|
data/freeclimb-2.1.0.gem
ADDED
Binary file
|
data/lib/freeclimb/api_client.rb
CHANGED
@@ -30,7 +30,7 @@ module Freeclimb
|
|
30
30
|
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
|
31
31
|
def initialize(config = Configuration.default)
|
32
32
|
@config = config
|
33
|
-
@user_agent = "FreeClimbSDK/2.1.
|
33
|
+
@user_agent = "FreeClimbSDK/2.1.1/ruby"
|
34
34
|
@default_headers = {
|
35
35
|
'Content-Type' => 'application/json',
|
36
36
|
'User-Agent' => @user_agent
|
@@ -33,6 +33,9 @@ module Freeclimb
|
|
33
33
|
# If `false`, recording begins immediately after the RecordUtterance command is processed. If `true`, recording begins when audio is present and if audio begins before the `maxLengthSec` timeout. If no audio begins before `maxLengthSec`, no recording is generated.
|
34
34
|
attr_accessor :auto_start
|
35
35
|
|
36
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
37
|
+
attr_accessor :privacy_mode
|
38
|
+
|
36
39
|
# Attribute mapping from ruby-style variable name to JSON key.
|
37
40
|
def self.attribute_map
|
38
41
|
{
|
@@ -41,7 +44,8 @@ module Freeclimb
|
|
41
44
|
:'finish_on_key' => :'finishOnKey',
|
42
45
|
:'max_length_sec' => :'maxLengthSec',
|
43
46
|
:'play_beep' => :'playBeep',
|
44
|
-
:'auto_start' => :'autoStart'
|
47
|
+
:'auto_start' => :'autoStart',
|
48
|
+
:'privacy_mode' => :'privacyMode'
|
45
49
|
}
|
46
50
|
end
|
47
51
|
|
@@ -53,7 +57,8 @@ module Freeclimb
|
|
53
57
|
:'finish_on_key' => :'String',
|
54
58
|
:'max_length_sec' => :'Integer',
|
55
59
|
:'play_beep' => :'Boolean',
|
56
|
-
:'auto_start' => :'Boolean'
|
60
|
+
:'auto_start' => :'Boolean',
|
61
|
+
:'privacy_mode' => :'Boolean'
|
57
62
|
}
|
58
63
|
end
|
59
64
|
|
@@ -112,6 +117,10 @@ module Freeclimb
|
|
112
117
|
if attributes.key?(:'auto_start')
|
113
118
|
self.auto_start = attributes[:'auto_start']
|
114
119
|
end
|
120
|
+
|
121
|
+
if attributes.key?(:'privacy_mode')
|
122
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
123
|
+
end
|
115
124
|
end
|
116
125
|
|
117
126
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -142,7 +151,8 @@ module Freeclimb
|
|
142
151
|
finish_on_key == o.finish_on_key &&
|
143
152
|
max_length_sec == o.max_length_sec &&
|
144
153
|
play_beep == o.play_beep &&
|
145
|
-
auto_start == o.auto_start &&
|
154
|
+
auto_start == o.auto_start &&
|
155
|
+
privacy_mode == o.privacy_mode && super(o)
|
146
156
|
end
|
147
157
|
|
148
158
|
# @see the `==` method
|
@@ -154,7 +164,7 @@ module Freeclimb
|
|
154
164
|
# Calculates hash code according to all attributes.
|
155
165
|
# @return [Integer] Hash code
|
156
166
|
def hash
|
157
|
-
[action_url, silence_timeout_ms, finish_on_key, max_length_sec, play_beep, auto_start].hash
|
167
|
+
[action_url, silence_timeout_ms, finish_on_key, max_length_sec, play_beep, auto_start, privacy_mode].hash
|
158
168
|
end
|
159
169
|
|
160
170
|
# Builds the object from hash
|
@@ -32,6 +32,9 @@ module Freeclimb
|
|
32
32
|
# If `false`, recording begins immediately after the RecordUtterance command is processed. If `true`, recording begins when audio is present and if audio begins before the `maxLengthSec` timeout. If no audio begins before `maxLengthSec`, no recording is generated.
|
33
33
|
attr_accessor :auto_start
|
34
34
|
|
35
|
+
# Parameter `privacyMode` will not log the `text` as required by PCI compliance.
|
36
|
+
attr_accessor :privacy_mode
|
37
|
+
|
35
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
36
39
|
def self.attribute_map
|
37
40
|
{
|
@@ -40,7 +43,8 @@ module Freeclimb
|
|
40
43
|
:'finish_on_key' => :'finishOnKey',
|
41
44
|
:'max_length_sec' => :'maxLengthSec',
|
42
45
|
:'play_beep' => :'playBeep',
|
43
|
-
:'auto_start' => :'autoStart'
|
46
|
+
:'auto_start' => :'autoStart',
|
47
|
+
:'privacy_mode' => :'privacyMode'
|
44
48
|
}
|
45
49
|
end
|
46
50
|
|
@@ -52,7 +56,8 @@ module Freeclimb
|
|
52
56
|
:'finish_on_key' => :'String',
|
53
57
|
:'max_length_sec' => :'Integer',
|
54
58
|
:'play_beep' => :'Boolean',
|
55
|
-
:'auto_start' => :'Boolean'
|
59
|
+
:'auto_start' => :'Boolean',
|
60
|
+
:'privacy_mode' => :'Boolean'
|
56
61
|
}
|
57
62
|
end
|
58
63
|
|
@@ -100,6 +105,10 @@ module Freeclimb
|
|
100
105
|
if attributes.key?(:'auto_start')
|
101
106
|
self.auto_start = attributes[:'auto_start']
|
102
107
|
end
|
108
|
+
|
109
|
+
if attributes.key?(:'privacy_mode')
|
110
|
+
self.privacy_mode = attributes[:'privacy_mode']
|
111
|
+
end
|
103
112
|
end
|
104
113
|
|
105
114
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -130,7 +139,8 @@ module Freeclimb
|
|
130
139
|
finish_on_key == o.finish_on_key &&
|
131
140
|
max_length_sec == o.max_length_sec &&
|
132
141
|
play_beep == o.play_beep &&
|
133
|
-
auto_start == o.auto_start
|
142
|
+
auto_start == o.auto_start &&
|
143
|
+
privacy_mode == o.privacy_mode
|
134
144
|
end
|
135
145
|
|
136
146
|
# @see the `==` method
|
@@ -142,7 +152,7 @@ module Freeclimb
|
|
142
152
|
# Calculates hash code according to all attributes.
|
143
153
|
# @return [Integer] Hash code
|
144
154
|
def hash
|
145
|
-
[action_url, silence_timeout_ms, finish_on_key, max_length_sec, play_beep, auto_start].hash
|
155
|
+
[action_url, silence_timeout_ms, finish_on_key, max_length_sec, play_beep, auto_start, privacy_mode].hash
|
146
156
|
end
|
147
157
|
|
148
158
|
# Builds the object from hash
|
data/lib/freeclimb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: freeclimb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -193,6 +193,7 @@ files:
|
|
193
193
|
- docs/UpdateConferenceParticipantRequest.md
|
194
194
|
- docs/UpdateConferenceRequest.md
|
195
195
|
- freeclimb-2.0.3.gem
|
196
|
+
- freeclimb-2.1.0.gem
|
196
197
|
- freeclimb.gemspec
|
197
198
|
- lib/freeclimb.rb
|
198
199
|
- lib/freeclimb/api/default_api.rb
|