From 466024df18f83e967cfe345d77d41a4e2618e069 Mon Sep 17 00:00:00 2001 From: Ivan Yurchanka Date: Tue, 27 Jan 2026 13:23:37 +0100 Subject: [PATCH 1/6] Add coderabbit config --- .coderabbit.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000..8298f4f --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,10 @@ +# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json +language: en +reviews: + path_instructions: + - path: "spec/fixtures/vcr_cassettes/**/*.yml" + instructions: | + Act as a data privacy officer. Carefully read all the vcr cassettes + with recorded HTTP interactions and try to identify sensitive data that + could potentially be recorded. It can be anything from PII to + credentials. Ignore obvious placeholder values. From 1bcc3230e909d638dab0fb82672d497d4ba5557a Mon Sep 17 00:00:00 2001 From: Ivan Yurchanka Date: Wed, 28 Jan 2026 15:33:38 +0100 Subject: [PATCH 2/6] Delete X-Cloud-Trace-Context, X-Request-Id, Cf-Ray headers --- spec/spec_helper.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 7ce85fe..ce088d4 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -13,6 +13,9 @@ config.before_record do |interaction| interaction.response.headers.delete('Content-Security-Policy') + interaction.response.headers.delete('X-Cloud-Trace-Context') + interaction.response.headers.delete('X-Request-Id') + interaction.response.headers.delete('Cf-Ray') end config.filter_sensitive_data('') do |interaction| From 4d681b13a9b94ea2272fb2d0b2fddab619e6dfb2 Mon Sep 17 00:00:00 2001 From: Ivan Yurchanka Date: Wed, 28 Jan 2026 15:36:35 +0100 Subject: [PATCH 3/6] Remove X-Request-Id --- .../_create/maps_response_data_to_EmailTemplate_object.yml | 2 -- .../_create/returns_an_EmailTemplate_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../maps_response_data_to_EmailTemplate_object.yml | 2 -- .../with_hash_request/returns_an_EmailTemplate_object.yml | 2 -- .../_delete/returns_no_content.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../_get/maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../_get/returns_an_EmailTemplate_object.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../_list/maps_response_data_to_EmailTemplate_objects.yml | 2 -- .../_list/returns_an_array_of_EmailTemplate_objects.yml | 2 -- .../raises_authorization_error.yml | 2 -- .../_update/maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../_update/returns_an_EmailTemplate_object.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_specified_fields.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_body_html_field.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_category_field.yml | 4 ---- .../maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../with_hash_request/returns_an_EmailTemplate_object.yml | 4 ---- .../_clean/cleans_Inbox_and_returns_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_create/maps_response_data_to_Inbox_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../_delete/returns_deleted_inbox_data.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_get/maps_response_data_to_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_list/maps_response_data_to_Inboxes_objects.yml | 2 -- .../raises_authorization_error.yml | 2 -- .../Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_update/maps_response_data_to_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../maps_response_data_to_Inbox_object.yml | 2 -- .../_create/maps_response_data_to_Project_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../maps_response_data_to_Project_object.yml | 2 -- .../_delete/returns_deleted_project_id.yml | 4 ---- .../when_project_does_not_exist/raises_not_found_error.yml | 4 ---- .../_get/maps_response_data_to_Project_object.yml | 2 -- .../when_project_does_not_exist/raises_not_found_error.yml | 2 -- .../_list/maps_response_data_to_Project_objects.yml | 2 -- .../raises_authorization_error.yml | 2 -- .../_update/maps_response_data_to_Project_object.yml | 4 ---- .../when_project_does_not_exist/raises_not_found_error.yml | 4 ---- .../when_updating_only_name/updates_only_the_name_field.yml | 4 ---- .../maps_response_data_to_Project_object.yml | 6 +----- .../vcr_list/maps_response_data_to_Suppression_objects.yml | 2 -- .../raises_authorization_error.yml | 2 -- 59 files changed, 1 insertion(+), 169 deletions(-) diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml index 83ac37e..0df3aea 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"8bb08000dfd7e49525aec6c4cc28b545" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - ca86f87e-9518-4dcb-8e99-6840fec315b7 X-Runtime: - '0.034768' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml index 28c28d9..39153ac 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"95445ae9e9c5d1e9c946d658156327b6" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 025b8c80-1d55-435a-a993-c602da5e71c4 X-Runtime: - '0.032709' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index 8bba128..c07b77e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -55,8 +55,6 @@ http_interactions: - '143' Cache-Control: - no-cache - X-Request-Id: - - 38bd1c5c-bfa3-4000-9352-d91afb9e6815 X-Runtime: - '0.028118' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml index a6296c8..c52809f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"f044c2be19d23522af0e7ef02fe33d01" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 101de393-addd-480c-ad9e-068c132b2efb X-Runtime: - '0.030705' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml index 6bcd650..42ebd20 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"31a2afa4da7b119528dfc373bab0e8ba" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 63134f40-8bfa-45cb-b95c-50377c2aeec2 X-Runtime: - '0.028074' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml index eda26a0..466664b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml @@ -57,8 +57,6 @@ http_interactions: - W/"2bbf04ce511ec598d582fc6c302ae664" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - ad87c815-25b0-4b2c-b15c-b96169c03cfe X-Runtime: - '0.024380' X-Cloud-Trace-Context: @@ -125,8 +123,6 @@ http_interactions: - '113' Cache-Control: - no-cache - X-Request-Id: - - aa426f49-e8f7-4266-95ab-82feab678cfa X-Runtime: - '0.028050' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml index b86d25d..300751f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml @@ -57,8 +57,6 @@ http_interactions: - W/"cf7eeac15cd9f0c7634a09c87a694811" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - dffb962b-4186-4cd7-afa4-4695a18dfcef X-Runtime: - '0.036005' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - '111' Cache-Control: - no-cache - X-Request-Id: - - 4bb3216f-cc77-4380-b597-eeb7aaffe451 X-Runtime: - '0.017788' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml index 90f43fe..bc2afce 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"ece196016a5a0712829e004d4666cfa0" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 20fe24df-b292-4201-a7a6-328fc5a2abe8 X-Runtime: - '0.058427' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"ece196016a5a0712829e004d4666cfa0" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 71ecfcc4-723f-4c14-9883-85b12d600146 X-Runtime: - '0.020742' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml index 75c1b9c..e67ab40 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"bd6702a5f3abef9fe597313244e1d847" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 3e9de202-2011-4064-a6af-def218444147 X-Runtime: - '0.030593' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"bd6702a5f3abef9fe597313244e1d847" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 4c7cde7e-c6eb-49f1-8bf1-6095ed0b1ded X-Runtime: - '0.015509' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml index 555d813..ec92526 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml @@ -57,8 +57,6 @@ http_interactions: - W/"f205060fca3047ecf413b59c5b3665b5" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - ba81b0da-61b9-4625-a8d5-491f23a26593 X-Runtime: - '0.041709' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 4ba62bc3-ae6d-42ca-8e61-aec261899078 X-Runtime: - '0.023201' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml index 904aa64..6919fcb 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml @@ -57,8 +57,6 @@ http_interactions: - W/"67f72cadb48b63652fc60ad28a7f1dc9" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - faade360-df04-41cb-a351-7e5c7d10f78e X-Runtime: - '0.027047' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml index 0f36f8b..ced3d4f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml @@ -57,8 +57,6 @@ http_interactions: - W/"67f72cadb48b63652fc60ad28a7f1dc9" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 160c3a50-e147-4952-9c03-c0e531d01cf5 X-Runtime: - '0.021037' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index 460bb97..666198e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -56,8 +56,6 @@ http_interactions: - '149' Cache-Control: - no-cache - X-Request-Id: - - 2921d71f-91cf-47e1-a60b-bf02e0d9a1ce X-Runtime: - '0.010186' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml index feeda6b..23bee53 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"9565089f940396d42fcb778c5add3cd9" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - f0ab4328-5ce2-46f8-9cf4-15c42abdcaed X-Runtime: - '0.036171' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"bf58cf77fc77e064fcf86ab463a0c780" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - ac9f38c7-4848-4230-88e8-f7b139afafbc X-Runtime: - '0.026161' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml index 258c439..14e9d27 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"e19aee0c5b971389d2f4ea2a93bf5a83" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - fec53384-7f57-423d-92cf-f3fd5a203414 X-Runtime: - '0.027884' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"ed92bcdaddd26f240aae9a4faf8a784f" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 0d069e5c-54a8-4be8-a3a5-9419047a12aa X-Runtime: - '0.053707' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml index decfa33..0d3cd89 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml @@ -57,8 +57,6 @@ http_interactions: - W/"6e601a1406c6107112aa8df9712c2c22" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - f4d07e7b-82ed-4bfb-a517-171a8b61635d X-Runtime: - '0.027821' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - '115' Cache-Control: - no-cache - X-Request-Id: - - 8c362300-8260-4b07-9082-69e8f9d59ec5 X-Runtime: - '0.019177' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml index 21692c7..23d34ba 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml @@ -57,8 +57,6 @@ http_interactions: - W/"ef39f8cf1c286a575bbb3c6367aa6d21" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 8e4c0624-d3cb-455b-a95c-a74505033ed6 X-Runtime: - '0.027041' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"fe0e0b694e3162d240205ce1d87dba41" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 641b7460-0ef6-4325-a15b-70bb3b88e697 X-Runtime: - '0.034033' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml index c61433e..86c7389 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"1d7d0e204eb570559c58c59794fcafc5" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 74e00e32-3caa-49e8-baf4-4c0c14f022a4 X-Runtime: - '0.027117' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"6bd0cf8b1806d831f449773925699f13" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 678dd7b5-3803-4cf4-a6aa-e43b52761f7b X-Runtime: - '0.026053' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml index 7e705f0..1cc8766 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml @@ -57,8 +57,6 @@ http_interactions: - W/"0cd34e2ddd1b029ef16c2be5ea4ee4f2" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 7e2658b4-0dde-4d57-9131-b958f80977f2 X-Runtime: - '0.027038' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"82841abf0020e6e0927f57ea5aa2b5c5" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - f71502d5-b1a3-4bc9-9fdb-416863468a53 X-Runtime: - '0.028958' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml index 3222476..e3d433f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml @@ -57,8 +57,6 @@ http_interactions: - W/"ec2afe8b201ff847c0b3f84b5534251a" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 616592f1-d56c-4314-b324-5e2e9487a1ce X-Runtime: - '0.036545' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"a1a6227556378f1a22895552b46aec56" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 138aa71d-1c3e-4ee5-b3d6-dcde26df15bc X-Runtime: - '0.032502' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml index 9e40ea4..618e642 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"36117810664c43fd08c296ff2f056411" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 6362940a-536e-402b-96f3-b5ae7eb1eea1 X-Runtime: - '0.024952' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"b56c2572dcd3a00ba9993f19fa46af82" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 66bd2b89-7edd-407c-b85e-2500215971a6 X-Runtime: - '0.033869' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml index 0aa0476..07eb13b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml @@ -57,8 +57,6 @@ http_interactions: - W/"89273c05d49fa6440a335ee9dc0788c2" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - e3cb3964-df17-4273-9a47-7225f5d15437 X-Runtime: - '0.025216' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"47c9eb7f53c4a6f735afe12133519a7c" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 002ff643-cef7-4929-a850-d28badbb9656 X-Runtime: - '0.027431' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml index a34f078..bb8a3aa 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml @@ -57,8 +57,6 @@ http_interactions: - W/"d21342f6bc113cecd808309cf29d840c" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - d710123d-4cf0-4553-b60f-2700dbdd168d X-Runtime: - '0.024978' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"928a408915266a445f28face25ca010c" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - b9f01548-f91a-4682-8c08-b7ab14f19ffa X-Runtime: - '0.029388' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml index 98f0ef7..ad564a1 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"c6d5de2bf9125762216aa00cb886c1d9" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 76e19812-0b9f-4384-b347-54b56e8293cb X-Runtime: - '0.024671' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"1d4c36276f369bba1eccbe0594ae82ff" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - c13c797a-3509-4e66-bf73-3616750a1810 X-Runtime: - '0.032155' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml index a942f9c..910aeee 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml @@ -57,8 +57,6 @@ http_interactions: - W/"b500cbca28084c365780ccefac06ffed" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - a10aced7-e589-4f85-8634-ec8a63ab3296 X-Runtime: - '0.028169' X-Cloud-Trace-Context: @@ -131,8 +129,6 @@ http_interactions: - W/"92d2aa0d52be77dedafa97e4de753c1a" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 8c2da3e2-5c76-4915-96d7-b35f5d31ddc3 X-Runtime: - '0.030298' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml index 8c12464..8334fda 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"c080ed14b14d1c22c4c044e10ac91f22" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - de3725e4-bceb-4afb-9308-d4f6143c92b2 X-Runtime: - '0.035033' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"f394de9ab1f215d65167aced7ba224d1" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 4bc05bd7-6e5c-4a83-b4c7-5e59f99cb6ba X-Runtime: - '0.030071' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml index 24d1548..6ef0120 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml @@ -57,8 +57,6 @@ http_interactions: - W/"78ab1a86db473612bf0990a69649913c" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 04eebcc9-9729-4b96-b8e1-3a22dc2c51da X-Runtime: - '0.026973' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - W/"c860229663a246f417bf8c86e64687c7" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - a90a3d46-ca49-4a02-a359-97a500fa13ec X-Runtime: - '0.031032' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml index d28931e..b1b77ab 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"b806febaa0d1508c418fc9aa248e543f" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - b6b01df6-5a6a-4061-9d43-b8b58cd87493 X-Runtime: - '0.039374' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml index f19bc7e..df5b86e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 233205dc-d166-4b73-9f17-ffe10d7922f4 X-Runtime: - '0.012632' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml index 5ecc518..be68cd2 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"2cf81c032e6e106bcc15ae0e7813c6b3" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 44c45745-5902-4b9f-b9a6-7fdecb919dfe X-Runtime: - '0.061158' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index fa4ea13..9917bd5 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - dfdec05f-27fc-4087-8919-17d86f5f792e X-Runtime: - '0.038009' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml index 6ed4a44..62a7f6b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml @@ -58,8 +58,6 @@ http_interactions: - W/"338b9c6a630814e8bec88c155c2114d7" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 4600b7d4-422c-4f7a-ae3e-58597f611ac3 X-Runtime: - '0.050752' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml index 78ceb40..3dbe5a9 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 733c4b03-9afa-442c-b5b5-ed3e8814503f X-Runtime: - '0.013713' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml index e31230b..50fbc26 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"2cf81c032e6e106bcc15ae0e7813c6b3" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 6aa68831-a4f5-4206-b50e-ebdb0fe9276b X-Runtime: - '0.024725' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml index 9eb0de4..2b2f51c 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 818763f7-e89b-41b2-8529-7b5a873d4728 X-Runtime: - '0.015297' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml index 17bfe1b..9756785 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml @@ -58,8 +58,6 @@ http_interactions: - W/"aec9a1faefaa0af164f39ffc5e443a25" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 9eed8d32-2e75-4143-9414-00a73c342e32 X-Runtime: - '0.041466' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index f026826..20f1ced 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -58,8 +58,6 @@ http_interactions: - '149' Cache-Control: - no-cache - X-Request-Id: - - 678578c6-68ad-487d-bab2-bd1f9615c358 X-Runtime: - '0.012461' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml index 7da23d9..5e843dd 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml @@ -58,8 +58,6 @@ http_interactions: - W/"b806febaa0d1508c418fc9aa248e543f" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - c14353b3-63e5-4c5c-b3a2-db52da5ebcb8 X-Runtime: - '0.024366' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml index e49e634..2760ccb 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 42765c00-3c41-4ce2-a856-a0ffc6e40333 X-Runtime: - '0.010824' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml index 6fcb056..0edccfb 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml @@ -58,8 +58,6 @@ http_interactions: - W/"338b9c6a630814e8bec88c155c2114d7" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - f1bd1cb5-9c00-4c6d-a8c4-5248b61e78bc X-Runtime: - '0.033364' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml index 90fc5f2..c9b1b26 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - afe67dfd-7a23-4722-8ddc-3f0dce166ea8 X-Runtime: - '0.008827' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml index b310473..f21ccb1 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"b806febaa0d1508c418fc9aa248e543f" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - a852bfd0-43dc-4183-9aa7-1cf5ca30367c X-Runtime: - '0.028523' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml index f85c400..7e91905 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '147' Cache-Control: - no-cache - X-Request-Id: - - ce0d14b7-59d3-4f9c-9b7d-78929a424c7f X-Runtime: - '0.009525' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml index 931e396..f02bebd 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"b806febaa0d1508c418fc9aa248e543f" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 7468d5ca-c753-4a3f-8940-0a44990b8518 X-Runtime: - '0.032751' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml index 0140588..79eeb22 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"068e7482a443be1cfa101ad7b01feb49" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - e650c437-d721-4974-b354-62ccedcdd216 X-Runtime: - '0.085443' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index e4a68ed..71a1d1a 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -56,8 +56,6 @@ http_interactions: - '142' Cache-Control: - no-cache - X-Request-Id: - - 67ba748d-d8b7-451b-9831-d6cf9ca60321 X-Runtime: - '0.019134' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml index 07da91e..3851e73 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"555c37419991b9243a4ee4a8199dde11" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - cc4b30b1-8d31-471c-a233-b0c29a13bbc7 X-Runtime: - '0.203603' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml index f6a4566..1cb3658 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml @@ -58,8 +58,6 @@ http_interactions: - W/"042f85c44df5dda84dd0a212a8a84067" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 974beb3a-da90-4154-82de-cbaa03b9eecf X-Runtime: - '0.072132' X-Cloud-Trace-Context: @@ -134,8 +132,6 @@ http_interactions: - W/"268931c8d55249081f5793b71c967b16" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 8523fef5-9a69-43fe-a889-f3134b03ca73 X-Runtime: - '0.082012' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml index e74824b..d0768b2 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - W/"0e4606bbbb28136031c4cdbe1950f3b9" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 77b3b743-68f1-49d6-9870-c317f392dd1b X-Runtime: - '0.080663' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - '144' Cache-Control: - no-cache - X-Request-Id: - - 21ff0366-922d-4fb0-be4a-f9044f36fe14 X-Runtime: - '0.011877' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml index b11a52f..1c9c4f4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml @@ -59,8 +59,6 @@ http_interactions: - W/"73945ad22c0af8cfd6ac7e9d7e7bd190" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 0131cf83-eb57-4d0a-9d1b-382ccff161a8 X-Runtime: - '0.088170' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml index b374de1..c9585af 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml @@ -56,8 +56,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 78c8e9e5-8828-4cf5-9f38-dcd6e8dea818 X-Runtime: - '0.009954' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml index 8ef24db..f18aee3 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml @@ -59,8 +59,6 @@ http_interactions: - W/"511f796eca774728d0caee471d0bfeca" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - dac95271-42b5-4cff-8369-d8990d6789a5 X-Runtime: - '4.772312' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index f6754cf..74d0341 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -58,8 +58,6 @@ http_interactions: - '149' Cache-Control: - no-cache - X-Request-Id: - - c915c8f6-0966-401b-a5c7-7b9425e41a1c X-Runtime: - '0.010076' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml index 8d6f8f3..e04eb5e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"d566fd0a5d4ea9273bf4996b1cd09b27" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 39406e58-c410-4163-acc1-f60b4fb17bf1 X-Runtime: - '0.044394' X-Cloud-Trace-Context: @@ -134,8 +132,6 @@ http_interactions: - W/"e5d96aea05b630c9b62174918e0948ba" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 72f3a1d2-ae91-4130-b60d-8fcb0cc92a55 X-Runtime: - '0.062113' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml index 54d3b41..9c30d10 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - W/"25e67f433975ab649f5b5a50fb4d2a91" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - c101b7f5-f9c3-40e6-b6f2-dfa852e8cb92 X-Runtime: - '0.073294' X-Cloud-Trace-Context: @@ -132,8 +130,6 @@ http_interactions: - '148' Cache-Control: - no-cache - X-Request-Id: - - 5586ff0c-6f38-491b-a1f6-355cad021b97 X-Runtime: - '0.019360' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml index 3d59a4b..c8d61e0 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml @@ -58,8 +58,6 @@ http_interactions: - W/"c758c7713959e6c65326928713f7b199" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 8cae999f-7fc5-4698-a7b7-ead7edacb294 X-Runtime: - '0.071829' X-Cloud-Trace-Context: @@ -134,8 +132,6 @@ http_interactions: - W/"a42e6ad9e60e03bffdb73163721bf8b5" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 26be21c2-a381-49f1-ad6c-fdc22c611d09 X-Runtime: - '0.087682' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml index 1d15b8d..ddb71df 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml @@ -58,8 +58,6 @@ http_interactions: - W/"76642706d6a6767af3d369475a2c93bf" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 686a6f89-9c76-4c1b-89fc-54b1938cdb13 X-Runtime: - '0.105070' X-Cloud-Trace-Context: @@ -134,8 +132,6 @@ http_interactions: - W/"c23f6ba7654468fa9adf039f42cec65c" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - 6341454c-7091-4a97-a74d-94d931e50645 X-Runtime: - '0.072047' X-Cloud-Trace-Context: @@ -152,4 +148,4 @@ http_interactions: encoding: UTF-8 string: '{"id":2568509,"name":"Updated Project","share_links":{"admin":"https://mailtrap.io/projects/2568509/share/REDACTED","viewer":"https://mailtrap.io/projects/2568509/share/REDACTED"},"inboxes":[],"permissions":{"can_read":true,"can_update":true,"can_destroy":true,"can_leave":false}}' recorded_at: Thu, 06 Nov 2025 17:22:49 GMT -recorded_with: VCR 6.2.0 \ No newline at end of file +recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml index 417189a..48c17b5 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml @@ -56,8 +56,6 @@ http_interactions: - W/"f549768628f00ba29406ba914e08f1e4" Cache-Control: - max-age=0, private, must-revalidate - X-Request-Id: - - cfd58e1b-f272-4859-97bd-42f942568d0e X-Runtime: - '0.065844' X-Cloud-Trace-Context: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml index c735fb4..130179f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -56,8 +56,6 @@ http_interactions: - '149' Cache-Control: - no-cache - X-Request-Id: - - 378759fd-0ab0-468c-be7e-b1b4c4d2f972 X-Runtime: - '0.009793' X-Cloud-Trace-Context: From 6520c80558e0351b14fa781f70938d687f659b34 Mon Sep 17 00:00:00 2001 From: Ivan Yurchanka Date: Wed, 28 Jan 2026 15:37:50 +0100 Subject: [PATCH 4/6] Remove X-Cloud-Trace-Context --- .../_create/maps_response_data_to_EmailTemplate_object.yml | 2 -- .../_create/returns_an_EmailTemplate_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../maps_response_data_to_EmailTemplate_object.yml | 2 -- .../with_hash_request/returns_an_EmailTemplate_object.yml | 2 -- .../Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../_get/maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../_get/returns_an_EmailTemplate_object.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../_list/maps_response_data_to_EmailTemplate_objects.yml | 2 -- .../_list/returns_an_array_of_EmailTemplate_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- .../_update/maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../_update/returns_an_EmailTemplate_object.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_specified_fields.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_body_html_field.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_category_field.yml | 4 ---- .../maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../with_hash_request/returns_an_EmailTemplate_object.yml | 4 ---- .../_clean/cleans_Inbox_and_returns_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_create/maps_response_data_to_Inbox_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../_delete/returns_deleted_inbox_data.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_get/maps_response_data_to_Inbox_object.yml | 2 -- .../_get/when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_list/maps_response_data_to_Inboxes_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- .../Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_update/maps_response_data_to_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../with_hash_request/maps_response_data_to_Inbox_object.yml | 2 -- .../_create/maps_response_data_to_Project_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../maps_response_data_to_Project_object.yml | 2 -- .../_delete/returns_deleted_project_id.yml | 4 ---- .../when_project_does_not_exist/raises_not_found_error.yml | 4 ---- .../_get/maps_response_data_to_Project_object.yml | 2 -- .../when_project_does_not_exist/raises_not_found_error.yml | 2 -- .../_list/maps_response_data_to_Project_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- .../_update/maps_response_data_to_Project_object.yml | 4 ---- .../when_project_does_not_exist/raises_not_found_error.yml | 4 ---- .../when_updating_only_name/updates_only_the_name_field.yml | 4 ---- .../maps_response_data_to_Project_object.yml | 4 ---- .../vcr_list/maps_response_data_to_Suppression_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- 59 files changed, 168 deletions(-) diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml index 0df3aea..90767cf 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.034768' - X-Cloud-Trace-Context: - - 37c68312bf56489dc11a2dbbbade3eae;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml index 39153ac..3df7265 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.032709' - X-Cloud-Trace-Context: - - 32e4136a26b94c6d8f5b1d95cc4d11a1;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index c07b77e..19125d4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -57,8 +57,6 @@ http_interactions: - no-cache X-Runtime: - '0.028118' - X-Cloud-Trace-Context: - - 26d20150cdbd431e8a9c4859bd26f620;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml index c52809f..eab8630 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.030705' - X-Cloud-Trace-Context: - - fff47702f83248f3c2cbbcad3aa9f666;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml index 42ebd20..367c7e1 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.028074' - X-Cloud-Trace-Context: - - 9a439487ca424258cccf3421aba09839;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml index 466664b..1982de1 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.024380' - X-Cloud-Trace-Context: - - 7eef356be3ca4f5e880b443464112b53;o=3 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -125,8 +123,6 @@ http_interactions: - no-cache X-Runtime: - '0.028050' - X-Cloud-Trace-Context: - - e51dce6fd3be4b4888224cf6b6c9937f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml index 300751f..ff5d8cc 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.036005' - X-Cloud-Trace-Context: - - c76b54bf6c84452c81b4c736a46b52f7;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - no-cache X-Runtime: - '0.017788' - X-Cloud-Trace-Context: - - d78db21094e9415bc07198393280ba7d;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml index bc2afce..4bc6938 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.058427' - X-Cloud-Trace-Context: - - 53203041df7742fb88a7ff1d2afab7e7;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.020742' - X-Cloud-Trace-Context: - - f571fbfd56b74bc5c8d02d994971c521;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml index e67ab40..4207ac0 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.030593' - X-Cloud-Trace-Context: - - 96f9cd23d87d4c7b82faf4a6b7d9d733;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.015509' - X-Cloud-Trace-Context: - - 645b95c5cd3d4d70ccf6301df3a43c6e;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml index ec92526..b3619fc 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.041709' - X-Cloud-Trace-Context: - - f5879d509a354dc58d227749c8c0d5df;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - no-cache X-Runtime: - '0.023201' - X-Cloud-Trace-Context: - - 1590386dd4cc4b9dc9c11d8a087a11f1;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml index 6919fcb..ffad946 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027047' - X-Cloud-Trace-Context: - - c06fb8a0e59a42fc837232705787f206;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml index ced3d4f..c3a2373 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.021037' - X-Cloud-Trace-Context: - - 38e92a5e6015409ec7221e96b1123f74;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index 666198e..d93cea2 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.010186' - X-Cloud-Trace-Context: - - 279a8aeeb51941f5860bd3ae1a613562;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml index 23bee53..2800b52 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.036171' - X-Cloud-Trace-Context: - - 8434511ee0f242eb8887e07440fcba99;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.026161' - X-Cloud-Trace-Context: - - 476fdb3b155e4b338b16a1b962793126;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml index 14e9d27..fde76e4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027884' - X-Cloud-Trace-Context: - - 65d3f62a7cf649038aac56470f5460e8;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.053707' - X-Cloud-Trace-Context: - - 8bcae98d557548538d83ddbf114bb071;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml index 0d3cd89..770e0e0 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027821' - X-Cloud-Trace-Context: - - 549ca0c5608b4fe1c44e742d60768b14;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - no-cache X-Runtime: - '0.019177' - X-Cloud-Trace-Context: - - 1246879cf4014fa48a8a9453d47c0faf;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml index 23d34ba..dc53340 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027041' - X-Cloud-Trace-Context: - - 06ada4377ccd47b4c64cb24df6a30abd;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.034033' - X-Cloud-Trace-Context: - - 7bb2143167fd40dec43b4adda171876d;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml index 86c7389..3be4a99 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027117' - X-Cloud-Trace-Context: - - 679b1a4ee11f4c0d8b6739dc5d5d3236;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.026053' - X-Cloud-Trace-Context: - - c0718a436fb84e1a8efd67f97d074f3f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml index 1cc8766..9889811 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027038' - X-Cloud-Trace-Context: - - 0c26f2a78fa9405cc6a784bbaf20b504;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.028958' - X-Cloud-Trace-Context: - - c1c6bc0d11684e1ec60190f30289f002;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml index e3d433f..b3a94d4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.036545' - X-Cloud-Trace-Context: - - 2372bc9e859b416a80aa166a4049c099;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.032502' - X-Cloud-Trace-Context: - - 9eeb41f6564f43b887190cefe9e8b513;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml index 618e642..5503bd4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.024952' - X-Cloud-Trace-Context: - - ede397fd957b47d38e5c1c966be8ce34;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.033869' - X-Cloud-Trace-Context: - - 4c01c12333354c58866042d08d4e144b;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml index 07eb13b..9003c9e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.025216' - X-Cloud-Trace-Context: - - d45855dbcd2a460b83eedfbdac950b15;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.027431' - X-Cloud-Trace-Context: - - 79e3f0e6a8b642e2809c4715a4612d2b;o=3 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml index bb8a3aa..ce97723 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.024978' - X-Cloud-Trace-Context: - - c466d06bccc74e0ac3ca647a8ea8f39e;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.029388' - X-Cloud-Trace-Context: - - f44f3af3007a41d4822f282c5489adc2;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml index ad564a1..d7ad7cb 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.024671' - X-Cloud-Trace-Context: - - ecfcd5477e454beece7a35ec08b98bf8;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.032155' - X-Cloud-Trace-Context: - - d67e2961da2d4315c045c3ad1001a6b6;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml index 910aeee..3b55630 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.028169' - X-Cloud-Trace-Context: - - 4183cffa2a1b4d02ccf6fe88a694df49;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -131,8 +129,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.030298' - X-Cloud-Trace-Context: - - 01ff0e83e2aa4823ce094855a4aecb57;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml index 8334fda..eb80e10 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.035033' - X-Cloud-Trace-Context: - - 8b23e88a4ced4a9c8805e3f82a907388;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.030071' - X-Cloud-Trace-Context: - - 422a36a6cbcd4bd0c55574550a270a29;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml index 6ef0120..ae87a19 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml @@ -59,8 +59,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.026973' - X-Cloud-Trace-Context: - - 652a1d0250724c6a8dae91c78d377dbc;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.031032' - X-Cloud-Trace-Context: - - c76e73da1c31402bcade131b45e3516f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml index b1b77ab..2cb8e5d 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.039374' - X-Cloud-Trace-Context: - - 4d4fb37492584991cfebb9a1b29d099f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml index df5b86e..14ad773 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.012632' - X-Cloud-Trace-Context: - - '09dd3a8e86a84af682242d833e0ad386;o=0' Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml index be68cd2..bcb1827 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.061158' - X-Cloud-Trace-Context: - - e8ecc98dd6204248ceed8bfb0da9b7a3;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index 9917bd5..656d356 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.038009' - X-Cloud-Trace-Context: - - 8d0bb8b5197d49bb878f253bef608125;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml index 62a7f6b..cbbc166 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.050752' - X-Cloud-Trace-Context: - - 725615cd55814b88ce1b48086fa6d471;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml index 3dbe5a9..27945f1 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.013713' - X-Cloud-Trace-Context: - - 3868b3d5945d4843c4c12cecf70971de;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml index 50fbc26..cb4c79a 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.024725' - X-Cloud-Trace-Context: - - a512c905911549d588dd11499058d3ca;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml index 2b2f51c..31a63a5 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.015297' - X-Cloud-Trace-Context: - - 474ae8a57f8f4fa2cf5eb599cfe0cd05;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml index 9756785..78537a7 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.041466' - X-Cloud-Trace-Context: - - aa52c3d676f74001807ae3b136dcb7a5;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index 20f1ced..05855ef 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -60,8 +60,6 @@ http_interactions: - no-cache X-Runtime: - '0.012461' - X-Cloud-Trace-Context: - - e69f0ee106f3401c8371ae5f11d21d6f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml index 5e843dd..dbd959a 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.024366' - X-Cloud-Trace-Context: - - a234c5211e674b878ed1005d6ee1a28b;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml index 2760ccb..1668ad9 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.010824' - X-Cloud-Trace-Context: - - 82b5db722efe4614c9cb52feb3ac2afa;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml index 0edccfb..6f8c32c 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.033364' - X-Cloud-Trace-Context: - - 0da52de942cb45eac6d944100fe554fb;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml index c9b1b26..7346d7f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.008827' - X-Cloud-Trace-Context: - - ea6626e21aac4956cf48adbc2bc95d6d;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml index f21ccb1..4e8e5fd 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.028523' - X-Cloud-Trace-Context: - - c25b5a209b5f4257c7d1b1eb50f4e6d5;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml index 7e91905..b8ffb11 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.009525' - X-Cloud-Trace-Context: - - abec98fdb6ef4e5285b4b3d107c90003;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml index f02bebd..c0d63f8 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.032751' - X-Cloud-Trace-Context: - - 14fb309a195c4fff8b2200d270f3f8c0;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml index 79eeb22..1e2afb0 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.085443' - X-Cloud-Trace-Context: - - 17bcba5cef204f30c89d68f7d8aa8d0b;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index 71a1d1a..ca4d597 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.019134' - X-Cloud-Trace-Context: - - 202ae565c50b43798fc2ab188e7ad5ac;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml index 3851e73..fbcd7ed 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.203603' - X-Cloud-Trace-Context: - - 11447d3d125e4f9187fcfeb1d48a0525;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml index 1cb3658..ad2c86a 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.072132' - X-Cloud-Trace-Context: - - e1b497c7012c49a88f7c34a4285079aa;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -134,8 +132,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.082012' - X-Cloud-Trace-Context: - - 29e3d8994f6b4a79831a029a0bf2af97;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml index d0768b2..1d74c03 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.080663' - X-Cloud-Trace-Context: - - d809888ce0ce4000c29024f512e7e29f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - no-cache X-Runtime: - '0.011877' - X-Cloud-Trace-Context: - - 74a6838b91ab47e88a4d153953752848;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml index 1c9c4f4..dd36526 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml @@ -61,8 +61,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.088170' - X-Cloud-Trace-Context: - - b88a38459cfc45b28b288c0424e27f64;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml index c9585af..2b936e2 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.009954' - X-Cloud-Trace-Context: - - 78e5c8dd80204ed08ba4fe757fa0350f;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml index f18aee3..3b02870 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml @@ -61,8 +61,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '4.772312' - X-Cloud-Trace-Context: - - bc572ddec18744b4c2949b74b55703fb;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index 74d0341..c55e340 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -60,8 +60,6 @@ http_interactions: - no-cache X-Runtime: - '0.010076' - X-Cloud-Trace-Context: - - 753aadc0a1104487c20e9ea64a70697e;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml index e04eb5e..b79517f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.044394' - X-Cloud-Trace-Context: - - 81340cc2bcdc42278670e575653ba3f8;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -134,8 +132,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.062113' - X-Cloud-Trace-Context: - - f82a659ca1b4437cc04a10fa42f9604b;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml index 9c30d10..c787e04 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.073294' - X-Cloud-Trace-Context: - - 8878437f829f4997cdc3df94747f7233;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -132,8 +130,6 @@ http_interactions: - no-cache X-Runtime: - '0.019360' - X-Cloud-Trace-Context: - - 2f04c70fdafa4c03c89fada9ee40d79d;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml index c8d61e0..78b9757 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.071829' - X-Cloud-Trace-Context: - - aea66e7c3fc649ce8443d1b523e82fc0;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -134,8 +132,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.087682' - X-Cloud-Trace-Context: - - 2a29525372474282c7eb3a46ec615f45;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml index ddb71df..6b4fe42 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml @@ -60,8 +60,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.105070' - X-Cloud-Trace-Context: - - 4652627853d047ed8f5ca9c363420951;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: @@ -134,8 +132,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.072047' - X-Cloud-Trace-Context: - - e232a4dfcd1e404ec34b5d6123563891;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml index 48c17b5..8215f6b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml @@ -58,8 +58,6 @@ http_interactions: - max-age=0, private, must-revalidate X-Runtime: - '0.065844' - X-Cloud-Trace-Context: - - c592cc41ea204c3e89e485f1ff924281;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml index 130179f..640a53c 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -58,8 +58,6 @@ http_interactions: - no-cache X-Runtime: - '0.009793' - X-Cloud-Trace-Context: - - 51d1a8094ff74f07cf18a0ed4e656380;o=0 Strict-Transport-Security: - max-age=0 Cf-Cache-Status: From aae72b797872886fbeead92ba365d4805b9b748a Mon Sep 17 00:00:00 2001 From: Ivan Yurchanka Date: Wed, 28 Jan 2026 15:38:33 +0100 Subject: [PATCH 5/6] Remove Cf-Ray --- .../successfully_sends_a_batch_of_emails.yml | 2 -- .../successfully_sends_a_batch_of_emails.yml | 2 -- .../_send_batch/with_API_errors/handles_API_errors.yml | 2 -- .../successfully_sends_a_batch_of_emails_with_template.yml | 2 -- .../_create/maps_response_data_to_EmailTemplate_object.yml | 2 -- .../_create/returns_an_EmailTemplate_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../maps_response_data_to_EmailTemplate_object.yml | 2 -- .../with_hash_request/returns_an_EmailTemplate_object.yml | 2 -- .../Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../_get/maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../_get/returns_an_EmailTemplate_object.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../_list/maps_response_data_to_EmailTemplate_objects.yml | 2 -- .../_list/returns_an_array_of_EmailTemplate_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- .../_update/maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../_update/returns_an_EmailTemplate_object.yml | 4 ---- .../when_template_does_not_exist/raises_not_found_error.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_specified_fields.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_body_html_field.yml | 4 ---- .../preserves_other_fields_unchanged.yml | 4 ---- .../returns_an_EmailTemplate_object.yml | 4 ---- .../updates_only_the_category_field.yml | 4 ---- .../maps_response_data_to_EmailTemplate_object.yml | 4 ---- .../with_hash_request/returns_an_EmailTemplate_object.yml | 4 ---- .../_clean/cleans_Inbox_and_returns_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_create/maps_response_data_to_Inbox_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../_delete/returns_deleted_inbox_data.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_get/maps_response_data_to_Inbox_object.yml | 2 -- .../_get/when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_list/maps_response_data_to_Inboxes_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- .../Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../_update/maps_response_data_to_Inbox_object.yml | 2 -- .../when_inbox_does_not_exist/raises_not_found_error.yml | 2 -- .../with_hash_request/maps_response_data_to_Inbox_object.yml | 2 -- .../_create/maps_response_data_to_Project_object.yml | 2 -- .../when_API_returns_an_error/raises_a_Mailtrap_Error.yml | 2 -- .../maps_response_data_to_Project_object.yml | 2 -- .../_delete/returns_deleted_project_id.yml | 4 ---- .../when_project_does_not_exist/raises_not_found_error.yml | 4 ---- .../_get/maps_response_data_to_Project_object.yml | 2 -- .../when_project_does_not_exist/raises_not_found_error.yml | 2 -- .../_list/maps_response_data_to_Project_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- .../_update/maps_response_data_to_Project_object.yml | 4 ---- .../when_project_does_not_exist/raises_not_found_error.yml | 4 ---- .../when_updating_only_name/updates_only_the_name_field.yml | 4 ---- .../maps_response_data_to_Project_object.yml | 4 ---- .../vcr_list/maps_response_data_to_Suppression_objects.yml | 2 -- .../when_api_key_is_incorrect/raises_authorization_error.yml | 2 -- 63 files changed, 176 deletions(-) diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_bulk_stream/successfully_sends_a_batch_of_emails.yml b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_bulk_stream/successfully_sends_a_batch_of_emails.yml index 094c02e..21ab201 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_bulk_stream/successfully_sends_a_batch_of_emails.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_bulk_stream/successfully_sends_a_batch_of_emails.yml @@ -36,8 +36,6 @@ http_interactions: - max-age=0 Server: - cloudflare - Cf-Ray: - - 958c9686a8ccc400-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_sandbox_mode/successfully_sends_a_batch_of_emails.yml b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_sandbox_mode/successfully_sends_a_batch_of_emails.yml index d917f33..63ee18d 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_sandbox_mode/successfully_sends_a_batch_of_emails.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/when_in_sandbox_mode/successfully_sends_a_batch_of_emails.yml @@ -36,8 +36,6 @@ http_interactions: - max-age=0 Server: - cloudflare - Cf-Ray: - - 958c92e2cbe6da34-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_API_errors/handles_API_errors.yml b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_API_errors/handles_API_errors.yml index 036a9f6..df157a8 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_API_errors/handles_API_errors.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_API_errors/handles_API_errors.yml @@ -36,8 +36,6 @@ http_interactions: - max-age=0 Server: - cloudflare - Cf-Ray: - - 958c9402bfe0bf31-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_template/successfully_sends_a_batch_of_emails_with_template.yml b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_template/successfully_sends_a_batch_of_emails_with_template.yml index b5d8dac..2411a56 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_template/successfully_sends_a_batch_of_emails_with_template.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_Client/_send_batch/with_template/successfully_sends_a_batch_of_emails_with_template.yml @@ -36,8 +36,6 @@ http_interactions: - max-age=0 Server: - cloudflare - Cf-Ray: - - 958c969fbd32eebe-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml index 90767cf..f77ff93 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/maps_response_data_to_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '267' Connection: - keep-alive - Cf-Ray: - - 954213900d01ef8b-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml index 3df7265..29852b4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '267' Connection: - keep-alive - Cf-Ray: - - 9542138e7d4c3540-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index 19125d4..54fc207 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -31,8 +31,6 @@ http_interactions: - '38' Connection: - keep-alive - Cf-Ray: - - 95421394588434b0-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml index eab8630..65c03a8 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/maps_response_data_to_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '267' Connection: - keep-alive - Cf-Ray: - - 95421392e98dbf8f-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml index 367c7e1..eaafccb 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_create/with_hash_request/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '267' Connection: - keep-alive - Cf-Ray: - - 9542139178863bc0-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml index 1982de1..3cef163 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/returns_no_content.yml @@ -31,8 +31,6 @@ http_interactions: - '285' Connection: - keep-alive - Cf-Ray: - - 954213bebf653540-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -99,8 +97,6 @@ http_interactions: - Mon, 23 Jun 2025 06:54:58 GMT Connection: - keep-alive - Cf-Ray: - - 954213c01ae4025c-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml index ff5d8cc..cefe8e4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_delete/when_template_does_not_exist/raises_not_found_error.yml @@ -31,8 +31,6 @@ http_interactions: - '285' Connection: - keep-alive - Cf-Ray: - - 954213c1881c34d3-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -103,8 +101,6 @@ http_interactions: - '21' Connection: - keep-alive - Cf-Ray: - - 954213c3082e0206-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml index 4bc6938..bfa1e66 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/maps_response_data_to_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '272' Connection: - keep-alive - Cf-Ray: - - 954213887fa0020f-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 9542138a1f63ecc0-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml index 4207ac0..8e4d0a0 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '272' Connection: - keep-alive - Cf-Ray: - - 954213859a77ee47-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213870a17ef8b-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml index b3619fc..8db995c 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_get/when_template_does_not_exist/raises_not_found_error.yml @@ -31,8 +31,6 @@ http_interactions: - '272' Connection: - keep-alive - Cf-Ray: - - 9542138b7f8b357c-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -103,8 +101,6 @@ http_interactions: - '21' Connection: - keep-alive - Cf-Ray: - - 9542138d08e770bd-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml index ffad946..08a8a4f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/maps_response_data_to_EmailTemplate_objects.yml @@ -30,8 +30,6 @@ http_interactions: - chunked Connection: - keep-alive - Cf-Ray: - - 95421382d9eb01fa-WAW Vary: - Accept - Accept-Encoding diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml index c3a2373..f689e5a 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/returns_an_array_of_EmailTemplate_objects.yml @@ -30,8 +30,6 @@ http_interactions: - chunked Connection: - keep-alive - Cf-Ray: - - 954213815efc3bbb-WAW Vary: - Accept - Accept-Encoding diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index d93cea2..1413312 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -30,8 +30,6 @@ http_interactions: - '31' Connection: - keep-alive - Cf-Ray: - - 954213843a91bf42-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml index 2800b52..ff5513e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/maps_response_data_to_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213991fc9bf24-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 9542139a7a7cecb3-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml index fde76e4..dd15a81 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 95421395cb44ee45-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213973e34bf24-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml index 770e0e0..49768b6 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_template_does_not_exist/raises_not_found_error.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213bbedf634b0-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -104,8 +102,6 @@ http_interactions: - '21' Connection: - keep-alive - Cf-Ray: - - 954213bd6a58ee40-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml index dc53340..2dfdae9 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/preserves_other_fields_unchanged.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213b8f930ef8b-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213ba6eb5bff3-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml index 3be4a99..890279f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213b34b77bf3a-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213b4ac18bfab-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml index 9889811..6171d00 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_multiple_specific_fields/updates_only_the_specified_fields.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213b619473bc0-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213b78e0b3bb7-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml index b3a94d4..b0dbb14 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/preserves_other_fields_unchanged.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213b05cf9bfaf-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213b1cee80230-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml index 5503bd4..948096b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213aa8c0a3510-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213abedb3ecc3-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml index 9003c9e..704fa28 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_body_html/updates_only_the_body_html_field.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213ad784a021b-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213aee88ebfdf-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml index ce97723..c60c249 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/preserves_other_fields_unchanged.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213a77affbfa6-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213a90ad5bfbc-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml index d7ad7cb..763db2b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213a1bd07bf62-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213a32e4ebf47-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml index 3b55630..6289b9c 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/when_updating_only_category/updates_only_the_category_field.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 954213a49a47ef97-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -135,8 +133,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213a5fa8cbf21-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml index eb80e10..9266c7b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/maps_response_data_to_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 9542139ecd12c008-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 954213a03904ef95-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml index ae87a19..93f0b88 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_EmailTemplatesAPI/_update/with_hash_request/returns_an_EmailTemplate_object.yml @@ -31,8 +31,6 @@ http_interactions: - '292' Connection: - keep-alive - Cf-Ray: - - 9542139bec813bbd-WAW X-Frame-Options: - SAMEORIGIN X-Xss-Protection: @@ -136,8 +134,6 @@ http_interactions: - DYNAMIC Server: - cloudflare - Cf-Ray: - - 9542139d6a8a3566-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml index 2cb8e5d..6e82379 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/cleans_Inbox_and_returns_Inbox_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b42309cabe8bd24-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml index 14ad773..23fe615 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_clean/when_inbox_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b42309e2d5fd8d6-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml index bcb1827..0157b2d 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/maps_response_data_to_Inbox_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b421838da20b32c-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index 656d356..8ce4698 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b42183a5f0890e7-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml index cbbc166..bb61f4f 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/returns_deleted_inbox_data.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b42381f599a3554-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml index 27945f1..2457db9 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_delete/when_inbox_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4238218f80d285-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml index cb4c79a..c177571 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/maps_response_data_to_Inbox_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4220e01ac7903c-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml index 31a63a5..03265b4 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_get/when_inbox_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4220e30f719f33-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml index 78537a7..4aca258 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/maps_response_data_to_Inboxes_objects.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4145ece982dca0-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index 05855ef..2dec018 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4145ee4ef86c21-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml index dbd959a..61e6f99 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/returns_nil.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b42374a2eef3554-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml index 1668ad9..6c31677 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_mark_as_read/when_inbox_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b42374dbc73d372-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml index 6f8c32c..8426a9c 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/returns_nil.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4237e81af52bb5-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml index 7346d7f..4deaff3 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_reset_credentials/when_inbox_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b4237ec0ef99b2b-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml index 4e8e5fd..9ab3734 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/maps_response_data_to_Inbox_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b422be5adced359-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml index b8ffb11..72997ea 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/when_inbox_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b422bea9bfadcc2-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml index c0d63f8..cd2eb7b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_InboxesAPI/_update/with_hash_request/maps_response_data_to_Inbox_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9b422be70c87578b-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml index 1e2afb0..3d38de5 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/maps_response_data_to_Project_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a64668494c4ede-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml index ca4d597..bbb3f94 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/when_API_returns_an_error/raises_a_Mailtrap_Error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6466c4ba670dc-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml index fbcd7ed..9eaf0f5 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_create/with_hash_request/maps_response_data_to_Project_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a64669fd1be5d6-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml index ad2c86a..701ebc2 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/returns_deleted_project_id.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a646799b97b813-WAW Alt-Svc: - h3=":443"; ma=86400 body: @@ -136,8 +134,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6467b1875bc36-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml index 1d74c03..588b0f5 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_delete/when_project_does_not_exist/raises_not_found_error.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6467cbc9ac3b5-WAW Alt-Svc: - h3=":443"; ma=86400 body: @@ -134,8 +132,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6467e4bea25bc-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml index dd36526..cc2be3e 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/maps_response_data_to_Project_object.yml @@ -65,8 +65,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9babf4c28ae1906d-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml index 2b936e2..0717828 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_get/when_project_does_not_exist/raises_not_found_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 9ba31d1f3bfe30c4-FRA Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml index 3b02870..757b544 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/maps_response_data_to_Project_objects.yml @@ -65,8 +65,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6463688497a60-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml index c55e340..6b68f5b 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a64658cdd8028d-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml index b79517f..3dab1a9 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/maps_response_data_to_Project_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6466d7c75eec5-WAW Alt-Svc: - h3=":443"; ma=86400 body: @@ -136,8 +134,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a6466eda44b576-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml index c787e04..066b2f3 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_project_does_not_exist/raises_not_found_error.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a64676d975eeae-WAW Alt-Svc: - h3=":443"; ma=86400 body: @@ -134,8 +132,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a646785e8c0282-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml index 78b9757..6faebd6 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/when_updating_only_name/updates_only_the_name_field.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a64673a8d289fe-WAW Alt-Svc: - h3=":443"; ma=86400 body: @@ -136,8 +134,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a646752a6015f8-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml index 6b4fe42..c71dd16 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_ProjectsAPI/_update/with_hash_request/maps_response_data_to_Project_object.yml @@ -64,8 +64,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a646705c8e5779-WAW Alt-Svc: - h3=":443"; ma=86400 body: @@ -136,8 +134,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 99a646721c9deeb2-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml index 8215f6b..983d1d1 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/maps_response_data_to_Suppression_objects.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 956363349bf90230-WAW Alt-Svc: - h3=":443"; ma=86400 body: diff --git a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml index 640a53c..5788828 100644 --- a/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml +++ b/spec/fixtures/vcr_cassettes/Mailtrap_SuppressionsAPI/vcr_list/when_api_key_is_incorrect/raises_authorization_error.yml @@ -62,8 +62,6 @@ http_interactions: - max-age=0 Cf-Cache-Status: - DYNAMIC - Cf-Ray: - - 956363363a4ebf92-WAW Alt-Svc: - h3=":443"; ma=86400 body: From 02e51cc0d0d7aa69501b12aabcdd508424100557 Mon Sep 17 00:00:00 2001 From: Ivan Yurchanka Date: Wed, 28 Jan 2026 15:47:21 +0100 Subject: [PATCH 6/6] Ignore real ids prompt --- .coderabbit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 8298f4f..73f1ca1 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -7,4 +7,4 @@ reviews: Act as a data privacy officer. Carefully read all the vcr cassettes with recorded HTTP interactions and try to identify sensitive data that could potentially be recorded. It can be anything from PII to - credentials. Ignore obvious placeholder values. + credentials. Ignore obvious placeholder values and real IDs in URLs.