radiomanager_client 1.0.99 → 1.0.100
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/README.md +11 -5
- data/docs/BlockApi.md +13 -7
- data/docs/BroadcastApi.md +36 -24
- data/docs/BroadcastEPGDay.md +9 -0
- data/docs/BroadcastEPGRelations.md +13 -0
- data/docs/BroadcastEPGResult.md +40 -0
- data/docs/CampaignApi.md +9 -3
- data/docs/ContactApi.md +11 -5
- data/docs/EPGResults.md +10 -0
- data/docs/ExternalMessageApi.md +1 -1
- data/docs/GenreApi.md +7 -1
- data/docs/ItemApi.md +27 -25
- data/docs/ModelTypeApi.md +9 -3
- data/docs/PresenterApi.md +9 -3
- data/docs/PresenterEPGResult.md +18 -0
- data/docs/ProgramApi.md +17 -11
- data/docs/StationApi.md +57 -0
- data/docs/StationResult.md +8 -0
- data/docs/StationResultStation.md +33 -0
- data/docs/StoryApi.md +11 -5
- data/docs/StoryDataInput.md +1 -0
- data/docs/StringApi.md +1 -1
- data/docs/TagApi.md +7 -1
- data/docs/UserApi.md +8 -2
- data/docs/VisualSlideApi.md +1 -1
- data/lib/radiomanager_client/api/block_api.rb +29 -9
- data/lib/radiomanager_client/api/broadcast_api.rb +58 -29
- data/lib/radiomanager_client/api/campaign_api.rb +23 -3
- data/lib/radiomanager_client/api/contact_api.rb +25 -5
- data/lib/radiomanager_client/api/genre_api.rb +20 -0
- data/lib/radiomanager_client/api/item_api.rb +50 -39
- data/lib/radiomanager_client/api/model_type_api.rb +23 -3
- data/lib/radiomanager_client/api/presenter_api.rb +23 -3
- data/lib/radiomanager_client/api/program_api.rb +34 -14
- data/lib/radiomanager_client/api/station_api.rb +72 -0
- data/lib/radiomanager_client/api/story_api.rb +25 -5
- data/lib/radiomanager_client/api/tag_api.rb +20 -0
- data/lib/radiomanager_client/api/user_api.rb +20 -0
- data/lib/radiomanager_client/configuration.rb +1 -1
- data/lib/radiomanager_client/models/broadcast_epg_day.rb +204 -0
- data/lib/radiomanager_client/models/broadcast_epg_relations.rb +235 -0
- data/lib/radiomanager_client/models/broadcast_epg_result.rb +547 -0
- data/lib/radiomanager_client/models/epg_results.rb +223 -0
- data/lib/radiomanager_client/models/presenter_epg_result.rb +305 -0
- data/lib/radiomanager_client/models/station_result.rb +188 -0
- data/lib/radiomanager_client/models/station_result_station.rb +413 -0
- data/lib/radiomanager_client/models/story_data_input.rb +15 -4
- data/lib/radiomanager_client.rb +9 -3
- data/radiomanager_client.gemspec +1 -1
- data/spec/api/station_api_spec.rb +46 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/broadcast_epg_day_spec.rb +48 -0
- data/spec/models/broadcast_epg_relations_spec.rb +72 -0
- data/spec/models/broadcast_epg_result_spec.rb +238 -0
- data/spec/models/epg_results_spec.rb +54 -0
- data/spec/models/item_data_input_spec.rb +1 -1
- data/spec/models/item_input_only_spec.rb +1 -1
- data/spec/models/presenter_epg_result_spec.rb +102 -0
- data/spec/models/station_result_spec.rb +42 -0
- data/spec/models/station_result_station_spec.rb +186 -0
- metadata +34 -2
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#RadioManager
|
|
3
|
+
|
|
4
|
+
#RadioManager
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
Contact: support@pluxbox.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RadioManagerClient::EPGResults
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'EPGResults' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = RadioManagerClient::EPGResults.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of EPGResults' do
|
|
31
|
+
it 'should create an instance of EPGResults' do
|
|
32
|
+
expect(@instance).to be_instance_of(RadioManagerClient::EPGResults)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "days"' 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 "next_page_url"' 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 "prev_page_url"' 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
|
+
end
|
|
54
|
+
|
|
@@ -132,7 +132,7 @@ describe 'ItemDataInput' do
|
|
|
132
132
|
end
|
|
133
133
|
end
|
|
134
134
|
|
|
135
|
-
describe 'test attribute "
|
|
135
|
+
describe 'test attribute "previous_id"' do
|
|
136
136
|
it 'should work' do
|
|
137
137
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
138
138
|
end
|
|
@@ -32,7 +32,7 @@ describe 'ItemInputOnly' do
|
|
|
32
32
|
expect(@instance).to be_instance_of(RadioManagerClient::ItemInputOnly)
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
|
-
describe 'test attribute "
|
|
35
|
+
describe 'test attribute "previous_id"' do
|
|
36
36
|
it 'should work' do
|
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
38
|
end
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#RadioManager
|
|
3
|
+
|
|
4
|
+
#RadioManager
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
Contact: support@pluxbox.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RadioManagerClient::PresenterEPGResult
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'PresenterEPGResult' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = RadioManagerClient::PresenterEPGResult.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of PresenterEPGResult' do
|
|
31
|
+
it 'should create an instance of PresenterEPGResult' do
|
|
32
|
+
expect(@instance).to be_instance_of(RadioManagerClient::PresenterEPGResult)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "model_type_id"' 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 "field_values"' 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 "firstname"' 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 "lastname"' 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
|
+
describe 'test attribute "active"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "name"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "id"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "updated_at"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "created_at"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "deleted_at"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "_external_station_id"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
end
|
|
102
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#RadioManager
|
|
3
|
+
|
|
4
|
+
#RadioManager
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
Contact: support@pluxbox.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RadioManagerClient::StationResult
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'StationResult' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = RadioManagerClient::StationResult.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of StationResult' do
|
|
31
|
+
it 'should create an instance of StationResult' do
|
|
32
|
+
expect(@instance).to be_instance_of(RadioManagerClient::StationResult)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "station"' 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
|
+
end
|
|
42
|
+
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#RadioManager
|
|
3
|
+
|
|
4
|
+
#RadioManager
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0
|
|
7
|
+
Contact: support@pluxbox.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.2.3
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RadioManagerClient::StationResultStation
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'StationResultStation' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = RadioManagerClient::StationResultStation.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of StationResultStation' do
|
|
31
|
+
it 'should create an instance of StationResultStation' do
|
|
32
|
+
expect(@instance).to be_instance_of(RadioManagerClient::StationResultStation)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "id"' 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 "name"' 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 "created_at"' 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 "updated_at"' 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
|
+
describe 'test attribute "system_name"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "short_name"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "medium_name"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "website"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "email"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "keywords"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "description"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
describe 'test attribute "sms"' do
|
|
102
|
+
it 'should work' do
|
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
describe 'test attribute "telephone"' do
|
|
108
|
+
it 'should work' do
|
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
110
|
+
end
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
describe 'test attribute "genre_id"' do
|
|
114
|
+
it 'should work' do
|
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
describe 'test attribute "language"' do
|
|
120
|
+
it 'should work' do
|
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
describe 'test attribute "active"' do
|
|
126
|
+
it 'should work' do
|
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
describe 'test attribute "logo_rectangle"' do
|
|
132
|
+
it 'should work' do
|
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
134
|
+
end
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
describe 'test attribute "logo_128x128"' do
|
|
138
|
+
it 'should work' do
|
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
describe 'test attribute "logo_320x320"' do
|
|
144
|
+
it 'should work' do
|
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
describe 'test attribute "logo_600x600"' do
|
|
150
|
+
it 'should work' do
|
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
152
|
+
end
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
describe 'test attribute "pay_off"' do
|
|
156
|
+
it 'should work' do
|
|
157
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
describe 'test attribute "pty_code"' do
|
|
162
|
+
it 'should work' do
|
|
163
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
describe 'test attribute "pty_type"' do
|
|
168
|
+
it 'should work' do
|
|
169
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
describe 'test attribute "station_key"' do
|
|
174
|
+
it 'should work' do
|
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
describe 'test attribute "trial_date"' do
|
|
180
|
+
it 'should work' do
|
|
181
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
end
|
|
186
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radiomanager_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.100
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pluxbox
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -213,6 +213,9 @@ files:
|
|
|
213
213
|
- docs/Broadcast.md
|
|
214
214
|
- docs/BroadcastApi.md
|
|
215
215
|
- docs/BroadcastDataInput.md
|
|
216
|
+
- docs/BroadcastEPGDay.md
|
|
217
|
+
- docs/BroadcastEPGRelations.md
|
|
218
|
+
- docs/BroadcastEPGResult.md
|
|
216
219
|
- docs/BroadcastFieldValues.md
|
|
217
220
|
- docs/BroadcastInputOnly.md
|
|
218
221
|
- docs/BroadcastOutputOnly.md
|
|
@@ -248,6 +251,7 @@ files:
|
|
|
248
251
|
- docs/Data.md
|
|
249
252
|
- docs/Data1.md
|
|
250
253
|
- docs/EPGBroadcast.md
|
|
254
|
+
- docs/EPGResults.md
|
|
251
255
|
- docs/ExternalMessageApi.md
|
|
252
256
|
- docs/ExternalMessageQueueData.md
|
|
253
257
|
- docs/Forbidden.md
|
|
@@ -299,6 +303,7 @@ files:
|
|
|
299
303
|
- docs/Presenter.md
|
|
300
304
|
- docs/PresenterApi.md
|
|
301
305
|
- docs/PresenterDataInput.md
|
|
306
|
+
- docs/PresenterEPGResult.md
|
|
302
307
|
- docs/PresenterOutputOnly.md
|
|
303
308
|
- docs/PresenterRelations.md
|
|
304
309
|
- docs/PresenterRelationsBroadcasts.md
|
|
@@ -323,6 +328,9 @@ files:
|
|
|
323
328
|
- docs/ProgramResults.md
|
|
324
329
|
- docs/ReadOnly.md
|
|
325
330
|
- docs/RelationsPlaceholder.md
|
|
331
|
+
- docs/StationApi.md
|
|
332
|
+
- docs/StationResult.md
|
|
333
|
+
- docs/StationResultStation.md
|
|
326
334
|
- docs/Story.md
|
|
327
335
|
- docs/StoryApi.md
|
|
328
336
|
- docs/StoryDataInput.md
|
|
@@ -369,6 +377,7 @@ files:
|
|
|
369
377
|
- lib/radiomanager_client/api/model_type_api.rb
|
|
370
378
|
- lib/radiomanager_client/api/presenter_api.rb
|
|
371
379
|
- lib/radiomanager_client/api/program_api.rb
|
|
380
|
+
- lib/radiomanager_client/api/station_api.rb
|
|
372
381
|
- lib/radiomanager_client/api/story_api.rb
|
|
373
382
|
- lib/radiomanager_client/api/string_api.rb
|
|
374
383
|
- lib/radiomanager_client/api/tag_api.rb
|
|
@@ -388,6 +397,9 @@ files:
|
|
|
388
397
|
- lib/radiomanager_client/models/block_results.rb
|
|
389
398
|
- lib/radiomanager_client/models/broadcast.rb
|
|
390
399
|
- lib/radiomanager_client/models/broadcast_data_input.rb
|
|
400
|
+
- lib/radiomanager_client/models/broadcast_epg_day.rb
|
|
401
|
+
- lib/radiomanager_client/models/broadcast_epg_relations.rb
|
|
402
|
+
- lib/radiomanager_client/models/broadcast_epg_result.rb
|
|
391
403
|
- lib/radiomanager_client/models/broadcast_field_values.rb
|
|
392
404
|
- lib/radiomanager_client/models/broadcast_input_only.rb
|
|
393
405
|
- lib/radiomanager_client/models/broadcast_output_only.rb
|
|
@@ -421,6 +433,7 @@ files:
|
|
|
421
433
|
- lib/radiomanager_client/models/data.rb
|
|
422
434
|
- lib/radiomanager_client/models/data_1.rb
|
|
423
435
|
- lib/radiomanager_client/models/epg_broadcast.rb
|
|
436
|
+
- lib/radiomanager_client/models/epg_results.rb
|
|
424
437
|
- lib/radiomanager_client/models/external_message_queue_data.rb
|
|
425
438
|
- lib/radiomanager_client/models/forbidden.rb
|
|
426
439
|
- lib/radiomanager_client/models/genre.rb
|
|
@@ -467,6 +480,7 @@ files:
|
|
|
467
480
|
- lib/radiomanager_client/models/post_success.rb
|
|
468
481
|
- lib/radiomanager_client/models/presenter.rb
|
|
469
482
|
- lib/radiomanager_client/models/presenter_data_input.rb
|
|
483
|
+
- lib/radiomanager_client/models/presenter_epg_result.rb
|
|
470
484
|
- lib/radiomanager_client/models/presenter_output_only.rb
|
|
471
485
|
- lib/radiomanager_client/models/presenter_relations.rb
|
|
472
486
|
- lib/radiomanager_client/models/presenter_relations_broadcasts.rb
|
|
@@ -490,6 +504,8 @@ files:
|
|
|
490
504
|
- lib/radiomanager_client/models/program_results.rb
|
|
491
505
|
- lib/radiomanager_client/models/read_only.rb
|
|
492
506
|
- lib/radiomanager_client/models/relations_placeholder.rb
|
|
507
|
+
- lib/radiomanager_client/models/station_result.rb
|
|
508
|
+
- lib/radiomanager_client/models/station_result_station.rb
|
|
493
509
|
- lib/radiomanager_client/models/story.rb
|
|
494
510
|
- lib/radiomanager_client/models/story_data_input.rb
|
|
495
511
|
- lib/radiomanager_client/models/story_input_only.rb
|
|
@@ -531,6 +547,7 @@ files:
|
|
|
531
547
|
- spec/api/model_type_api_spec.rb
|
|
532
548
|
- spec/api/presenter_api_spec.rb
|
|
533
549
|
- spec/api/program_api_spec.rb
|
|
550
|
+
- spec/api/station_api_spec.rb
|
|
534
551
|
- spec/api/story_api_spec.rb
|
|
535
552
|
- spec/api/string_api_spec.rb
|
|
536
553
|
- spec/api/tag_api_spec.rb
|
|
@@ -548,6 +565,9 @@ files:
|
|
|
548
565
|
- spec/models/block_results_spec.rb
|
|
549
566
|
- spec/models/block_spec.rb
|
|
550
567
|
- spec/models/broadcast_data_input_spec.rb
|
|
568
|
+
- spec/models/broadcast_epg_day_spec.rb
|
|
569
|
+
- spec/models/broadcast_epg_relations_spec.rb
|
|
570
|
+
- spec/models/broadcast_epg_result_spec.rb
|
|
551
571
|
- spec/models/broadcast_field_values_spec.rb
|
|
552
572
|
- spec/models/broadcast_input_only_spec.rb
|
|
553
573
|
- spec/models/broadcast_output_only_spec.rb
|
|
@@ -582,6 +602,7 @@ files:
|
|
|
582
602
|
- spec/models/data_1_spec.rb
|
|
583
603
|
- spec/models/data_spec.rb
|
|
584
604
|
- spec/models/epg_broadcast_spec.rb
|
|
605
|
+
- spec/models/epg_results_spec.rb
|
|
585
606
|
- spec/models/external_message_queue_data_spec.rb
|
|
586
607
|
- spec/models/forbidden_spec.rb
|
|
587
608
|
- spec/models/genre_output_only_spec.rb
|
|
@@ -627,6 +648,7 @@ files:
|
|
|
627
648
|
- spec/models/not_found_spec.rb
|
|
628
649
|
- spec/models/post_success_spec.rb
|
|
629
650
|
- spec/models/presenter_data_input_spec.rb
|
|
651
|
+
- spec/models/presenter_epg_result_spec.rb
|
|
630
652
|
- spec/models/presenter_output_only_spec.rb
|
|
631
653
|
- spec/models/presenter_relations_broadcasts_spec.rb
|
|
632
654
|
- spec/models/presenter_relations_programs_params_spec.rb
|
|
@@ -651,6 +673,8 @@ files:
|
|
|
651
673
|
- spec/models/program_spec.rb
|
|
652
674
|
- spec/models/read_only_spec.rb
|
|
653
675
|
- spec/models/relations_placeholder_spec.rb
|
|
676
|
+
- spec/models/station_result_spec.rb
|
|
677
|
+
- spec/models/station_result_station_spec.rb
|
|
654
678
|
- spec/models/story_data_input_spec.rb
|
|
655
679
|
- spec/models/story_input_only_spec.rb
|
|
656
680
|
- spec/models/story_output_only_spec.rb
|
|
@@ -714,6 +738,7 @@ test_files:
|
|
|
714
738
|
- spec/api/block_api_spec.rb
|
|
715
739
|
- spec/api/string_api_spec.rb
|
|
716
740
|
- spec/api/tag_api_spec.rb
|
|
741
|
+
- spec/api/station_api_spec.rb
|
|
717
742
|
- spec/api/broadcast_api_spec.rb
|
|
718
743
|
- spec/api/contact_api_spec.rb
|
|
719
744
|
- spec/api/item_api_spec.rb
|
|
@@ -742,9 +767,12 @@ test_files:
|
|
|
742
767
|
- spec/models/tag_results_spec.rb
|
|
743
768
|
- spec/models/story_relations_spec.rb
|
|
744
769
|
- spec/models/model_type_relations_contacts_spec.rb
|
|
770
|
+
- spec/models/epg_results_spec.rb
|
|
745
771
|
- spec/models/broadcast_spec.rb
|
|
746
772
|
- spec/models/story_result_spec.rb
|
|
773
|
+
- spec/models/broadcast_epg_day_spec.rb
|
|
747
774
|
- spec/models/campaign_result_spec.rb
|
|
775
|
+
- spec/models/station_result_spec.rb
|
|
748
776
|
- spec/models/model_type_relations_campaigns_spec.rb
|
|
749
777
|
- spec/models/genre_relations_programs_spec.rb
|
|
750
778
|
- spec/models/block_relations_items_spec.rb
|
|
@@ -761,6 +789,7 @@ test_files:
|
|
|
761
789
|
- spec/models/broadcast_relations_presenters_spec.rb
|
|
762
790
|
- spec/models/import_item_field_values_spec.rb
|
|
763
791
|
- spec/models/campaign_relations_items_spec.rb
|
|
792
|
+
- spec/models/broadcast_epg_result_spec.rb
|
|
764
793
|
- spec/models/contact_field_values_spec.rb
|
|
765
794
|
- spec/models/broadcast_data_input_spec.rb
|
|
766
795
|
- spec/models/campaign_data_input_spec.rb
|
|
@@ -789,6 +818,7 @@ test_files:
|
|
|
789
818
|
- spec/models/tag_relations_spec.rb
|
|
790
819
|
- spec/models/block_relations_spec.rb
|
|
791
820
|
- spec/models/broadcast_relations_model_type_spec.rb
|
|
821
|
+
- spec/models/station_result_station_spec.rb
|
|
792
822
|
- spec/models/campaign_spec.rb
|
|
793
823
|
- spec/models/campaign_relations_items_params_spec.rb
|
|
794
824
|
- spec/models/invite_user_data_spec.rb
|
|
@@ -828,12 +858,14 @@ test_files:
|
|
|
828
858
|
- spec/models/presenter_relations_programs_params_spec.rb
|
|
829
859
|
- spec/models/visual_result_spec.rb
|
|
830
860
|
- spec/models/external_message_queue_data_spec.rb
|
|
861
|
+
- spec/models/broadcast_epg_relations_spec.rb
|
|
831
862
|
- spec/models/contact_data_input_spec.rb
|
|
832
863
|
- spec/models/tag_output_only_spec.rb
|
|
833
864
|
- spec/models/broadcast_input_only_spec.rb
|
|
834
865
|
- spec/models/data_spec.rb
|
|
835
866
|
- spec/models/item_result_spec.rb
|
|
836
867
|
- spec/models/contact_relations_tags_spec.rb
|
|
868
|
+
- spec/models/presenter_epg_result_spec.rb
|
|
837
869
|
- spec/models/block_result_spec.rb
|
|
838
870
|
- spec/models/text_string_spec.rb
|
|
839
871
|
- spec/models/model_type_relations_programs_spec.rb
|