sib-api-v3-sdk 5.2.3 → 5.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/Gemfile +1 -1
- data/LICENSE.md +1 -1
- data/README.md +96 -68
- data/docs/AbTestCampaignResult.md +13 -0
- data/docs/AccountApi.md +3 -3
- data/docs/AddContactToList.md +1 -1
- data/docs/AttributesApi.md +18 -18
- data/docs/ContactsApi.md +123 -60
- data/docs/CreateAttribute.md +1 -1
- data/docs/CreateChild.md +1 -0
- data/docs/CreateContact.md +3 -3
- data/docs/CreateDoiContact.md +13 -0
- data/docs/CreateEmailCampaign.md +6 -3
- data/docs/CreateEmailCampaignSender.md +1 -0
- data/docs/CreateReseller.md +1 -0
- data/docs/CreateSender.md +1 -1
- data/docs/CreateSmtpEmail.md +1 -1
- data/docs/CreateSmtpTemplate.md +1 -1
- data/docs/CreateSmtpTemplateSender.md +1 -0
- data/docs/CreateWebhook.md +2 -2
- data/docs/EmailCampaignsApi.md +202 -25
- data/docs/EmailExportRecipients.md +1 -1
- data/docs/FoldersApi.md +12 -12
- data/docs/GetAccountRelay.md +1 -1
- data/docs/GetAccountRelayData.md +1 -1
- data/docs/GetChildAccountCreationStatus.md +8 -0
- data/docs/GetChildrenList.md +1 -0
- data/docs/GetDeviceBrowserStats.md +11 -0
- data/docs/GetEmailCampaign.md +1 -0
- data/docs/GetExtendedCampaignOverview.md +1 -0
- data/docs/GetExtendedCampaignOverviewSender.md +1 -0
- data/docs/GetExtendedCampaignStats.md +2 -0
- data/docs/GetSharedTemplateUrl.md +8 -0
- data/docs/GetSmtpTemplateOverview.md +1 -0
- data/docs/GetSmtpTemplateOverviewSender.md +1 -0
- data/docs/GetSmtpTemplates.md +1 -1
- data/docs/GetStatsByBrowser.md +7 -0
- data/docs/GetStatsByDevice.md +11 -0
- data/docs/GetTransacBlockedContacts.md +9 -0
- data/docs/GetTransacBlockedContactsContacts.md +11 -0
- data/docs/GetTransacBlockedContactsReason.md +9 -0
- data/docs/GetTransacEmailContent.md +14 -0
- data/docs/GetTransacEmailContentEvents.md +9 -0
- data/docs/GetTransacEmailsList.md +8 -0
- data/docs/GetTransacEmailsListTransactionalEmails.md +15 -0
- data/docs/ListsApi.md +13 -13
- data/docs/PostContactInfoContacts.md +1 -0
- data/docs/RemainingCreditModelChild.md +2 -2
- data/docs/RemainingCreditModelReseller.md +2 -2
- data/docs/RemoveContactFromList.md +2 -2
- data/docs/RequestContactExport.md +3 -2
- data/docs/RequestContactExportCustomContactFilter.md +13 -0
- data/docs/RequestContactImport.md +2 -2
- data/docs/RequestSMSRecipientExport.md +1 -1
- data/docs/ResellerApi.md +215 -86
- data/docs/SMSCampaignsApi.md +24 -24
- data/docs/SMTPApi.md +350 -42
- data/docs/SendEmail.md +2 -2
- data/docs/SendReport.md +1 -1
- data/docs/SendReportEmail.md +1 -1
- data/docs/SendSmtpEmail.md +4 -4
- data/docs/SendSmtpEmailBcc.md +1 -1
- data/docs/SendSmtpEmailCc.md +1 -1
- data/docs/SendSmtpEmailReplyTo.md +1 -1
- data/docs/SendSmtpEmailSender.md +1 -1
- data/docs/SendSmtpEmailTo.md +1 -1
- data/docs/SendTransacSms.md +1 -1
- data/docs/SendersApi.md +8 -8
- data/docs/TransactionalSMSApi.md +17 -17
- data/docs/UpdateAttribute.md +1 -1
- data/docs/UpdateChildAccountStatus.md +11 -0
- data/docs/UpdateContact.md +2 -2
- data/docs/UpdateEmailCampaign.md +5 -2
- data/docs/UpdateEmailCampaignSender.md +1 -0
- data/docs/UpdateSmtpTemplate.md +1 -1
- data/docs/UpdateSmtpTemplateSender.md +1 -0
- data/docs/UploadImageToGallery.md +9 -0
- data/docs/WebhooksApi.md +1 -1
- data/lib/sib-api-v3-sdk.rb +19 -2
- data/lib/sib-api-v3-sdk/api/account_api.rb +8 -11
- data/lib/sib-api-v3-sdk/api/attributes_api.rb +23 -35
- data/lib/sib-api-v3-sdk/api/contacts_api.rb +169 -186
- data/lib/sib-api-v3-sdk/api/email_campaigns_api.rb +204 -73
- data/lib/sib-api-v3-sdk/api/folders_api.rb +29 -47
- data/lib/sib-api-v3-sdk/api/lists_api.rb +38 -65
- data/lib/sib-api-v3-sdk/api/process_api.rb +9 -15
- data/lib/sib-api-v3-sdk/api/reseller_api.rb +280 -201
- data/lib/sib-api-v3-sdk/api/senders_api.rb +25 -43
- data/lib/sib-api-v3-sdk/api/sms_campaigns_api.rb +47 -73
- data/lib/sib-api-v3-sdk/api/smtp_api.rb +342 -92
- data/lib/sib-api-v3-sdk/api/transactional_sms_api.rb +19 -31
- data/lib/sib-api-v3-sdk/api/webhooks_api.rb +18 -33
- data/lib/sib-api-v3-sdk/api_client.rb +10 -10
- data/lib/sib-api-v3-sdk/api_error.rb +2 -2
- data/lib/sib-api-v3-sdk/configuration.rb +3 -3
- data/lib/sib-api-v3-sdk/models/ab_test_campaign_result.rb +280 -0
- data/lib/sib-api-v3-sdk/models/add_child_domain.rb +7 -12
- data/lib/sib-api-v3-sdk/models/add_contact_to_list.rb +8 -13
- data/lib/sib-api-v3-sdk/models/add_credits.rb +7 -12
- data/lib/sib-api-v3-sdk/models/create_attribute.rb +11 -15
- data/lib/sib-api-v3-sdk/models/create_attribute_enumeration.rb +9 -14
- data/lib/sib-api-v3-sdk/models/create_child.rb +58 -19
- data/lib/sib-api-v3-sdk/models/create_contact.rb +10 -15
- data/lib/sib-api-v3-sdk/models/create_doi_contact.rb +253 -0
- data/lib/sib-api-v3-sdk/models/create_email_campaign.rb +82 -32
- data/lib/sib-api-v3-sdk/models/create_email_campaign_recipients.rb +7 -11
- data/lib/sib-api-v3-sdk/models/create_email_campaign_sender.rb +21 -15
- data/lib/sib-api-v3-sdk/models/create_list.rb +9 -14
- data/lib/sib-api-v3-sdk/models/create_model.rb +8 -13
- data/lib/sib-api-v3-sdk/models/create_reseller.rb +20 -15
- data/lib/sib-api-v3-sdk/models/create_sender.rb +10 -15
- data/lib/sib-api-v3-sdk/models/create_sender_ips.rb +13 -19
- data/lib/sib-api-v3-sdk/models/create_sender_model.rb +8 -13
- data/lib/sib-api-v3-sdk/models/create_sms_campaign.rb +13 -18
- data/lib/sib-api-v3-sdk/models/create_sms_campaign_recipients.rb +8 -13
- data/lib/sib-api-v3-sdk/models/create_smtp_email.rb +9 -14
- data/lib/sib-api-v3-sdk/models/create_smtp_template.rb +11 -16
- data/lib/sib-api-v3-sdk/models/create_smtp_template_sender.rb +21 -15
- data/lib/sib-api-v3-sdk/models/create_update_contact_model.rb +7 -12
- data/lib/sib-api-v3-sdk/models/create_update_folder.rb +7 -12
- data/lib/sib-api-v3-sdk/models/create_webhook.rb +14 -18
- data/lib/sib-api-v3-sdk/models/created_process_id.rb +8 -13
- data/lib/sib-api-v3-sdk/models/delete_hardbounces.rb +7 -12
- data/lib/sib-api-v3-sdk/models/email_export_recipients.rb +12 -16
- data/lib/sib-api-v3-sdk/models/error_model.rb +12 -16
- data/lib/sib-api-v3-sdk/models/get_account.rb +14 -19
- data/lib/sib-api-v3-sdk/models/get_account_marketing_automation.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_account_plan.rb +16 -20
- data/lib/sib-api-v3-sdk/models/get_account_relay.rb +11 -15
- data/lib/sib-api-v3-sdk/models/get_account_relay_data.rb +12 -16
- data/lib/sib-api-v3-sdk/models/get_aggregated_report.rb +20 -25
- data/lib/sib-api-v3-sdk/models/get_attributes.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_attributes_attributes.rb +15 -19
- data/lib/sib-api-v3-sdk/models/get_attributes_enumeration.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_campaign_overview.rb +17 -21
- data/lib/sib-api-v3-sdk/models/get_campaign_recipients.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_campaign_stats.rb +17 -22
- data/lib/sib-api-v3-sdk/models/get_child_account_creation_status.rb +189 -0
- data/lib/sib-api-v3-sdk/models/get_child_domain.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_child_domains.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_child_info.rb +12 -17
- data/lib/sib-api-v3-sdk/models/get_child_info_api_keys.rb +8 -12
- data/lib/sib-api-v3-sdk/models/get_child_info_api_keys_v2.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_child_info_api_keys_v3.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_child_info_credits.rb +7 -11
- data/lib/sib-api-v3-sdk/models/get_child_info_statistics.rb +7 -11
- data/lib/sib-api-v3-sdk/models/get_children_list.rb +24 -14
- data/lib/sib-api-v3-sdk/models/get_client.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_contact_campaign_stats.rb +7 -11
- data/lib/sib-api-v3-sdk/models/get_contact_campaign_stats_clicked.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_contact_campaign_stats_opened.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_contact_campaign_stats_transac_attributes.rb +10 -15
- data/lib/sib-api-v3-sdk/models/get_contact_campaign_stats_unsubscriptions.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_contact_details.rb +15 -20
- data/lib/sib-api-v3-sdk/models/get_contacts.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_device_browser_stats.rb +234 -0
- data/lib/sib-api-v3-sdk/models/get_email_campaign.rb +40 -34
- data/lib/sib-api-v3-sdk/models/get_email_campaigns.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_email_event_report.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_email_event_report_events.rb +14 -18
- data/lib/sib-api-v3-sdk/models/get_extended_campaign_overview.rb +40 -34
- data/lib/sib-api-v3-sdk/models/get_extended_campaign_overview_sender.rb +19 -14
- data/lib/sib-api-v3-sdk/models/get_extended_campaign_stats.rb +45 -20
- data/lib/sib-api-v3-sdk/models/get_extended_client.rb +12 -17
- data/lib/sib-api-v3-sdk/models/get_extended_client_address.rb +11 -15
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details.rb +16 -21
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics.rb +7 -11
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_clicked.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_links.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_messages_sent.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_opened.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_unsubscriptions.rb +9 -13
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_unsubscriptions_admin_unsubscription.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_extended_contact_details_statistics_unsubscriptions_user_unsubscription.rb +10 -15
- data/lib/sib-api-v3-sdk/models/get_extended_list.rb +13 -18
- data/lib/sib-api-v3-sdk/models/get_extended_list_campaign_stats.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_folder.rb +12 -17
- data/lib/sib-api-v3-sdk/models/get_folder_lists.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_folders.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_ip.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_ip_from_sender.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_ips.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_ips_from_sender.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_list.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_lists.rb +9 -14
- data/lib/sib-api-v3-sdk/models/get_process.rb +13 -17
- data/lib/sib-api-v3-sdk/models/get_processes.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_reports.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_reports_reports.rb +20 -25
- data/lib/sib-api-v3-sdk/models/get_senders_list.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_senders_list_ips.rb +10 -15
- data/lib/sib-api-v3-sdk/models/get_senders_list_senders.rb +11 -16
- data/lib/sib-api-v3-sdk/models/get_shared_template_url.rb +189 -0
- data/lib/sib-api-v3-sdk/models/get_sms_campaign.rb +20 -24
- data/lib/sib-api-v3-sdk/models/get_sms_campaign_overview.rb +18 -22
- data/lib/sib-api-v3-sdk/models/get_sms_campaign_stats.rb +14 -19
- data/lib/sib-api-v3-sdk/models/get_sms_campaigns.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_sms_event_report.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_sms_event_report_events.rb +14 -18
- data/lib/sib-api-v3-sdk/models/get_smtp_template_overview.rb +31 -26
- data/lib/sib-api-v3-sdk/models/get_smtp_template_overview_sender.rb +19 -14
- data/lib/sib-api-v3-sdk/models/get_smtp_templates.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_sso_token.rb +8 -13
- data/lib/sib-api-v3-sdk/models/get_stats_by_browser.rb +174 -0
- data/lib/sib-api-v3-sdk/models/get_stats_by_device.rb +222 -0
- data/lib/sib-api-v3-sdk/models/get_stats_by_domain.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_transac_aggregated_sms_report.rb +17 -22
- data/lib/sib-api-v3-sdk/models/get_transac_blocked_contacts.rb +195 -0
- data/lib/sib-api-v3-sdk/models/get_transac_blocked_contacts_contacts.rb +233 -0
- data/lib/sib-api-v3-sdk/models/get_transac_blocked_contacts_reason.rb +229 -0
- data/lib/sib-api-v3-sdk/models/get_transac_email_content.rb +276 -0
- data/lib/sib-api-v3-sdk/models/get_transac_email_content_events.rb +204 -0
- data/lib/sib-api-v3-sdk/models/get_transac_emails_list.rb +185 -0
- data/lib/sib-api-v3-sdk/models/get_transac_emails_list_transactional_emails.rb +281 -0
- data/lib/sib-api-v3-sdk/models/get_transac_sms_report.rb +7 -12
- data/lib/sib-api-v3-sdk/models/get_transac_sms_report_reports.rb +17 -22
- data/lib/sib-api-v3-sdk/models/get_webhook.rb +17 -21
- data/lib/sib-api-v3-sdk/models/get_webhooks.rb +8 -13
- data/lib/sib-api-v3-sdk/models/manage_ip.rb +7 -12
- data/lib/sib-api-v3-sdk/models/post_contact_info.rb +8 -13
- data/lib/sib-api-v3-sdk/models/post_contact_info_contacts.rb +19 -14
- data/lib/sib-api-v3-sdk/models/post_send_failed.rb +9 -14
- data/lib/sib-api-v3-sdk/models/post_send_sms_test_failed.rb +9 -14
- data/lib/sib-api-v3-sdk/models/remaining_credit_model.rb +9 -14
- data/lib/sib-api-v3-sdk/models/remaining_credit_model_child.rb +11 -15
- data/lib/sib-api-v3-sdk/models/remaining_credit_model_reseller.rb +11 -16
- data/lib/sib-api-v3-sdk/models/remove_contact_from_list.rb +9 -14
- data/lib/sib-api-v3-sdk/models/remove_credits.rb +7 -12
- data/lib/sib-api-v3-sdk/models/request_contact_export.rb +19 -20
- data/lib/sib-api-v3-sdk/models/request_contact_export_custom_contact_filter.rb +293 -0
- data/lib/sib-api-v3-sdk/models/request_contact_import.rb +9 -14
- data/lib/sib-api-v3-sdk/models/request_contact_import_new_list.rb +7 -11
- data/lib/sib-api-v3-sdk/models/request_sms_recipient_export.rb +12 -16
- data/lib/sib-api-v3-sdk/models/send_email.rb +10 -15
- data/lib/sib-api-v3-sdk/models/send_email_attachment.rb +12 -17
- data/lib/sib-api-v3-sdk/models/send_report.rb +12 -16
- data/lib/sib-api-v3-sdk/models/send_report_email.rb +14 -17
- data/lib/sib-api-v3-sdk/models/send_sms.rb +9 -14
- data/lib/sib-api-v3-sdk/models/send_smtp_email.rb +12 -17
- data/lib/sib-api-v3-sdk/models/send_smtp_email_attachment.rb +9 -15
- data/lib/sib-api-v3-sdk/models/send_smtp_email_bcc.rb +9 -14
- data/lib/sib-api-v3-sdk/models/send_smtp_email_cc.rb +9 -14
- data/lib/sib-api-v3-sdk/models/send_smtp_email_reply_to.rb +10 -14
- data/lib/sib-api-v3-sdk/models/send_smtp_email_sender.rb +10 -14
- data/lib/sib-api-v3-sdk/models/send_smtp_email_to.rb +9 -14
- data/lib/sib-api-v3-sdk/models/send_template_email.rb +8 -13
- data/lib/sib-api-v3-sdk/models/send_test_email.rb +7 -12
- data/lib/sib-api-v3-sdk/models/send_test_sms.rb +7 -12
- data/lib/sib-api-v3-sdk/models/send_transac_sms.rb +17 -21
- data/lib/sib-api-v3-sdk/models/update_attribute.rb +8 -13
- data/lib/sib-api-v3-sdk/models/update_attribute_enumeration.rb +9 -14
- data/lib/sib-api-v3-sdk/models/update_campaign_status.rb +10 -13
- data/lib/sib-api-v3-sdk/models/update_child.rb +7 -12
- data/lib/sib-api-v3-sdk/models/update_child_account_status.rb +214 -0
- data/lib/sib-api-v3-sdk/models/update_child_domain.rb +7 -12
- data/lib/sib-api-v3-sdk/models/update_contact.rb +9 -14
- data/lib/sib-api-v3-sdk/models/update_email_campaign.rb +79 -29
- data/lib/sib-api-v3-sdk/models/update_email_campaign_recipients.rb +7 -11
- data/lib/sib-api-v3-sdk/models/update_email_campaign_sender.rb +20 -14
- data/lib/sib-api-v3-sdk/models/update_list.rb +7 -12
- data/lib/sib-api-v3-sdk/models/update_sender.rb +7 -12
- data/lib/sib-api-v3-sdk/models/update_sms_campaign.rb +9 -15
- data/lib/sib-api-v3-sdk/models/update_smtp_template.rb +8 -13
- data/lib/sib-api-v3-sdk/models/update_smtp_template_sender.rb +20 -14
- data/lib/sib-api-v3-sdk/models/update_webhook.rb +7 -11
- data/lib/sib-api-v3-sdk/models/upload_image_to_gallery.rb +199 -0
- data/lib/sib-api-v3-sdk/version.rb +3 -3
- data/sib-api-v3-sdk.gemspec +5 -5
- data/spec/api/account_api_spec.rb +4 -5
- data/spec/api/attributes_api_spec.rb +10 -14
- data/spec/api/contacts_api_spec.rb +57 -68
- data/spec/api/email_campaigns_api_spec.rb +54 -28
- data/spec/api/folders_api_spec.rb +12 -18
- data/spec/api/lists_api_spec.rb +15 -24
- data/spec/api/process_api_spec.rb +4 -6
- data/spec/api/reseller_api_spec.rb +64 -52
- data/spec/api/senders_api_spec.rb +10 -16
- data/spec/api/sms_campaigns_api_spec.rb +19 -27
- data/spec/api/smtp_api_spec.rb +88 -34
- data/spec/api/transactional_sms_api_spec.rb +8 -12
- data/spec/api/webhooks_api_spec.rb +7 -12
- data/spec/api_client_spec.rb +36 -36
- data/spec/configuration_spec.rb +10 -10
- data/spec/models/ab_test_campaign_result_spec.rb +79 -0
- data/spec/models/add_child_domain_spec.rb +3 -4
- data/spec/models/add_contact_to_list_spec.rb +3 -4
- data/spec/models/add_credits_spec.rb +4 -5
- data/spec/models/create_attribute_enumeration_spec.rb +4 -5
- data/spec/models/create_attribute_spec.rb +9 -10
- data/spec/models/create_child_spec.rb +17 -8
- data/spec/models/create_contact_spec.rb +9 -10
- data/spec/models/create_doi_contact_spec.rb +71 -0
- data/spec/models/create_email_campaign_recipients_spec.rb +4 -5
- data/spec/models/create_email_campaign_sender_spec.rb +10 -5
- data/spec/models/create_email_campaign_spec.rb +49 -32
- data/spec/models/create_list_spec.rb +4 -5
- data/spec/models/create_model_spec.rb +3 -4
- data/spec/models/create_reseller_spec.rb +9 -4
- data/spec/models/create_sender_ips_spec.rb +5 -6
- data/spec/models/create_sender_model_spec.rb +5 -6
- data/spec/models/create_sender_spec.rb +5 -6
- data/spec/models/create_sms_campaign_recipients_spec.rb +4 -5
- data/spec/models/create_sms_campaign_spec.rb +7 -8
- data/spec/models/create_smtp_email_spec.rb +3 -4
- data/spec/models/create_smtp_template_sender_spec.rb +10 -5
- data/spec/models/create_smtp_template_spec.rb +12 -13
- data/spec/models/create_update_contact_model_spec.rb +3 -4
- data/spec/models/create_update_folder_spec.rb +3 -4
- data/spec/models/create_webhook_spec.rb +14 -15
- data/spec/models/created_process_id_spec.rb +3 -4
- data/spec/models/delete_hardbounces_spec.rb +5 -6
- data/spec/models/email_export_recipients_spec.rb +8 -9
- data/spec/models/error_model_spec.rb +8 -9
- data/spec/models/get_account_marketing_automation_spec.rb +4 -5
- data/spec/models/get_account_plan_spec.rb +16 -17
- data/spec/models/get_account_relay_data_spec.rb +5 -6
- data/spec/models/get_account_relay_spec.rb +4 -5
- data/spec/models/get_account_spec.rb +10 -11
- data/spec/models/get_aggregated_report_spec.rb +15 -16
- data/spec/models/get_attributes_attributes_spec.rb +15 -16
- data/spec/models/get_attributes_enumeration_spec.rb +4 -5
- data/spec/models/get_attributes_spec.rb +3 -4
- data/spec/models/get_campaign_overview_spec.rb +23 -24
- data/spec/models/get_campaign_recipients_spec.rb +4 -5
- data/spec/models/get_campaign_stats_spec.rb +14 -15
- data/spec/models/get_child_account_creation_status_spec.rb +41 -0
- data/spec/models/get_child_domain_spec.rb +4 -5
- data/spec/models/get_child_domains_spec.rb +2 -3
- data/spec/models/get_child_info_api_keys_spec.rb +4 -5
- data/spec/models/get_child_info_api_keys_v2_spec.rb +4 -5
- data/spec/models/get_child_info_api_keys_v3_spec.rb +4 -5
- data/spec/models/get_child_info_credits_spec.rb +4 -5
- data/spec/models/get_child_info_spec.rb +11 -12
- data/spec/models/get_child_info_statistics_spec.rb +5 -6
- data/spec/models/get_children_list_spec.rb +9 -4
- data/spec/models/get_client_spec.rb +6 -7
- data/spec/models/get_contact_campaign_stats_clicked_spec.rb +4 -5
- data/spec/models/get_contact_campaign_stats_opened_spec.rb +6 -7
- data/spec/models/get_contact_campaign_stats_spec.rb +10 -11
- data/spec/models/get_contact_campaign_stats_transac_attributes_spec.rb +5 -6
- data/spec/models/get_contact_campaign_stats_unsubscriptions_spec.rb +4 -5
- data/spec/models/get_contact_details_spec.rb +11 -12
- data/spec/models/get_contacts_spec.rb +4 -5
- data/spec/models/get_device_browser_stats_spec.rb +59 -0
- data/spec/models/get_email_campaign_spec.rb +46 -41
- data/spec/models/get_email_campaigns_spec.rb +4 -5
- data/spec/models/get_email_event_report_events_spec.rb +16 -17
- data/spec/models/get_email_event_report_spec.rb +3 -4
- data/spec/models/get_extended_campaign_overview_sender_spec.rb +10 -5
- data/spec/models/get_extended_campaign_overview_spec.rb +44 -39
- data/spec/models/get_extended_campaign_stats_spec.rb +20 -9
- data/spec/models/get_extended_client_address_spec.rb +6 -7
- data/spec/models/get_extended_client_spec.rb +7 -8
- data/spec/models/get_extended_contact_details_spec.rb +12 -13
- data/spec/models/get_extended_contact_details_statistics_clicked_spec.rb +4 -5
- data/spec/models/get_extended_contact_details_statistics_links_spec.rb +6 -7
- data/spec/models/get_extended_contact_details_statistics_messages_sent_spec.rb +4 -5
- data/spec/models/get_extended_contact_details_statistics_opened_spec.rb +6 -7
- data/spec/models/get_extended_contact_details_statistics_spec.rb +10 -11
- data/spec/models/get_extended_contact_details_statistics_unsubscriptions_admin_unsubscription_spec.rb +4 -5
- data/spec/models/get_extended_contact_details_statistics_unsubscriptions_spec.rb +4 -5
- data/spec/models/get_extended_contact_details_statistics_unsubscriptions_user_unsubscription_spec.rb +5 -6
- data/spec/models/get_extended_list_campaign_stats_spec.rb +4 -5
- data/spec/models/get_extended_list_spec.rb +10 -11
- data/spec/models/get_folder_lists_spec.rb +4 -5
- data/spec/models/get_folder_spec.rb +7 -8
- data/spec/models/get_folders_spec.rb +4 -5
- data/spec/models/get_ip_from_sender_spec.rb +6 -7
- data/spec/models/get_ip_spec.rb +6 -7
- data/spec/models/get_ips_from_sender_spec.rb +3 -4
- data/spec/models/get_ips_spec.rb +3 -4
- data/spec/models/get_list_spec.rb +6 -7
- data/spec/models/get_lists_spec.rb +4 -5
- data/spec/models/get_process_spec.rb +10 -11
- data/spec/models/get_processes_spec.rb +4 -5
- data/spec/models/get_reports_reports_spec.rb +15 -16
- data/spec/models/get_reports_spec.rb +3 -4
- data/spec/models/get_senders_list_ips_spec.rb +5 -6
- data/spec/models/get_senders_list_senders_spec.rb +7 -8
- data/spec/models/get_senders_list_spec.rb +3 -4
- data/spec/models/get_shared_template_url_spec.rb +41 -0
- data/spec/models/get_sms_campaign_overview_spec.rb +14 -15
- data/spec/models/get_sms_campaign_spec.rb +16 -17
- data/spec/models/get_sms_campaign_stats_spec.rb +9 -10
- data/spec/models/get_sms_campaigns_spec.rb +4 -5
- data/spec/models/get_sms_event_report_events_spec.rb +13 -14
- data/spec/models/get_sms_event_report_spec.rb +3 -4
- data/spec/models/get_smtp_template_overview_sender_spec.rb +10 -5
- data/spec/models/get_smtp_template_overview_spec.rb +20 -15
- data/spec/models/get_smtp_templates_spec.rb +4 -5
- data/spec/models/get_sso_token_spec.rb +3 -4
- data/spec/models/get_stats_by_browser_spec.rb +35 -0
- data/spec/models/get_stats_by_device_spec.rb +59 -0
- data/spec/models/get_stats_by_domain_spec.rb +2 -3
- data/spec/models/get_transac_aggregated_sms_report_spec.rb +12 -13
- data/spec/models/get_transac_blocked_contacts_contacts_spec.rb +59 -0
- data/spec/models/get_transac_blocked_contacts_reason_spec.rb +51 -0
- data/spec/models/get_transac_blocked_contacts_spec.rb +47 -0
- data/spec/models/get_transac_email_content_events_spec.rb +47 -0
- data/spec/models/get_transac_email_content_spec.rb +77 -0
- data/spec/models/get_transac_emails_list_spec.rb +41 -0
- data/spec/models/get_transac_emails_list_transactional_emails_spec.rb +83 -0
- data/spec/models/get_transac_sms_report_reports_spec.rb +12 -13
- data/spec/models/get_transac_sms_report_spec.rb +3 -4
- data/spec/models/get_webhook_spec.rb +13 -14
- data/spec/models/get_webhooks_spec.rb +3 -4
- data/spec/models/manage_ip_spec.rb +3 -4
- data/spec/models/post_contact_info_contacts_spec.rb +11 -6
- data/spec/models/post_contact_info_spec.rb +3 -4
- data/spec/models/post_send_failed_spec.rb +7 -8
- data/spec/models/post_send_sms_test_failed_spec.rb +6 -7
- data/spec/models/remaining_credit_model_child_spec.rb +4 -5
- data/spec/models/remaining_credit_model_reseller_spec.rb +4 -5
- data/spec/models/remaining_credit_model_spec.rb +4 -5
- data/spec/models/remove_contact_from_list_spec.rb +4 -5
- data/spec/models/remove_credits_spec.rb +4 -5
- data/spec/models/request_contact_export_custom_contact_filter_spec.rb +83 -0
- data/spec/models/request_contact_export_spec.rb +11 -6
- data/spec/models/request_contact_import_new_list_spec.rb +4 -5
- data/spec/models/request_contact_import_spec.rb +11 -12
- data/spec/models/request_sms_recipient_export_spec.rb +8 -9
- data/spec/models/send_email_attachment_spec.rb +4 -5
- data/spec/models/send_email_spec.rb +11 -12
- data/spec/models/send_report_email_spec.rb +12 -13
- data/spec/models/send_report_spec.rb +8 -9
- data/spec/models/send_sms_spec.rb +7 -8
- data/spec/models/send_smtp_email_attachment_spec.rb +5 -6
- data/spec/models/send_smtp_email_bcc_spec.rb +4 -5
- data/spec/models/send_smtp_email_cc_spec.rb +4 -5
- data/spec/models/send_smtp_email_reply_to_spec.rb +4 -5
- data/spec/models/send_smtp_email_sender_spec.rb +4 -5
- data/spec/models/send_smtp_email_spec.rb +15 -16
- data/spec/models/send_smtp_email_to_spec.rb +4 -5
- data/spec/models/send_template_email_spec.rb +3 -4
- data/spec/models/send_test_email_spec.rb +3 -4
- data/spec/models/send_test_sms_spec.rb +3 -4
- data/spec/models/send_transac_sms_spec.rb +12 -13
- data/spec/models/update_attribute_enumeration_spec.rb +4 -5
- data/spec/models/update_attribute_spec.rb +4 -5
- data/spec/models/update_campaign_status_spec.rb +7 -8
- data/spec/models/update_child_account_status_spec.rb +59 -0
- data/spec/models/update_child_domain_spec.rb +3 -4
- data/spec/models/update_child_spec.rb +7 -8
- data/spec/models/update_contact_spec.rb +8 -9
- data/spec/models/update_email_campaign_recipients_spec.rb +4 -5
- data/spec/models/update_email_campaign_sender_spec.rb +10 -5
- data/spec/models/update_email_campaign_spec.rb +49 -32
- data/spec/models/update_list_spec.rb +4 -5
- data/spec/models/update_sender_spec.rb +5 -6
- data/spec/models/update_sms_campaign_spec.rb +7 -8
- data/spec/models/update_smtp_template_sender_spec.rb +10 -5
- data/spec/models/update_smtp_template_spec.rb +12 -13
- data/spec/models/update_webhook_spec.rb +9 -10
- data/spec/models/upload_image_to_gallery_spec.rb +47 -0
- data/spec/spec_helper.rb +2 -2
- metadata +70 -2
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#SendinBlue API
|
3
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 |
|
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
5
|
|
6
6
|
OpenAPI spec version: 3.0.0
|
7
7
|
Contact: contact@sendinblue.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,21 +34,20 @@ describe 'UpdateSender' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "email"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "ips"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
end
|
54
|
-
|
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#SendinBlue API
|
3
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 |
|
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
5
|
|
6
6
|
OpenAPI spec version: 3.0.0
|
7
7
|
Contact: contact@sendinblue.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,33 +34,32 @@ describe 'UpdateSmsCampaign' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "sender"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "content"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
describe 'test attribute "recipients"' do
|
54
54
|
it 'should work' do
|
55
|
-
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
describe 'test attribute "scheduled_at"' do
|
60
60
|
it 'should work' do
|
61
|
-
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
end
|
66
|
-
|
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#SendinBlue API
|
3
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 |
|
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
5
|
|
6
6
|
OpenAPI spec version: 3.0.0
|
7
7
|
Contact: contact@sendinblue.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,15 +34,20 @@ describe 'UpdateSmtpTemplateSender' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "email"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
|
47
|
+
describe 'test attribute "id"' 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
|
48
52
|
|
53
|
+
end
|
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#SendinBlue API
|
3
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 |
|
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
5
|
|
6
6
|
OpenAPI spec version: 3.0.0
|
7
7
|
Contact: contact@sendinblue.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,63 +34,62 @@ describe 'UpdateSmtpTemplate' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "tag"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "sender"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "template_name"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
describe 'test attribute "html_content"' do
|
54
54
|
it 'should work' do
|
55
|
-
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
describe 'test attribute "html_url"' do
|
60
60
|
it 'should work' do
|
61
|
-
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
describe 'test attribute "subject"' do
|
66
66
|
it 'should work' do
|
67
|
-
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
71
|
describe 'test attribute "reply_to"' do
|
72
72
|
it 'should work' do
|
73
|
-
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
describe 'test attribute "to_field"' do
|
78
78
|
it 'should work' do
|
79
|
-
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
83
|
describe 'test attribute "attachment_url"' do
|
84
84
|
it 'should work' do
|
85
|
-
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
89
|
describe 'test attribute "is_active"' do
|
90
90
|
it 'should work' do
|
91
|
-
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
95
|
end
|
96
|
-
|
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#SendinBlue API
|
3
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 |
|
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
5
|
|
6
6
|
OpenAPI spec version: 3.0.0
|
7
7
|
Contact: contact@sendinblue.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,25 +34,24 @@ describe 'UpdateWebhook' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "url"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "description"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "events"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["hardBounce", "softBounce", "blocked", "spam", "delivered", "request", "click", "invalid", "deferred", "opened", "uniqueOpened", "unsubscribed", "listAddition", "contactUpdated", "contactDeleted"])
|
51
|
+
# validator.allowable_values.each do |value|
|
52
|
+
# expect { @instance.events = value }.not_to raise_error
|
53
|
+
# end
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
57
57
|
end
|
58
|
-
|
@@ -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
|
data/spec/spec_helper.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#SendinBlue API
|
3
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 |
|
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
5
|
|
6
6
|
OpenAPI spec version: 3.0.0
|
7
7
|
Contact: contact@sendinblue.com
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
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.
|
4
|
+
version: 5.5.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:
|
11
|
+
date: 2020-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -201,6 +201,7 @@ files:
|
|
201
201
|
- LICENSE.md
|
202
202
|
- README.md
|
203
203
|
- Rakefile
|
204
|
+
- docs/AbTestCampaignResult.md
|
204
205
|
- docs/AccountApi.md
|
205
206
|
- docs/AddChildDomain.md
|
206
207
|
- docs/AddContactToList.md
|
@@ -211,6 +212,7 @@ files:
|
|
211
212
|
- docs/CreateAttributeEnumeration.md
|
212
213
|
- docs/CreateChild.md
|
213
214
|
- docs/CreateContact.md
|
215
|
+
- docs/CreateDoiContact.md
|
214
216
|
- docs/CreateEmailCampaign.md
|
215
217
|
- docs/CreateEmailCampaignRecipients.md
|
216
218
|
- docs/CreateEmailCampaignSender.md
|
@@ -246,6 +248,7 @@ files:
|
|
246
248
|
- docs/GetCampaignOverview.md
|
247
249
|
- docs/GetCampaignRecipients.md
|
248
250
|
- docs/GetCampaignStats.md
|
251
|
+
- docs/GetChildAccountCreationStatus.md
|
249
252
|
- docs/GetChildDomain.md
|
250
253
|
- docs/GetChildDomains.md
|
251
254
|
- docs/GetChildInfo.md
|
@@ -263,6 +266,7 @@ files:
|
|
263
266
|
- docs/GetContactCampaignStatsUnsubscriptions.md
|
264
267
|
- docs/GetContactDetails.md
|
265
268
|
- docs/GetContacts.md
|
269
|
+
- docs/GetDeviceBrowserStats.md
|
266
270
|
- docs/GetEmailCampaign.md
|
267
271
|
- docs/GetEmailCampaigns.md
|
268
272
|
- docs/GetEmailEventReport.md
|
@@ -299,6 +303,7 @@ files:
|
|
299
303
|
- docs/GetSendersList.md
|
300
304
|
- docs/GetSendersListIps.md
|
301
305
|
- docs/GetSendersListSenders.md
|
306
|
+
- docs/GetSharedTemplateUrl.md
|
302
307
|
- docs/GetSmsCampaign.md
|
303
308
|
- docs/GetSmsCampaignOverview.md
|
304
309
|
- docs/GetSmsCampaignStats.md
|
@@ -309,8 +314,17 @@ files:
|
|
309
314
|
- docs/GetSmtpTemplateOverviewSender.md
|
310
315
|
- docs/GetSmtpTemplates.md
|
311
316
|
- docs/GetSsoToken.md
|
317
|
+
- docs/GetStatsByBrowser.md
|
318
|
+
- docs/GetStatsByDevice.md
|
312
319
|
- docs/GetStatsByDomain.md
|
313
320
|
- docs/GetTransacAggregatedSmsReport.md
|
321
|
+
- docs/GetTransacBlockedContacts.md
|
322
|
+
- docs/GetTransacBlockedContactsContacts.md
|
323
|
+
- docs/GetTransacBlockedContactsReason.md
|
324
|
+
- docs/GetTransacEmailContent.md
|
325
|
+
- docs/GetTransacEmailContentEvents.md
|
326
|
+
- docs/GetTransacEmailsList.md
|
327
|
+
- docs/GetTransacEmailsListTransactionalEmails.md
|
314
328
|
- docs/GetTransacSmsReport.md
|
315
329
|
- docs/GetTransacSmsReportReports.md
|
316
330
|
- docs/GetWebhook.md
|
@@ -328,6 +342,7 @@ files:
|
|
328
342
|
- docs/RemoveContactFromList.md
|
329
343
|
- docs/RemoveCredits.md
|
330
344
|
- docs/RequestContactExport.md
|
345
|
+
- docs/RequestContactExportCustomContactFilter.md
|
331
346
|
- docs/RequestContactImport.md
|
332
347
|
- docs/RequestContactImportNewList.md
|
333
348
|
- docs/RequestSMSRecipientExport.md
|
@@ -356,6 +371,7 @@ files:
|
|
356
371
|
- docs/UpdateAttributeEnumeration.md
|
357
372
|
- docs/UpdateCampaignStatus.md
|
358
373
|
- docs/UpdateChild.md
|
374
|
+
- docs/UpdateChildAccountStatus.md
|
359
375
|
- docs/UpdateChildDomain.md
|
360
376
|
- docs/UpdateContact.md
|
361
377
|
- docs/UpdateEmailCampaign.md
|
@@ -367,6 +383,7 @@ files:
|
|
367
383
|
- docs/UpdateSmtpTemplate.md
|
368
384
|
- docs/UpdateSmtpTemplateSender.md
|
369
385
|
- docs/UpdateWebhook.md
|
386
|
+
- docs/UploadImageToGallery.md
|
370
387
|
- docs/WebhooksApi.md
|
371
388
|
- lib/sib-api-v3-sdk.rb
|
372
389
|
- lib/sib-api-v3-sdk/api/account_api.rb
|
@@ -385,6 +402,7 @@ files:
|
|
385
402
|
- lib/sib-api-v3-sdk/api_client.rb
|
386
403
|
- lib/sib-api-v3-sdk/api_error.rb
|
387
404
|
- lib/sib-api-v3-sdk/configuration.rb
|
405
|
+
- lib/sib-api-v3-sdk/models/ab_test_campaign_result.rb
|
388
406
|
- lib/sib-api-v3-sdk/models/add_child_domain.rb
|
389
407
|
- lib/sib-api-v3-sdk/models/add_contact_to_list.rb
|
390
408
|
- lib/sib-api-v3-sdk/models/add_credits.rb
|
@@ -392,6 +410,7 @@ files:
|
|
392
410
|
- lib/sib-api-v3-sdk/models/create_attribute_enumeration.rb
|
393
411
|
- lib/sib-api-v3-sdk/models/create_child.rb
|
394
412
|
- lib/sib-api-v3-sdk/models/create_contact.rb
|
413
|
+
- lib/sib-api-v3-sdk/models/create_doi_contact.rb
|
395
414
|
- lib/sib-api-v3-sdk/models/create_email_campaign.rb
|
396
415
|
- lib/sib-api-v3-sdk/models/create_email_campaign_recipients.rb
|
397
416
|
- lib/sib-api-v3-sdk/models/create_email_campaign_sender.rb
|
@@ -425,6 +444,7 @@ files:
|
|
425
444
|
- lib/sib-api-v3-sdk/models/get_campaign_overview.rb
|
426
445
|
- lib/sib-api-v3-sdk/models/get_campaign_recipients.rb
|
427
446
|
- lib/sib-api-v3-sdk/models/get_campaign_stats.rb
|
447
|
+
- lib/sib-api-v3-sdk/models/get_child_account_creation_status.rb
|
428
448
|
- lib/sib-api-v3-sdk/models/get_child_domain.rb
|
429
449
|
- lib/sib-api-v3-sdk/models/get_child_domains.rb
|
430
450
|
- lib/sib-api-v3-sdk/models/get_child_info.rb
|
@@ -442,6 +462,7 @@ files:
|
|
442
462
|
- lib/sib-api-v3-sdk/models/get_contact_campaign_stats_unsubscriptions.rb
|
443
463
|
- lib/sib-api-v3-sdk/models/get_contact_details.rb
|
444
464
|
- lib/sib-api-v3-sdk/models/get_contacts.rb
|
465
|
+
- lib/sib-api-v3-sdk/models/get_device_browser_stats.rb
|
445
466
|
- lib/sib-api-v3-sdk/models/get_email_campaign.rb
|
446
467
|
- lib/sib-api-v3-sdk/models/get_email_campaigns.rb
|
447
468
|
- lib/sib-api-v3-sdk/models/get_email_event_report.rb
|
@@ -478,6 +499,7 @@ files:
|
|
478
499
|
- lib/sib-api-v3-sdk/models/get_senders_list.rb
|
479
500
|
- lib/sib-api-v3-sdk/models/get_senders_list_ips.rb
|
480
501
|
- lib/sib-api-v3-sdk/models/get_senders_list_senders.rb
|
502
|
+
- lib/sib-api-v3-sdk/models/get_shared_template_url.rb
|
481
503
|
- lib/sib-api-v3-sdk/models/get_sms_campaign.rb
|
482
504
|
- lib/sib-api-v3-sdk/models/get_sms_campaign_overview.rb
|
483
505
|
- lib/sib-api-v3-sdk/models/get_sms_campaign_stats.rb
|
@@ -488,8 +510,17 @@ files:
|
|
488
510
|
- lib/sib-api-v3-sdk/models/get_smtp_template_overview_sender.rb
|
489
511
|
- lib/sib-api-v3-sdk/models/get_smtp_templates.rb
|
490
512
|
- lib/sib-api-v3-sdk/models/get_sso_token.rb
|
513
|
+
- lib/sib-api-v3-sdk/models/get_stats_by_browser.rb
|
514
|
+
- lib/sib-api-v3-sdk/models/get_stats_by_device.rb
|
491
515
|
- lib/sib-api-v3-sdk/models/get_stats_by_domain.rb
|
492
516
|
- lib/sib-api-v3-sdk/models/get_transac_aggregated_sms_report.rb
|
517
|
+
- lib/sib-api-v3-sdk/models/get_transac_blocked_contacts.rb
|
518
|
+
- lib/sib-api-v3-sdk/models/get_transac_blocked_contacts_contacts.rb
|
519
|
+
- lib/sib-api-v3-sdk/models/get_transac_blocked_contacts_reason.rb
|
520
|
+
- lib/sib-api-v3-sdk/models/get_transac_email_content.rb
|
521
|
+
- lib/sib-api-v3-sdk/models/get_transac_email_content_events.rb
|
522
|
+
- lib/sib-api-v3-sdk/models/get_transac_emails_list.rb
|
523
|
+
- lib/sib-api-v3-sdk/models/get_transac_emails_list_transactional_emails.rb
|
493
524
|
- lib/sib-api-v3-sdk/models/get_transac_sms_report.rb
|
494
525
|
- lib/sib-api-v3-sdk/models/get_transac_sms_report_reports.rb
|
495
526
|
- lib/sib-api-v3-sdk/models/get_webhook.rb
|
@@ -505,6 +536,7 @@ files:
|
|
505
536
|
- lib/sib-api-v3-sdk/models/remove_contact_from_list.rb
|
506
537
|
- lib/sib-api-v3-sdk/models/remove_credits.rb
|
507
538
|
- lib/sib-api-v3-sdk/models/request_contact_export.rb
|
539
|
+
- lib/sib-api-v3-sdk/models/request_contact_export_custom_contact_filter.rb
|
508
540
|
- lib/sib-api-v3-sdk/models/request_contact_import.rb
|
509
541
|
- lib/sib-api-v3-sdk/models/request_contact_import_new_list.rb
|
510
542
|
- lib/sib-api-v3-sdk/models/request_sms_recipient_export.rb
|
@@ -528,6 +560,7 @@ files:
|
|
528
560
|
- lib/sib-api-v3-sdk/models/update_attribute_enumeration.rb
|
529
561
|
- lib/sib-api-v3-sdk/models/update_campaign_status.rb
|
530
562
|
- lib/sib-api-v3-sdk/models/update_child.rb
|
563
|
+
- lib/sib-api-v3-sdk/models/update_child_account_status.rb
|
531
564
|
- lib/sib-api-v3-sdk/models/update_child_domain.rb
|
532
565
|
- lib/sib-api-v3-sdk/models/update_contact.rb
|
533
566
|
- lib/sib-api-v3-sdk/models/update_email_campaign.rb
|
@@ -539,6 +572,7 @@ files:
|
|
539
572
|
- lib/sib-api-v3-sdk/models/update_smtp_template.rb
|
540
573
|
- lib/sib-api-v3-sdk/models/update_smtp_template_sender.rb
|
541
574
|
- lib/sib-api-v3-sdk/models/update_webhook.rb
|
575
|
+
- lib/sib-api-v3-sdk/models/upload_image_to_gallery.rb
|
542
576
|
- lib/sib-api-v3-sdk/version.rb
|
543
577
|
- sib-api-v3-sdk.gemspec
|
544
578
|
- spec/api/account_api_spec.rb
|
@@ -556,6 +590,7 @@ files:
|
|
556
590
|
- spec/api/webhooks_api_spec.rb
|
557
591
|
- spec/api_client_spec.rb
|
558
592
|
- spec/configuration_spec.rb
|
593
|
+
- spec/models/ab_test_campaign_result_spec.rb
|
559
594
|
- spec/models/add_child_domain_spec.rb
|
560
595
|
- spec/models/add_contact_to_list_spec.rb
|
561
596
|
- spec/models/add_credits_spec.rb
|
@@ -563,6 +598,7 @@ files:
|
|
563
598
|
- spec/models/create_attribute_spec.rb
|
564
599
|
- spec/models/create_child_spec.rb
|
565
600
|
- spec/models/create_contact_spec.rb
|
601
|
+
- spec/models/create_doi_contact_spec.rb
|
566
602
|
- spec/models/create_email_campaign_recipients_spec.rb
|
567
603
|
- spec/models/create_email_campaign_sender_spec.rb
|
568
604
|
- spec/models/create_email_campaign_spec.rb
|
@@ -596,6 +632,7 @@ files:
|
|
596
632
|
- spec/models/get_campaign_overview_spec.rb
|
597
633
|
- spec/models/get_campaign_recipients_spec.rb
|
598
634
|
- spec/models/get_campaign_stats_spec.rb
|
635
|
+
- spec/models/get_child_account_creation_status_spec.rb
|
599
636
|
- spec/models/get_child_domain_spec.rb
|
600
637
|
- spec/models/get_child_domains_spec.rb
|
601
638
|
- spec/models/get_child_info_api_keys_spec.rb
|
@@ -613,6 +650,7 @@ files:
|
|
613
650
|
- spec/models/get_contact_campaign_stats_unsubscriptions_spec.rb
|
614
651
|
- spec/models/get_contact_details_spec.rb
|
615
652
|
- spec/models/get_contacts_spec.rb
|
653
|
+
- spec/models/get_device_browser_stats_spec.rb
|
616
654
|
- spec/models/get_email_campaign_spec.rb
|
617
655
|
- spec/models/get_email_campaigns_spec.rb
|
618
656
|
- spec/models/get_email_event_report_events_spec.rb
|
@@ -649,6 +687,7 @@ files:
|
|
649
687
|
- spec/models/get_senders_list_ips_spec.rb
|
650
688
|
- spec/models/get_senders_list_senders_spec.rb
|
651
689
|
- spec/models/get_senders_list_spec.rb
|
690
|
+
- spec/models/get_shared_template_url_spec.rb
|
652
691
|
- spec/models/get_sms_campaign_overview_spec.rb
|
653
692
|
- spec/models/get_sms_campaign_spec.rb
|
654
693
|
- spec/models/get_sms_campaign_stats_spec.rb
|
@@ -659,8 +698,17 @@ files:
|
|
659
698
|
- spec/models/get_smtp_template_overview_spec.rb
|
660
699
|
- spec/models/get_smtp_templates_spec.rb
|
661
700
|
- spec/models/get_sso_token_spec.rb
|
701
|
+
- spec/models/get_stats_by_browser_spec.rb
|
702
|
+
- spec/models/get_stats_by_device_spec.rb
|
662
703
|
- spec/models/get_stats_by_domain_spec.rb
|
663
704
|
- spec/models/get_transac_aggregated_sms_report_spec.rb
|
705
|
+
- spec/models/get_transac_blocked_contacts_contacts_spec.rb
|
706
|
+
- spec/models/get_transac_blocked_contacts_reason_spec.rb
|
707
|
+
- spec/models/get_transac_blocked_contacts_spec.rb
|
708
|
+
- spec/models/get_transac_email_content_events_spec.rb
|
709
|
+
- spec/models/get_transac_email_content_spec.rb
|
710
|
+
- spec/models/get_transac_emails_list_spec.rb
|
711
|
+
- spec/models/get_transac_emails_list_transactional_emails_spec.rb
|
664
712
|
- spec/models/get_transac_sms_report_reports_spec.rb
|
665
713
|
- spec/models/get_transac_sms_report_spec.rb
|
666
714
|
- spec/models/get_webhook_spec.rb
|
@@ -675,6 +723,7 @@ files:
|
|
675
723
|
- spec/models/remaining_credit_model_spec.rb
|
676
724
|
- spec/models/remove_contact_from_list_spec.rb
|
677
725
|
- spec/models/remove_credits_spec.rb
|
726
|
+
- spec/models/request_contact_export_custom_contact_filter_spec.rb
|
678
727
|
- spec/models/request_contact_export_spec.rb
|
679
728
|
- spec/models/request_contact_import_new_list_spec.rb
|
680
729
|
- spec/models/request_contact_import_spec.rb
|
@@ -698,6 +747,7 @@ files:
|
|
698
747
|
- spec/models/update_attribute_enumeration_spec.rb
|
699
748
|
- spec/models/update_attribute_spec.rb
|
700
749
|
- spec/models/update_campaign_status_spec.rb
|
750
|
+
- spec/models/update_child_account_status_spec.rb
|
701
751
|
- spec/models/update_child_domain_spec.rb
|
702
752
|
- spec/models/update_child_spec.rb
|
703
753
|
- spec/models/update_contact_spec.rb
|
@@ -710,6 +760,7 @@ files:
|
|
710
760
|
- spec/models/update_smtp_template_sender_spec.rb
|
711
761
|
- spec/models/update_smtp_template_spec.rb
|
712
762
|
- spec/models/update_webhook_spec.rb
|
763
|
+
- spec/models/upload_image_to_gallery_spec.rb
|
713
764
|
- spec/spec_helper.rb
|
714
765
|
homepage: https://www.sendinblue.com/
|
715
766
|
licenses:
|
@@ -751,6 +802,7 @@ test_files:
|
|
751
802
|
- spec/api/webhooks_api_spec.rb
|
752
803
|
- spec/api_client_spec.rb
|
753
804
|
- spec/configuration_spec.rb
|
805
|
+
- spec/models/ab_test_campaign_result_spec.rb
|
754
806
|
- spec/models/add_child_domain_spec.rb
|
755
807
|
- spec/models/add_contact_to_list_spec.rb
|
756
808
|
- spec/models/add_credits_spec.rb
|
@@ -758,6 +810,7 @@ test_files:
|
|
758
810
|
- spec/models/create_attribute_spec.rb
|
759
811
|
- spec/models/create_child_spec.rb
|
760
812
|
- spec/models/create_contact_spec.rb
|
813
|
+
- spec/models/create_doi_contact_spec.rb
|
761
814
|
- spec/models/create_email_campaign_recipients_spec.rb
|
762
815
|
- spec/models/create_email_campaign_sender_spec.rb
|
763
816
|
- spec/models/create_email_campaign_spec.rb
|
@@ -791,6 +844,7 @@ test_files:
|
|
791
844
|
- spec/models/get_campaign_overview_spec.rb
|
792
845
|
- spec/models/get_campaign_recipients_spec.rb
|
793
846
|
- spec/models/get_campaign_stats_spec.rb
|
847
|
+
- spec/models/get_child_account_creation_status_spec.rb
|
794
848
|
- spec/models/get_child_domain_spec.rb
|
795
849
|
- spec/models/get_child_domains_spec.rb
|
796
850
|
- spec/models/get_child_info_api_keys_spec.rb
|
@@ -808,6 +862,7 @@ test_files:
|
|
808
862
|
- spec/models/get_contact_campaign_stats_unsubscriptions_spec.rb
|
809
863
|
- spec/models/get_contact_details_spec.rb
|
810
864
|
- spec/models/get_contacts_spec.rb
|
865
|
+
- spec/models/get_device_browser_stats_spec.rb
|
811
866
|
- spec/models/get_email_campaign_spec.rb
|
812
867
|
- spec/models/get_email_campaigns_spec.rb
|
813
868
|
- spec/models/get_email_event_report_events_spec.rb
|
@@ -844,6 +899,7 @@ test_files:
|
|
844
899
|
- spec/models/get_senders_list_ips_spec.rb
|
845
900
|
- spec/models/get_senders_list_senders_spec.rb
|
846
901
|
- spec/models/get_senders_list_spec.rb
|
902
|
+
- spec/models/get_shared_template_url_spec.rb
|
847
903
|
- spec/models/get_sms_campaign_overview_spec.rb
|
848
904
|
- spec/models/get_sms_campaign_spec.rb
|
849
905
|
- spec/models/get_sms_campaign_stats_spec.rb
|
@@ -854,8 +910,17 @@ test_files:
|
|
854
910
|
- spec/models/get_smtp_template_overview_spec.rb
|
855
911
|
- spec/models/get_smtp_templates_spec.rb
|
856
912
|
- spec/models/get_sso_token_spec.rb
|
913
|
+
- spec/models/get_stats_by_browser_spec.rb
|
914
|
+
- spec/models/get_stats_by_device_spec.rb
|
857
915
|
- spec/models/get_stats_by_domain_spec.rb
|
858
916
|
- spec/models/get_transac_aggregated_sms_report_spec.rb
|
917
|
+
- spec/models/get_transac_blocked_contacts_contacts_spec.rb
|
918
|
+
- spec/models/get_transac_blocked_contacts_reason_spec.rb
|
919
|
+
- spec/models/get_transac_blocked_contacts_spec.rb
|
920
|
+
- spec/models/get_transac_email_content_events_spec.rb
|
921
|
+
- spec/models/get_transac_email_content_spec.rb
|
922
|
+
- spec/models/get_transac_emails_list_spec.rb
|
923
|
+
- spec/models/get_transac_emails_list_transactional_emails_spec.rb
|
859
924
|
- spec/models/get_transac_sms_report_reports_spec.rb
|
860
925
|
- spec/models/get_transac_sms_report_spec.rb
|
861
926
|
- spec/models/get_webhook_spec.rb
|
@@ -870,6 +935,7 @@ test_files:
|
|
870
935
|
- spec/models/remaining_credit_model_spec.rb
|
871
936
|
- spec/models/remove_contact_from_list_spec.rb
|
872
937
|
- spec/models/remove_credits_spec.rb
|
938
|
+
- spec/models/request_contact_export_custom_contact_filter_spec.rb
|
873
939
|
- spec/models/request_contact_export_spec.rb
|
874
940
|
- spec/models/request_contact_import_new_list_spec.rb
|
875
941
|
- spec/models/request_contact_import_spec.rb
|
@@ -893,6 +959,7 @@ test_files:
|
|
893
959
|
- spec/models/update_attribute_enumeration_spec.rb
|
894
960
|
- spec/models/update_attribute_spec.rb
|
895
961
|
- spec/models/update_campaign_status_spec.rb
|
962
|
+
- spec/models/update_child_account_status_spec.rb
|
896
963
|
- spec/models/update_child_domain_spec.rb
|
897
964
|
- spec/models/update_child_spec.rb
|
898
965
|
- spec/models/update_contact_spec.rb
|
@@ -905,4 +972,5 @@ test_files:
|
|
905
972
|
- spec/models/update_smtp_template_sender_spec.rb
|
906
973
|
- spec/models/update_smtp_template_spec.rb
|
907
974
|
- spec/models/update_webhook_spec.rb
|
975
|
+
- spec/models/upload_image_to_gallery_spec.rb
|
908
976
|
- spec/spec_helper.rb
|