correios_api 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c04ca80a840910c4b9a5d45576156d0b76a802a9ac96209251af67ee5f962b63
4
- data.tar.gz: f28c0c03c2e7404913d966371f908ce23280401d4e2a48140b57a1f0096721a0
3
+ metadata.gz: cf169db04d4e23814996679218d7a62c3ee448cc1476750bafeae980a594d1a2
4
+ data.tar.gz: c31ddcde2e7119e13ae706b05750c86442bde3eb58bf8947fee00d25ca493721
5
5
  SHA512:
6
- metadata.gz: 86fdff098c2634dfcaf8c93d4b1e3f91aa863049132ae104007fa236e93834f22b04cf7a099fd25528e02eeff36133aa5a993fefc5e1666d2d5a089e6128363b
7
- data.tar.gz: 1421c93d0e0f2e28d76c10bf96622890d6ecfed530a412c1a4bc509abb16cb250376bc198f3b5d6f5cd04fba6eb5a10679ec8ba302d3437c2f2cc42f58e7c301
6
+ metadata.gz: 3e580eb615143becb078949ef5b8b83397ab36e1640c5444f6da2794a3399c1806c012b83a369be5458d568d238ea4aca8fccea57b69734df80bc2106e1d9f41
7
+ data.tar.gz: 5cd2059ff69c566df95037cb6b3f7f4c9c03d72804b5295849d63ff3b5b1615b9408df14889e93a9cc34ea7915c7ee6ed90ae737bda640e7bb3c7fb8d6e6106a
@@ -23,14 +23,14 @@ module CorreiosApi
23
23
  "04227" => "CORREIOS MINI ENVIOS CTR AG"
24
24
  }
25
25
 
26
- attr_reader :username, :password, :post_card, :contract_number, :access_token, :expires_in
27
- def initialize username:, password:, post_card:, contract_number: nil, access_token: nil, expires_in: nil
26
+ attr_reader :username, :password, :post_card, :contract_number, :token, :expires_in
27
+ def initialize username:, password:, post_card:, contract_number: nil, token: nil, expires_in: nil
28
28
  @username = username
29
29
  @password = password
30
30
  @post_card = post_card
31
31
  @contract_number = contract_number
32
- @access_token = access_token
33
- # if @access_token.nil? || @expires_in < Time.now
32
+ @token = token
33
+ # if @token.nil? || @expires_in < Time.now
34
34
  # authenticate
35
35
  # end
36
36
  end
@@ -47,8 +47,7 @@ module CorreiosApi
47
47
  },
48
48
  body: JSON.dump(body)
49
49
  ) { |response| validate_response(response, "token") }
50
-
51
- @access_token = response.json.dig("token")
50
+ @token = response.json.dig("token")
52
51
  @expires_in = Time.new(response.json.dig("expiraEm"))
53
52
  end
54
53
 
@@ -202,7 +201,7 @@ module CorreiosApi
202
201
 
203
202
  def headers
204
203
  {
205
- "Authorization" => "Bearer #{@access_token}",
204
+ "Authorization" => "Bearer #{@token}",
206
205
  "Content-Type" => "application/json"
207
206
  }
208
207
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CorreiosApi
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: correios_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todas Essas Coisas
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-07 00:00:00.000000000 Z
11
+ date: 2024-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -67,7 +67,7 @@ metadata:
67
67
  homepage_uri: https://github.com/todasessascoisas/correios_api
68
68
  source_code_uri: https://github.com/todasessascoisas/correios_api
69
69
  changelog_uri: https://github.com/todasessascoisas/correios_api
70
- post_install_message:
70
+ post_install_message:
71
71
  rdoc_options: []
72
72
  require_paths:
73
73
  - lib
@@ -82,8 +82,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  requirements: []
85
- rubygems_version: 3.5.11
86
- signing_key:
85
+ rubygems_version: 3.5.10
86
+ signing_key:
87
87
  specification_version: 4
88
88
  summary: ''
89
89
  test_files: []