createsend-sendowlfork 6.1.0.pre.hashie5

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 (139) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +9 -0
  4. data/.travis.yml +7 -0
  5. data/CONTRIBUTING.md +8 -0
  6. data/Gemfile +3 -0
  7. data/HISTORY.md +299 -0
  8. data/LICENSE +19 -0
  9. data/README.md +220 -0
  10. data/RELEASE.md +53 -0
  11. data/Rakefile +24 -0
  12. data/createsend.gemspec +31 -0
  13. data/lib/createsend/administrator.rb +49 -0
  14. data/lib/createsend/cacert.pem +3849 -0
  15. data/lib/createsend/campaign.rb +202 -0
  16. data/lib/createsend/client.rb +224 -0
  17. data/lib/createsend/createsend.rb +291 -0
  18. data/lib/createsend/journey.rb +58 -0
  19. data/lib/createsend/list.rb +258 -0
  20. data/lib/createsend/person.rb +59 -0
  21. data/lib/createsend/segment.rb +81 -0
  22. data/lib/createsend/subscriber.rb +113 -0
  23. data/lib/createsend/template.rb +42 -0
  24. data/lib/createsend/transactional_classic_email.rb +32 -0
  25. data/lib/createsend/transactional_smart_email.rb +31 -0
  26. data/lib/createsend/transactional_timeline.rb +45 -0
  27. data/lib/createsend/version.rb +3 -0
  28. data/lib/createsend.rb +17 -0
  29. data/samples/authentication_sample.rb +64 -0
  30. data/samples/clients_sample.rb +79 -0
  31. data/samples/journey_sample.rb +87 -0
  32. data/samples/lists_sample.rb +51 -0
  33. data/samples/segments_sample.rb +21 -0
  34. data/samples/subscribers_sample.rb +51 -0
  35. data/test/administrator_test.rb +37 -0
  36. data/test/campaign_test.rb +296 -0
  37. data/test/client_test.rb +253 -0
  38. data/test/createsend_test.rb +321 -0
  39. data/test/fixtures/active_subscribers.json +87 -0
  40. data/test/fixtures/add_admin.json +3 -0
  41. data/test/fixtures/add_person.json +3 -0
  42. data/test/fixtures/add_subscriber.json +1 -0
  43. data/test/fixtures/admin_details.json +5 -0
  44. data/test/fixtures/admin_get_primary_contact.json +3 -0
  45. data/test/fixtures/admin_set_primary_contact.json +3 -0
  46. data/test/fixtures/administrators.json +12 -0
  47. data/test/fixtures/billingdetails.json +3 -0
  48. data/test/fixtures/bounced_subscribers.json +20 -0
  49. data/test/fixtures/campaign_bounces.json +25 -0
  50. data/test/fixtures/campaign_clicks.json +50 -0
  51. data/test/fixtures/campaign_listsandsegments.json +15 -0
  52. data/test/fixtures/campaign_opens.json +71 -0
  53. data/test/fixtures/campaign_recipients.json +91 -0
  54. data/test/fixtures/campaign_spam.json +16 -0
  55. data/test/fixtures/campaign_summary.json +16 -0
  56. data/test/fixtures/campaign_unsubscribes.json +17 -0
  57. data/test/fixtures/campaigns.json +37 -0
  58. data/test/fixtures/client_details.json +28 -0
  59. data/test/fixtures/client_get_primary_contact.json +3 -0
  60. data/test/fixtures/client_set_primary_contact.json +3 -0
  61. data/test/fixtures/clients.json +10 -0
  62. data/test/fixtures/countries.json +247 -0
  63. data/test/fixtures/create_campaign.json +1 -0
  64. data/test/fixtures/create_client.json +1 -0
  65. data/test/fixtures/create_custom_field.json +1 -0
  66. data/test/fixtures/create_list.json +1 -0
  67. data/test/fixtures/create_list_webhook.json +1 -0
  68. data/test/fixtures/create_segment.json +1 -0
  69. data/test/fixtures/create_template.json +1 -0
  70. data/test/fixtures/custom_api_error.json +4 -0
  71. data/test/fixtures/custom_fields.json +23 -0
  72. data/test/fixtures/deleted_subscribers.json +61 -0
  73. data/test/fixtures/drafts.json +26 -0
  74. data/test/fixtures/email_client_usage.json +38 -0
  75. data/test/fixtures/expired_oauth_token_api_error.json +4 -0
  76. data/test/fixtures/external_session.json +3 -0
  77. data/test/fixtures/import_subscribers.json +7 -0
  78. data/test/fixtures/import_subscribers_partial_success.json +17 -0
  79. data/test/fixtures/invalid_oauth_token_api_error.json +4 -0
  80. data/test/fixtures/journey_bounces.json +35 -0
  81. data/test/fixtures/journey_clicks.json +35 -0
  82. data/test/fixtures/journey_opens.json +55 -0
  83. data/test/fixtures/journey_recipients.json +27 -0
  84. data/test/fixtures/journey_summary.json +18 -0
  85. data/test/fixtures/journey_unsubscribes.json +26 -0
  86. data/test/fixtures/journeys.json +20 -0
  87. data/test/fixtures/list_details.json +8 -0
  88. data/test/fixtures/list_stats.json +26 -0
  89. data/test/fixtures/list_webhooks.json +18 -0
  90. data/test/fixtures/lists.json +10 -0
  91. data/test/fixtures/listsforemail.json +14 -0
  92. data/test/fixtures/oauth_exchange_token.json +5 -0
  93. data/test/fixtures/oauth_exchange_token_error.json +4 -0
  94. data/test/fixtures/oauth_refresh_token_error.json +4 -0
  95. data/test/fixtures/people.json +14 -0
  96. data/test/fixtures/person_details.json +6 -0
  97. data/test/fixtures/refresh_oauth_token.json +5 -0
  98. data/test/fixtures/revoked_oauth_token_api_error.json +4 -0
  99. data/test/fixtures/scheduled_campaigns.json +30 -0
  100. data/test/fixtures/segment_details.json +24 -0
  101. data/test/fixtures/segment_subscribers.json +27 -0
  102. data/test/fixtures/segments.json +12 -0
  103. data/test/fixtures/subscriber_details.json +23 -0
  104. data/test/fixtures/subscriber_details_with_track_and_sms_pref.json +25 -0
  105. data/test/fixtures/subscriber_history.json +45 -0
  106. data/test/fixtures/suppressionlist.json +41 -0
  107. data/test/fixtures/systemdate.json +3 -0
  108. data/test/fixtures/tags.json +10 -0
  109. data/test/fixtures/template_details.json +6 -0
  110. data/test/fixtures/templates.json +14 -0
  111. data/test/fixtures/timezones.json +99 -0
  112. data/test/fixtures/transfer_credits.json +4 -0
  113. data/test/fixtures/tx_classicemail_groups.json +14 -0
  114. data/test/fixtures/tx_message_details.json +36 -0
  115. data/test/fixtures/tx_message_details_with_statistics.json +72 -0
  116. data/test/fixtures/tx_messages.json +38 -0
  117. data/test/fixtures/tx_messages_classic.json +15 -0
  118. data/test/fixtures/tx_messages_smart.json +15 -0
  119. data/test/fixtures/tx_resend_message.json +6 -0
  120. data/test/fixtures/tx_send_multiple.json +12 -0
  121. data/test/fixtures/tx_send_single.json +7 -0
  122. data/test/fixtures/tx_smartemail_details.json +23 -0
  123. data/test/fixtures/tx_smartemails.json +15 -0
  124. data/test/fixtures/tx_statistics_classic.json +14 -0
  125. data/test/fixtures/tx_statistics_smart.json +14 -0
  126. data/test/fixtures/unconfirmed_subscribers.json +43 -0
  127. data/test/fixtures/unsubscribed_subscribers.json +61 -0
  128. data/test/fixtures/update_custom_field.json +1 -0
  129. data/test/helper.rb +79 -0
  130. data/test/journey_test.rb +156 -0
  131. data/test/list_test.rb +288 -0
  132. data/test/person_test.rb +39 -0
  133. data/test/segment_test.rb +74 -0
  134. data/test/subscriber_test.rb +177 -0
  135. data/test/template_test.rb +36 -0
  136. data/test/transactional_classic_email_test.rb +60 -0
  137. data/test/transactional_smart_email_test.rb +83 -0
  138. data/test/transactional_timeline_test.rb +110 -0
  139. metadata +431 -0
metadata ADDED
@@ -0,0 +1,431 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: createsend-sendowlfork
3
+ version: !ruby/object:Gem::Version
4
+ version: 6.1.0.pre.hashie5
5
+ platform: ruby
6
+ authors:
7
+ - James Dennes
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: hashie
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '6'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '3.0'
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '6'
47
+ - !ruby/object:Gem::Dependency
48
+ name: httparty
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.14'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '0.14'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rake
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 12.3.3
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 12.3.3
75
+ - !ruby/object:Gem::Dependency
76
+ name: fakeweb
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '1.3'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '1.3'
89
+ - !ruby/object:Gem::Dependency
90
+ name: jnunemaker-matchy
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '0.4'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '0.4'
103
+ - !ruby/object:Gem::Dependency
104
+ name: shoulda-context
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '1.2'
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '1.2'
117
+ - !ruby/object:Gem::Dependency
118
+ name: simplecov
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ - !ruby/object:Gem::Dependency
132
+ name: coveralls
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ - !ruby/object:Gem::Dependency
146
+ name: test-unit
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '3.0'
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: '3.0'
159
+ description: Implements the complete functionality of the Campaign Monitor API.
160
+ email:
161
+ - jdennes@gmail.com
162
+ executables: []
163
+ extensions: []
164
+ extra_rdoc_files: []
165
+ files:
166
+ - ".coveralls.yml"
167
+ - ".gitignore"
168
+ - ".travis.yml"
169
+ - CONTRIBUTING.md
170
+ - Gemfile
171
+ - HISTORY.md
172
+ - LICENSE
173
+ - README.md
174
+ - RELEASE.md
175
+ - Rakefile
176
+ - createsend.gemspec
177
+ - lib/createsend.rb
178
+ - lib/createsend/administrator.rb
179
+ - lib/createsend/cacert.pem
180
+ - lib/createsend/campaign.rb
181
+ - lib/createsend/client.rb
182
+ - lib/createsend/createsend.rb
183
+ - lib/createsend/journey.rb
184
+ - lib/createsend/list.rb
185
+ - lib/createsend/person.rb
186
+ - lib/createsend/segment.rb
187
+ - lib/createsend/subscriber.rb
188
+ - lib/createsend/template.rb
189
+ - lib/createsend/transactional_classic_email.rb
190
+ - lib/createsend/transactional_smart_email.rb
191
+ - lib/createsend/transactional_timeline.rb
192
+ - lib/createsend/version.rb
193
+ - samples/authentication_sample.rb
194
+ - samples/clients_sample.rb
195
+ - samples/journey_sample.rb
196
+ - samples/lists_sample.rb
197
+ - samples/segments_sample.rb
198
+ - samples/subscribers_sample.rb
199
+ - test/administrator_test.rb
200
+ - test/campaign_test.rb
201
+ - test/client_test.rb
202
+ - test/createsend_test.rb
203
+ - test/fixtures/active_subscribers.json
204
+ - test/fixtures/add_admin.json
205
+ - test/fixtures/add_person.json
206
+ - test/fixtures/add_subscriber.json
207
+ - test/fixtures/admin_details.json
208
+ - test/fixtures/admin_get_primary_contact.json
209
+ - test/fixtures/admin_set_primary_contact.json
210
+ - test/fixtures/administrators.json
211
+ - test/fixtures/billingdetails.json
212
+ - test/fixtures/bounced_subscribers.json
213
+ - test/fixtures/campaign_bounces.json
214
+ - test/fixtures/campaign_clicks.json
215
+ - test/fixtures/campaign_listsandsegments.json
216
+ - test/fixtures/campaign_opens.json
217
+ - test/fixtures/campaign_recipients.json
218
+ - test/fixtures/campaign_spam.json
219
+ - test/fixtures/campaign_summary.json
220
+ - test/fixtures/campaign_unsubscribes.json
221
+ - test/fixtures/campaigns.json
222
+ - test/fixtures/client_details.json
223
+ - test/fixtures/client_get_primary_contact.json
224
+ - test/fixtures/client_set_primary_contact.json
225
+ - test/fixtures/clients.json
226
+ - test/fixtures/countries.json
227
+ - test/fixtures/create_campaign.json
228
+ - test/fixtures/create_client.json
229
+ - test/fixtures/create_custom_field.json
230
+ - test/fixtures/create_list.json
231
+ - test/fixtures/create_list_webhook.json
232
+ - test/fixtures/create_segment.json
233
+ - test/fixtures/create_template.json
234
+ - test/fixtures/custom_api_error.json
235
+ - test/fixtures/custom_fields.json
236
+ - test/fixtures/deleted_subscribers.json
237
+ - test/fixtures/drafts.json
238
+ - test/fixtures/email_client_usage.json
239
+ - test/fixtures/expired_oauth_token_api_error.json
240
+ - test/fixtures/external_session.json
241
+ - test/fixtures/import_subscribers.json
242
+ - test/fixtures/import_subscribers_partial_success.json
243
+ - test/fixtures/invalid_oauth_token_api_error.json
244
+ - test/fixtures/journey_bounces.json
245
+ - test/fixtures/journey_clicks.json
246
+ - test/fixtures/journey_opens.json
247
+ - test/fixtures/journey_recipients.json
248
+ - test/fixtures/journey_summary.json
249
+ - test/fixtures/journey_unsubscribes.json
250
+ - test/fixtures/journeys.json
251
+ - test/fixtures/list_details.json
252
+ - test/fixtures/list_stats.json
253
+ - test/fixtures/list_webhooks.json
254
+ - test/fixtures/lists.json
255
+ - test/fixtures/listsforemail.json
256
+ - test/fixtures/oauth_exchange_token.json
257
+ - test/fixtures/oauth_exchange_token_error.json
258
+ - test/fixtures/oauth_refresh_token_error.json
259
+ - test/fixtures/people.json
260
+ - test/fixtures/person_details.json
261
+ - test/fixtures/refresh_oauth_token.json
262
+ - test/fixtures/revoked_oauth_token_api_error.json
263
+ - test/fixtures/scheduled_campaigns.json
264
+ - test/fixtures/segment_details.json
265
+ - test/fixtures/segment_subscribers.json
266
+ - test/fixtures/segments.json
267
+ - test/fixtures/subscriber_details.json
268
+ - test/fixtures/subscriber_details_with_track_and_sms_pref.json
269
+ - test/fixtures/subscriber_history.json
270
+ - test/fixtures/suppressionlist.json
271
+ - test/fixtures/systemdate.json
272
+ - test/fixtures/tags.json
273
+ - test/fixtures/template_details.json
274
+ - test/fixtures/templates.json
275
+ - test/fixtures/timezones.json
276
+ - test/fixtures/transfer_credits.json
277
+ - test/fixtures/tx_classicemail_groups.json
278
+ - test/fixtures/tx_message_details.json
279
+ - test/fixtures/tx_message_details_with_statistics.json
280
+ - test/fixtures/tx_messages.json
281
+ - test/fixtures/tx_messages_classic.json
282
+ - test/fixtures/tx_messages_smart.json
283
+ - test/fixtures/tx_resend_message.json
284
+ - test/fixtures/tx_send_multiple.json
285
+ - test/fixtures/tx_send_single.json
286
+ - test/fixtures/tx_smartemail_details.json
287
+ - test/fixtures/tx_smartemails.json
288
+ - test/fixtures/tx_statistics_classic.json
289
+ - test/fixtures/tx_statistics_smart.json
290
+ - test/fixtures/unconfirmed_subscribers.json
291
+ - test/fixtures/unsubscribed_subscribers.json
292
+ - test/fixtures/update_custom_field.json
293
+ - test/helper.rb
294
+ - test/journey_test.rb
295
+ - test/list_test.rb
296
+ - test/person_test.rb
297
+ - test/segment_test.rb
298
+ - test/subscriber_test.rb
299
+ - test/template_test.rb
300
+ - test/transactional_classic_email_test.rb
301
+ - test/transactional_smart_email_test.rb
302
+ - test/transactional_timeline_test.rb
303
+ homepage: http://campaignmonitor.github.io/createsend-ruby/
304
+ licenses:
305
+ - MIT
306
+ metadata: {}
307
+ post_install_message:
308
+ rdoc_options: []
309
+ require_paths:
310
+ - lib
311
+ required_ruby_version: !ruby/object:Gem::Requirement
312
+ requirements:
313
+ - - ">="
314
+ - !ruby/object:Gem::Version
315
+ version: '0'
316
+ required_rubygems_version: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - ">="
319
+ - !ruby/object:Gem::Version
320
+ version: 1.3.6
321
+ requirements: []
322
+ rubygems_version: 3.3.7
323
+ signing_key:
324
+ specification_version: 4
325
+ summary: A library which implements the complete functionality of the Campaign Monitor
326
+ API.
327
+ test_files:
328
+ - test/administrator_test.rb
329
+ - test/campaign_test.rb
330
+ - test/client_test.rb
331
+ - test/createsend_test.rb
332
+ - test/fixtures/active_subscribers.json
333
+ - test/fixtures/add_admin.json
334
+ - test/fixtures/add_person.json
335
+ - test/fixtures/add_subscriber.json
336
+ - test/fixtures/admin_details.json
337
+ - test/fixtures/admin_get_primary_contact.json
338
+ - test/fixtures/admin_set_primary_contact.json
339
+ - test/fixtures/administrators.json
340
+ - test/fixtures/billingdetails.json
341
+ - test/fixtures/bounced_subscribers.json
342
+ - test/fixtures/campaign_bounces.json
343
+ - test/fixtures/campaign_clicks.json
344
+ - test/fixtures/campaign_listsandsegments.json
345
+ - test/fixtures/campaign_opens.json
346
+ - test/fixtures/campaign_recipients.json
347
+ - test/fixtures/campaign_spam.json
348
+ - test/fixtures/campaign_summary.json
349
+ - test/fixtures/campaign_unsubscribes.json
350
+ - test/fixtures/campaigns.json
351
+ - test/fixtures/client_details.json
352
+ - test/fixtures/client_get_primary_contact.json
353
+ - test/fixtures/client_set_primary_contact.json
354
+ - test/fixtures/clients.json
355
+ - test/fixtures/countries.json
356
+ - test/fixtures/create_campaign.json
357
+ - test/fixtures/create_client.json
358
+ - test/fixtures/create_custom_field.json
359
+ - test/fixtures/create_list.json
360
+ - test/fixtures/create_list_webhook.json
361
+ - test/fixtures/create_segment.json
362
+ - test/fixtures/create_template.json
363
+ - test/fixtures/custom_api_error.json
364
+ - test/fixtures/custom_fields.json
365
+ - test/fixtures/deleted_subscribers.json
366
+ - test/fixtures/drafts.json
367
+ - test/fixtures/email_client_usage.json
368
+ - test/fixtures/expired_oauth_token_api_error.json
369
+ - test/fixtures/external_session.json
370
+ - test/fixtures/import_subscribers.json
371
+ - test/fixtures/import_subscribers_partial_success.json
372
+ - test/fixtures/invalid_oauth_token_api_error.json
373
+ - test/fixtures/journey_bounces.json
374
+ - test/fixtures/journey_clicks.json
375
+ - test/fixtures/journey_opens.json
376
+ - test/fixtures/journey_recipients.json
377
+ - test/fixtures/journey_summary.json
378
+ - test/fixtures/journey_unsubscribes.json
379
+ - test/fixtures/journeys.json
380
+ - test/fixtures/list_details.json
381
+ - test/fixtures/list_stats.json
382
+ - test/fixtures/list_webhooks.json
383
+ - test/fixtures/lists.json
384
+ - test/fixtures/listsforemail.json
385
+ - test/fixtures/oauth_exchange_token.json
386
+ - test/fixtures/oauth_exchange_token_error.json
387
+ - test/fixtures/oauth_refresh_token_error.json
388
+ - test/fixtures/people.json
389
+ - test/fixtures/person_details.json
390
+ - test/fixtures/refresh_oauth_token.json
391
+ - test/fixtures/revoked_oauth_token_api_error.json
392
+ - test/fixtures/scheduled_campaigns.json
393
+ - test/fixtures/segment_details.json
394
+ - test/fixtures/segment_subscribers.json
395
+ - test/fixtures/segments.json
396
+ - test/fixtures/subscriber_details.json
397
+ - test/fixtures/subscriber_details_with_track_and_sms_pref.json
398
+ - test/fixtures/subscriber_history.json
399
+ - test/fixtures/suppressionlist.json
400
+ - test/fixtures/systemdate.json
401
+ - test/fixtures/tags.json
402
+ - test/fixtures/template_details.json
403
+ - test/fixtures/templates.json
404
+ - test/fixtures/timezones.json
405
+ - test/fixtures/transfer_credits.json
406
+ - test/fixtures/tx_classicemail_groups.json
407
+ - test/fixtures/tx_message_details.json
408
+ - test/fixtures/tx_message_details_with_statistics.json
409
+ - test/fixtures/tx_messages.json
410
+ - test/fixtures/tx_messages_classic.json
411
+ - test/fixtures/tx_messages_smart.json
412
+ - test/fixtures/tx_resend_message.json
413
+ - test/fixtures/tx_send_multiple.json
414
+ - test/fixtures/tx_send_single.json
415
+ - test/fixtures/tx_smartemail_details.json
416
+ - test/fixtures/tx_smartemails.json
417
+ - test/fixtures/tx_statistics_classic.json
418
+ - test/fixtures/tx_statistics_smart.json
419
+ - test/fixtures/unconfirmed_subscribers.json
420
+ - test/fixtures/unsubscribed_subscribers.json
421
+ - test/fixtures/update_custom_field.json
422
+ - test/helper.rb
423
+ - test/journey_test.rb
424
+ - test/list_test.rb
425
+ - test/person_test.rb
426
+ - test/segment_test.rb
427
+ - test/subscriber_test.rb
428
+ - test/template_test.rb
429
+ - test/transactional_classic_email_test.rb
430
+ - test/transactional_smart_email_test.rb
431
+ - test/transactional_timeline_test.rb