jamm 1.0.10 → 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 +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -5
- data/lib/jamm/api/models/v1_charge.rb +11 -1
- data/lib/jamm/api/models/v1_customer.rb +7 -2
- data/lib/jamm/api/models/v1_get_charges_response.rb +12 -7
- data/lib/jamm/api/models/v1_initial_charge.rb +11 -1
- data/lib/jamm/api_patches.rb +1 -1
- data/lib/jamm/charge.rb +8 -4
- data/lib/jamm/client.rb +2 -0
- data/lib/jamm/customer.rb +9 -1
- data/lib/jamm/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c2a575430d09f4af5bb3e2bf4053a8d4da34b3d14a4184ca18c352e17dae8de
|
4
|
+
data.tar.gz: c8288eb2af176ac471c6fbf76703c5defd444884bfe1061b495f2693f755b6cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33e200888db947536f6c81f0e7797784c6fcc9fd0c18cfb5cbedf22fe6717506aa15179532de2c003eaae24ca14783928523352554039b007092659f8e9923de
|
7
|
+
data.tar.gz: cc2dd1e86449dd40b5e601f7f2035500d1c0ead077024c79bb024d0973d64edc2f966c18af23045e90aec023dfeb411c07adc313f0d03350ca00d47428f7a173
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
@@ -6,11 +6,7 @@ require 'bundler/gem_tasks'
|
|
6
6
|
|
7
7
|
RuboCop::RakeTask.new
|
8
8
|
|
9
|
-
task default: %i[
|
10
|
-
|
11
|
-
Rake::TestTask.new do |t|
|
12
|
-
t.pattern = './test/**/*_test.rb'
|
13
|
-
end
|
9
|
+
task default: %i[rubocop]
|
14
10
|
|
15
11
|
desc 'Run end-to-end tests'
|
16
12
|
Rake::TestTask.new(:e2e) do |t|
|
@@ -25,6 +25,9 @@ module Api
|
|
25
25
|
# Description is an arbitrary string for merchant to track the charge. This information is displayed on Merchant Dashboard. 決済の説明。ショップが決済を追跡するための任意の文字列です。 @gotags: validate:\"required\"
|
26
26
|
attr_accessor :description
|
27
27
|
|
28
|
+
# Arbitrary key-value additional information about the charge. You can see this information in our merchant dashboard. Chargeに関する任意のキーと値の追加情報。 加盟店ダッシュボードで確認できます。
|
29
|
+
attr_accessor :metadata
|
30
|
+
|
28
31
|
# Merchant can optionally set the expiry date for the payment. Defaults to 90 minutes if not specified. 決済の有効期限。未指定の場合は90分後に自動失効します。
|
29
32
|
attr_accessor :expires_at
|
30
33
|
|
@@ -34,6 +37,7 @@ module Api
|
|
34
37
|
:id => :id,
|
35
38
|
:price => :price,
|
36
39
|
:description => :description,
|
40
|
+
:metadata => :metadata,
|
37
41
|
:expires_at => :expiresAt
|
38
42
|
}
|
39
43
|
end
|
@@ -49,6 +53,7 @@ module Api
|
|
49
53
|
:id => :String,
|
50
54
|
:price => :Integer,
|
51
55
|
:description => :String,
|
56
|
+
:metadata => :'Hash<String, String>',
|
52
57
|
:expires_at => :Time
|
53
58
|
}
|
54
59
|
end
|
@@ -76,6 +81,10 @@ module Api
|
|
76
81
|
|
77
82
|
self.description = attributes[:description] if attributes.key?(:description)
|
78
83
|
|
84
|
+
if attributes.key?(:metadata) && (value = attributes[:metadata]).is_a?(Hash)
|
85
|
+
self.metadata = value
|
86
|
+
end
|
87
|
+
|
79
88
|
return unless attributes.key?(:expires_at)
|
80
89
|
|
81
90
|
self.expires_at = attributes[:expires_at]
|
@@ -104,6 +113,7 @@ module Api
|
|
104
113
|
id == other.id &&
|
105
114
|
price == other.price &&
|
106
115
|
description == other.description &&
|
116
|
+
metadata == other.metadata &&
|
107
117
|
expires_at == other.expires_at
|
108
118
|
end
|
109
119
|
|
@@ -116,7 +126,7 @@ module Api
|
|
116
126
|
# Calculates hash code according to all attributes.
|
117
127
|
# @return [Integer] Hash code
|
118
128
|
def hash
|
119
|
-
[id, price, description, expires_at].hash
|
129
|
+
[id, price, description, metadata, expires_at].hash
|
120
130
|
end
|
121
131
|
|
122
132
|
# Builds the object from hash
|
@@ -16,7 +16,7 @@ require 'time'
|
|
16
16
|
module Api
|
17
17
|
# Customer object.
|
18
18
|
class Customer
|
19
|
-
attr_accessor :id, :email, :ekyc_completed, :created_at, :updated_at
|
19
|
+
attr_accessor :id, :email, :ekyc_completed, :activated, :created_at, :updated_at
|
20
20
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
22
|
def self.attribute_map
|
@@ -24,6 +24,7 @@ module Api
|
|
24
24
|
:id => :id,
|
25
25
|
:email => :email,
|
26
26
|
:ekyc_completed => :ekycCompleted,
|
27
|
+
:activated => :activated,
|
27
28
|
:created_at => :createdAt,
|
28
29
|
:updated_at => :updatedAt
|
29
30
|
}
|
@@ -40,6 +41,7 @@ module Api
|
|
40
41
|
:id => :String,
|
41
42
|
:email => :String,
|
42
43
|
:ekyc_completed => :Boolean,
|
44
|
+
:activated => :Boolean,
|
43
45
|
:created_at => :Time,
|
44
46
|
:updated_at => :Time
|
45
47
|
}
|
@@ -68,6 +70,8 @@ module Api
|
|
68
70
|
|
69
71
|
self.ekyc_completed = attributes[:ekyc_completed] if attributes.key?(:ekyc_completed)
|
70
72
|
|
73
|
+
self.activated = attributes[:activated] if attributes.key?(:activated)
|
74
|
+
|
71
75
|
self.created_at = attributes[:created_at] if attributes.key?(:created_at)
|
72
76
|
|
73
77
|
return unless attributes.key?(:updated_at)
|
@@ -98,6 +102,7 @@ module Api
|
|
98
102
|
id == other.id &&
|
99
103
|
email == other.email &&
|
100
104
|
ekyc_completed == other.ekyc_completed &&
|
105
|
+
activated == other.activated &&
|
101
106
|
created_at == other.created_at &&
|
102
107
|
updated_at == other.updated_at
|
103
108
|
end
|
@@ -111,7 +116,7 @@ module Api
|
|
111
116
|
# Calculates hash code according to all attributes.
|
112
117
|
# @return [Integer] Hash code
|
113
118
|
def hash
|
114
|
-
[id, email, ekyc_completed, created_at, updated_at].hash
|
119
|
+
[id, email, ekyc_completed, activated, created_at, updated_at].hash
|
115
120
|
end
|
116
121
|
|
117
122
|
# Builds the object from hash
|
@@ -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
|
-
|
64
|
+
self.customer = attributes[:customer] if attributes.key?(:customer)
|
63
65
|
|
64
|
-
|
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
|
@@ -22,6 +22,9 @@ module Api
|
|
22
22
|
# Description is an arbitrary string for merchant to track the charge. This information is displayed on Merchant Dashboard. 決済の説明。ショップが決済を追跡するための任意の文字列です。 @gotags: validate:\"required\"
|
23
23
|
attr_accessor :description
|
24
24
|
|
25
|
+
# Arbitrary key-value additional information about the charge. You can see this information in our merchant dashboard. Chargeに関する任意のキーと値の追加情報。 加盟店ダッシュボードで確認できます。
|
26
|
+
attr_accessor :metadata
|
27
|
+
|
25
28
|
# Merchant can optionally set the expiry date for the payment. Defaults to 90 minutes if not specified. 決済の有効期限。未指定の場合は90分後に自動失効します。
|
26
29
|
attr_accessor :expires_at
|
27
30
|
|
@@ -30,6 +33,7 @@ module Api
|
|
30
33
|
{
|
31
34
|
:price => :price,
|
32
35
|
:description => :description,
|
36
|
+
:metadata => :metadata,
|
33
37
|
:expires_at => :expiresAt
|
34
38
|
}
|
35
39
|
end
|
@@ -44,6 +48,7 @@ module Api
|
|
44
48
|
{
|
45
49
|
:price => :Integer,
|
46
50
|
:description => :String,
|
51
|
+
:metadata => :'Hash<String, String>',
|
47
52
|
:expires_at => :Time
|
48
53
|
}
|
49
54
|
end
|
@@ -69,6 +74,10 @@ module Api
|
|
69
74
|
|
70
75
|
self.description = attributes[:description] if attributes.key?(:description)
|
71
76
|
|
77
|
+
if attributes.key?(:metadata) && (value = attributes[:metadata]).is_a?(Hash)
|
78
|
+
self.metadata = value
|
79
|
+
end
|
80
|
+
|
72
81
|
return unless attributes.key?(:expires_at)
|
73
82
|
|
74
83
|
self.expires_at = attributes[:expires_at]
|
@@ -96,6 +105,7 @@ module Api
|
|
96
105
|
self.class == other.class &&
|
97
106
|
price == other.price &&
|
98
107
|
description == other.description &&
|
108
|
+
metadata == other.metadata &&
|
99
109
|
expires_at == other.expires_at
|
100
110
|
end
|
101
111
|
|
@@ -108,7 +118,7 @@ module Api
|
|
108
118
|
# Calculates hash code according to all attributes.
|
109
119
|
# @return [Integer] Hash code
|
110
120
|
def hash
|
111
|
-
[price, description, expires_at].hash
|
121
|
+
[price, description, metadata, expires_at].hash
|
112
122
|
end
|
113
123
|
|
114
124
|
# Builds the object from hash
|
data/lib/jamm/api_patches.rb
CHANGED
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
|
-
|
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)
|
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/client.rb
CHANGED
data/lib/jamm/customer.rb
CHANGED
@@ -17,7 +17,15 @@ module Jamm
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def self.get(id_or_email)
|
20
|
-
Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get(id_or_email)
|
20
|
+
r = Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get(id_or_email)
|
21
|
+
|
22
|
+
if r.customer.activated.nil?
|
23
|
+
# Activated flag requires explicit binding on false, since RPC/OpenAPI does
|
24
|
+
# not return false value.
|
25
|
+
r.customer.activated = false
|
26
|
+
end
|
27
|
+
|
28
|
+
r.customer
|
21
29
|
rescue Jamm::OpenAPI::ApiError => e
|
22
30
|
[404].include?(e.code) ? nil : raise
|
23
31
|
end
|
data/lib/jamm/version.rb
CHANGED
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.
|
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:
|
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: []
|