sib-api-v3-sdk 5.3.0 → 5.4.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.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +66 -62
  3. data/docs/AccountApi.md +3 -3
  4. data/docs/AddContactToList.md +1 -1
  5. data/docs/AttributesApi.md +12 -12
  6. data/docs/ContactsApi.md +110 -47
  7. data/docs/CreateAttribute.md +1 -1
  8. data/docs/CreateContact.md +2 -2
  9. data/docs/CreateDoiContact.md +13 -0
  10. data/docs/CreateEmailCampaign.md +1 -1
  11. data/docs/EmailCampaignsApi.md +78 -21
  12. data/docs/FoldersApi.md +12 -12
  13. data/docs/GetEmailCampaign.md +1 -0
  14. data/docs/GetExtendedCampaignOverview.md +1 -0
  15. data/docs/GetTransacBlockedContactsContacts.md +1 -1
  16. data/docs/GetTransacEmailsListTransactionalEmails.md +2 -0
  17. data/docs/ListsApi.md +12 -12
  18. data/docs/RemainingCreditModelChild.md +2 -2
  19. data/docs/RemainingCreditModelReseller.md +2 -2
  20. data/docs/RemoveContactFromList.md +1 -1
  21. data/docs/RequestContactExport.md +1 -1
  22. data/docs/RequestContactImport.md +1 -1
  23. data/docs/ResellerApi.md +30 -30
  24. data/docs/SMSCampaignsApi.md +21 -21
  25. data/docs/SMTPApi.md +17 -17
  26. data/docs/SendEmail.md +3 -3
  27. data/docs/SendSmtpEmail.md +3 -3
  28. data/docs/SendersApi.md +6 -6
  29. data/docs/TransactionalSMSApi.md +6 -6
  30. data/docs/UpdateAttribute.md +1 -1
  31. data/docs/UpdateContact.md +1 -1
  32. data/docs/UpdateEmailCampaign.md +1 -1
  33. data/docs/UploadImageToGallery.md +9 -0
  34. data/lib/sib-api-v3-sdk.rb +2 -0
  35. data/lib/sib-api-v3-sdk/api/account_api.rb +2 -2
  36. data/lib/sib-api-v3-sdk/api/attributes_api.rb +8 -8
  37. data/lib/sib-api-v3-sdk/api/contacts_api.rb +87 -30
  38. data/lib/sib-api-v3-sdk/api/email_campaigns_api.rb +65 -14
  39. data/lib/sib-api-v3-sdk/api/folders_api.rb +8 -8
  40. data/lib/sib-api-v3-sdk/api/lists_api.rb +8 -8
  41. data/lib/sib-api-v3-sdk/api/reseller_api.rb +20 -20
  42. data/lib/sib-api-v3-sdk/api/senders_api.rb +4 -4
  43. data/lib/sib-api-v3-sdk/api/sms_campaigns_api.rb +14 -14
  44. data/lib/sib-api-v3-sdk/api/smtp_api.rb +12 -12
  45. data/lib/sib-api-v3-sdk/api/transactional_sms_api.rb +4 -4
  46. data/lib/sib-api-v3-sdk/models/add_contact_to_list.rb +1 -1
  47. data/lib/sib-api-v3-sdk/models/create_attribute.rb +1 -1
  48. data/lib/sib-api-v3-sdk/models/create_contact.rb +2 -2
  49. data/lib/sib-api-v3-sdk/models/create_doi_contact.rb +253 -0
  50. data/lib/sib-api-v3-sdk/models/create_email_campaign.rb +1 -1
  51. data/lib/sib-api-v3-sdk/models/get_email_campaign.rb +11 -1
  52. data/lib/sib-api-v3-sdk/models/get_extended_campaign_overview.rb +14 -4
  53. data/lib/sib-api-v3-sdk/models/get_transac_blocked_contacts_contacts.rb +1 -1
  54. data/lib/sib-api-v3-sdk/models/get_transac_emails_list_transactional_emails.rb +26 -4
  55. data/lib/sib-api-v3-sdk/models/remaining_credit_model_child.rb +2 -2
  56. data/lib/sib-api-v3-sdk/models/remaining_credit_model_reseller.rb +2 -2
  57. data/lib/sib-api-v3-sdk/models/remove_contact_from_list.rb +1 -1
  58. data/lib/sib-api-v3-sdk/models/request_contact_export.rb +1 -1
  59. data/lib/sib-api-v3-sdk/models/request_contact_import.rb +1 -1
  60. data/lib/sib-api-v3-sdk/models/send_email.rb +3 -3
  61. data/lib/sib-api-v3-sdk/models/send_smtp_email.rb +3 -3
  62. data/lib/sib-api-v3-sdk/models/send_smtp_email_reply_to.rb +1 -1
  63. data/lib/sib-api-v3-sdk/models/send_smtp_email_sender.rb +1 -1
  64. data/lib/sib-api-v3-sdk/models/update_attribute.rb +1 -1
  65. data/lib/sib-api-v3-sdk/models/update_contact.rb +1 -1
  66. data/lib/sib-api-v3-sdk/models/update_email_campaign.rb +1 -1
  67. data/lib/sib-api-v3-sdk/models/upload_image_to_gallery.rb +199 -0
  68. data/lib/sib-api-v3-sdk/version.rb +1 -1
  69. data/sib-api-v3-sdk.gemspec +5 -5
  70. data/spec/api/account_api_spec.rb +1 -1
  71. data/spec/api/attributes_api_spec.rb +4 -4
  72. data/spec/api/contacts_api_spec.rb +28 -15
  73. data/spec/api/email_campaigns_api_spec.rb +18 -7
  74. data/spec/api/folders_api_spec.rb +4 -4
  75. data/spec/api/lists_api_spec.rb +4 -4
  76. data/spec/api/reseller_api_spec.rb +10 -10
  77. data/spec/api/senders_api_spec.rb +2 -2
  78. data/spec/api/sms_campaigns_api_spec.rb +7 -7
  79. data/spec/api/smtp_api_spec.rb +6 -6
  80. data/spec/api/transactional_sms_api_spec.rb +2 -2
  81. data/spec/models/create_doi_contact_spec.rb +71 -0
  82. data/spec/models/get_email_campaign_spec.rb +6 -0
  83. data/spec/models/get_extended_campaign_overview_spec.rb +6 -0
  84. data/spec/models/get_transac_emails_list_transactional_emails_spec.rb +12 -0
  85. data/spec/models/upload_image_to_gallery_spec.rb +47 -0
  86. metadata +10 -2
@@ -55,7 +55,7 @@ describe 'SendersApi' do
55
55
  end
56
56
 
57
57
  # unit tests for get_ips
58
- # Return all the dedicated IPs for your account
58
+ # Get all the dedicated IPs for your account
59
59
  # @param [Hash] opts the optional parameters
60
60
  # @return [GetIps]
61
61
  describe 'get_ips test' do
@@ -65,7 +65,7 @@ describe 'SendersApi' do
65
65
  end
66
66
 
67
67
  # unit tests for get_ips_from_sender
68
- # Return all the dedicated IPs for a sender
68
+ # Get all the dedicated IPs for a sender
69
69
  # @param sender_id Id of the sender
70
70
  # @param [Hash] opts the optional parameters
71
71
  # @return [GetIpsFromSender]
@@ -44,7 +44,7 @@ describe 'SMSCampaignsApi' do
44
44
  end
45
45
 
46
46
  # unit tests for delete_sms_campaign
47
- # Delete the SMS campaign
47
+ # Delete an SMS campaign
48
48
  # @param campaign_id id of the SMS campaign
49
49
  # @param [Hash] opts the optional parameters
50
50
  # @return [nil]
@@ -66,7 +66,7 @@ describe 'SMSCampaignsApi' do
66
66
  end
67
67
 
68
68
  # unit tests for get_sms_campaigns
69
- # Returns the informations for all your created SMS campaigns
69
+ # Returns the information for all your created SMS campaigns
70
70
  # @param [Hash] opts the optional parameters
71
71
  # @option opts [String] :status Status of campaign.
72
72
  # @option opts [DateTime] :start_date Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent sms campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
@@ -81,7 +81,7 @@ describe 'SMSCampaignsApi' do
81
81
  end
82
82
 
83
83
  # unit tests for request_sms_recipient_export
84
- # Exports the recipients of the specified campaign.
84
+ # Export an SMS campaign's recipients
85
85
  # It returns the background process ID which on completion calls the notify URL that you have set in the input.
86
86
  # @param campaign_id id of the campaign
87
87
  # @param [Hash] opts the optional parameters
@@ -105,7 +105,7 @@ describe 'SMSCampaignsApi' do
105
105
  end
106
106
 
107
107
  # unit tests for send_sms_report
108
- # Send report of SMS campaigns
108
+ # Send an SMS campaign's report
109
109
  # Send report of Sent and Archived campaign, to the specified email addresses, with respective data and a pdf attachment in detail.
110
110
  # @param campaign_id id of the campaign
111
111
  # @param send_report Values for send a report
@@ -118,7 +118,7 @@ describe 'SMSCampaignsApi' do
118
118
  end
119
119
 
120
120
  # unit tests for send_test_sms
121
- # Send an SMS
121
+ # Send a test SMS campaign
122
122
  # @param campaign_id Id of the SMS campaign
123
123
  # @param phone_number Mobile number of the recipient with the country code. This number must belong to one of your contacts in SendinBlue account and must not be blacklisted
124
124
  # @param [Hash] opts the optional parameters
@@ -130,7 +130,7 @@ describe 'SMSCampaignsApi' do
130
130
  end
131
131
 
132
132
  # unit tests for update_sms_campaign
133
- # Updates an SMS campaign
133
+ # Update an SMS campaign
134
134
  # @param campaign_id id of the SMS campaign
135
135
  # @param update_sms_campaign Values to update an SMS Campaign
136
136
  # @param [Hash] opts the optional parameters
@@ -142,7 +142,7 @@ describe 'SMSCampaignsApi' do
142
142
  end
143
143
 
144
144
  # unit tests for update_sms_campaign_status
145
- # Update the campaign status
145
+ # Update a campaign's status
146
146
  # @param campaign_id id of the campaign
147
147
  # @param status Status of the campaign.
148
148
  # @param [Hash] opts the optional parameters
@@ -33,7 +33,7 @@ describe 'SMTPApi' do
33
33
  end
34
34
 
35
35
  # unit tests for create_smtp_template
36
- # Create a transactional email template
36
+ # Create an email template
37
37
  # @param smtp_template values to update in transactional email template
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @return [CreateModel]
@@ -56,7 +56,7 @@ describe 'SMTPApi' do
56
56
  end
57
57
 
58
58
  # unit tests for delete_smtp_template
59
- # Delete an inactive transactional email template
59
+ # Delete an inactive email template
60
60
  # @param template_id id of the template
61
61
  # @param [Hash] opts the optional parameters
62
62
  # @return [nil]
@@ -117,7 +117,7 @@ describe 'SMTPApi' do
117
117
  end
118
118
 
119
119
  # unit tests for get_smtp_template
120
- # Returns the template informations
120
+ # Returns the template information
121
121
  # @param template_id id of the template
122
122
  # @param [Hash] opts the optional parameters
123
123
  # @return [GetSmtpTemplateOverview]
@@ -128,7 +128,7 @@ describe 'SMTPApi' do
128
128
  end
129
129
 
130
130
  # unit tests for get_smtp_templates
131
- # Get the list of transactional email templates
131
+ # Get the list of email templates
132
132
  # @param [Hash] opts the optional parameters
133
133
  # @option opts [BOOLEAN] :template_status Filter on the status of the template. Active = true, inactive = false
134
134
  # @option opts [Integer] :limit Number of documents returned per page
@@ -173,7 +173,7 @@ describe 'SMTPApi' do
173
173
  # @option opts [String] :email Mandatory if templateId and messageId are not passed in query filters. Email address to which transactional email has been sent.
174
174
  # @option opts [Integer] :template_id Mandatory if email and messageId are not passed in query filters. Id of the template that was used to compose transactional email.
175
175
  # @option opts [String] :message_id Mandatory if templateId and email are not passed in query filters. Message ID of the transactional email sent.
176
- # @option opts [String] :start_date Mandatory if endDate is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Maximum time period that can be selected is one month.
176
+ # @option opts [Date] :start_date Mandatory if endDate is used. Starting date (YYYY-MM-DD) from which you want to fetch the list. Maximum time period that can be selected is one month.
177
177
  # @option opts [Date] :end_date Mandatory if startDate is used. Ending date (YYYY-MM-DD) till which you want to fetch the list. Maximum time period that can be selected is one month.
178
178
  # @return [GetTransacEmailsList]
179
179
  describe 'get_transac_emails_list test' do
@@ -241,7 +241,7 @@ describe 'SMTPApi' do
241
241
  end
242
242
 
243
243
  # unit tests for update_smtp_template
244
- # Updates a transactional email templates
244
+ # Update an email template
245
245
  # @param template_id id of the template
246
246
  # @param smtp_template values to update in transactional email template
247
247
  # @param [Hash] opts the optional parameters
@@ -33,7 +33,7 @@ describe 'TransactionalSMSApi' do
33
33
  end
34
34
 
35
35
  # unit tests for get_sms_events
36
- # Get all the SMS activity (unaggregated events)
36
+ # Get all your SMS activity (unaggregated events)
37
37
  # @param [Hash] opts the optional parameters
38
38
  # @option opts [Integer] :limit Number of documents per page
39
39
  # @option opts [String] :start_date Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the report
@@ -79,7 +79,7 @@ describe 'TransactionalSMSApi' do
79
79
  end
80
80
 
81
81
  # unit tests for send_transac_sms
82
- # Send the SMS campaign to the specified mobile number
82
+ # Send the SMS campaign to a mobile number
83
83
  # @param send_transac_sms Values to send a transactional SMS
84
84
  # @param [Hash] opts the optional parameters
85
85
  # @return [SendSms]
@@ -0,0 +1,71 @@
1
+ =begin
2
+ #SendinBlue API
3
+
4
+ #SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/sendinblue **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable |
5
+
6
+ OpenAPI spec version: 3.0.0
7
+ Contact: contact@sendinblue.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.12
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for SibApiV3Sdk::CreateDoiContact
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'CreateDoiContact' do
21
+ before do
22
+ # run before each test
23
+ @instance = SibApiV3Sdk::CreateDoiContact.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of CreateDoiContact' do
31
+ it 'should create an instance of CreateDoiContact' do
32
+ expect(@instance).to be_instance_of(SibApiV3Sdk::CreateDoiContact)
33
+ end
34
+ end
35
+ describe 'test attribute "email"' 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 "attributes"' 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 "include_list_ids"' 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 "exclude_list_ids"' 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 "template_id"' 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 "redirection_url"' 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
+ end
@@ -208,6 +208,12 @@ describe 'GetEmailCampaign' do
208
208
  end
209
209
  end
210
210
 
211
+ describe 'test attribute "return_bounce"' do
212
+ it 'should work' do
213
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
214
+ end
215
+ end
216
+
211
217
  describe 'test attribute "recipients"' do
212
218
  it 'should work' do
213
219
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -208,4 +208,10 @@ describe 'GetExtendedCampaignOverview' do
208
208
  end
209
209
  end
210
210
 
211
+ describe 'test attribute "return_bounce"' do
212
+ it 'should work' do
213
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
214
+ end
215
+ end
216
+
211
217
  end
@@ -68,4 +68,16 @@ describe 'GetTransacEmailsListTransactionalEmails' do
68
68
  end
69
69
  end
70
70
 
71
+ describe 'test attribute "from"' 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 "tags"' 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
+
71
83
  end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #SendinBlue API
3
+
4
+ #SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/sendinblue **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable |
5
+
6
+ OpenAPI spec version: 3.0.0
7
+ Contact: contact@sendinblue.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.12
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for SibApiV3Sdk::UploadImageToGallery
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'UploadImageToGallery' do
21
+ before do
22
+ # run before each test
23
+ @instance = SibApiV3Sdk::UploadImageToGallery.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of UploadImageToGallery' do
31
+ it 'should create an instance of UploadImageToGallery' do
32
+ expect(@instance).to be_instance_of(SibApiV3Sdk::UploadImageToGallery)
33
+ end
34
+ end
35
+ describe 'test attribute "image_url"' 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
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sib-api-v3-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.0
4
+ version: 5.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SendinBlue Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-05 00:00:00.000000000 Z
11
+ date: 2020-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -212,6 +212,7 @@ files:
212
212
  - docs/CreateAttributeEnumeration.md
213
213
  - docs/CreateChild.md
214
214
  - docs/CreateContact.md
215
+ - docs/CreateDoiContact.md
215
216
  - docs/CreateEmailCampaign.md
216
217
  - docs/CreateEmailCampaignRecipients.md
217
218
  - docs/CreateEmailCampaignSender.md
@@ -382,6 +383,7 @@ files:
382
383
  - docs/UpdateSmtpTemplate.md
383
384
  - docs/UpdateSmtpTemplateSender.md
384
385
  - docs/UpdateWebhook.md
386
+ - docs/UploadImageToGallery.md
385
387
  - docs/WebhooksApi.md
386
388
  - lib/sib-api-v3-sdk.rb
387
389
  - lib/sib-api-v3-sdk/api/account_api.rb
@@ -408,6 +410,7 @@ files:
408
410
  - lib/sib-api-v3-sdk/models/create_attribute_enumeration.rb
409
411
  - lib/sib-api-v3-sdk/models/create_child.rb
410
412
  - lib/sib-api-v3-sdk/models/create_contact.rb
413
+ - lib/sib-api-v3-sdk/models/create_doi_contact.rb
411
414
  - lib/sib-api-v3-sdk/models/create_email_campaign.rb
412
415
  - lib/sib-api-v3-sdk/models/create_email_campaign_recipients.rb
413
416
  - lib/sib-api-v3-sdk/models/create_email_campaign_sender.rb
@@ -569,6 +572,7 @@ files:
569
572
  - lib/sib-api-v3-sdk/models/update_smtp_template.rb
570
573
  - lib/sib-api-v3-sdk/models/update_smtp_template_sender.rb
571
574
  - lib/sib-api-v3-sdk/models/update_webhook.rb
575
+ - lib/sib-api-v3-sdk/models/upload_image_to_gallery.rb
572
576
  - lib/sib-api-v3-sdk/version.rb
573
577
  - sib-api-v3-sdk.gemspec
574
578
  - spec/api/account_api_spec.rb
@@ -594,6 +598,7 @@ files:
594
598
  - spec/models/create_attribute_spec.rb
595
599
  - spec/models/create_child_spec.rb
596
600
  - spec/models/create_contact_spec.rb
601
+ - spec/models/create_doi_contact_spec.rb
597
602
  - spec/models/create_email_campaign_recipients_spec.rb
598
603
  - spec/models/create_email_campaign_sender_spec.rb
599
604
  - spec/models/create_email_campaign_spec.rb
@@ -755,6 +760,7 @@ files:
755
760
  - spec/models/update_smtp_template_sender_spec.rb
756
761
  - spec/models/update_smtp_template_spec.rb
757
762
  - spec/models/update_webhook_spec.rb
763
+ - spec/models/upload_image_to_gallery_spec.rb
758
764
  - spec/spec_helper.rb
759
765
  homepage: https://www.sendinblue.com/
760
766
  licenses:
@@ -804,6 +810,7 @@ test_files:
804
810
  - spec/models/create_attribute_spec.rb
805
811
  - spec/models/create_child_spec.rb
806
812
  - spec/models/create_contact_spec.rb
813
+ - spec/models/create_doi_contact_spec.rb
807
814
  - spec/models/create_email_campaign_recipients_spec.rb
808
815
  - spec/models/create_email_campaign_sender_spec.rb
809
816
  - spec/models/create_email_campaign_spec.rb
@@ -965,4 +972,5 @@ test_files:
965
972
  - spec/models/update_smtp_template_sender_spec.rb
966
973
  - spec/models/update_smtp_template_spec.rb
967
974
  - spec/models/update_webhook_spec.rb
975
+ - spec/models/upload_image_to_gallery_spec.rb
968
976
  - spec/spec_helper.rb