notifo-io 1.0.0.1 → 1.0.0.2

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.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -7
  3. data/docs/{AddAllowedTopicRequest.md → AddAllowedTopicDto.md} +2 -2
  4. data/docs/AppDetailsDto.md +2 -2
  5. data/docs/AppDto.md +1 -1
  6. data/docs/EventDto.md +5 -5
  7. data/docs/EventsApi.md +6 -6
  8. data/docs/MediaApi.md +2 -2
  9. data/docs/MediaDto.md +2 -2
  10. data/docs/NotificationFormattingDto.md +8 -8
  11. data/docs/NotificationSend.md +15 -0
  12. data/docs/NotificationSettingDto.md +1 -1
  13. data/docs/ProfileDto.md +32 -0
  14. data/docs/{PublishRequestDto.md → PublishDto.md} +5 -5
  15. data/docs/PublishManyDto.md +18 -0
  16. data/docs/SchedulingDto.md +2 -2
  17. data/docs/SubscriptionDto.md +1 -1
  18. data/docs/TemplateDto.md +2 -2
  19. data/docs/TopicDto.md +1 -1
  20. data/docs/TopicsApi.md +0 -192
  21. data/docs/UpdateProfileDto.md +28 -0
  22. data/docs/UpsertTemplateDto.md +2 -2
  23. data/docs/UpsertUserDto.md +1 -1
  24. data/docs/UserApi.md +323 -0
  25. data/docs/UserDto.md +2 -2
  26. data/docs/UsersApi.md +12 -12
  27. data/lib/notifo.rb +7 -4
  28. data/lib/notifo/api/events_api.rb +9 -9
  29. data/lib/notifo/api/media_api.rb +2 -2
  30. data/lib/notifo/api/topics_api.rb +0 -189
  31. data/lib/notifo/api/user_api.rb +331 -0
  32. data/lib/notifo/api/users_api.rb +18 -18
  33. data/lib/notifo/models/{add_allowed_topic_request.rb → add_allowed_topic_dto.rb} +3 -3
  34. data/lib/notifo/models/app_details_dto.rb +5 -4
  35. data/lib/notifo/models/app_dto.rb +4 -2
  36. data/lib/notifo/models/event_dto.rb +14 -11
  37. data/lib/notifo/models/media_dto.rb +5 -5
  38. data/lib/notifo/models/notification_formatting_dto.rb +29 -29
  39. data/lib/notifo/models/notification_send.rb +39 -0
  40. data/lib/notifo/models/notification_setting_dto.rb +1 -3
  41. data/lib/notifo/models/profile_dto.rb +295 -0
  42. data/lib/notifo/models/{publish_request_dto.rb → publish_dto.rb} +10 -11
  43. data/lib/notifo/models/{publish_many_request_dto.rb → publish_many_dto.rb} +4 -4
  44. data/lib/notifo/models/scheduling_dto.rb +2 -5
  45. data/lib/notifo/models/subscription_dto.rb +5 -2
  46. data/lib/notifo/models/template_dto.rb +5 -4
  47. data/lib/notifo/models/topic_dto.rb +4 -2
  48. data/lib/notifo/models/{subscribe_dto.rb → update_profile_dto.rb} +65 -17
  49. data/lib/notifo/models/upsert_template_dto.rb +5 -4
  50. data/lib/notifo/models/upsert_user_dto.rb +4 -2
  51. data/lib/notifo/models/user_dto.rb +8 -4
  52. data/notifo-1.0.0.gem +0 -0
  53. data/notifo-io-1.0.0.gem +0 -0
  54. data/notifo.gemspec +5 -5
  55. data/spec/api/events_api_spec.rb +1 -1
  56. data/spec/api/media_api_spec.rb +1 -1
  57. data/spec/api/topics_api_spec.rb +0 -36
  58. data/spec/api/user_api_spec.rb +92 -0
  59. data/spec/api/users_api_spec.rb +2 -2
  60. data/spec/models/{add_allowed_topic_request_spec.rb → add_allowed_topic_dto_spec.rb} +6 -6
  61. data/spec/models/notification_send_spec.rb +28 -0
  62. data/spec/models/profile_dto_spec.rb +76 -0
  63. data/spec/models/{publish_request_dto_spec.rb → publish_dto_spec.rb} +6 -6
  64. data/spec/models/{publish_many_request_dto_spec.rb → publish_many_dto_spec.rb} +6 -6
  65. data/spec/models/update_profile_dto_spec.rb +64 -0
  66. metadata +35 -25
  67. data/docs/PublishManyRequestDto.md +0 -18
  68. data/docs/SubscribeDto.md +0 -20
  69. data/notifo-io-1.0.0.pre.beta.gem +0 -0
  70. data/notifo-io-1.0.0.pre.gem +0 -0
  71. data/spec/models/subscribe_dto_spec.rb +0 -40
@@ -115,7 +115,7 @@ describe 'UsersApi' do
115
115
  # Add an allowed topic.
116
116
  # @param app_id The app where the users belong to.
117
117
  # @param id The user id.
118
- # @param add_allowed_topic_request The upsert request.
118
+ # @param add_allowed_topic_dto The upsert request.
119
119
  # @param [Hash] opts the optional parameters
120
120
  # @return [nil]
121
121
  describe 'users_post_allowed_topic test' do
@@ -128,7 +128,7 @@ describe 'UsersApi' do
128
128
  # Upsert a user subscriptions.
129
129
  # @param app_id The app where the user belongs to.
130
130
  # @param id The user id.
131
- # @param subscribe_dto The subscription object.
131
+ # @param subscription_dto The subscription object.
132
132
  # @param [Hash] opts the optional parameters
133
133
  # @return [nil]
134
134
  describe 'users_post_subscription test' do
@@ -14,15 +14,15 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for Notifo::AddAllowedTopicRequest
17
+ # Unit tests for Notifo::AddAllowedTopicDto
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe Notifo::AddAllowedTopicRequest do
21
- let(:instance) { Notifo::AddAllowedTopicRequest.new }
20
+ describe Notifo::AddAllowedTopicDto do
21
+ let(:instance) { Notifo::AddAllowedTopicDto.new }
22
22
 
23
- describe 'test an instance of AddAllowedTopicRequest' do
24
- it 'should create an instance of AddAllowedTopicRequest' do
25
- expect(instance).to be_instance_of(Notifo::AddAllowedTopicRequest)
23
+ describe 'test an instance of AddAllowedTopicDto' do
24
+ it 'should create an instance of AddAllowedTopicDto' do
25
+ expect(instance).to be_instance_of(Notifo::AddAllowedTopicDto)
26
26
  end
27
27
  end
28
28
  describe 'test attribute "prefix"' do
@@ -0,0 +1,28 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Notifo::NotificationSend
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Notifo::NotificationSend do
21
+ let(:instance) { Notifo::NotificationSend.new }
22
+
23
+ describe 'test an instance of NotificationSend' do
24
+ it 'should create an instance of NotificationSend' do
25
+ expect(instance).to be_instance_of(Notifo::NotificationSend)
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,76 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Notifo::ProfileDto
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Notifo::ProfileDto do
21
+ let(:instance) { Notifo::ProfileDto.new }
22
+
23
+ describe 'test an instance of ProfileDto' do
24
+ it 'should create an instance of ProfileDto' do
25
+ expect(instance).to be_instance_of(Notifo::ProfileDto)
26
+ end
27
+ end
28
+ describe 'test attribute "full_name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "email_address"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "phone_number"' 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
+ describe 'test attribute "preferred_language"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "preferred_timezone"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "supported_languages"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "supported_timezones"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "settings"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ end
@@ -14,15 +14,15 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for Notifo::PublishRequestDto
17
+ # Unit tests for Notifo::PublishDto
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe Notifo::PublishRequestDto do
21
- let(:instance) { Notifo::PublishRequestDto.new }
20
+ describe Notifo::PublishDto do
21
+ let(:instance) { Notifo::PublishDto.new }
22
22
 
23
- describe 'test an instance of PublishRequestDto' do
24
- it 'should create an instance of PublishRequestDto' do
25
- expect(instance).to be_instance_of(Notifo::PublishRequestDto)
23
+ describe 'test an instance of PublishDto' do
24
+ it 'should create an instance of PublishDto' do
25
+ expect(instance).to be_instance_of(Notifo::PublishDto)
26
26
  end
27
27
  end
28
28
  describe 'test attribute "topic"' do
@@ -14,15 +14,15 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for Notifo::PublishManyRequestDto
17
+ # Unit tests for Notifo::PublishManyDto
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe Notifo::PublishManyRequestDto do
21
- let(:instance) { Notifo::PublishManyRequestDto.new }
20
+ describe Notifo::PublishManyDto do
21
+ let(:instance) { Notifo::PublishManyDto.new }
22
22
 
23
- describe 'test an instance of PublishManyRequestDto' do
24
- it 'should create an instance of PublishManyRequestDto' do
25
- expect(instance).to be_instance_of(Notifo::PublishManyRequestDto)
23
+ describe 'test an instance of PublishManyDto' do
24
+ it 'should create an instance of PublishManyDto' do
25
+ expect(instance).to be_instance_of(Notifo::PublishManyDto)
26
26
  end
27
27
  end
28
28
  describe 'test attribute "requests"' do
@@ -0,0 +1,64 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Notifo::UpdateProfileDto
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Notifo::UpdateProfileDto do
21
+ let(:instance) { Notifo::UpdateProfileDto.new }
22
+
23
+ describe 'test an instance of UpdateProfileDto' do
24
+ it 'should create an instance of UpdateProfileDto' do
25
+ expect(instance).to be_instance_of(Notifo::UpdateProfileDto)
26
+ end
27
+ end
28
+ describe 'test attribute "full_name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "email_address"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "phone_number"' 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
+ describe 'test attribute "preferred_language"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "preferred_timezone"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "settings"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notifo-io
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.1
4
+ version: 1.0.0.2
5
5
  platform: ruby
6
6
  authors:
7
- - Sebastian Stehle
7
+ - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-04 00:00:00.000000000 Z
11
+ date: 2021-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -50,8 +50,7 @@ dependencies:
50
50
  - - "~>"
51
51
  - !ruby/object:Gem::Version
52
52
  version: '3.6'
53
- description: Notifo is a multi-channel notification service for collaboration tools,
54
- e-commerce, news, magazines and everybody who wants to notify their users.
53
+ description: No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
54
  email:
56
55
  - ''
57
56
  executables: []
@@ -61,7 +60,7 @@ files:
61
60
  - Gemfile
62
61
  - README.md
63
62
  - Rakefile
64
- - docs/AddAllowedTopicRequest.md
63
+ - docs/AddAllowedTopicDto.md
65
64
  - docs/AddContributorDto.md
66
65
  - docs/AppContributorDto.md
67
66
  - docs/AppDetailsDto.md
@@ -90,23 +89,26 @@ files:
90
89
  - docs/MediaDto.md
91
90
  - docs/MediaType.md
92
91
  - docs/NotificationFormattingDto.md
92
+ - docs/NotificationSend.md
93
93
  - docs/NotificationSettingDto.md
94
- - docs/PublishManyRequestDto.md
95
- - docs/PublishRequestDto.md
94
+ - docs/ProfileDto.md
95
+ - docs/PublishDto.md
96
+ - docs/PublishManyDto.md
96
97
  - docs/ResizeMode.md
97
98
  - docs/SchedulingDto.md
98
99
  - docs/SchedulingType.md
99
- - docs/SubscribeDto.md
100
100
  - docs/SubscriptionDto.md
101
101
  - docs/TemplateDto.md
102
102
  - docs/TemplatesApi.md
103
103
  - docs/TopicDto.md
104
104
  - docs/TopicsApi.md
105
+ - docs/UpdateProfileDto.md
105
106
  - docs/UpsertAppDto.md
106
107
  - docs/UpsertTemplateDto.md
107
108
  - docs/UpsertTemplatesDto.md
108
109
  - docs/UpsertUserDto.md
109
110
  - docs/UpsertUsersDto.md
111
+ - docs/UserApi.md
110
112
  - docs/UserDto.md
111
113
  - docs/UsersApi.md
112
114
  - git_push.sh
@@ -118,11 +120,12 @@ files:
118
120
  - lib/notifo/api/media_api.rb
119
121
  - lib/notifo/api/templates_api.rb
120
122
  - lib/notifo/api/topics_api.rb
123
+ - lib/notifo/api/user_api.rb
121
124
  - lib/notifo/api/users_api.rb
122
125
  - lib/notifo/api_client.rb
123
126
  - lib/notifo/api_error.rb
124
127
  - lib/notifo/configuration.rb
125
- - lib/notifo/models/add_allowed_topic_request.rb
128
+ - lib/notifo/models/add_allowed_topic_dto.rb
126
129
  - lib/notifo/models/add_contributor_dto.rb
127
130
  - lib/notifo/models/app_contributor_dto.rb
128
131
  - lib/notifo/models/app_details_dto.rb
@@ -146,16 +149,18 @@ files:
146
149
  - lib/notifo/models/media_dto.rb
147
150
  - lib/notifo/models/media_type.rb
148
151
  - lib/notifo/models/notification_formatting_dto.rb
152
+ - lib/notifo/models/notification_send.rb
149
153
  - lib/notifo/models/notification_setting_dto.rb
150
- - lib/notifo/models/publish_many_request_dto.rb
151
- - lib/notifo/models/publish_request_dto.rb
154
+ - lib/notifo/models/profile_dto.rb
155
+ - lib/notifo/models/publish_dto.rb
156
+ - lib/notifo/models/publish_many_dto.rb
152
157
  - lib/notifo/models/resize_mode.rb
153
158
  - lib/notifo/models/scheduling_dto.rb
154
159
  - lib/notifo/models/scheduling_type.rb
155
- - lib/notifo/models/subscribe_dto.rb
156
160
  - lib/notifo/models/subscription_dto.rb
157
161
  - lib/notifo/models/template_dto.rb
158
162
  - lib/notifo/models/topic_dto.rb
163
+ - lib/notifo/models/update_profile_dto.rb
159
164
  - lib/notifo/models/upsert_app_dto.rb
160
165
  - lib/notifo/models/upsert_template_dto.rb
161
166
  - lib/notifo/models/upsert_templates_dto.rb
@@ -163,9 +168,8 @@ files:
163
168
  - lib/notifo/models/upsert_users_dto.rb
164
169
  - lib/notifo/models/user_dto.rb
165
170
  - lib/notifo/version.rb
171
+ - notifo-1.0.0.gem
166
172
  - notifo-io-1.0.0.gem
167
- - notifo-io-1.0.0.pre.beta.gem
168
- - notifo-io-1.0.0.pre.gem
169
173
  - notifo.gemspec
170
174
  - spec/api/apps_api_spec.rb
171
175
  - spec/api/configs_api_spec.rb
@@ -174,10 +178,11 @@ files:
174
178
  - spec/api/media_api_spec.rb
175
179
  - spec/api/templates_api_spec.rb
176
180
  - spec/api/topics_api_spec.rb
181
+ - spec/api/user_api_spec.rb
177
182
  - spec/api/users_api_spec.rb
178
183
  - spec/api_client_spec.rb
179
184
  - spec/configuration_spec.rb
180
- - spec/models/add_allowed_topic_request_spec.rb
185
+ - spec/models/add_allowed_topic_dto_spec.rb
181
186
  - spec/models/add_contributor_dto_spec.rb
182
187
  - spec/models/app_contributor_dto_spec.rb
183
188
  - spec/models/app_details_dto_spec.rb
@@ -201,16 +206,18 @@ files:
201
206
  - spec/models/media_dto_spec.rb
202
207
  - spec/models/media_type_spec.rb
203
208
  - spec/models/notification_formatting_dto_spec.rb
209
+ - spec/models/notification_send_spec.rb
204
210
  - spec/models/notification_setting_dto_spec.rb
205
- - spec/models/publish_many_request_dto_spec.rb
206
- - spec/models/publish_request_dto_spec.rb
211
+ - spec/models/profile_dto_spec.rb
212
+ - spec/models/publish_dto_spec.rb
213
+ - spec/models/publish_many_dto_spec.rb
207
214
  - spec/models/resize_mode_spec.rb
208
215
  - spec/models/scheduling_dto_spec.rb
209
216
  - spec/models/scheduling_type_spec.rb
210
- - spec/models/subscribe_dto_spec.rb
211
217
  - spec/models/subscription_dto_spec.rb
212
218
  - spec/models/template_dto_spec.rb
213
219
  - spec/models/topic_dto_spec.rb
220
+ - spec/models/update_profile_dto_spec.rb
214
221
  - spec/models/upsert_app_dto_spec.rb
215
222
  - spec/models/upsert_template_dto_spec.rb
216
223
  - spec/models/upsert_templates_dto_spec.rb
@@ -218,7 +225,7 @@ files:
218
225
  - spec/models/upsert_users_dto_spec.rb
219
226
  - spec/models/user_dto_spec.rb
220
227
  - spec/spec_helper.rb
221
- homepage: http://notio.io
228
+ homepage: https://openapi-generator.tech
222
229
  licenses:
223
230
  - Unlicense
224
231
  metadata: {}
@@ -237,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
237
244
  - !ruby/object:Gem::Version
238
245
  version: '0'
239
246
  requirements: []
240
- rubygems_version: 3.0.6
247
+ rubygems_version: 3.0.9
241
248
  signing_key:
242
249
  specification_version: 4
243
250
  summary: Notifo API Ruby Gem
@@ -246,6 +253,7 @@ test_files:
246
253
  - spec/api/media_api_spec.rb
247
254
  - spec/api/topics_api_spec.rb
248
255
  - spec/api/apps_api_spec.rb
256
+ - spec/api/user_api_spec.rb
249
257
  - spec/api/users_api_spec.rb
250
258
  - spec/api/events_api_spec.rb
251
259
  - spec/api/configs_api_spec.rb
@@ -254,40 +262,42 @@ test_files:
254
262
  - spec/configuration_spec.rb
255
263
  - spec/models/user_dto_spec.rb
256
264
  - spec/models/email_template_dto_spec.rb
257
- - spec/models/add_allowed_topic_request_spec.rb
258
265
  - spec/models/error_dto_spec.rb
259
266
  - spec/models/email_verification_status_spec.rb
260
267
  - spec/models/create_email_template_dto_spec.rb
261
268
  - spec/models/app_dto_spec.rb
262
269
  - spec/models/template_dto_spec.rb
270
+ - spec/models/profile_dto_spec.rb
263
271
  - spec/models/upsert_user_dto_spec.rb
264
272
  - spec/models/upsert_templates_dto_spec.rb
265
273
  - spec/models/list_response_dto_of_media_dto_spec.rb
266
274
  - spec/models/list_response_dto_of_subscription_dto_spec.rb
267
275
  - spec/models/add_contributor_dto_spec.rb
276
+ - spec/models/update_profile_dto_spec.rb
268
277
  - spec/models/topic_dto_spec.rb
269
278
  - spec/models/inline_object_spec.rb
270
279
  - spec/models/upsert_users_dto_spec.rb
271
- - spec/models/publish_request_dto_spec.rb
272
280
  - spec/models/resize_mode_spec.rb
273
281
  - spec/models/scheduling_type_spec.rb
274
282
  - spec/models/log_entry_dto_spec.rb
275
283
  - spec/models/list_response_dto_of_event_dto_spec.rb
276
284
  - spec/models/app_details_dto_spec.rb
277
285
  - spec/models/list_response_dto_of_log_entry_dto_spec.rb
278
- - spec/models/publish_many_request_dto_spec.rb
279
286
  - spec/models/scheduling_dto_spec.rb
287
+ - spec/models/publish_many_dto_spec.rb
288
+ - spec/models/add_allowed_topic_dto_spec.rb
280
289
  - spec/models/upsert_template_dto_spec.rb
281
290
  - spec/models/confirm_mode_spec.rb
282
291
  - spec/models/media_dto_spec.rb
292
+ - spec/models/notification_send_spec.rb
283
293
  - spec/models/notification_setting_dto_spec.rb
284
294
  - spec/models/notification_formatting_dto_spec.rb
285
- - spec/models/subscribe_dto_spec.rb
286
295
  - spec/models/list_response_dto_of_topic_dto_spec.rb
287
296
  - spec/models/subscription_dto_spec.rb
288
297
  - spec/models/media_type_spec.rb
289
298
  - spec/models/iso_day_of_week_spec.rb
290
299
  - spec/models/app_contributor_dto_spec.rb
300
+ - spec/models/publish_dto_spec.rb
291
301
  - spec/models/event_dto_spec.rb
292
302
  - spec/models/upsert_app_dto_spec.rb
293
303
  - spec/models/list_response_dto_of_template_dto_spec.rb