correios_api 0.3.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: dcc4ca0305423aba4587a2cc331db7764a1f3847762a08efecb5690d8d53f959
4
- data.tar.gz: a1944f100d9652beb0eae95cad0b4aa55e6ad02dacafad3566c7e4909072b7df
3
+ metadata.gz: cf169db04d4e23814996679218d7a62c3ee448cc1476750bafeae980a594d1a2
4
+ data.tar.gz: c31ddcde2e7119e13ae706b05750c86442bde3eb58bf8947fee00d25ca493721
5
5
  SHA512:
6
- metadata.gz: e7557ba5531342f6a782183318409a3fe77d6574731324a8369899ec7b7dbdb0d1f5a8e1913eb29cc4e60afd69cb584f00e5da47db592cb5c52ee8b5e8f2cca6
7
- data.tar.gz: 99b84e4160ea1730c74cbe2d6d035a4334cfa008fa12a7cdf3a17682f700d5cfe1de5e632a143f3a071a54e994bef68297569c8855611f919a4c5a59cf4d45ff
6
+ metadata.gz: 3e580eb615143becb078949ef5b8b83397ab36e1640c5444f6da2794a3399c1806c012b83a369be5458d568d238ea4aca8fccea57b69734df80bc2106e1d9f41
7
+ data.tar.gz: 5cd2059ff69c566df95037cb6b3f7f4c9c03d72804b5295849d63ff3b5b1615b9408df14889e93a9cc34ea7915c7ee6ed90ae737bda640e7bb3c7fb8d6e6106a
@@ -23,15 +23,16 @@ 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
- if @access_token.nil? || @expires_in < Time.now
33
- authenticate
34
- end
32
+ @token = token
33
+ # if @token.nil? || @expires_in < Time.now
34
+ # authenticate
35
+ # end
35
36
  end
36
37
 
37
38
  def authenticate
@@ -46,8 +47,7 @@ module CorreiosApi
46
47
  },
47
48
  body: JSON.dump(body)
48
49
  ) { |response| validate_response(response, "token") }
49
-
50
- @access_token = response.json.dig("token")
50
+ @token = response.json.dig("token")
51
51
  @expires_in = Time.new(response.json.dig("expiraEm"))
52
52
  end
53
53
 
@@ -93,7 +93,7 @@ module CorreiosApi
93
93
  larguraInformada: width_cm,
94
94
  comprimentoInformado: length_cm,
95
95
  cienteObjetoNaoProibido: "1",
96
- modalidadePagamento: "2", # 1-à vista, 2-à faturar, 3- à avista e à afaturar e 4- Prestação de contas recebimento ou pagamento
96
+ modalidadePagamento: "2" # 1-à vista, 2-à faturar, 3- à avista e à afaturar e 4- Prestação de contas recebimento ou pagamento
97
97
  # solicitarColeta: "N",
98
98
  # dataPrevistaPostagem: "29/09/2024"
99
99
  }
@@ -161,7 +161,7 @@ module CorreiosApi
161
161
  def delivery_time zipcode_from, zipcode_to
162
162
  body = {
163
163
  idLote: "1",
164
- parametrosPrazo: SERVICES.map { |service| { coProduto: service[:code], nuRequisicao: 1, cepOrigem: zipcode_from, cepDestino: zipcode_to } }
164
+ parametrosPrazo: SERVICES.map { |service| {coProduto: service[:code], nuRequisicao: 1, cepOrigem: zipcode_from, cepDestino: zipcode_to} }
165
165
  }
166
166
  response = post(
167
167
  "/prazo/v1/nacional",
@@ -201,7 +201,7 @@ module CorreiosApi
201
201
 
202
202
  def headers
203
203
  {
204
- "Authorization" => "Bearer #{@access_token}",
204
+ "Authorization" => "Bearer #{@token}",
205
205
  "Content-Type" => "application/json"
206
206
  }
207
207
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CorreiosApi
4
- VERSION = "0.3.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.3.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-09-24 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: []