jamm 1.0.10 → 1.0.11

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: c7528bae90ca2eabb761344ddcb15ec10239a731ff15d9ca9a84d8ef4499ccfe
4
- data.tar.gz: d59fd2991c8f320b63222678c868ce5cb44cb06c87ef7907049dd492cd7c636a
3
+ metadata.gz: 8b5dabb16cbdc7168f755f1c8afe2feb53ec086d312b051df92561475dec64fe
4
+ data.tar.gz: f71fa5d88f1b17f796744ef35d5fd8f5975874d47e8934c7834e1d78cc4fe79e
5
5
  SHA512:
6
- metadata.gz: 7c2efb8840f7eb2ee6416675205e504b1358fe8ab74a63e1d03ec29c8c70a294d50669cf754621e493b56da1c55062be058bf6f123d4e4fcbce7d4cf7f60123b
7
- data.tar.gz: 78ad01db68cb8f2afe99102a9a58f7107adf811cd8c168996bbcbc68bdfeb10c885af2162e6f98bdc90a82dc7e0c2bc9c6eaea54a8a24d76e67ca7869cb437ff
6
+ metadata.gz: 84f27de5200f6d8392195b37a758e1fa107f3e565ee80190d327e5438f8ae73ae3475b7a7a504ba2907675a7a9e801f4376a55aefb7b6f7a1a18048170cffe20
7
+ data.tar.gz: bb3c6a9b22e0c8d62948c1d2d62182a32118176ec8e065e189d7819c12dd476a9a2df3787f1f7cf436d930abb50b1f7315131aaeeac7c6a9edbae45e5e924e45
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jamm (1.0.10)
4
+ jamm (1.0.11)
5
5
  rest-client (~> 2.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
data/Rakefile CHANGED
@@ -6,11 +6,7 @@ require 'bundler/gem_tasks'
6
6
 
7
7
  RuboCop::RakeTask.new
8
8
 
9
- task default: %i[test rubocop]
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
@@ -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
@@ -6,7 +6,7 @@ module Api
6
6
  # e.g. cus.charges --> []
7
7
  def charges(pagination: nil)
8
8
  Jamm::Charge.list(
9
- customer: self.id,
9
+ customer: id,
10
10
  pagination: pagination
11
11
  )
12
12
  end
data/lib/jamm/client.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Jamm
2
4
  module Client
3
5
  def self.handler
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Jamm
4
- VERSION = '1.0.10'
4
+ VERSION = '1.0.11'
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.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamm
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-29 00:00:00.000000000 Z
11
+ date: 2024-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client