bombbomb 2.0.0 → 2.0.831
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/Gemfile +7 -0
- data/README.md +16 -9
- data/Rakefile +8 -3
- data/bombbomb.gemspec +8 -17
- data/docs/AutomationsApi.md +52 -0
- data/docs/ClientGroupAssetMetaData.md +11 -0
- data/docs/InlineResponse200.md +1 -1
- data/docs/JerichoConfiguration.md +1 -0
- data/docs/PromptMonthlyPerformance.md +11 -0
- data/docs/PromptOverview.md +11 -0
- data/docs/PromptsApi.md +53 -1
- data/docs/TeamsApi.md +103 -5
- data/docs/UsersApi.md +100 -0
- data/git_push.sh +1 -13
- data/lib/bombbomb.rb +6 -14
- data/lib/bombbomb/api/accounts_api.rb +41 -68
- data/lib/bombbomb/api/automations_api.rb +71 -30
- data/lib/bombbomb/api/contacts_api.rb +47 -76
- data/lib/bombbomb/api/curriculum_api.rb +8 -27
- data/lib/bombbomb/api/emails_api.rb +53 -96
- data/lib/bombbomb/api/files_api.rb +32 -53
- data/lib/bombbomb/api/forms_api.rb +8 -21
- data/lib/bombbomb/api/integrations_api.rb +26 -51
- data/lib/bombbomb/api/lists_api.rb +32 -53
- data/lib/bombbomb/api/orders_api.rb +8 -21
- data/lib/bombbomb/api/prompts_api.rb +177 -139
- data/lib/bombbomb/api/socials_api.rb +80 -111
- data/lib/bombbomb/api/teams_api.rb +294 -209
- data/lib/bombbomb/api/users_api.rb +119 -0
- data/lib/bombbomb/api/utilities_api.rb +23 -44
- data/lib/bombbomb/api/videos_api.rb +38 -55
- data/lib/bombbomb/api/webhooks_api.rb +23 -50
- data/lib/bombbomb/api_client.rb +55 -45
- data/lib/bombbomb/api_error.rb +9 -18
- data/lib/bombbomb/configuration.rb +8 -13
- data/lib/bombbomb/models/bb_web_hook.rb +6 -17
- data/lib/bombbomb/models/client_group_asset_meta_data.rb +215 -0
- data/lib/bombbomb/models/curriculum.rb +6 -17
- data/lib/bombbomb/models/curriculum_user_progress.rb +6 -17
- data/lib/bombbomb/models/curriculum_with_progress.rb +6 -17
- data/lib/bombbomb/models/hosted_doc.rb +6 -17
- data/lib/bombbomb/models/inline_response_200.rb +7 -18
- data/lib/bombbomb/models/jericho_configuration.rb +24 -21
- data/lib/bombbomb/models/jericho_performance.rb +6 -17
- data/lib/bombbomb/models/o_auth_client.rb +6 -17
- data/lib/bombbomb/models/prompt_bot.rb +6 -17
- data/lib/bombbomb/models/prompt_monthly_performance.rb +219 -0
- data/lib/bombbomb/models/prompt_overview.rb +219 -0
- data/lib/bombbomb/models/prompt_social_prompt.rb +6 -17
- data/lib/bombbomb/models/sign_upload_request.rb +6 -17
- data/lib/bombbomb/models/sign_upload_response.rb +6 -17
- data/lib/bombbomb/models/string.rb +6 -17
- data/lib/bombbomb/models/team_public_representation.rb +6 -17
- data/lib/bombbomb/models/video_email_prompt.rb +6 -17
- data/lib/bombbomb/models/video_encoding_status_response.rb +6 -17
- data/lib/bombbomb/models/video_public_representation.rb +6 -17
- data/lib/bombbomb/models/video_recorder_method_response.rb +6 -17
- data/lib/bombbomb/version.rb +3 -14
- data/spec/api/users_api_spec.rb +57 -0
- data/spec/models/{inline_response_200_items_spec.rb → client_group_asset_meta_data_spec.rb} +8 -19
- data/spec/models/prompt_monthly_performance_spec.rb +60 -0
- data/spec/models/prompt_overview_spec.rb +60 -0
- metadata +31 -19
- data/spec/models/prompt_bot_bot_spec.rb +0 -113
@@ -3,21 +3,10 @@
|
|
3
3
|
|
4
4
|
#We make it easy to build relationships using simple videos.
|
5
5
|
|
6
|
-
OpenAPI spec version: 2.0.
|
6
|
+
OpenAPI spec version: 2.0.831
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
9
|
+
Swagger Codegen version: 2.3.1
|
21
10
|
|
22
11
|
=end
|
23
12
|
|
@@ -122,7 +111,7 @@ module BombBomb
|
|
122
111
|
end
|
123
112
|
|
124
113
|
# Show invalid properties with the reasons. Usually used together with valid?
|
125
|
-
# @return Array for valid
|
114
|
+
# @return Array for valid properties with the reasons
|
126
115
|
def list_invalid_properties
|
127
116
|
invalid_properties = Array.new
|
128
117
|
return invalid_properties
|
@@ -167,7 +156,7 @@ module BombBomb
|
|
167
156
|
def build_from_hash(attributes)
|
168
157
|
return nil unless attributes.is_a?(Hash)
|
169
158
|
self.class.swagger_types.each_pair do |key, type|
|
170
|
-
if type =~
|
159
|
+
if type =~ /\AArray<(.*)>/i
|
171
160
|
# check to ensure the input is an array given that the the attribute
|
172
161
|
# is documented as an array but the input is not
|
173
162
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
@@ -198,7 +187,7 @@ module BombBomb
|
|
198
187
|
when :Float
|
199
188
|
value.to_f
|
200
189
|
when :BOOLEAN
|
201
|
-
if value.to_s =~
|
190
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
202
191
|
true
|
203
192
|
else
|
204
193
|
false
|
@@ -209,7 +198,7 @@ module BombBomb
|
|
209
198
|
when /\AArray<(?<inner_type>.+)>\z/
|
210
199
|
inner_type = Regexp.last_match[:inner_type]
|
211
200
|
value.map { |v| _deserialize(inner_type, v) }
|
212
|
-
when /\AHash<(?<k_type
|
201
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
213
202
|
k_type = Regexp.last_match[:k_type]
|
214
203
|
v_type = Regexp.last_match[:v_type]
|
215
204
|
{}.tap do |hash|
|
data/lib/bombbomb/version.rb
CHANGED
@@ -3,24 +3,13 @@
|
|
3
3
|
|
4
4
|
#We make it easy to build relationships using simple videos.
|
5
5
|
|
6
|
-
OpenAPI spec version: 2.0.
|
6
|
+
OpenAPI spec version: 2.0.831
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
9
|
+
Swagger Codegen version: 2.3.1
|
21
10
|
|
22
11
|
=end
|
23
12
|
|
24
13
|
module BombBomb
|
25
|
-
VERSION = "2.0.
|
14
|
+
VERSION = "2.0.831"
|
26
15
|
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
=begin
|
2
|
+
#BombBomb
|
3
|
+
|
4
|
+
#We make it easy to build relationships using simple videos.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0.831
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
|
16
|
+
# Unit tests for BombBomb::UsersApi
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'UsersApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = BombBomb::UsersApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of UsersApi' do
|
30
|
+
it 'should create an instance of UsersApi' do
|
31
|
+
expect(@instance).to be_instance_of(BombBomb::UsersApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for get_client_contact_information
|
36
|
+
# Get client contact information.
|
37
|
+
# Get the client contact information of the user's account.
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @return [nil]
|
40
|
+
describe 'get_client_contact_information test' do
|
41
|
+
it "should work" do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for get_user_profile_info
|
47
|
+
# Get user profile information.
|
48
|
+
# Get the users profile information.
|
49
|
+
# @param [Hash] opts the optional parameters
|
50
|
+
# @return [nil]
|
51
|
+
describe 'get_user_profile_info test' do
|
52
|
+
it "should work" do
|
53
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
@@ -3,21 +3,10 @@
|
|
3
3
|
|
4
4
|
#We make it easy to build relationships using simple videos.
|
5
5
|
|
6
|
-
OpenAPI spec version: 2.0
|
6
|
+
OpenAPI spec version: 2.0.831
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
9
|
+
Swagger Codegen version: 2.3.1
|
21
10
|
|
22
11
|
=end
|
23
12
|
|
@@ -25,22 +14,22 @@ require 'spec_helper'
|
|
25
14
|
require 'json'
|
26
15
|
require 'date'
|
27
16
|
|
28
|
-
# Unit tests for BombBomb::
|
17
|
+
# Unit tests for BombBomb::ClientGroupAssetMetaData
|
29
18
|
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
30
19
|
# Please update as you see appropriate
|
31
|
-
describe '
|
20
|
+
describe 'ClientGroupAssetMetaData' do
|
32
21
|
before do
|
33
22
|
# run before each test
|
34
|
-
@instance = BombBomb::
|
23
|
+
@instance = BombBomb::ClientGroupAssetMetaData.new
|
35
24
|
end
|
36
25
|
|
37
26
|
after do
|
38
27
|
# run after each test
|
39
28
|
end
|
40
29
|
|
41
|
-
describe 'test an instance of
|
42
|
-
it 'should create an
|
43
|
-
expect(@instance).to be_instance_of(BombBomb::
|
30
|
+
describe 'test an instance of ClientGroupAssetMetaData' do
|
31
|
+
it 'should create an instance of ClientGroupAssetMetaData' do
|
32
|
+
expect(@instance).to be_instance_of(BombBomb::ClientGroupAssetMetaData)
|
44
33
|
end
|
45
34
|
end
|
46
35
|
describe 'test attribute "id"' do
|
@@ -0,0 +1,60 @@
|
|
1
|
+
=begin
|
2
|
+
#BombBomb
|
3
|
+
|
4
|
+
#We make it easy to build relationships using simple videos.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0.831
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BombBomb::PromptMonthlyPerformance
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PromptMonthlyPerformance' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BombBomb::PromptMonthlyPerformance.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PromptMonthlyPerformance' do
|
31
|
+
it 'should create an instance of PromptMonthlyPerformance' do
|
32
|
+
expect(@instance).to be_instance_of(BombBomb::PromptMonthlyPerformance)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "start_date"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "end_date"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "user_batch_lists_id_helper"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "prompt_id_helper"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
@@ -0,0 +1,60 @@
|
|
1
|
+
=begin
|
2
|
+
#BombBomb
|
3
|
+
|
4
|
+
#We make it easy to build relationships using simple videos.
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0.831
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BombBomb::PromptOverview
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PromptOverview' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BombBomb::PromptOverview.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PromptOverview' do
|
31
|
+
it 'should create an instance of PromptOverview' do
|
32
|
+
expect(@instance).to be_instance_of(BombBomb::PromptOverview)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "start_date"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "end_date"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "user_batch_lists_id_helper"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "prompt_id_helper"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bombbomb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.831
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BombBomb
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -36,40 +36,40 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1
|
39
|
+
version: '2.1'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.
|
42
|
+
version: 2.1.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '1
|
49
|
+
version: '2.1'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.
|
52
|
+
version: 2.1.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: '3.
|
59
|
+
version: '3.6'
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 3.
|
62
|
+
version: 3.6.0
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '3.
|
69
|
+
version: '3.6'
|
70
70
|
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: 3.
|
72
|
+
version: 3.6.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: vcr
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -179,7 +179,7 @@ dependencies:
|
|
179
179
|
version: '0.2'
|
180
180
|
- - ">="
|
181
181
|
- !ruby/object:Gem::Version
|
182
|
-
version: 0.2.
|
182
|
+
version: 0.2.12
|
183
183
|
type: :development
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -189,7 +189,7 @@ dependencies:
|
|
189
189
|
version: '0.2'
|
190
190
|
- - ">="
|
191
191
|
- !ruby/object:Gem::Version
|
192
|
-
version: 0.2.
|
192
|
+
version: 0.2.12
|
193
193
|
description: We make it easy to build relationships using simple videos.
|
194
194
|
email:
|
195
195
|
- support@bombbomb.com
|
@@ -197,6 +197,7 @@ executables: []
|
|
197
197
|
extensions: []
|
198
198
|
extra_rdoc_files: []
|
199
199
|
files:
|
200
|
+
- Gemfile
|
200
201
|
- LICENSE
|
201
202
|
- README.md
|
202
203
|
- Rakefile
|
@@ -204,6 +205,7 @@ files:
|
|
204
205
|
- docs/AccountsApi.md
|
205
206
|
- docs/AutomationsApi.md
|
206
207
|
- docs/BBWebHook.md
|
208
|
+
- docs/ClientGroupAssetMetaData.md
|
207
209
|
- docs/ContactsApi.md
|
208
210
|
- docs/Curriculum.md
|
209
211
|
- docs/CurriculumApi.md
|
@@ -223,6 +225,8 @@ files:
|
|
223
225
|
- docs/OrdersApi.md
|
224
226
|
- docs/PromptBot.md
|
225
227
|
- docs/PromptBotBot.md
|
228
|
+
- docs/PromptMonthlyPerformance.md
|
229
|
+
- docs/PromptOverview.md
|
226
230
|
- docs/PromptSocialPrompt.md
|
227
231
|
- docs/PromptsApi.md
|
228
232
|
- docs/SignUploadRequest.md
|
@@ -231,6 +235,7 @@ files:
|
|
231
235
|
- docs/String.md
|
232
236
|
- docs/TeamPublicRepresentation.md
|
233
237
|
- docs/TeamsApi.md
|
238
|
+
- docs/UsersApi.md
|
234
239
|
- docs/UtilitiesApi.md
|
235
240
|
- docs/VideoEmailPrompt.md
|
236
241
|
- docs/VideoEncodingStatusResponse.md
|
@@ -253,6 +258,7 @@ files:
|
|
253
258
|
- lib/bombbomb/api/prompts_api.rb
|
254
259
|
- lib/bombbomb/api/socials_api.rb
|
255
260
|
- lib/bombbomb/api/teams_api.rb
|
261
|
+
- lib/bombbomb/api/users_api.rb
|
256
262
|
- lib/bombbomb/api/utilities_api.rb
|
257
263
|
- lib/bombbomb/api/videos_api.rb
|
258
264
|
- lib/bombbomb/api/webhooks_api.rb
|
@@ -260,6 +266,7 @@ files:
|
|
260
266
|
- lib/bombbomb/api_error.rb
|
261
267
|
- lib/bombbomb/configuration.rb
|
262
268
|
- lib/bombbomb/models/bb_web_hook.rb
|
269
|
+
- lib/bombbomb/models/client_group_asset_meta_data.rb
|
263
270
|
- lib/bombbomb/models/curriculum.rb
|
264
271
|
- lib/bombbomb/models/curriculum_user_progress.rb
|
265
272
|
- lib/bombbomb/models/curriculum_with_progress.rb
|
@@ -271,6 +278,8 @@ files:
|
|
271
278
|
- lib/bombbomb/models/o_auth_client.rb
|
272
279
|
- lib/bombbomb/models/prompt_bot.rb
|
273
280
|
- lib/bombbomb/models/prompt_bot_bot.rb
|
281
|
+
- lib/bombbomb/models/prompt_monthly_performance.rb
|
282
|
+
- lib/bombbomb/models/prompt_overview.rb
|
274
283
|
- lib/bombbomb/models/prompt_social_prompt.rb
|
275
284
|
- lib/bombbomb/models/sign_upload_request.rb
|
276
285
|
- lib/bombbomb/models/sign_upload_response.rb
|
@@ -294,23 +303,25 @@ files:
|
|
294
303
|
- spec/api/prompts_api_spec.rb
|
295
304
|
- spec/api/socials_api_spec.rb
|
296
305
|
- spec/api/teams_api_spec.rb
|
306
|
+
- spec/api/users_api_spec.rb
|
297
307
|
- spec/api/utilities_api_spec.rb
|
298
308
|
- spec/api/videos_api_spec.rb
|
299
309
|
- spec/api/webhooks_api_spec.rb
|
300
310
|
- spec/api_client_spec.rb
|
301
311
|
- spec/configuration_spec.rb
|
302
312
|
- spec/models/bb_web_hook_spec.rb
|
313
|
+
- spec/models/client_group_asset_meta_data_spec.rb
|
303
314
|
- spec/models/curriculum_spec.rb
|
304
315
|
- spec/models/curriculum_user_progress_spec.rb
|
305
316
|
- spec/models/curriculum_with_progress_spec.rb
|
306
317
|
- spec/models/hosted_doc_spec.rb
|
307
|
-
- spec/models/inline_response_200_items_spec.rb
|
308
318
|
- spec/models/inline_response_200_spec.rb
|
309
319
|
- spec/models/jericho_configuration_spec.rb
|
310
320
|
- spec/models/jericho_performance_spec.rb
|
311
321
|
- spec/models/o_auth_client_spec.rb
|
312
|
-
- spec/models/prompt_bot_bot_spec.rb
|
313
322
|
- spec/models/prompt_bot_spec.rb
|
323
|
+
- spec/models/prompt_monthly_performance_spec.rb
|
324
|
+
- spec/models/prompt_overview_spec.rb
|
314
325
|
- spec/models/prompt_social_prompt_spec.rb
|
315
326
|
- spec/models/sign_upload_request_spec.rb
|
316
327
|
- spec/models/sign_upload_response_spec.rb
|
@@ -322,8 +333,7 @@ files:
|
|
322
333
|
- spec/models/video_recorder_method_response_spec.rb
|
323
334
|
- spec/spec_helper.rb
|
324
335
|
homepage: http://developer.bombbomb.com
|
325
|
-
licenses:
|
326
|
-
- Apache 2.0
|
336
|
+
licenses: []
|
327
337
|
metadata: {}
|
328
338
|
post_install_message:
|
329
339
|
rdoc_options: []
|
@@ -333,7 +343,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
333
343
|
requirements:
|
334
344
|
- - ">="
|
335
345
|
- !ruby/object:Gem::Version
|
336
|
-
version: '
|
346
|
+
version: '1.9'
|
337
347
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
338
348
|
requirements:
|
339
349
|
- - ">="
|
@@ -359,23 +369,25 @@ test_files:
|
|
359
369
|
- spec/api/prompts_api_spec.rb
|
360
370
|
- spec/api/socials_api_spec.rb
|
361
371
|
- spec/api/teams_api_spec.rb
|
372
|
+
- spec/api/users_api_spec.rb
|
362
373
|
- spec/api/utilities_api_spec.rb
|
363
374
|
- spec/api/videos_api_spec.rb
|
364
375
|
- spec/api/webhooks_api_spec.rb
|
365
376
|
- spec/api_client_spec.rb
|
366
377
|
- spec/configuration_spec.rb
|
367
378
|
- spec/models/bb_web_hook_spec.rb
|
379
|
+
- spec/models/client_group_asset_meta_data_spec.rb
|
368
380
|
- spec/models/curriculum_spec.rb
|
369
381
|
- spec/models/curriculum_user_progress_spec.rb
|
370
382
|
- spec/models/curriculum_with_progress_spec.rb
|
371
383
|
- spec/models/hosted_doc_spec.rb
|
372
|
-
- spec/models/inline_response_200_items_spec.rb
|
373
384
|
- spec/models/inline_response_200_spec.rb
|
374
385
|
- spec/models/jericho_configuration_spec.rb
|
375
386
|
- spec/models/jericho_performance_spec.rb
|
376
387
|
- spec/models/o_auth_client_spec.rb
|
377
|
-
- spec/models/prompt_bot_bot_spec.rb
|
378
388
|
- spec/models/prompt_bot_spec.rb
|
389
|
+
- spec/models/prompt_monthly_performance_spec.rb
|
390
|
+
- spec/models/prompt_overview_spec.rb
|
379
391
|
- spec/models/prompt_social_prompt_spec.rb
|
380
392
|
- spec/models/sign_upload_request_spec.rb
|
381
393
|
- spec/models/sign_upload_response_spec.rb
|