jamm 1.0.11 → 1.0.13

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: 2232efb82324373026a66792ac9c2a421d295fd5be23d8f115dc54bc72649565
4
+ data.tar.gz: 36db3f76d2f1db72ad87ba4161f7434b317b5240940562ed127377cb3fde8a30
5
5
  SHA512:
6
- metadata.gz: 84f27de5200f6d8392195b37a758e1fa107f3e565ee80190d327e5438f8ae73ae3475b7a7a504ba2907675a7a9e801f4376a55aefb7b6f7a1a18048170cffe20
7
- data.tar.gz: bb3c6a9b22e0c8d62948c1d2d62182a32118176ec8e065e189d7819c12dd476a9a2df3787f1f7cf436d930abb50b1f7315131aaeeac7c6a9edbae45e5e924e45
6
+ metadata.gz: 1f3eaaa8eff333ac9bb5166175d7776050397b91b69ac62797c76dd2e87e9ba94198746b4a0ea17cdab3676455082ff0e2ebfb92d2ac77e49c718b1000126827
7
+ data.tar.gz: 53ea2655047fdbe962abd20d0f63c3afd7abb4f64a4ced118d81cc17c7aaa8a31c2fc4640d85f934383077977c71a206f34ee91ebf695dea1fe1ab081082058c
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.13)
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.13'
5
5
  end
data/lib/jamm/webhook.rb CHANGED
@@ -10,33 +10,27 @@ module Jamm
10
10
  # Parse command is for parsing the received webhook message.
11
11
  # It does not call anything remotely, instead returns the suitable object.
12
12
  def self.parse(json)
13
- out = {
14
- id: json[:id],
15
- signature: json[:signature],
16
- event_type: json[:event_type],
17
- content: nil,
18
- created_at: json[:created_at]
19
- }
13
+ out = Jamm::OpenAPI::MerchantWebhookMessage.new(json)
20
14
 
21
15
  case json[:event_type]
22
16
  when Jamm::OpenAPI::EventType::CHARGE_CREATED
23
- out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
17
+ out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
24
18
  return out
25
19
 
26
20
  when Jamm::OpenAPI::EventType::CHARGE_UPDATED
27
- out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
21
+ out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
28
22
  return out
29
23
 
30
24
  when Jamm::OpenAPI::EventType::CHARGE_SUCCESS
31
- out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
25
+ out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
32
26
  return out
33
27
 
34
28
  when Jamm::OpenAPI::EventType::CHARGE_FAIL
35
- out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
29
+ out.content = Jamm::OpenAPI::ChargeMessage.new(json[:content])
36
30
  return out
37
31
 
38
32
  when Jamm::OpenAPI::EventType::CONTRACT_ACTIVATED
39
- out[:content] = Jamm::OpenAPI::ContractMessage.new(json[:content])
33
+ out.content = Jamm::OpenAPI::ContractMessage.new(json[:content])
40
34
  return out
41
35
  end
42
36
 
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.13
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-10 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: []