revox 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +11 -11
- data/lib/revox/models/campaign_launch_params.rb +201 -0
- data/lib/revox/models/campaign_launch_response.rb +3903 -0
- data/lib/revox/models.rb +2 -0
- data/lib/revox/resources/campaigns.rb +36 -0
- data/lib/revox/version.rb +1 -1
- data/lib/revox.rb +2 -0
- data/rbi/revox/models/campaign_launch_params.rbi +542 -0
- data/rbi/revox/models/campaign_launch_response.rbi +7889 -0
- data/rbi/revox/models.rbi +2 -0
- data/rbi/revox/resources/campaigns.rbi +26 -0
- data/sig/revox/models/campaign_launch_params.rbs +233 -0
- data/sig/revox/models/campaign_launch_response.rbs +3196 -0
- data/sig/revox/models.rbs +2 -0
- data/sig/revox/resources/campaigns.rbs +8 -0
- metadata +7 -1
data/sig/revox/models.rbs
CHANGED
|
@@ -39,6 +39,8 @@ module Revox
|
|
|
39
39
|
|
|
40
40
|
class CampaignGetRowsParams = Revox::Models::CampaignGetRowsParams
|
|
41
41
|
|
|
42
|
+
class CampaignLaunchParams = Revox::Models::CampaignLaunchParams
|
|
43
|
+
|
|
42
44
|
class CampaignListParams = Revox::Models::CampaignListParams
|
|
43
45
|
|
|
44
46
|
class CampaignPauseParams = Revox::Models::CampaignPauseParams
|
|
@@ -49,6 +49,14 @@ module Revox
|
|
|
49
49
|
?request_options: Revox::request_opts
|
|
50
50
|
) -> Revox::Models::CampaignGetRowsResponse
|
|
51
51
|
|
|
52
|
+
def launch: (
|
|
53
|
+
String id,
|
|
54
|
+
mode: Revox::Models::CampaignLaunchParams::mode,
|
|
55
|
+
selection: Revox::CampaignLaunchParams::Selection,
|
|
56
|
+
?scheduled_at: Time,
|
|
57
|
+
?request_options: Revox::request_opts
|
|
58
|
+
) -> Revox::Models::CampaignLaunchResponse
|
|
59
|
+
|
|
52
60
|
def pause: (
|
|
53
61
|
String id,
|
|
54
62
|
?request_options: Revox::request_opts
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: revox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Revox
|
|
@@ -109,6 +109,8 @@ files:
|
|
|
109
109
|
- lib/revox/models/campaign_export_rows_response.rb
|
|
110
110
|
- lib/revox/models/campaign_get_rows_params.rb
|
|
111
111
|
- lib/revox/models/campaign_get_rows_response.rb
|
|
112
|
+
- lib/revox/models/campaign_launch_params.rb
|
|
113
|
+
- lib/revox/models/campaign_launch_response.rb
|
|
112
114
|
- lib/revox/models/campaign_list_params.rb
|
|
113
115
|
- lib/revox/models/campaign_list_response.rb
|
|
114
116
|
- lib/revox/models/campaign_pause_params.rb
|
|
@@ -207,6 +209,8 @@ files:
|
|
|
207
209
|
- rbi/revox/models/campaign_export_rows_response.rbi
|
|
208
210
|
- rbi/revox/models/campaign_get_rows_params.rbi
|
|
209
211
|
- rbi/revox/models/campaign_get_rows_response.rbi
|
|
212
|
+
- rbi/revox/models/campaign_launch_params.rbi
|
|
213
|
+
- rbi/revox/models/campaign_launch_response.rbi
|
|
210
214
|
- rbi/revox/models/campaign_list_params.rbi
|
|
211
215
|
- rbi/revox/models/campaign_list_response.rbi
|
|
212
216
|
- rbi/revox/models/campaign_pause_params.rbi
|
|
@@ -304,6 +308,8 @@ files:
|
|
|
304
308
|
- sig/revox/models/campaign_export_rows_response.rbs
|
|
305
309
|
- sig/revox/models/campaign_get_rows_params.rbs
|
|
306
310
|
- sig/revox/models/campaign_get_rows_response.rbs
|
|
311
|
+
- sig/revox/models/campaign_launch_params.rbs
|
|
312
|
+
- sig/revox/models/campaign_launch_response.rbs
|
|
307
313
|
- sig/revox/models/campaign_list_params.rbs
|
|
308
314
|
- sig/revox/models/campaign_list_response.rbs
|
|
309
315
|
- sig/revox/models/campaign_pause_params.rbs
|