boletosimples 0.6.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +34 -0
- data/.rspec +3 -0
- data/.rubocop.yml +9 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -20
- data/Gemfile +2 -0
- data/README.md +12 -54
- data/Rakefile +3 -1
- data/boletosimples.gemspec +14 -11
- data/lib/boletosimples.rb +4 -6
- data/lib/boletosimples/configuration.rb +14 -25
- data/lib/boletosimples/last_request.rb +12 -9
- data/lib/boletosimples/middlewares/bearer.rb +12 -0
- data/lib/boletosimples/middlewares/last_request.rb +3 -1
- data/lib/boletosimples/middlewares/raise_error.rb +9 -2
- data/lib/boletosimples/middlewares/user_agent.rb +3 -1
- data/lib/boletosimples/resources/bank_billet.rb +5 -11
- data/lib/boletosimples/resources/bank_billet_account.rb +3 -1
- data/lib/boletosimples/resources/bank_billet_discharge.rb +3 -1
- data/lib/boletosimples/resources/bank_billet_payment.rb +3 -1
- data/lib/boletosimples/resources/bank_billet_remittance.rb +3 -1
- data/lib/boletosimples/resources/base_model.rb +3 -1
- data/lib/boletosimples/resources/customer.rb +3 -1
- data/lib/boletosimples/resources/customer_import.rb +5 -3
- data/lib/boletosimples/resources/customer_subscription.rb +3 -10
- data/lib/boletosimples/resources/customer_subscription_import.rb +5 -3
- data/lib/boletosimples/resources/discharge.rb +4 -11
- data/lib/boletosimples/resources/email_delivery.rb +3 -1
- data/lib/boletosimples/resources/event.rb +3 -1
- data/lib/boletosimples/resources/installment.rb +3 -1
- data/lib/boletosimples/resources/remittance.rb +3 -1
- data/lib/boletosimples/resources/sms_delivery.rb +6 -0
- data/lib/boletosimples/resources/transaction.rb +3 -1
- data/lib/boletosimples/resources/webhook.rb +3 -1
- data/lib/boletosimples/resources/webhook_delivery.rb +3 -1
- data/lib/boletosimples/response_error.rb +8 -3
- data/lib/boletosimples/version.rb +3 -1
- data/spec/boletosimples/configuration_spec.rb +71 -101
- data/spec/boletosimples/last_request_spec.rb +16 -28
- data/spec/boletosimples/resources/bank_billet_account_spec.rb +57 -33
- data/spec/boletosimples/resources/bank_billet_discharge_spec.rb +7 -12
- data/spec/boletosimples/resources/bank_billet_payment_spec.rb +7 -12
- data/spec/boletosimples/resources/bank_billet_remittance_spec.rb +7 -12
- data/spec/boletosimples/resources/bank_billet_spec.rb +56 -42
- data/spec/boletosimples/resources/customer_import_spec.rb +41 -30
- data/spec/boletosimples/resources/customer_spec.rb +52 -39
- data/spec/boletosimples/resources/customer_subscription_import_spec.rb +41 -30
- data/spec/boletosimples/resources/customer_subscription_spec.rb +61 -33
- data/spec/boletosimples/resources/discharge_spec.rb +64 -11
- data/spec/boletosimples/resources/email_delivery_spec.rb +6 -11
- data/spec/boletosimples/resources/event_spec.rb +7 -12
- data/spec/boletosimples/resources/installment_spec.rb +61 -32
- data/spec/boletosimples/resources/remittance_spec.rb +7 -12
- data/spec/boletosimples/resources/sms_delivery_spec.rb +12 -0
- data/spec/boletosimples/resources/transactions_spec.rb +7 -12
- data/spec/boletosimples/resources/webhook_delivery_spec.rb +7 -12
- data/spec/boletosimples/resources/webhook_spec.rb +7 -12
- data/spec/fixtures/discharge.RET +3 -0
- data/spec/fixtures/vcr_cassettes/last_request/bank_billets.yml +536 -88
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/all.yml +537 -91
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/success.yml +34 -92
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_params.yml +32 -20
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/invalid_root.yml +28 -17
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/create/valid.yml +43 -27
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/duplicate/success.yml +83 -0
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/find.yml +51 -27
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/all.yml +131 -20
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_params.yml +34 -20
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/invalid_root.yml +30 -19
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/create/valid.yml +41 -21
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_account/find.yml +38 -18
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_discharge/all.yml +66 -47
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_payment/all.yml +44 -42
- data/spec/fixtures/vcr_cassettes/resources/bank_billet_remittance/all.yml +95 -48
- data/spec/fixtures/vcr_cassettes/resources/customer/all.yml +79 -32
- data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_params.yml +30 -17
- data/spec/fixtures/vcr_cassettes/resources/customer/create/invalid_root.yml +28 -17
- data/spec/fixtures/vcr_cassettes/resources/customer/create/valid.yml +33 -21
- data/spec/fixtures/vcr_cassettes/resources/customer/find.yml +33 -19
- data/spec/fixtures/vcr_cassettes/resources/customer_import/all.yml +43 -60
- data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_params.yml +37 -51
- data/spec/fixtures/vcr_cassettes/resources/customer_import/create/invalid_root.yml +38 -52
- data/spec/fixtures/vcr_cassettes/resources/customer_import/create/valid.yml +43 -68
- data/spec/fixtures/vcr_cassettes/resources/customer_import/find.yml +40 -54
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/all.yml +102 -52
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_params.yml +40 -50
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/invalid_root.yml +36 -48
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/create/valid.yml +48 -53
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/find.yml +44 -50
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription/next_charge.yml +45 -133
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/all.yml +44 -55
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml +37 -52
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_root.yml +39 -53
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/valid.yml +43 -70
- data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/find.yml +40 -55
- data/spec/fixtures/vcr_cassettes/resources/discharge/all.yml +64 -33
- data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_params.yml +70 -0
- data/spec/fixtures/vcr_cassettes/resources/discharge/create/invalid_root.yml +69 -0
- data/spec/fixtures/vcr_cassettes/resources/discharge/create/valid.yml +84 -0
- data/spec/fixtures/vcr_cassettes/resources/discharge/find.yml +71 -0
- data/spec/fixtures/vcr_cassettes/resources/email_delivery/all.yml +40 -43
- data/spec/fixtures/vcr_cassettes/resources/event/all.yml +490 -166
- data/spec/fixtures/vcr_cassettes/resources/installment/all.yml +418 -52
- data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_params.yml +41 -52
- data/spec/fixtures/vcr_cassettes/resources/installment/create/invalid_root.yml +36 -48
- data/spec/fixtures/vcr_cassettes/resources/installment/create/valid.yml +48 -53
- data/spec/fixtures/vcr_cassettes/resources/installment/find.yml +44 -52
- data/spec/fixtures/vcr_cassettes/resources/remittance/all.yml +53 -33
- data/spec/fixtures/vcr_cassettes/resources/sns_delivery/all.yml +73 -0
- data/spec/fixtures/vcr_cassettes/resources/transaction/all.yml +34 -22
- data/spec/fixtures/vcr_cassettes/resources/web_hook/all.yml +42 -33
- data/spec/fixtures/vcr_cassettes/resources/webhook_delivery/all.yml +1232 -54
- data/spec/spec_helper.rb +3 -20
- data/spec/support/stub_env.rb +7 -0
- data/spec/support/vcr.rb +3 -4
- metadata +87 -52
- data/.coveralls.yml +0 -2
- data/.travis.yml +0 -46
- data/gemfiles/rails_42.gemfile +0 -8
- data/gemfiles/rails_50.gemfile +0 -8
- data/gemfiles/rails_51.gemfile +0 -8
- data/gemfiles/rails_52.gemfile +0 -9
- data/lib/boletosimples/extra.rb +0 -8
- data/lib/boletosimples/resources/partner/user.rb +0 -7
- data/lib/oauth2_patch.rb +0 -24
- data/spec/boletosimples/extra_spec.rb +0 -31
- data/spec/boletosimples/resources/partner/user_spec.rb +0 -19
- data/spec/fixtures/vcr_cassettes/configuration/client_credentials/invalid.yml +0 -64
- data/spec/fixtures/vcr_cassettes/configuration/client_credentials/valid.yml +0 -56
- data/spec/fixtures/vcr_cassettes/extra/userinfo/authenticated.yml +0 -58
- data/spec/fixtures/vcr_cassettes/extra/userinfo/not_authenticated.yml +0 -54
- data/spec/fixtures/vcr_cassettes/last_request/userinfo.yml +0 -58
- data/spec/fixtures/vcr_cassettes/resources/bank_billet/cancel/failure.yml +0 -118
- data/spec/fixtures/vcr_cassettes/resources/partner/user/create.yml +0 -60
- data/spec/spec.opts +0 -8
| @@ -1,165 +1,77 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            http_interactions:
         | 
| 3 | 
            -
            - request:
         | 
| 4 | 
            -
                method: get
         | 
| 5 | 
            -
                uri: https://sandbox.boletosimples.com.br/api/v1/customer_subscriptions/4?access_token=BOLETOSIMPLES_ACCESS_TOKEN
         | 
| 6 | 
            -
                body:
         | 
| 7 | 
            -
                  encoding: US-ASCII
         | 
| 8 | 
            -
                  string: ''
         | 
| 9 | 
            -
                headers:
         | 
| 10 | 
            -
                  User-Agent:
         | 
| 11 | 
            -
                  - BoletoSimples Ruby Client v0.4.0 (contato@boletosimples.com.br)
         | 
| 12 | 
            -
                  Authorization:
         | 
| 13 | 
            -
                  - Token token="BOLETOSIMPLES_ACCESS_TOKEN"
         | 
| 14 | 
            -
                  Accept-Encoding:
         | 
| 15 | 
            -
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - "*/*"
         | 
| 18 | 
            -
              response:
         | 
| 19 | 
            -
                status:
         | 
| 20 | 
            -
                  code: 200
         | 
| 21 | 
            -
                  message: OK
         | 
| 22 | 
            -
                headers:
         | 
| 23 | 
            -
                  Connection:
         | 
| 24 | 
            -
                  - keep-alive
         | 
| 25 | 
            -
                  Content-Type:
         | 
| 26 | 
            -
                  - application/json; charset=utf-8
         | 
| 27 | 
            -
                  Transfer-Encoding:
         | 
| 28 | 
            -
                  - chunked
         | 
| 29 | 
            -
                  Status:
         | 
| 30 | 
            -
                  - 200 OK
         | 
| 31 | 
            -
                  Cache-Control:
         | 
| 32 | 
            -
                  - must-revalidate, private, max-age=0
         | 
| 33 | 
            -
                  X-Ratelimit-Limit:
         | 
| 34 | 
            -
                  - '500'
         | 
| 35 | 
            -
                  Date:
         | 
| 36 | 
            -
                  - Mon, 15 Aug 2016 19:49:45 GMT
         | 
| 37 | 
            -
                  Strict-Transport-Security:
         | 
| 38 | 
            -
                  - max-age=631138519
         | 
| 39 | 
            -
                  X-Ratelimit-Remaining:
         | 
| 40 | 
            -
                  - '488'
         | 
| 41 | 
            -
                  Vary:
         | 
| 42 | 
            -
                  - Accept-Encoding
         | 
| 43 | 
            -
                  X-Permitted-Cross-Domain-Policies:
         | 
| 44 | 
            -
                  - none
         | 
| 45 | 
            -
                  X-Xss-Protection:
         | 
| 46 | 
            -
                  - 1; mode=block
         | 
| 47 | 
            -
                  X-Request-Id:
         | 
| 48 | 
            -
                  - 23eb19bc-5949-432f-9f51-68298fcb5dc7
         | 
| 49 | 
            -
                  Content-Security-Policy-Report-Only:
         | 
| 50 | 
            -
                  - 'default-src ''self''; child-src ''self'' www.googleadservices.com googleads.g.doubleclick.net
         | 
| 51 | 
            -
                    www.google.com; connect-src ws: wss: *.intercom.io ws.pusherapp.com hn.inspectlet.com
         | 
| 52 | 
            -
                    stats.pusher.com; font-src ''self'' fonts.googleapis.com fonts.gstatic.com
         | 
| 53 | 
            -
                    data:; img-src ''self'' https: data:; script-src ''self'' static.intercomcdn.com
         | 
| 54 | 
            -
                    cdn.inspectlet.com widget.intercom.io js.intercomcdn.com js.pusher.com stats.pusher.com
         | 
| 55 | 
            -
                    zapier.com www.google-analytics.com www.googleadservices.com i.kissmetrics.com
         | 
| 56 | 
            -
                    doug1izaerwt3.cloudfront.net app.popupdomination.com cdn.ywxi.net www.draw.io;
         | 
| 57 | 
            -
                    style-src ''self'' fonts.googleapis.com; report-uri https://boletosimples.report-uri.io/r/default/csp/reportOnly'
         | 
| 58 | 
            -
                  Location:
         | 
| 59 | 
            -
                  - https://sandbox.boletosimples.com.br/api/v1/customer_subscriptions/4
         | 
| 60 | 
            -
                  X-Download-Options:
         | 
| 61 | 
            -
                  - noopen
         | 
| 62 | 
            -
                  Etag:
         | 
| 63 | 
            -
                  - W/"fc1c5eee3b0e21014ab204a47d329184"
         | 
| 64 | 
            -
                  X-Runtime:
         | 
| 65 | 
            -
                  - '0.895405'
         | 
| 66 | 
            -
                  X-Frame-Options:
         | 
| 67 | 
            -
                  - sameorigin
         | 
| 68 | 
            -
                  X-Content-Type-Options:
         | 
| 69 | 
            -
                  - nosniff
         | 
| 70 | 
            -
                  X-Rack-Cache:
         | 
| 71 | 
            -
                  - miss
         | 
| 72 | 
            -
                  X-Powered-By:
         | 
| 73 | 
            -
                  - Phusion Passenger 5.0.30
         | 
| 74 | 
            -
                  Server:
         | 
| 75 | 
            -
                  - nginx/1.10.1 + Phusion Passenger 5.0.30
         | 
| 76 | 
            -
                  Via:
         | 
| 77 | 
            -
                  - 1.1 vegur
         | 
| 78 | 
            -
                body:
         | 
| 79 | 
            -
                  encoding: UTF-8
         | 
| 80 | 
            -
                  string: '{"id":4,"amount":1120.4,"cycle":"monthly","next_billing":"2016-09-15","end_at":null,"instructions":null,"customer_id":11,"description":"Hospedagem","created_at":"2016-08-15","updated_at":"2016-08-15","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":12}'
         | 
| 81 | 
            -
                http_version: 
         | 
| 82 | 
            -
              recorded_at: Mon, 15 Aug 2016 19:49:45 GMT
         | 
| 83 3 | 
             
            - request:
         | 
| 84 4 | 
             
                method: post
         | 
| 85 | 
            -
                uri: https://sandbox.boletosimples.com.br/api/v1/customer_subscriptions/ | 
| 5 | 
            +
                uri: https://sandbox.boletosimples.com.br/api/v1/customer_subscriptions/2640/next_charge
         | 
| 86 6 | 
             
                body:
         | 
| 87 7 | 
             
                  encoding: UTF-8
         | 
| 88 | 
            -
                  string: "{} | 
| 8 | 
            +
                  string: '{"customer_subscription":{"id":2640}}'
         | 
| 89 9 | 
             
                headers:
         | 
| 90 10 | 
             
                  User-Agent:
         | 
| 91 | 
            -
                  -  | 
| 11 | 
            +
                  - email@minhaempresa.com.br
         | 
| 92 12 | 
             
                  Authorization:
         | 
| 93 | 
            -
                  -  | 
| 13 | 
            +
                  - Bearer BOLETOSIMPLES_API_TOKEN
         | 
| 94 14 | 
             
                  Content-Type:
         | 
| 95 15 | 
             
                  - application/json
         | 
| 16 | 
            +
                  Accept:
         | 
| 17 | 
            +
                  - application/json
         | 
| 96 18 | 
             
                  Accept-Encoding:
         | 
| 97 19 | 
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 98 | 
            -
                  Accept:
         | 
| 99 | 
            -
                  - "*/*"
         | 
| 100 20 | 
             
              response:
         | 
| 101 21 | 
             
                status:
         | 
| 102 22 | 
             
                  code: 201
         | 
| 103 23 | 
             
                  message: Created
         | 
| 104 24 | 
             
                headers:
         | 
| 25 | 
            +
                  Server:
         | 
| 26 | 
            +
                  - Cowboy
         | 
| 105 27 | 
             
                  Connection:
         | 
| 106 28 | 
             
                  - keep-alive
         | 
| 107 | 
            -
                   | 
| 108 | 
            -
                  -  | 
| 109 | 
            -
                  Transfer-Encoding:
         | 
| 110 | 
            -
                  - chunked
         | 
| 111 | 
            -
                  Status:
         | 
| 112 | 
            -
                  - 201 Created
         | 
| 113 | 
            -
                  Cache-Control:
         | 
| 114 | 
            -
                  - max-age=0, private, must-revalidate
         | 
| 115 | 
            -
                  X-Ratelimit-Limit:
         | 
| 116 | 
            -
                  - '500'
         | 
| 117 | 
            -
                  Date:
         | 
| 118 | 
            -
                  - Mon, 15 Aug 2016 19:49:47 GMT
         | 
| 119 | 
            -
                  Strict-Transport-Security:
         | 
| 120 | 
            -
                  - max-age=631138519
         | 
| 121 | 
            -
                  X-Ratelimit-Remaining:
         | 
| 122 | 
            -
                  - '487'
         | 
| 123 | 
            -
                  Vary:
         | 
| 124 | 
            -
                  - Accept-Encoding
         | 
| 125 | 
            -
                  X-Permitted-Cross-Domain-Policies:
         | 
| 126 | 
            -
                  - none
         | 
| 29 | 
            +
                  X-Frame-Options:
         | 
| 30 | 
            +
                  - DENY
         | 
| 127 31 | 
             
                  X-Xss-Protection:
         | 
| 128 32 | 
             
                  - 1; mode=block
         | 
| 129 | 
            -
                  X- | 
| 130 | 
            -
                  -  | 
| 131 | 
            -
                  Content-Security-Policy-Report-Only:
         | 
| 132 | 
            -
                  - 'default-src ''self''; child-src ''self'' www.googleadservices.com googleads.g.doubleclick.net
         | 
| 133 | 
            -
                    www.google.com; connect-src ws: wss: *.intercom.io ws.pusherapp.com hn.inspectlet.com
         | 
| 134 | 
            -
                    stats.pusher.com; font-src ''self'' fonts.googleapis.com fonts.gstatic.com
         | 
| 135 | 
            -
                    data:; img-src ''self'' https: data:; script-src ''self'' static.intercomcdn.com
         | 
| 136 | 
            -
                    cdn.inspectlet.com widget.intercom.io js.intercomcdn.com js.pusher.com stats.pusher.com
         | 
| 137 | 
            -
                    zapier.com www.google-analytics.com www.googleadservices.com i.kissmetrics.com
         | 
| 138 | 
            -
                    doug1izaerwt3.cloudfront.net app.popupdomination.com cdn.ywxi.net www.draw.io;
         | 
| 139 | 
            -
                    style-src ''self'' fonts.googleapis.com; report-uri https://boletosimples.report-uri.io/r/default/csp/reportOnly'
         | 
| 140 | 
            -
                  Location:
         | 
| 141 | 
            -
                  - https://sandbox.boletosimples.com.br/api/v1/customer_subscriptions/4
         | 
| 33 | 
            +
                  X-Content-Type-Options:
         | 
| 34 | 
            +
                  - nosniff
         | 
| 142 35 | 
             
                  X-Download-Options:
         | 
| 143 36 | 
             
                  - noopen
         | 
| 37 | 
            +
                  X-Permitted-Cross-Domain-Policies:
         | 
| 38 | 
            +
                  - none
         | 
| 39 | 
            +
                  Referrer-Policy:
         | 
| 40 | 
            +
                  - strict-origin-when-cross-origin
         | 
| 41 | 
            +
                  Location:
         | 
| 42 | 
            +
                  - https://sandbox.boletosimples.com.br/api/v1/customer_subscriptions/2640
         | 
| 43 | 
            +
                  Content-Type:
         | 
| 44 | 
            +
                  - application/json; charset=utf-8
         | 
| 45 | 
            +
                  X-Ratelimit-Limit:
         | 
| 46 | 
            +
                  - '1000'
         | 
| 47 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 48 | 
            +
                  - '976'
         | 
| 144 49 | 
             
                  Etag:
         | 
| 145 | 
            -
                  - W/" | 
| 50 | 
            +
                  - W/"8d4430a3fcc6d6454810a039e5399a23"
         | 
| 51 | 
            +
                  Cache-Control:
         | 
| 52 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 53 | 
            +
                  X-Request-Id:
         | 
| 54 | 
            +
                  - f707b85a-f9c0-4f14-bb5c-b501adc77f9c
         | 
| 146 55 | 
             
                  X-Runtime:
         | 
| 147 | 
            -
                  - ' | 
| 148 | 
            -
                   | 
| 149 | 
            -
                  -  | 
| 150 | 
            -
                  X-Content-Type-Options:
         | 
| 151 | 
            -
                  - nosniff
         | 
| 56 | 
            +
                  - '0.208274'
         | 
| 57 | 
            +
                  Date:
         | 
| 58 | 
            +
                  - Tue, 13 Apr 2021 17:18:59 GMT
         | 
| 152 59 | 
             
                  X-Rack-Cache:
         | 
| 153 60 | 
             
                  - invalidate, pass
         | 
| 154 | 
            -
                   | 
| 155 | 
            -
                  -  | 
| 156 | 
            -
                   | 
| 157 | 
            -
                  -  | 
| 61 | 
            +
                  Strict-Transport-Security:
         | 
| 62 | 
            +
                  - max-age=2629746
         | 
| 63 | 
            +
                  Vary:
         | 
| 64 | 
            +
                  - Origin,Accept-Encoding
         | 
| 65 | 
            +
                  Transfer-Encoding:
         | 
| 66 | 
            +
                  - chunked
         | 
| 158 67 | 
             
                  Via:
         | 
| 159 68 | 
             
                  - 1.1 vegur
         | 
| 160 69 | 
             
                body:
         | 
| 161 70 | 
             
                  encoding: UTF-8
         | 
| 162 | 
            -
                  string: '{"id": | 
| 163 | 
            -
             | 
| 164 | 
            -
             | 
| 165 | 
            -
             | 
| 71 | 
            +
                  string: '{"id":2640,"amount":1120.4,"cycle":"monthly","next_billing":"2021-06-13","end_at":null,"instructions":null,"customer_id":80703,"customer_person_name":"Joao
         | 
| 72 | 
            +
                    da Silva","customer_cnpj_cpf":"18.033.842/0001-05","customer_address":"Rua
         | 
| 73 | 
            +
                    quinhentos","customer_state":"RJ","customer_neighborhood":"Sao Francisco","customer_zipcode":"12312123","customer_address_number":"111","customer_address_complement":"Sala
         | 
| 74 | 
            +
                    4","customer_phone_number":"2112123434","customer_email":"cliente@example.com","customer_city_name":"Rio
         | 
| 75 | 
            +
                    de Janeiro","customer_email_cc":null,"customer_ignore_email":null,"customer_mobile_local_code":null,"customer_mobile_number":null,"customer_nickname":null,"customer_notes":null,"description":"Hospedagem","created_at":"2021-04-13T14:18:56-03:00","updated_at":"2021-04-13T14:18:59-03:00","created_via_api":true,"days_in_advance":7,"bank_billet_account_id":3547,"fine_for_delay":null,"fine_type":0,"fine_percentage":null,"fine_value":null,"days_for_fine":null,"late_payment_interest":null,"interest_type":0,"interest_daily_value":null,"interest_daily_percentage":null,"interest_monthly_percentage":null,"days_for_interest":null,"discount_type":0,"days_for_discount":null,"discount_value":null,"discount_percentage":null,"email":null,"bank_billet_layout_id":null,"bank_billet_ids":[382373],"notes":null,"payment_count":1,"tags":[],"tag_list":"","prevent_registration":false,"divergent_payment_type":null,"divergent_payment_value_type":null,"divergent_payment_maximum_value":null,"divergent_payment_minimum_value":null,"divergent_payment_maximum_percentage":null,"divergent_payment_minimum_percentage":null,"divergent_payment_limit":null,"days_for_second_discount":null,"second_discount_percentage":null,"second_discount_value":null,"days_for_third_discount":null,"third_discount_percentage":null,"third_discount_value":null,"days_for_revoke":null,"days_for_sue":null,"days_for_negativation":null,"interest_percentage":null,"interest_value":null,"interest_days_type":0,"customer_contact_person":null,"custom_attachment_name":null,"guarantor_name":null,"guarantor_cnpj_cpf":null,"guarantor_address_number":null,"guarantor_neighborhood":null,"guarantor_phone_number":null,"guarantor_city_name":null,"guarantor_state":null,"guarantor_zipcode":null,"guarantor_address":null,"guarantor_address_complement":null}'
         | 
| 76 | 
            +
              recorded_at: Tue, 13 Apr 2021 17:18:59 GMT
         | 
| 77 | 
            +
            recorded_with: VCR 6.0.0
         | 
| @@ -2,85 +2,74 @@ | |
| 2 2 | 
             
            http_interactions:
         | 
| 3 3 | 
             
            - request:
         | 
| 4 4 | 
             
                method: get
         | 
| 5 | 
            -
                uri: https://sandbox.boletosimples.com.br/api/v1/imports/customer_subscriptions | 
| 5 | 
            +
                uri: https://sandbox.boletosimples.com.br/api/v1/imports/customer_subscriptions
         | 
| 6 6 | 
             
                body:
         | 
| 7 7 | 
             
                  encoding: US-ASCII
         | 
| 8 8 | 
             
                  string: ''
         | 
| 9 9 | 
             
                headers:
         | 
| 10 10 | 
             
                  User-Agent:
         | 
| 11 | 
            -
                  -  | 
| 11 | 
            +
                  - email@minhaempresa.com.br
         | 
| 12 12 | 
             
                  Authorization:
         | 
| 13 | 
            -
                  -  | 
| 13 | 
            +
                  - Bearer BOLETOSIMPLES_API_TOKEN
         | 
| 14 | 
            +
                  Accept:
         | 
| 15 | 
            +
                  - application/json
         | 
| 14 16 | 
             
                  Accept-Encoding:
         | 
| 15 17 | 
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 16 | 
            -
                  Accept:
         | 
| 17 | 
            -
                  - "*/*"
         | 
| 18 18 | 
             
              response:
         | 
| 19 19 | 
             
                status:
         | 
| 20 20 | 
             
                  code: 200
         | 
| 21 21 | 
             
                  message: OK
         | 
| 22 22 | 
             
                headers:
         | 
| 23 | 
            +
                  Server:
         | 
| 24 | 
            +
                  - Cowboy
         | 
| 23 25 | 
             
                  Connection:
         | 
| 24 26 | 
             
                  - keep-alive
         | 
| 25 | 
            -
                   | 
| 26 | 
            -
                  -  | 
| 27 | 
            -
                  Transfer-Encoding:
         | 
| 28 | 
            -
                  - chunked
         | 
| 29 | 
            -
                  Status:
         | 
| 30 | 
            -
                  - 200 OK
         | 
| 31 | 
            -
                  Cache-Control:
         | 
| 32 | 
            -
                  - must-revalidate, private, max-age=0
         | 
| 33 | 
            -
                  Date:
         | 
| 34 | 
            -
                  - Wed, 28 Jun 2017 06:47:23 GMT
         | 
| 35 | 
            -
                  Vary:
         | 
| 36 | 
            -
                  - Origin,Accept-Encoding
         | 
| 37 | 
            -
                  Strict-Transport-Security:
         | 
| 38 | 
            -
                  - max-age=631138519
         | 
| 39 | 
            -
                  X-Permitted-Cross-Domain-Policies:
         | 
| 40 | 
            -
                  - none
         | 
| 27 | 
            +
                  X-Frame-Options:
         | 
| 28 | 
            +
                  - DENY
         | 
| 41 29 | 
             
                  X-Xss-Protection:
         | 
| 42 30 | 
             
                  - 1; mode=block
         | 
| 43 | 
            -
                  X- | 
| 44 | 
            -
                  -  | 
| 45 | 
            -
                  Content-Security-Policy-Report-Only:
         | 
| 46 | 
            -
                  - 'default-src ''self''; child-src ''self'' www.googleadservices.com googleads.g.doubleclick.net
         | 
| 47 | 
            -
                    www.google.com www.google.com.br app.popupdomination.com; connect-src ''self''
         | 
| 48 | 
            -
                    ws: wss: *.intercom.io ws.pusherapp.com hn.inspectlet.com *.pusher.com boletosimples.com.br
         | 
| 49 | 
            -
                    *.boletosimples.com.br boletosimples.zendesk.com; font-src ''self'' fonts.googleapis.com
         | 
| 50 | 
            -
                    fonts.gstatic.com js.intercomcdn.com data: v2.zopim.com d25j7wj0q61kjj.cloudfront.net;
         | 
| 51 | 
            -
                    img-src ''self'' https: data: maps.googleapis.com dev.bole.to:5001 bole.to
         | 
| 52 | 
            -
                    boletosimples-sandbox.s3.amazonaws.com; script-src ''self'' ''unsafe-inline''
         | 
| 53 | 
            -
                    static.intercomcdn.com cdn.inspectlet.com widget.intercom.io js.intercomcdn.com
         | 
| 54 | 
            -
                    js.pusher.com stats.pusher.com zapier.com www.google-analytics.com www.googleadservices.com
         | 
| 55 | 
            -
                    doug1izaerwt3.cloudfront.net app.popupdomination.com cdn.ywxi.net www.draw.io
         | 
| 56 | 
            -
                    tag.getdrip.com www.getdrip.com js-agent.newrelic.com bam.nr-data.net cdnjs.cloudflare.com
         | 
| 57 | 
            -
                    widget.pluga.co www.google.com www.gstatic.com boletosimples.zendesk.com assets.zendesk.com
         | 
| 58 | 
            -
                    v2.zopim.com landing.vincent-ai.com d25j7wj0q61kjj.cloudfront.net; style-src
         | 
| 59 | 
            -
                    ''self'' ''unsafe-inline'' fonts.googleapis.com d25j7wj0q61kjj.cloudfront.net;
         | 
| 60 | 
            -
                    report-uri https://boletosimples.report-uri.io/r/default/csp/reportOnly'
         | 
| 61 | 
            -
                  Total:
         | 
| 62 | 
            -
                  - '1'
         | 
| 31 | 
            +
                  X-Content-Type-Options:
         | 
| 32 | 
            +
                  - nosniff
         | 
| 63 33 | 
             
                  X-Download-Options:
         | 
| 64 34 | 
             
                  - noopen
         | 
| 35 | 
            +
                  X-Permitted-Cross-Domain-Policies:
         | 
| 36 | 
            +
                  - none
         | 
| 37 | 
            +
                  Referrer-Policy:
         | 
| 38 | 
            +
                  - strict-origin-when-cross-origin
         | 
| 39 | 
            +
                  Per-Page:
         | 
| 40 | 
            +
                  - '50'
         | 
| 41 | 
            +
                  Page:
         | 
| 42 | 
            +
                  - ''
         | 
| 43 | 
            +
                  Content-Type:
         | 
| 44 | 
            +
                  - application/json; charset=utf-8
         | 
| 45 | 
            +
                  X-Ratelimit-Limit:
         | 
| 46 | 
            +
                  - '60'
         | 
| 47 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 48 | 
            +
                  - '58'
         | 
| 65 49 | 
             
                  Etag:
         | 
| 66 | 
            -
                  - W/" | 
| 50 | 
            +
                  - W/"7bea2f7cdd976a9961d0ec4b143e478f"
         | 
| 51 | 
            +
                  Cache-Control:
         | 
| 52 | 
            +
                  - must-revalidate, private, max-age=0
         | 
| 53 | 
            +
                  X-Request-Id:
         | 
| 54 | 
            +
                  - afc1ec37-55c3-44cc-ab68-af5b0ba68139
         | 
| 67 55 | 
             
                  X-Runtime:
         | 
| 68 | 
            -
                  - '0. | 
| 69 | 
            -
                   | 
| 70 | 
            -
                  -  | 
| 71 | 
            -
                  X-Content-Type-Options:
         | 
| 72 | 
            -
                  - nosniff
         | 
| 56 | 
            +
                  - '0.031454'
         | 
| 57 | 
            +
                  Date:
         | 
| 58 | 
            +
                  - Tue, 13 Apr 2021 17:18:18 GMT
         | 
| 73 59 | 
             
                  X-Rack-Cache:
         | 
| 74 60 | 
             
                  - miss
         | 
| 75 | 
            -
                   | 
| 76 | 
            -
                  -  | 
| 77 | 
            -
                   | 
| 78 | 
            -
                  -  | 
| 61 | 
            +
                  Strict-Transport-Security:
         | 
| 62 | 
            +
                  - max-age=2629746
         | 
| 63 | 
            +
                  Vary:
         | 
| 64 | 
            +
                  - Origin,Accept-Encoding
         | 
| 65 | 
            +
                  Transfer-Encoding:
         | 
| 66 | 
            +
                  - chunked
         | 
| 79 67 | 
             
                  Via:
         | 
| 80 68 | 
             
                  - 1.1 vegur
         | 
| 81 69 | 
             
                body:
         | 
| 82 70 | 
             
                  encoding: UTF-8
         | 
| 83 | 
            -
                  string: '[{"id": | 
| 84 | 
            -
             | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 71 | 
            +
                  string: '[{"id":1053,"created_rows":0,"enqueued_at":"2021-04-13T14:18:16-03:00","started_at":null,"finished_at":null,"processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":null,"processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"enqueued","created_via_api":true},{"id":1051,"created_rows":0,"enqueued_at":"2021-04-13T11:43:57-03:00","started_at":"2021-04-13T11:46:14-03:00","finished_at":"2021-04-13T11:46:16-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1050,"created_rows":0,"enqueued_at":"2021-04-13T11:39:58-03:00","started_at":"2021-04-13T11:39:58-03:00","finished_at":"2021-04-13T11:39:59-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1047,"created_rows":0,"enqueued_at":"2021-04-13T11:35:40-03:00","started_at":"2021-04-13T11:39:30-03:00","finished_at":"2021-04-13T11:39:31-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1045,"created_rows":0,"enqueued_at":"2021-04-13T11:26:43-03:00","started_at":"2021-04-13T11:39:32-03:00","finished_at":"2021-04-13T11:39:33-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1043,"created_rows":0,"enqueued_at":"2021-04-13T11:22:04-03:00","started_at":"2021-04-13T11:24:30-03:00","finished_at":"2021-04-13T11:24:30-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":"ERR
         | 
| 72 | 
            +
                    max number of clients reached","processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"fatal_error","created_via_api":true},{"id":1042,"created_rows":0,"enqueued_at":"2021-04-13T11:10:14-03:00","started_at":"2021-04-13T11:12:10-03:00","finished_at":"2021-04-13T11:12:10-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":"ERR
         | 
| 73 | 
            +
                    max number of clients reached","processed_rows":0,"total_rows":null,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"fatal_error","created_via_api":true},{"id":1040,"created_rows":0,"enqueued_at":"2021-04-13T11:03:09-03:00","started_at":"2021-04-13T11:05:42-03:00","finished_at":"2021-04-13T11:05:44-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1037,"created_rows":0,"enqueued_at":"2021-04-13T10:55:21-03:00","started_at":"2021-04-13T10:56:57-03:00","finished_at":"2021-04-13T10:56:58-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1034,"created_rows":0,"enqueued_at":"2021-04-13T10:00:12-03:00","started_at":"2021-04-13T10:02:02-03:00","finished_at":"2021-04-13T10:02:03-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1033,"created_rows":0,"enqueued_at":"2021-04-13T09:27:16-03:00","started_at":"2021-04-13T09:28:55-03:00","finished_at":"2021-04-13T09:28:55-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1031,"created_rows":0,"enqueued_at":"2021-04-12T11:55:37-03:00","started_at":"2021-04-12T11:57:09-03:00","finished_at":"2021-04-12T11:57:09-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1028,"created_rows":0,"enqueued_at":"2021-04-09T11:16:43-03:00","started_at":"2021-04-09T11:19:23-03:00","finished_at":"2021-04-09T11:19:24-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true},{"id":1027,"created_rows":0,"enqueued_at":"2021-04-09T10:02:09-03:00","started_at":"2021-04-09T10:03:40-03:00","finished_at":"2021-04-09T10:03:40-03:00","processed_at":null,"failed_to_create_rows":0,"failed_to_update_rows":0,"import_errors":[],"processed_rows":0,"total_rows":0,"updated_rows":0,"source_file_name":"customer_subscriptions.csv","source_file_size":239,"status":"done","created_via_api":true}]'
         | 
| 74 | 
            +
              recorded_at: Tue, 13 Apr 2021 17:18:18 GMT
         | 
| 75 | 
            +
            recorded_with: VCR 6.0.0
         | 
    
        data/spec/fixtures/vcr_cassettes/resources/customer_subscription_import/create/invalid_params.yml
    CHANGED
    
    | @@ -2,83 +2,68 @@ | |
| 2 2 | 
             
            http_interactions:
         | 
| 3 3 | 
             
            - request:
         | 
| 4 4 | 
             
                method: post
         | 
| 5 | 
            -
                uri: https://sandbox.boletosimples.com.br/api/v1/imports/customer_subscriptions | 
| 5 | 
            +
                uri: https://sandbox.boletosimples.com.br/api/v1/imports/customer_subscriptions
         | 
| 6 6 | 
             
                body:
         | 
| 7 7 | 
             
                  encoding: UTF-8
         | 
| 8 | 
            -
                  string: customer_subscription_import | 
| 8 | 
            +
                  string: '{"customer_subscription_import":{"source":""}}'
         | 
| 9 9 | 
             
                headers:
         | 
| 10 10 | 
             
                  User-Agent:
         | 
| 11 | 
            -
                  -  | 
| 11 | 
            +
                  - email@minhaempresa.com.br
         | 
| 12 12 | 
             
                  Authorization:
         | 
| 13 | 
            -
                  -  | 
| 13 | 
            +
                  - Bearer BOLETOSIMPLES_API_TOKEN
         | 
| 14 14 | 
             
                  Content-Type:
         | 
| 15 | 
            -
                  - application/ | 
| 15 | 
            +
                  - application/json
         | 
| 16 | 
            +
                  Accept:
         | 
| 17 | 
            +
                  - application/json
         | 
| 16 18 | 
             
                  Accept-Encoding:
         | 
| 17 19 | 
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 18 | 
            -
                  Accept:
         | 
| 19 | 
            -
                  - "*/*"
         | 
| 20 20 | 
             
              response:
         | 
| 21 21 | 
             
                status:
         | 
| 22 22 | 
             
                  code: 422
         | 
| 23 23 | 
             
                  message: Unprocessable Entity
         | 
| 24 24 | 
             
                headers:
         | 
| 25 | 
            +
                  Server:
         | 
| 26 | 
            +
                  - Cowboy
         | 
| 25 27 | 
             
                  Connection:
         | 
| 26 28 | 
             
                  - keep-alive
         | 
| 29 | 
            +
                  X-Frame-Options:
         | 
| 30 | 
            +
                  - DENY
         | 
| 31 | 
            +
                  X-Xss-Protection:
         | 
| 32 | 
            +
                  - 1; mode=block
         | 
| 33 | 
            +
                  X-Content-Type-Options:
         | 
| 34 | 
            +
                  - nosniff
         | 
| 35 | 
            +
                  X-Download-Options:
         | 
| 36 | 
            +
                  - noopen
         | 
| 37 | 
            +
                  X-Permitted-Cross-Domain-Policies:
         | 
| 38 | 
            +
                  - none
         | 
| 39 | 
            +
                  Referrer-Policy:
         | 
| 40 | 
            +
                  - strict-origin-when-cross-origin
         | 
| 27 41 | 
             
                  Content-Type:
         | 
| 28 42 | 
             
                  - application/json; charset=utf-8
         | 
| 29 | 
            -
                   | 
| 30 | 
            -
                  -  | 
| 31 | 
            -
                   | 
| 32 | 
            -
                  -  | 
| 43 | 
            +
                  X-Ratelimit-Limit:
         | 
| 44 | 
            +
                  - '1000'
         | 
| 45 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 46 | 
            +
                  - '998'
         | 
| 33 47 | 
             
                  Cache-Control:
         | 
| 34 48 | 
             
                  - no-cache
         | 
| 35 | 
            -
                  Date:
         | 
| 36 | 
            -
                  - Wed, 28 Jun 2017 06:47:20 GMT
         | 
| 37 | 
            -
                  Vary:
         | 
| 38 | 
            -
                  - Origin,Accept-Encoding
         | 
| 39 | 
            -
                  Strict-Transport-Security:
         | 
| 40 | 
            -
                  - max-age=631138519
         | 
| 41 | 
            -
                  X-Permitted-Cross-Domain-Policies:
         | 
| 42 | 
            -
                  - none
         | 
| 43 | 
            -
                  X-Xss-Protection:
         | 
| 44 | 
            -
                  - 1; mode=block
         | 
| 45 49 | 
             
                  X-Request-Id:
         | 
| 46 | 
            -
                  -  | 
| 47 | 
            -
                  Content-Security-Policy-Report-Only:
         | 
| 48 | 
            -
                  - 'default-src ''self''; child-src ''self'' www.googleadservices.com googleads.g.doubleclick.net
         | 
| 49 | 
            -
                    www.google.com www.google.com.br app.popupdomination.com; connect-src ''self''
         | 
| 50 | 
            -
                    ws: wss: *.intercom.io ws.pusherapp.com hn.inspectlet.com *.pusher.com boletosimples.com.br
         | 
| 51 | 
            -
                    *.boletosimples.com.br boletosimples.zendesk.com; font-src ''self'' fonts.googleapis.com
         | 
| 52 | 
            -
                    fonts.gstatic.com js.intercomcdn.com data: v2.zopim.com d25j7wj0q61kjj.cloudfront.net;
         | 
| 53 | 
            -
                    img-src ''self'' https: data: maps.googleapis.com dev.bole.to:5001 bole.to
         | 
| 54 | 
            -
                    boletosimples-sandbox.s3.amazonaws.com; script-src ''self'' ''unsafe-inline''
         | 
| 55 | 
            -
                    static.intercomcdn.com cdn.inspectlet.com widget.intercom.io js.intercomcdn.com
         | 
| 56 | 
            -
                    js.pusher.com stats.pusher.com zapier.com www.google-analytics.com www.googleadservices.com
         | 
| 57 | 
            -
                    doug1izaerwt3.cloudfront.net app.popupdomination.com cdn.ywxi.net www.draw.io
         | 
| 58 | 
            -
                    tag.getdrip.com www.getdrip.com js-agent.newrelic.com bam.nr-data.net cdnjs.cloudflare.com
         | 
| 59 | 
            -
                    widget.pluga.co www.google.com www.gstatic.com boletosimples.zendesk.com assets.zendesk.com
         | 
| 60 | 
            -
                    v2.zopim.com landing.vincent-ai.com d25j7wj0q61kjj.cloudfront.net; style-src
         | 
| 61 | 
            -
                    ''self'' ''unsafe-inline'' fonts.googleapis.com d25j7wj0q61kjj.cloudfront.net;
         | 
| 62 | 
            -
                    report-uri https://boletosimples.report-uri.io/r/default/csp/reportOnly'
         | 
| 63 | 
            -
                  X-Download-Options:
         | 
| 64 | 
            -
                  - noopen
         | 
| 50 | 
            +
                  - f95b83a5-aa00-4869-8e51-f7ff36ff2cca
         | 
| 65 51 | 
             
                  X-Runtime:
         | 
| 66 | 
            -
                  - '0. | 
| 67 | 
            -
                   | 
| 68 | 
            -
                  -  | 
| 69 | 
            -
                  X-Content-Type-Options:
         | 
| 70 | 
            -
                  - nosniff
         | 
| 52 | 
            +
                  - '0.030666'
         | 
| 53 | 
            +
                  Date:
         | 
| 54 | 
            +
                  - Tue, 13 Apr 2021 17:18:21 GMT
         | 
| 71 55 | 
             
                  X-Rack-Cache:
         | 
| 72 56 | 
             
                  - invalidate, pass
         | 
| 73 | 
            -
                   | 
| 74 | 
            -
                  -  | 
| 75 | 
            -
                   | 
| 76 | 
            -
                  -  | 
| 57 | 
            +
                  Strict-Transport-Security:
         | 
| 58 | 
            +
                  - max-age=2629746
         | 
| 59 | 
            +
                  Vary:
         | 
| 60 | 
            +
                  - Origin,Accept-Encoding
         | 
| 61 | 
            +
                  Transfer-Encoding:
         | 
| 62 | 
            +
                  - chunked
         | 
| 77 63 | 
             
                  Via:
         | 
| 78 64 | 
             
                  - 1.1 vegur
         | 
| 79 65 | 
             
                body:
         | 
| 80 66 | 
             
                  encoding: UTF-8
         | 
| 81 67 | 
             
                  string: '{"errors":{"source":["não pode ficar em branco"]}}'
         | 
| 82 | 
            -
             | 
| 83 | 
            -
             | 
| 84 | 
            -
            recorded_with: VCR 3.0.3
         | 
| 68 | 
            +
              recorded_at: Tue, 13 Apr 2021 17:18:21 GMT
         | 
| 69 | 
            +
            recorded_with: VCR 6.0.0
         |