notifo-io 1.0.1.1 → 1.0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +205 -4
  3. data/docs/AppDetailsDto.md +0 -8
  4. data/docs/AppIdMediaBody.md +7 -0
  5. data/docs/AppsApi.md +188 -2
  6. data/docs/AuthorizationApi.md +121 -0
  7. data/docs/ConfigsApi.md +1 -1
  8. data/docs/ConfiguredIntegrationDto.md +12 -0
  9. data/docs/ConfiguredIntegrationsDto.md +8 -0
  10. data/docs/CreateIntegrationDto.md +11 -0
  11. data/docs/EventDto.md +1 -0
  12. data/docs/EventsApi.md +45 -1
  13. data/docs/IntegrationCreatedDto.md +8 -0
  14. data/docs/IntegrationDefinitionDto.md +11 -0
  15. data/docs/IntegrationProperties.md +6 -0
  16. data/docs/IntegrationPropertyDto.md +17 -0
  17. data/docs/IntegrationPropertyType.md +6 -0
  18. data/docs/IntegrationStatus.md +6 -0
  19. data/docs/ListResponseDtoOfMobilePushTokenDto.md +8 -0
  20. data/docs/ListResponseDtoOfNotificationDto.md +8 -0
  21. data/docs/LogsApi.md +1 -1
  22. data/docs/MediaApi.md +1 -1
  23. data/docs/MobileDeviceType.md +6 -0
  24. data/docs/MobilePushApi.md +135 -0
  25. data/docs/MobilePushTokenDto.md +8 -0
  26. data/docs/NotificationDto.md +21 -0
  27. data/docs/NotificationsApi.md +141 -0
  28. data/docs/PublishDto.md +2 -0
  29. data/docs/RegisterMobileTokenDto.md +8 -0
  30. data/docs/TemplatesApi.md +1 -1
  31. data/docs/TopicsApi.md +1 -1
  32. data/docs/TrackNotificationDto.md +10 -0
  33. data/docs/UpdateIntegrationDto.md +10 -0
  34. data/docs/UpsertUserDto.md +1 -0
  35. data/docs/UserApi.md +1 -1
  36. data/docs/UserDto.md +3 -0
  37. data/docs/UserInfoApi.md +83 -0
  38. data/docs/UsersApi.md +1 -1
  39. data/lib/notifo.rb +23 -3
  40. data/lib/notifo/api/apps_api.rb +246 -2
  41. data/lib/notifo/api/authorization_api.rb +158 -0
  42. data/lib/notifo/api/configs_api.rb +1 -1
  43. data/lib/notifo/api/events_api.rb +57 -1
  44. data/lib/notifo/api/logs_api.rb +1 -1
  45. data/lib/notifo/api/media_api.rb +1 -1
  46. data/lib/notifo/api/mobile_push_api.rb +178 -0
  47. data/lib/notifo/api/notifications_api.rb +181 -0
  48. data/lib/notifo/api/templates_api.rb +1 -1
  49. data/lib/notifo/api/topics_api.rb +1 -1
  50. data/lib/notifo/api/user_api.rb +1 -1
  51. data/lib/notifo/api/user_info_api.rb +112 -0
  52. data/lib/notifo/api/users_api.rb +1 -1
  53. data/lib/notifo/api_client.rb +1 -1
  54. data/lib/notifo/api_error.rb +1 -1
  55. data/lib/notifo/configuration.rb +3 -3
  56. data/lib/notifo/models/add_allowed_topic_dto.rb +1 -1
  57. data/lib/notifo/models/add_contributor_dto.rb +1 -1
  58. data/lib/notifo/models/app_contributor_dto.rb +1 -1
  59. data/lib/notifo/models/app_details_dto.rb +3 -96
  60. data/lib/notifo/models/app_dto.rb +1 -1
  61. data/lib/notifo/models/app_id_media_body.rb +207 -0
  62. data/lib/notifo/models/configured_integration_dto.rb +271 -0
  63. data/lib/notifo/models/configured_integrations_dto.rb +231 -0
  64. data/lib/notifo/models/confirm_mode.rb +1 -1
  65. data/lib/notifo/models/create_email_template_dto.rb +1 -1
  66. data/lib/notifo/models/create_integration_dto.rb +257 -0
  67. data/lib/notifo/models/email_template_dto.rb +2 -1
  68. data/lib/notifo/models/email_templates_dto.rb +1 -1
  69. data/lib/notifo/models/error_dto.rb +5 -1
  70. data/lib/notifo/models/event_dto.rb +18 -5
  71. data/lib/notifo/models/event_properties.rb +1 -1
  72. data/lib/notifo/models/integration_created_dto.rb +226 -0
  73. data/lib/notifo/models/integration_definition_dto.rb +272 -0
  74. data/lib/notifo/models/integration_properties.rb +201 -0
  75. data/lib/notifo/models/integration_property_dto.rb +319 -0
  76. data/lib/notifo/models/integration_property_type.rb +31 -0
  77. data/lib/notifo/models/integration_status.rb +29 -0
  78. data/lib/notifo/models/iso_day_of_week.rb +1 -1
  79. data/lib/notifo/models/list_response_dto_of_event_dto.rb +1 -1
  80. data/lib/notifo/models/list_response_dto_of_log_entry_dto.rb +1 -1
  81. data/lib/notifo/models/list_response_dto_of_media_dto.rb +1 -1
  82. data/lib/notifo/models/list_response_dto_of_mobile_push_token_dto.rb +229 -0
  83. data/lib/notifo/models/list_response_dto_of_notification_dto.rb +229 -0
  84. data/lib/notifo/models/list_response_dto_of_subscription_dto.rb +1 -1
  85. data/lib/notifo/models/list_response_dto_of_template_dto.rb +1 -1
  86. data/lib/notifo/models/list_response_dto_of_topic_dto.rb +1 -1
  87. data/lib/notifo/models/list_response_dto_of_user_dto.rb +1 -1
  88. data/lib/notifo/models/localized_text.rb +1 -1
  89. data/lib/notifo/models/log_entry_dto.rb +1 -1
  90. data/lib/notifo/models/media_dto.rb +1 -1
  91. data/lib/notifo/models/media_metadata.rb +1 -1
  92. data/lib/notifo/models/media_type.rb +1 -1
  93. data/lib/notifo/models/mobile_device_type.rb +29 -0
  94. data/lib/notifo/models/mobile_push_token_dto.rb +221 -0
  95. data/lib/notifo/models/notification_dto.rb +386 -0
  96. data/lib/notifo/models/notification_formatting_dto.rb +1 -1
  97. data/lib/notifo/models/notification_send.rb +1 -1
  98. data/lib/notifo/models/notification_setting_dto.rb +2 -1
  99. data/lib/notifo/models/profile_dto.rb +4 -1
  100. data/lib/notifo/models/publish_dto.rb +30 -5
  101. data/lib/notifo/models/publish_many_dto.rb +1 -1
  102. data/lib/notifo/models/register_mobile_token_dto.rb +221 -0
  103. data/lib/notifo/models/resize_mode.rb +1 -1
  104. data/lib/notifo/models/scheduling_dto.rb +2 -1
  105. data/lib/notifo/models/scheduling_type.rb +1 -1
  106. data/lib/notifo/models/subscription_dto.rb +2 -1
  107. data/lib/notifo/models/template_dto.rb +1 -1
  108. data/lib/notifo/models/topic_dto.rb +1 -1
  109. data/lib/notifo/models/track_notification_dto.rb +243 -0
  110. data/lib/notifo/models/update_integration_dto.rb +242 -0
  111. data/lib/notifo/models/update_profile_dto.rb +7 -1
  112. data/lib/notifo/models/upsert_app_dto.rb +11 -1
  113. data/lib/notifo/models/upsert_template_dto.rb +2 -1
  114. data/lib/notifo/models/upsert_templates_dto.rb +1 -1
  115. data/lib/notifo/models/upsert_user_dto.rb +21 -2
  116. data/lib/notifo/models/upsert_users_dto.rb +1 -1
  117. data/lib/notifo/models/user_dto.rb +48 -2
  118. data/lib/notifo/version.rb +1 -1
  119. data/notifo-io-1.0.1.1.gem +0 -0
  120. data/notifo.gemspec +2 -2
  121. data/spec/api/authorization_api_spec.rb +61 -0
  122. data/spec/api/mobile_push_api_spec.rb +66 -0
  123. data/spec/api/notifications_api_spec.rb +68 -0
  124. data/spec/api/user_info_api_spec.rb +52 -0
  125. data/spec/models/app_id_media_body_spec.rb +40 -0
  126. data/spec/models/configured_integration_dto_spec.rb +70 -0
  127. data/spec/models/configured_integrations_dto_spec.rb +46 -0
  128. data/spec/models/create_integration_dto_spec.rb +64 -0
  129. data/spec/models/integration_created_dto_spec.rb +46 -0
  130. data/spec/models/integration_definition_dto_spec.rb +64 -0
  131. data/spec/models/integration_properties_spec.rb +34 -0
  132. data/spec/models/integration_property_dto_spec.rb +100 -0
  133. data/spec/models/integration_property_type_spec.rb +34 -0
  134. data/spec/models/integration_status_spec.rb +34 -0
  135. data/spec/models/list_response_dto_of_mobile_push_token_dto_spec.rb +46 -0
  136. data/spec/models/list_response_dto_of_notification_dto_spec.rb +46 -0
  137. data/spec/models/mobile_device_type_spec.rb +34 -0
  138. data/spec/models/mobile_push_token_dto_spec.rb +46 -0
  139. data/spec/models/notification_dto_spec.rb +124 -0
  140. data/spec/models/register_mobile_token_dto_spec.rb +46 -0
  141. data/spec/models/track_notification_dto_spec.rb +58 -0
  142. data/spec/models/update_integration_dto_spec.rb +58 -0
  143. metadata +91 -2
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.26
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+ require 'date'
15
+
16
+ # Unit tests for Notifo::MobilePushTokenDto
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'MobilePushTokenDto' do
20
+ before do
21
+ # run before each test
22
+ @instance = Notifo::MobilePushTokenDto.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of MobilePushTokenDto' do
30
+ it 'should create an instance of MobilePushTokenDto' do
31
+ expect(@instance).to be_instance_of(Notifo::MobilePushTokenDto)
32
+ end
33
+ end
34
+ describe 'test attribute "token"' 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 "device_type"' 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
+ end
@@ -0,0 +1,124 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.26
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+ require 'date'
15
+
16
+ # Unit tests for Notifo::NotificationDto
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'NotificationDto' do
20
+ before do
21
+ # run before each test
22
+ @instance = Notifo::NotificationDto.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of NotificationDto' do
30
+ it 'should create an instance of NotificationDto' do
31
+ expect(@instance).to be_instance_of(Notifo::NotificationDto)
32
+ end
33
+ end
34
+ describe 'test attribute "id"' 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 "subject"' 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 "silent"' 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 "is_confirmed"' 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 "is_seen"' 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 "created"' 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 "body"' 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
+ describe 'test attribute "image_small"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "image_large"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "tracking_url"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "link_url"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
+ end
98
+ end
99
+
100
+ describe 'test attribute "link_text"' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103
+ end
104
+ end
105
+
106
+ describe 'test attribute "confirm_text"' do
107
+ it 'should work' do
108
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
109
+ end
110
+ end
111
+
112
+ describe 'test attribute "confirm_url"' do
113
+ it 'should work' do
114
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
115
+ end
116
+ end
117
+
118
+ describe 'test attribute "data"' do
119
+ it 'should work' do
120
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
121
+ end
122
+ end
123
+
124
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.26
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+ require 'date'
15
+
16
+ # Unit tests for Notifo::RegisterMobileTokenDto
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'RegisterMobileTokenDto' do
20
+ before do
21
+ # run before each test
22
+ @instance = Notifo::RegisterMobileTokenDto.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of RegisterMobileTokenDto' do
30
+ it 'should create an instance of RegisterMobileTokenDto' do
31
+ expect(@instance).to be_instance_of(Notifo::RegisterMobileTokenDto)
32
+ end
33
+ end
34
+ describe 'test attribute "token"' 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 "device_type"' 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
+ end
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.26
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+ require 'date'
15
+
16
+ # Unit tests for Notifo::TrackNotificationDto
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'TrackNotificationDto' do
20
+ before do
21
+ # run before each test
22
+ @instance = Notifo::TrackNotificationDto.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of TrackNotificationDto' do
30
+ it 'should create an instance of TrackNotificationDto' do
31
+ expect(@instance).to be_instance_of(Notifo::TrackNotificationDto)
32
+ end
33
+ end
34
+ describe 'test attribute "confirmed"' 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 "seen"' 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 "channel"' 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 "device_identifier"' 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
+ end
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #Notifo API
3
+
4
+ #No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
5
+
6
+ OpenAPI spec version: 1.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.26
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+ require 'date'
15
+
16
+ # Unit tests for Notifo::UpdateIntegrationDto
17
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
+ # Please update as you see appropriate
19
+ describe 'UpdateIntegrationDto' do
20
+ before do
21
+ # run before each test
22
+ @instance = Notifo::UpdateIntegrationDto.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of UpdateIntegrationDto' do
30
+ it 'should create an instance of UpdateIntegrationDto' do
31
+ expect(@instance).to be_instance_of(Notifo::UpdateIntegrationDto)
32
+ end
33
+ end
34
+ describe 'test attribute "properties"' 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 "enabled"' 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 "test"' 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 "priority"' 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
+ 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.1.1
4
+ version: 1.0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Squidex UG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-19 00:00:00.000000000 Z
11
+ date: 2021-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -86,11 +86,16 @@ files:
86
86
  - docs/AppContributorDto.md
87
87
  - docs/AppDetailsDto.md
88
88
  - docs/AppDto.md
89
+ - docs/AppIdMediaBody.md
89
90
  - docs/AppsApi.md
91
+ - docs/AuthorizationApi.md
90
92
  - docs/Body.md
91
93
  - docs/ConfigsApi.md
94
+ - docs/ConfiguredIntegrationDto.md
95
+ - docs/ConfiguredIntegrationsDto.md
92
96
  - docs/ConfirmMode.md
93
97
  - docs/CreateEmailTemplateDto.md
98
+ - docs/CreateIntegrationDto.md
94
99
  - docs/EmailTemplateDto.md
95
100
  - docs/EmailTemplatesDto.md
96
101
  - docs/EmailVerificationStatus.md
@@ -98,10 +103,18 @@ files:
98
103
  - docs/EventDto.md
99
104
  - docs/EventProperties.md
100
105
  - docs/EventsApi.md
106
+ - docs/IntegrationCreatedDto.md
107
+ - docs/IntegrationDefinitionDto.md
108
+ - docs/IntegrationProperties.md
109
+ - docs/IntegrationPropertyDto.md
110
+ - docs/IntegrationPropertyType.md
111
+ - docs/IntegrationStatus.md
101
112
  - docs/IsoDayOfWeek.md
102
113
  - docs/ListResponseDtoOfEventDto.md
103
114
  - docs/ListResponseDtoOfLogEntryDto.md
104
115
  - docs/ListResponseDtoOfMediaDto.md
116
+ - docs/ListResponseDtoOfMobilePushTokenDto.md
117
+ - docs/ListResponseDtoOfNotificationDto.md
105
118
  - docs/ListResponseDtoOfSubscriptionDto.md
106
119
  - docs/ListResponseDtoOfTemplateDto.md
107
120
  - docs/ListResponseDtoOfTopicDto.md
@@ -113,12 +126,18 @@ files:
113
126
  - docs/MediaDto.md
114
127
  - docs/MediaMetadata.md
115
128
  - docs/MediaType.md
129
+ - docs/MobileDeviceType.md
130
+ - docs/MobilePushApi.md
131
+ - docs/MobilePushTokenDto.md
132
+ - docs/NotificationDto.md
116
133
  - docs/NotificationFormattingDto.md
117
134
  - docs/NotificationSend.md
118
135
  - docs/NotificationSettingDto.md
136
+ - docs/NotificationsApi.md
119
137
  - docs/ProfileDto.md
120
138
  - docs/PublishDto.md
121
139
  - docs/PublishManyDto.md
140
+ - docs/RegisterMobileTokenDto.md
122
141
  - docs/ResizeMode.md
123
142
  - docs/SchedulingDto.md
124
143
  - docs/SchedulingType.md
@@ -127,6 +146,8 @@ files:
127
146
  - docs/TemplatesApi.md
128
147
  - docs/TopicDto.md
129
148
  - docs/TopicsApi.md
149
+ - docs/TrackNotificationDto.md
150
+ - docs/UpdateIntegrationDto.md
130
151
  - docs/UpdateProfileDto.md
131
152
  - docs/UpsertAppDto.md
132
153
  - docs/UpsertTemplateDto.md
@@ -135,17 +156,22 @@ files:
135
156
  - docs/UpsertUsersDto.md
136
157
  - docs/UserApi.md
137
158
  - docs/UserDto.md
159
+ - docs/UserInfoApi.md
138
160
  - docs/UsersApi.md
139
161
  - git_push.sh
140
162
  - lib/notifo.rb
141
163
  - lib/notifo/api/apps_api.rb
164
+ - lib/notifo/api/authorization_api.rb
142
165
  - lib/notifo/api/configs_api.rb
143
166
  - lib/notifo/api/events_api.rb
144
167
  - lib/notifo/api/logs_api.rb
145
168
  - lib/notifo/api/media_api.rb
169
+ - lib/notifo/api/mobile_push_api.rb
170
+ - lib/notifo/api/notifications_api.rb
146
171
  - lib/notifo/api/templates_api.rb
147
172
  - lib/notifo/api/topics_api.rb
148
173
  - lib/notifo/api/user_api.rb
174
+ - lib/notifo/api/user_info_api.rb
149
175
  - lib/notifo/api/users_api.rb
150
176
  - lib/notifo/api_client.rb
151
177
  - lib/notifo/api_error.rb
@@ -155,19 +181,31 @@ files:
155
181
  - lib/notifo/models/app_contributor_dto.rb
156
182
  - lib/notifo/models/app_details_dto.rb
157
183
  - lib/notifo/models/app_dto.rb
184
+ - lib/notifo/models/app_id_media_body.rb
158
185
  - lib/notifo/models/body.rb
186
+ - lib/notifo/models/configured_integration_dto.rb
187
+ - lib/notifo/models/configured_integrations_dto.rb
159
188
  - lib/notifo/models/confirm_mode.rb
160
189
  - lib/notifo/models/create_email_template_dto.rb
190
+ - lib/notifo/models/create_integration_dto.rb
161
191
  - lib/notifo/models/email_template_dto.rb
162
192
  - lib/notifo/models/email_templates_dto.rb
163
193
  - lib/notifo/models/email_verification_status.rb
164
194
  - lib/notifo/models/error_dto.rb
165
195
  - lib/notifo/models/event_dto.rb
166
196
  - lib/notifo/models/event_properties.rb
197
+ - lib/notifo/models/integration_created_dto.rb
198
+ - lib/notifo/models/integration_definition_dto.rb
199
+ - lib/notifo/models/integration_properties.rb
200
+ - lib/notifo/models/integration_property_dto.rb
201
+ - lib/notifo/models/integration_property_type.rb
202
+ - lib/notifo/models/integration_status.rb
167
203
  - lib/notifo/models/iso_day_of_week.rb
168
204
  - lib/notifo/models/list_response_dto_of_event_dto.rb
169
205
  - lib/notifo/models/list_response_dto_of_log_entry_dto.rb
170
206
  - lib/notifo/models/list_response_dto_of_media_dto.rb
207
+ - lib/notifo/models/list_response_dto_of_mobile_push_token_dto.rb
208
+ - lib/notifo/models/list_response_dto_of_notification_dto.rb
171
209
  - lib/notifo/models/list_response_dto_of_subscription_dto.rb
172
210
  - lib/notifo/models/list_response_dto_of_template_dto.rb
173
211
  - lib/notifo/models/list_response_dto_of_topic_dto.rb
@@ -177,18 +215,24 @@ files:
177
215
  - lib/notifo/models/media_dto.rb
178
216
  - lib/notifo/models/media_metadata.rb
179
217
  - lib/notifo/models/media_type.rb
218
+ - lib/notifo/models/mobile_device_type.rb
219
+ - lib/notifo/models/mobile_push_token_dto.rb
220
+ - lib/notifo/models/notification_dto.rb
180
221
  - lib/notifo/models/notification_formatting_dto.rb
181
222
  - lib/notifo/models/notification_send.rb
182
223
  - lib/notifo/models/notification_setting_dto.rb
183
224
  - lib/notifo/models/profile_dto.rb
184
225
  - lib/notifo/models/publish_dto.rb
185
226
  - lib/notifo/models/publish_many_dto.rb
227
+ - lib/notifo/models/register_mobile_token_dto.rb
186
228
  - lib/notifo/models/resize_mode.rb
187
229
  - lib/notifo/models/scheduling_dto.rb
188
230
  - lib/notifo/models/scheduling_type.rb
189
231
  - lib/notifo/models/subscription_dto.rb
190
232
  - lib/notifo/models/template_dto.rb
191
233
  - lib/notifo/models/topic_dto.rb
234
+ - lib/notifo/models/track_notification_dto.rb
235
+ - lib/notifo/models/update_integration_dto.rb
192
236
  - lib/notifo/models/update_profile_dto.rb
193
237
  - lib/notifo/models/upsert_app_dto.rb
194
238
  - lib/notifo/models/upsert_template_dto.rb
@@ -197,15 +241,20 @@ files:
197
241
  - lib/notifo/models/upsert_users_dto.rb
198
242
  - lib/notifo/models/user_dto.rb
199
243
  - lib/notifo/version.rb
244
+ - notifo-io-1.0.1.1.gem
200
245
  - notifo.gemspec
201
246
  - spec/api/apps_api_spec.rb
247
+ - spec/api/authorization_api_spec.rb
202
248
  - spec/api/configs_api_spec.rb
203
249
  - spec/api/events_api_spec.rb
204
250
  - spec/api/logs_api_spec.rb
205
251
  - spec/api/media_api_spec.rb
252
+ - spec/api/mobile_push_api_spec.rb
253
+ - spec/api/notifications_api_spec.rb
206
254
  - spec/api/templates_api_spec.rb
207
255
  - spec/api/topics_api_spec.rb
208
256
  - spec/api/user_api_spec.rb
257
+ - spec/api/user_info_api_spec.rb
209
258
  - spec/api/users_api_spec.rb
210
259
  - spec/api_client_spec.rb
211
260
  - spec/base_object_spec.rb
@@ -215,19 +264,31 @@ files:
215
264
  - spec/models/app_contributor_dto_spec.rb
216
265
  - spec/models/app_details_dto_spec.rb
217
266
  - spec/models/app_dto_spec.rb
267
+ - spec/models/app_id_media_body_spec.rb
218
268
  - spec/models/body_spec.rb
269
+ - spec/models/configured_integration_dto_spec.rb
270
+ - spec/models/configured_integrations_dto_spec.rb
219
271
  - spec/models/confirm_mode_spec.rb
220
272
  - spec/models/create_email_template_dto_spec.rb
273
+ - spec/models/create_integration_dto_spec.rb
221
274
  - spec/models/email_template_dto_spec.rb
222
275
  - spec/models/email_templates_dto_spec.rb
223
276
  - spec/models/email_verification_status_spec.rb
224
277
  - spec/models/error_dto_spec.rb
225
278
  - spec/models/event_dto_spec.rb
226
279
  - spec/models/event_properties_spec.rb
280
+ - spec/models/integration_created_dto_spec.rb
281
+ - spec/models/integration_definition_dto_spec.rb
282
+ - spec/models/integration_properties_spec.rb
283
+ - spec/models/integration_property_dto_spec.rb
284
+ - spec/models/integration_property_type_spec.rb
285
+ - spec/models/integration_status_spec.rb
227
286
  - spec/models/iso_day_of_week_spec.rb
228
287
  - spec/models/list_response_dto_of_event_dto_spec.rb
229
288
  - spec/models/list_response_dto_of_log_entry_dto_spec.rb
230
289
  - spec/models/list_response_dto_of_media_dto_spec.rb
290
+ - spec/models/list_response_dto_of_mobile_push_token_dto_spec.rb
291
+ - spec/models/list_response_dto_of_notification_dto_spec.rb
231
292
  - spec/models/list_response_dto_of_subscription_dto_spec.rb
232
293
  - spec/models/list_response_dto_of_template_dto_spec.rb
233
294
  - spec/models/list_response_dto_of_topic_dto_spec.rb
@@ -237,18 +298,24 @@ files:
237
298
  - spec/models/media_dto_spec.rb
238
299
  - spec/models/media_metadata_spec.rb
239
300
  - spec/models/media_type_spec.rb
301
+ - spec/models/mobile_device_type_spec.rb
302
+ - spec/models/mobile_push_token_dto_spec.rb
303
+ - spec/models/notification_dto_spec.rb
240
304
  - spec/models/notification_formatting_dto_spec.rb
241
305
  - spec/models/notification_send_spec.rb
242
306
  - spec/models/notification_setting_dto_spec.rb
243
307
  - spec/models/profile_dto_spec.rb
244
308
  - spec/models/publish_dto_spec.rb
245
309
  - spec/models/publish_many_dto_spec.rb
310
+ - spec/models/register_mobile_token_dto_spec.rb
246
311
  - spec/models/resize_mode_spec.rb
247
312
  - spec/models/scheduling_dto_spec.rb
248
313
  - spec/models/scheduling_type_spec.rb
249
314
  - spec/models/subscription_dto_spec.rb
250
315
  - spec/models/template_dto_spec.rb
251
316
  - spec/models/topic_dto_spec.rb
317
+ - spec/models/track_notification_dto_spec.rb
318
+ - spec/models/update_integration_dto_spec.rb
252
319
  - spec/models/update_profile_dto_spec.rb
253
320
  - spec/models/upsert_app_dto_spec.rb
254
321
  - spec/models/upsert_template_dto_spec.rb
@@ -283,12 +350,16 @@ summary: Notifo API Ruby Gem
283
350
  test_files:
284
351
  - spec/api/logs_api_spec.rb
285
352
  - spec/api/media_api_spec.rb
353
+ - spec/api/user_info_api_spec.rb
286
354
  - spec/api/topics_api_spec.rb
355
+ - spec/api/notifications_api_spec.rb
287
356
  - spec/api/apps_api_spec.rb
288
357
  - spec/api/user_api_spec.rb
358
+ - spec/api/authorization_api_spec.rb
289
359
  - spec/api/users_api_spec.rb
290
360
  - spec/api/events_api_spec.rb
291
361
  - spec/api/configs_api_spec.rb
362
+ - spec/api/mobile_push_api_spec.rb
292
363
  - spec/api/templates_api_spec.rb
293
364
  - spec/api_client_spec.rb
294
365
  - spec/base_object_spec.rb
@@ -298,45 +369,63 @@ test_files:
298
369
  - spec/models/error_dto_spec.rb
299
370
  - spec/models/email_verification_status_spec.rb
300
371
  - spec/models/create_email_template_dto_spec.rb
372
+ - spec/models/create_integration_dto_spec.rb
301
373
  - spec/models/app_dto_spec.rb
302
374
  - spec/models/template_dto_spec.rb
303
375
  - spec/models/profile_dto_spec.rb
376
+ - spec/models/integration_property_type_spec.rb
377
+ - spec/models/mobile_device_type_spec.rb
378
+ - spec/models/integration_definition_dto_spec.rb
304
379
  - spec/models/upsert_user_dto_spec.rb
305
380
  - spec/models/upsert_templates_dto_spec.rb
306
381
  - spec/models/list_response_dto_of_media_dto_spec.rb
307
382
  - spec/models/list_response_dto_of_subscription_dto_spec.rb
383
+ - spec/models/mobile_push_token_dto_spec.rb
308
384
  - spec/models/event_properties_spec.rb
309
385
  - spec/models/add_contributor_dto_spec.rb
386
+ - spec/models/list_response_dto_of_notification_dto_spec.rb
310
387
  - spec/models/update_profile_dto_spec.rb
311
388
  - spec/models/topic_dto_spec.rb
389
+ - spec/models/integration_properties_spec.rb
312
390
  - spec/models/upsert_users_dto_spec.rb
313
391
  - spec/models/resize_mode_spec.rb
314
392
  - spec/models/scheduling_type_spec.rb
393
+ - spec/models/list_response_dto_of_mobile_push_token_dto_spec.rb
394
+ - spec/models/update_integration_dto_spec.rb
315
395
  - spec/models/log_entry_dto_spec.rb
396
+ - spec/models/configured_integration_dto_spec.rb
316
397
  - spec/models/email_templates_dto_spec.rb
317
398
  - spec/models/list_response_dto_of_event_dto_spec.rb
318
399
  - spec/models/app_details_dto_spec.rb
319
400
  - spec/models/media_metadata_spec.rb
320
401
  - spec/models/localized_text_spec.rb
321
402
  - spec/models/list_response_dto_of_log_entry_dto_spec.rb
403
+ - spec/models/configured_integrations_dto_spec.rb
322
404
  - spec/models/scheduling_dto_spec.rb
323
405
  - spec/models/publish_many_dto_spec.rb
324
406
  - spec/models/add_allowed_topic_dto_spec.rb
325
407
  - spec/models/upsert_template_dto_spec.rb
326
408
  - spec/models/confirm_mode_spec.rb
409
+ - spec/models/track_notification_dto_spec.rb
327
410
  - spec/models/media_dto_spec.rb
328
411
  - spec/models/body_spec.rb
329
412
  - spec/models/notification_send_spec.rb
413
+ - spec/models/integration_status_spec.rb
414
+ - spec/models/notification_dto_spec.rb
330
415
  - spec/models/notification_setting_dto_spec.rb
331
416
  - spec/models/notification_formatting_dto_spec.rb
332
417
  - spec/models/list_response_dto_of_topic_dto_spec.rb
333
418
  - spec/models/subscription_dto_spec.rb
419
+ - spec/models/app_id_media_body_spec.rb
334
420
  - spec/models/media_type_spec.rb
421
+ - spec/models/integration_created_dto_spec.rb
335
422
  - spec/models/iso_day_of_week_spec.rb
336
423
  - spec/models/app_contributor_dto_spec.rb
424
+ - spec/models/integration_property_dto_spec.rb
337
425
  - spec/models/publish_dto_spec.rb
338
426
  - spec/models/event_dto_spec.rb
339
427
  - spec/models/upsert_app_dto_spec.rb
340
428
  - spec/models/list_response_dto_of_template_dto_spec.rb
429
+ - spec/models/register_mobile_token_dto_spec.rb
341
430
  - spec/models/list_response_dto_of_user_dto_spec.rb
342
431
  - spec/spec_helper.rb