jamm 1.0.11 → 1.0.12

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: 8b5dabb16cbdc7168f755f1c8afe2feb53ec086d312b051df92561475dec64fe
4
- data.tar.gz: f71fa5d88f1b17f796744ef35d5fd8f5975874d47e8934c7834e1d78cc4fe79e
3
+ metadata.gz: 9c2a575430d09f4af5bb3e2bf4053a8d4da34b3d14a4184ca18c352e17dae8de
4
+ data.tar.gz: c8288eb2af176ac471c6fbf76703c5defd444884bfe1061b495f2693f755b6cf
5
5
  SHA512:
6
- metadata.gz: 84f27de5200f6d8392195b37a758e1fa107f3e565ee80190d327e5438f8ae73ae3475b7a7a504ba2907675a7a9e801f4376a55aefb7b6f7a1a18048170cffe20
7
- data.tar.gz: bb3c6a9b22e0c8d62948c1d2d62182a32118176ec8e065e189d7819c12dd476a9a2df3787f1f7cf436d930abb50b1f7315131aaeeac7c6a9edbae45e5e924e45
6
+ metadata.gz: 33e200888db947536f6c81f0e7797784c6fcc9fd0c18cfb5cbedf22fe6717506aa15179532de2c003eaae24ca14783928523352554039b007092659f8e9923de
7
+ data.tar.gz: cc2dd1e86449dd40b5e601f7f2035500d1c0ead077024c79bb024d0973d64edc2f966c18af23045e90aec023dfeb411c07adc313f0d03350ca00d47428f7a173
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jamm (1.0.11)
4
+ jamm (1.0.12)
5
5
  rest-client (~> 2.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
@@ -15,13 +15,14 @@ require 'time'
15
15
 
16
16
  module Api
17
17
  class GetChargesResponse
18
- attr_accessor :charges, :customer
18
+ attr_accessor :charges, :customer, :pagination
19
19
 
20
20
  # Attribute mapping from ruby-style variable name to JSON key.
21
21
  def self.attribute_map
22
22
  {
23
23
  :charges => :charges,
24
- :customer => :customer
24
+ :customer => :customer,
25
+ :pagination => :pagination
25
26
  }
26
27
  end
27
28
 
@@ -34,7 +35,8 @@ module Api
34
35
  def self.openapi_types
35
36
  {
36
37
  :charges => :'Array<ChargeResult>',
37
- :customer => :Customer
38
+ :customer => :Customer,
39
+ :pagination => :Pagination
38
40
  }
39
41
  end
40
42
 
@@ -59,9 +61,11 @@ module Api
59
61
  self.charges = value
60
62
  end
61
63
 
62
- return unless attributes.key?(:customer)
64
+ self.customer = attributes[:customer] if attributes.key?(:customer)
63
65
 
64
- self.customer = attributes[:customer]
66
+ return unless attributes.key?(:pagination)
67
+
68
+ self.pagination = attributes[:pagination]
65
69
  end
66
70
 
67
71
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -85,7 +89,8 @@ module Api
85
89
 
86
90
  self.class == other.class &&
87
91
  charges == other.charges &&
88
- customer == other.customer
92
+ customer == other.customer &&
93
+ pagination == other.pagination
89
94
  end
90
95
 
91
96
  # @see the `==` method
@@ -97,7 +102,7 @@ module Api
97
102
  # Calculates hash code according to all attributes.
98
103
  # @return [Integer] Hash code
99
104
  def hash
100
- [charges, customer].hash
105
+ [charges, customer, pagination].hash
101
106
  end
102
107
 
103
108
  # Builds the object from hash
data/lib/jamm/charge.rb CHANGED
@@ -33,11 +33,15 @@ module Jamm
33
33
  end
34
34
 
35
35
  def self.list(customer:, pagination: nil)
36
- got = Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).get_charges(customer, pagination.nil? ? {} : pagination)
37
-
38
- got.charges
36
+ Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).get_charges(customer, pagination.nil? ? {} : pagination)
39
37
  rescue Jamm::OpenAPI::ApiError => e
40
- [404].include?(e.code) ? nil : []
38
+ if [404].include?(e.code)
39
+ nil
40
+ else
41
+ {
42
+ charges: []
43
+ }
44
+ end
41
45
  end
42
46
  end
43
47
  end
data/lib/jamm/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jamm
4
- VERSION = '1.0.11'
4
+ VERSION = '1.0.12'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jamm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.11
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamm
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-09 00:00:00.000000000 Z
11
+ date: 2025-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -123,7 +123,7 @@ licenses:
123
123
  - MIT
124
124
  metadata:
125
125
  source_code_uri: https://github.com/jamm-pay/Jamm-SDK-Ruby
126
- post_install_message:
126
+ post_install_message:
127
127
  rdoc_options: []
128
128
  require_paths:
129
129
  - lib
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubygems_version: 3.4.19
142
- signing_key:
142
+ signing_key:
143
143
  specification_version: 4
144
144
  summary: Ruby SDK for the Jamm API
145
145
  test_files: []