easypost 7.6.0 → 7.7.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: 0fea5a7b6c529207dce7950344ebfa7dacab20a5a03b89c20b9204f905226504
4
- data.tar.gz: ccd5ee4596fbf4a4f3d52452a93984ed5774ab4b74d76e82c4b4fa8a77a8b836
3
+ metadata.gz: 534c7528c31e97905421ff568c4be1c7ecbf40c31076e88b6ddc478b9d575195
4
+ data.tar.gz: 2974a9825943882b0cace44872c168a3a32c23046c31efe0f60a4c400e5535f0
5
5
  SHA512:
6
- metadata.gz: 6a28525b29aed5376549c00422989c6d200d0db98085d0b414f311395c02c8b49ad8bd053d7f10ce02bc2ef2c0d39ecb9b627b2e24062d9c53e33db8033b0251
7
- data.tar.gz: 3192c31ca964081536029824c38b5c7d942893a7fb798118495bfec3e616da789950befd5b201f372892af6ef53376408a6c8b965bbf30098b9e5e217c0772de
6
+ metadata.gz: 600587051b3ea572f2bd7b70f93a39c65d0176ff12e9af839e9208e3ee77ca52b619f5472ee2ecf55d77a7b099dc6ea9e4993ad33a03f7df4f02bea40ca0b2e7
7
+ data.tar.gz: 0ae763e30076817442388d26f734c42ed6c625a9f29aad92f494aa1b72ddfa6b51942820c898830b2cd5b786d08a2ec56f7aad12ec8366bb0a020b194fc6b5ff
@@ -24,12 +24,11 @@ jobs:
24
24
  run: just install
25
25
  - name: run tests
26
26
  run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just test
27
- - name: Coveralls
27
+ - name: Coverage
28
28
  if: github.ref == 'refs/heads/master'
29
- uses: coverallsapp/github-action@master
29
+ uses: codecov/codecov-action@v5
30
30
  with:
31
- github-token: ${{ secrets.GITHUB_TOKEN }}
32
- path-to-lcov: './coverage/lcov/easypost-ruby.lcov'
31
+ token: ${{ secrets.CODECOV_TOKEN }}
33
32
  lint:
34
33
  runs-on: ubuntu-latest
35
34
  steps:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v7.7.0 (2026-06-25)
4
+
5
+ - Adds `params` to `request_pin` ensuring users can pass `easypost_details` to the call
6
+
3
7
  ## v7.6.0 (2026-02-25)
4
8
 
5
9
  - Adds generic `make_api_call` function
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # EasyPost Ruby Client Library
2
2
 
3
3
  [![Build Status](https://github.com/EasyPost/easypost-ruby/workflows/CI/badge.svg)](https://github.com/EasyPost/easypost-ruby/actions?query=workflow%3ACI)
4
- [![Coverage Status](https://coveralls.io/repos/github/EasyPost/easypost-ruby/badge.svg?branch=master)](https://coveralls.io/github/EasyPost/easypost-ruby?branch=master)
4
+ [![codecov](https://codecov.io/gh/EasyPost/easypost-ruby/graph/badge.svg?token=NuKtbPVJMX)](https://codecov.io/gh/EasyPost/easypost-ruby)
5
5
  [![Gem Version](https://badge.fury.io/rb/easypost.svg)](https://badge.fury.io/rb/easypost)
6
6
 
7
7
  EasyPost, the simple shipping solution. You can sign up for an account at <https://easypost.com>.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 7.6.0
1
+ 7.7.0
@@ -14,11 +14,10 @@ class EasyPost::Services::FedexRegistration < EasyPost::Services::Service
14
14
  end
15
15
 
16
16
  # Request a PIN for FedEx account verification.
17
- def request_pin(fedex_account_number, pin_method_option)
18
- wrapped_params = {
19
- pin_method: {
20
- option: pin_method_option,
21
- },
17
+ def request_pin(fedex_account_number, pin_method_option, params = {})
18
+ wrapped_params = wrap_pin_validation(params)
19
+ wrapped_params[:pin_method] = {
20
+ option: pin_method_option,
22
21
  }
23
22
  endpoint = "fedex_registrations/#{fedex_account_number}/pin"
24
23
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easypost
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.6.0
4
+ version: 7.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - EasyPost Developers