jamm 1.0.9 → 1.0.10

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: e05e9f651604ac4972167326fee6e8870ee8218c3c2022d2f772928788f6d5d4
4
- data.tar.gz: 421d587623b6f11691cbaa3b4d9531fb01de829b2ceedf003a5310c993110069
3
+ metadata.gz: c7528bae90ca2eabb761344ddcb15ec10239a731ff15d9ca9a84d8ef4499ccfe
4
+ data.tar.gz: d59fd2991c8f320b63222678c868ce5cb44cb06c87ef7907049dd492cd7c636a
5
5
  SHA512:
6
- metadata.gz: bf69ef3389bf9504ee89049f80df829b6695eafd6fdbda3df4a88075fa5bb96ad7620813882160bcf807d9b1abba86cd6051497f4066740b11a481f92db0ab81
7
- data.tar.gz: 0dfa484efb56bc6db48590e32f04397e6ea49422adaac38673cd50dadfd5dba70b3309bc357022435b4a657ef063359e0fcb245d405e9db8e428b0e496b87c0e
6
+ metadata.gz: 7c2efb8840f7eb2ee6416675205e504b1358fe8ab74a63e1d03ec29c8c70a294d50669cf754621e493b56da1c55062be058bf6f123d4e4fcbce7d4cf7f60123b
7
+ data.tar.gz: 78ad01db68cb8f2afe99102a9a58f7107adf811cd8c168996bbcbc68bdfeb10c885af2162e6f98bdc90a82dc7e0c2bc9c6eaea54a8a24d76e67ca7869cb437ff
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jamm (1.0.9)
4
+ jamm (1.0.10)
5
5
  rest-client (~> 2.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
@@ -15,7 +15,7 @@ require 'time'
15
15
 
16
16
  module Api
17
17
  class ChargeMessage
18
- attr_accessor :id, :customer, :status, :description, :merchant_name, :initial_amount, :discount, :final_amount, :amount_refunded, :currency, :processed_at, :created_at, :updated_at
18
+ attr_accessor :id, :customer, :status, :description, :merchant_name, :initial_amount, :discount, :final_amount, :amount_refunded, :currency, :processed_at, :created_at, :updated_at, :error
19
19
 
20
20
  class EnumAttributeValidator
21
21
  attr_reader :datatype, :allowable_values
@@ -53,7 +53,8 @@ module Api
53
53
  :currency => :currency,
54
54
  :processed_at => :processedAt,
55
55
  :created_at => :createdAt,
56
- :updated_at => :updatedAt
56
+ :updated_at => :updatedAt,
57
+ :error => :error
57
58
  }
58
59
  end
59
60
 
@@ -77,7 +78,8 @@ module Api
77
78
  :currency => :String,
78
79
  :processed_at => :String,
79
80
  :created_at => :String,
80
- :updated_at => :String
81
+ :updated_at => :String,
82
+ :error => :Error
81
83
  }
82
84
  end
83
85
 
@@ -126,9 +128,11 @@ module Api
126
128
 
127
129
  self.created_at = attributes[:created_at] if attributes.key?(:created_at)
128
130
 
129
- return unless attributes.key?(:updated_at)
131
+ self.updated_at = attributes[:updated_at] if attributes.key?(:updated_at)
130
132
 
131
- self.updated_at = attributes[:updated_at]
133
+ return unless attributes.key?(:error)
134
+
135
+ self.error = attributes[:error]
132
136
  end
133
137
 
134
138
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -163,7 +167,8 @@ module Api
163
167
  currency == other.currency &&
164
168
  processed_at == other.processed_at &&
165
169
  created_at == other.created_at &&
166
- updated_at == other.updated_at
170
+ updated_at == other.updated_at &&
171
+ error == other.error
167
172
  end
168
173
 
169
174
  # @see the `==` method
@@ -175,7 +180,7 @@ module Api
175
180
  # Calculates hash code according to all attributes.
176
181
  # @return [Integer] Hash code
177
182
  def hash
178
- [id, customer, status, description, merchant_name, initial_amount, discount, final_amount, amount_refunded, currency, processed_at, created_at, updated_at].hash
183
+ [id, customer, status, description, merchant_name, initial_amount, discount, final_amount, amount_refunded, currency, processed_at, created_at, updated_at, error].hash
179
184
  end
180
185
 
181
186
  # Builds the object from hash
@@ -0,0 +1,222 @@
1
+ # frozen_string_literal: true
2
+
3
+ # #Jamm API
4
+ #
5
+ # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ #
7
+ # The version of the OpenAPI document: 1.0
8
+ #
9
+ # Generated by: https://openapi-generator.tech
10
+ # Generator version: 7.9.0
11
+ #
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Api
17
+ class ContractMessage
18
+ attr_accessor :customer, :created_at, :activated_at, :merchant_name
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :customer => :customer,
24
+ :created_at => :createdAt,
25
+ :activated_at => :activatedAt,
26
+ :merchant_name => :merchantName
27
+ }
28
+ end
29
+
30
+ # Returns all the JSON keys this model knows about
31
+ def self.acceptable_attributes
32
+ attribute_map.values
33
+ end
34
+
35
+ # Attribute type mapping.
36
+ def self.openapi_types
37
+ {
38
+ :customer => :String,
39
+ :created_at => :String,
40
+ :activated_at => :String,
41
+ :merchant_name => :String
42
+ }
43
+ end
44
+
45
+ # List of attributes with nullable: true
46
+ def self.openapi_nullable
47
+ Set.new([])
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::ContractMessage` initialize method' unless attributes.is_a?(Hash)
54
+
55
+ # check to see if the attribute exists and convert string to symbol for hash key
56
+ attributes = attributes.each_with_object({}) do |(k, v), h|
57
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::ContractMessage`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect unless self.class.attribute_map.key?(k.to_sym)
58
+
59
+ h[k.to_sym] = v
60
+ end
61
+
62
+ self.customer = attributes[:customer] if attributes.key?(:customer)
63
+
64
+ self.created_at = attributes[:created_at] if attributes.key?(:created_at)
65
+
66
+ self.activated_at = attributes[:activated_at] if attributes.key?(:activated_at)
67
+
68
+ return unless attributes.key?(:merchant_name)
69
+
70
+ self.merchant_name = attributes[:merchant_name]
71
+ end
72
+
73
+ # Show invalid properties with the reasons. Usually used together with valid?
74
+ # @return Array for valid properties with the reasons
75
+ def list_invalid_properties
76
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
77
+ []
78
+ end
79
+
80
+ # Check to see if the all the properties in the model are valid
81
+ # @return true if the model is valid
82
+ def valid?
83
+ warn '[DEPRECATED] the `valid?` method is obsolete'
84
+ true
85
+ end
86
+
87
+ # Checks equality by comparing each attribute.
88
+ # @param [Object] Object to be compared
89
+ def ==(other)
90
+ return true if equal?(other)
91
+
92
+ self.class == other.class &&
93
+ customer == other.customer &&
94
+ created_at == other.created_at &&
95
+ activated_at == other.activated_at &&
96
+ merchant_name == other.merchant_name
97
+ end
98
+
99
+ # @see the `==` method
100
+ # @param [Object] Object to be compared
101
+ def eql?(other)
102
+ self == other
103
+ end
104
+
105
+ # Calculates hash code according to all attributes.
106
+ # @return [Integer] Hash code
107
+ def hash
108
+ [customer, created_at, activated_at, merchant_name].hash
109
+ end
110
+
111
+ # Builds the object from hash
112
+ # @param [Hash] attributes Model attributes in the form of hash
113
+ # @return [Object] Returns the model itself
114
+ def self.build_from_hash(attributes)
115
+ return nil unless attributes.is_a?(Hash)
116
+
117
+ attributes = attributes.transform_keys(&:to_sym)
118
+ transformed_hash = {}
119
+ openapi_types.each_pair do |key, type|
120
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
121
+ transformed_hash[key.to_s] = nil
122
+ elsif type =~ /\AArray<(.*)>/i
123
+ # check to ensure the input is an array given that the attribute
124
+ # is documented as an array but the input is not
125
+ transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } if attributes[attribute_map[key]].is_a?(Array)
126
+ elsif !attributes[attribute_map[key]].nil?
127
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
128
+ end
129
+ end
130
+ new(transformed_hash)
131
+ end
132
+
133
+ # Deserializes the data based on type
134
+ # @param string type Data type
135
+ # @param string value Value to be deserialized
136
+ # @return [Object] Deserialized data
137
+ def self._deserialize(type, value)
138
+ case type.to_sym
139
+ when :Time
140
+ Time.parse(value)
141
+ when :Date
142
+ Date.parse(value)
143
+ when :String
144
+ value.to_s
145
+ when :Integer
146
+ value.to_i
147
+ when :Float
148
+ value.to_f
149
+ when :Boolean
150
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
151
+ true
152
+ else
153
+ false
154
+ end
155
+ when :Object
156
+ # generic object (usually a Hash), return directly
157
+ value
158
+ when /\AArray<(?<inner_type>.+)>\z/
159
+ inner_type = Regexp.last_match[:inner_type]
160
+ value.map { |v| _deserialize(inner_type, v) }
161
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
162
+ k_type = Regexp.last_match[:k_type]
163
+ v_type = Regexp.last_match[:v_type]
164
+ {}.tap do |hash|
165
+ value.each do |k, v|
166
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
167
+ end
168
+ end
169
+ else # model
170
+ # models (e.g. Pet) or oneOf
171
+ klass = Api.const_get(type)
172
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
173
+ end
174
+ end
175
+
176
+ # Returns the string representation of the object
177
+ # @return [String] String presentation of the object
178
+ def to_s
179
+ to_hash.to_s
180
+ end
181
+
182
+ # to_body is an alias to to_hash (backward compatibility)
183
+ # @return [Hash] Returns the object in the form of hash
184
+ def to_body
185
+ to_hash
186
+ end
187
+
188
+ # Returns the object in the form of hash
189
+ # @return [Hash] Returns the object in the form of hash
190
+ def to_hash
191
+ hash = {}
192
+ self.class.attribute_map.each_pair do |attr, param|
193
+ value = send(attr)
194
+ if value.nil?
195
+ is_nullable = self.class.openapi_nullable.include?(attr)
196
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
197
+ end
198
+
199
+ hash[param] = _to_hash(value)
200
+ end
201
+ hash
202
+ end
203
+
204
+ # Outputs non-array value in the form of hash
205
+ # For object, use to_hash. Otherwise, just return the value
206
+ # @param [Object] value Any valid value
207
+ # @return [Hash] Returns the value in the form of hash
208
+ def _to_hash(value)
209
+ if value.is_a?(Array)
210
+ value.compact.map { |v| _to_hash(v) }
211
+ elsif value.is_a?(Hash)
212
+ {}.tap do |hash|
213
+ value.each { |k, v| hash[k] = _to_hash(v) }
214
+ end
215
+ elsif value.respond_to? :to_hash
216
+ value.to_hash
217
+ else
218
+ value
219
+ end
220
+ end
221
+ end
222
+ end
@@ -0,0 +1,217 @@
1
+ # frozen_string_literal: true
2
+
3
+ # #Jamm API
4
+ #
5
+ # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ #
7
+ # The version of the OpenAPI document: 1.0
8
+ #
9
+ # Generated by: https://openapi-generator.tech
10
+ # Generator version: 7.9.0
11
+ #
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Api
17
+ # Generic error type.
18
+ class Error
19
+ # Jamm defined error code.
20
+ attr_accessor :code
21
+
22
+ # Human readable error message.
23
+ attr_accessor :message
24
+
25
+ # Attribute mapping from ruby-style variable name to JSON key.
26
+ def self.attribute_map
27
+ {
28
+ :code => :code,
29
+ :message => :message
30
+ }
31
+ end
32
+
33
+ # Returns all the JSON keys this model knows about
34
+ def self.acceptable_attributes
35
+ attribute_map.values
36
+ end
37
+
38
+ # Attribute type mapping.
39
+ def self.openapi_types
40
+ {
41
+ :code => :String,
42
+ :message => :String
43
+ }
44
+ end
45
+
46
+ # List of attributes with nullable: true
47
+ def self.openapi_nullable
48
+ Set.new([])
49
+ end
50
+
51
+ # Initializes the object
52
+ # @param [Hash] attributes Model attributes in the form of hash
53
+ def initialize(attributes = {})
54
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::Error` initialize method' unless attributes.is_a?(Hash)
55
+
56
+ # check to see if the attribute exists and convert string to symbol for hash key
57
+ attributes = attributes.each_with_object({}) do |(k, v), h|
58
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::Error`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect unless self.class.attribute_map.key?(k.to_sym)
59
+
60
+ h[k.to_sym] = v
61
+ end
62
+
63
+ self.code = attributes[:code] if attributes.key?(:code)
64
+
65
+ return unless attributes.key?(:message)
66
+
67
+ self.message = attributes[:message]
68
+ end
69
+
70
+ # Show invalid properties with the reasons. Usually used together with valid?
71
+ # @return Array for valid properties with the reasons
72
+ def list_invalid_properties
73
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
74
+ []
75
+ end
76
+
77
+ # Check to see if the all the properties in the model are valid
78
+ # @return true if the model is valid
79
+ def valid?
80
+ warn '[DEPRECATED] the `valid?` method is obsolete'
81
+ true
82
+ end
83
+
84
+ # Checks equality by comparing each attribute.
85
+ # @param [Object] Object to be compared
86
+ def ==(other)
87
+ return true if equal?(other)
88
+
89
+ self.class == other.class &&
90
+ code == other.code &&
91
+ message == other.message
92
+ end
93
+
94
+ # @see the `==` method
95
+ # @param [Object] Object to be compared
96
+ def eql?(other)
97
+ self == other
98
+ end
99
+
100
+ # Calculates hash code according to all attributes.
101
+ # @return [Integer] Hash code
102
+ def hash
103
+ [code, message].hash
104
+ end
105
+
106
+ # Builds the object from hash
107
+ # @param [Hash] attributes Model attributes in the form of hash
108
+ # @return [Object] Returns the model itself
109
+ def self.build_from_hash(attributes)
110
+ return nil unless attributes.is_a?(Hash)
111
+
112
+ attributes = attributes.transform_keys(&:to_sym)
113
+ transformed_hash = {}
114
+ openapi_types.each_pair do |key, type|
115
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
116
+ transformed_hash[key.to_s] = nil
117
+ elsif type =~ /\AArray<(.*)>/i
118
+ # check to ensure the input is an array given that the attribute
119
+ # is documented as an array but the input is not
120
+ transformed_hash[key.to_s] = attributes[attribute_map[key]].map { |v| _deserialize(::Regexp.last_match(1), v) } if attributes[attribute_map[key]].is_a?(Array)
121
+ elsif !attributes[attribute_map[key]].nil?
122
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
123
+ end
124
+ end
125
+ new(transformed_hash)
126
+ end
127
+
128
+ # Deserializes the data based on type
129
+ # @param string type Data type
130
+ # @param string value Value to be deserialized
131
+ # @return [Object] Deserialized data
132
+ def self._deserialize(type, value)
133
+ case type.to_sym
134
+ when :Time
135
+ Time.parse(value)
136
+ when :Date
137
+ Date.parse(value)
138
+ when :String
139
+ value.to_s
140
+ when :Integer
141
+ value.to_i
142
+ when :Float
143
+ value.to_f
144
+ when :Boolean
145
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
146
+ true
147
+ else
148
+ false
149
+ end
150
+ when :Object
151
+ # generic object (usually a Hash), return directly
152
+ value
153
+ when /\AArray<(?<inner_type>.+)>\z/
154
+ inner_type = Regexp.last_match[:inner_type]
155
+ value.map { |v| _deserialize(inner_type, v) }
156
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
157
+ k_type = Regexp.last_match[:k_type]
158
+ v_type = Regexp.last_match[:v_type]
159
+ {}.tap do |hash|
160
+ value.each do |k, v|
161
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
162
+ end
163
+ end
164
+ else # model
165
+ # models (e.g. Pet) or oneOf
166
+ klass = Api.const_get(type)
167
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
168
+ end
169
+ end
170
+
171
+ # Returns the string representation of the object
172
+ # @return [String] String presentation of the object
173
+ def to_s
174
+ to_hash.to_s
175
+ end
176
+
177
+ # to_body is an alias to to_hash (backward compatibility)
178
+ # @return [Hash] Returns the object in the form of hash
179
+ def to_body
180
+ to_hash
181
+ end
182
+
183
+ # Returns the object in the form of hash
184
+ # @return [Hash] Returns the object in the form of hash
185
+ def to_hash
186
+ hash = {}
187
+ self.class.attribute_map.each_pair do |attr, param|
188
+ value = send(attr)
189
+ if value.nil?
190
+ is_nullable = self.class.openapi_nullable.include?(attr)
191
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
192
+ end
193
+
194
+ hash[param] = _to_hash(value)
195
+ end
196
+ hash
197
+ end
198
+
199
+ # Outputs non-array value in the form of hash
200
+ # For object, use to_hash. Otherwise, just return the value
201
+ # @param [Object] value Any valid value
202
+ # @return [Hash] Returns the value in the form of hash
203
+ def _to_hash(value)
204
+ if value.is_a?(Array)
205
+ value.compact.map { |v| _to_hash(v) }
206
+ elsif value.is_a?(Hash)
207
+ {}.tap do |hash|
208
+ value.each { |k, v| hash[k] = _to_hash(v) }
209
+ end
210
+ elsif value.respond_to? :to_hash
211
+ value.to_hash
212
+ else
213
+ value
214
+ end
215
+ end
216
+ end
217
+ end
@@ -19,11 +19,12 @@ module Api
19
19
  CHARGE_CREATED = 'EVENT_TYPE_CHARGE_CREATED'
20
20
  CHARGE_UPDATED = 'EVENT_TYPE_CHARGE_UPDATED'
21
21
  CHARGE_SUCCESS = 'EVENT_TYPE_CHARGE_SUCCESS'
22
+ CHARGE_FAIL = 'EVENT_TYPE_CHARGE_FAIL'
22
23
  CONTRACT_ACTIVATED = 'EVENT_TYPE_CONTRACT_ACTIVATED'
23
24
  TESTING = 'EVENT_TYPE_TESTING'
24
25
 
25
26
  def self.all_vars
26
- @all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CONTRACT_ACTIVATED, TESTING].freeze
27
+ @all_vars ||= [UNSPECIFIED, CHARGE_CREATED, CHARGE_UPDATED, CHARGE_SUCCESS, CHARGE_FAIL, CONTRACT_ACTIVATED, TESTING].freeze
27
28
  end
28
29
 
29
30
  # Builds the enum from string
@@ -15,13 +15,14 @@ require 'time'
15
15
 
16
16
  module Api
17
17
  class MessageResponse
18
- attr_accessor :merchant_webhook_message, :charge_message
18
+ attr_accessor :merchant_webhook_message, :charge_message, :contract_message
19
19
 
20
20
  # Attribute mapping from ruby-style variable name to JSON key.
21
21
  def self.attribute_map
22
22
  {
23
23
  :merchant_webhook_message => :merchantWebhookMessage,
24
- :charge_message => :chargeMessage
24
+ :charge_message => :chargeMessage,
25
+ :contract_message => :contractMessage
25
26
  }
26
27
  end
27
28
 
@@ -34,7 +35,8 @@ module Api
34
35
  def self.openapi_types
35
36
  {
36
37
  :merchant_webhook_message => :MerchantWebhookMessage,
37
- :charge_message => :ChargeMessage
38
+ :charge_message => :ChargeMessage,
39
+ :contract_message => :ContractMessage
38
40
  }
39
41
  end
40
42
 
@@ -57,9 +59,11 @@ module Api
57
59
 
58
60
  self.merchant_webhook_message = attributes[:merchant_webhook_message] if attributes.key?(:merchant_webhook_message)
59
61
 
60
- return unless attributes.key?(:charge_message)
62
+ self.charge_message = attributes[:charge_message] if attributes.key?(:charge_message)
61
63
 
62
- self.charge_message = attributes[:charge_message]
64
+ return unless attributes.key?(:contract_message)
65
+
66
+ self.contract_message = attributes[:contract_message]
63
67
  end
64
68
 
65
69
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -83,7 +87,8 @@ module Api
83
87
 
84
88
  self.class == other.class &&
85
89
  merchant_webhook_message == other.merchant_webhook_message &&
86
- charge_message == other.charge_message
90
+ charge_message == other.charge_message &&
91
+ contract_message == other.contract_message
87
92
  end
88
93
 
89
94
  # @see the `==` method
@@ -95,7 +100,7 @@ module Api
95
100
  # Calculates hash code according to all attributes.
96
101
  # @return [Integer] Hash code
97
102
  def hash
98
- [merchant_webhook_message, charge_message].hash
103
+ [merchant_webhook_message, charge_message, contract_message].hash
99
104
  end
100
105
 
101
106
  # Builds the object from hash
data/lib/jamm/api.rb CHANGED
@@ -28,6 +28,7 @@ require 'jamm/api/models/v1_charge_message'
28
28
  require 'jamm/api/models/v1_charge_message_status'
29
29
  require 'jamm/api/models/v1_charge_result'
30
30
  require 'jamm/api/models/v1_contract'
31
+ require 'jamm/api/models/v1_contract_message'
31
32
  require 'jamm/api/models/v1_contract_status'
32
33
  require 'jamm/api/models/v1_create_contract_with_charge_request'
33
34
  require 'jamm/api/models/v1_create_contract_with_charge_response'
@@ -37,6 +38,7 @@ require 'jamm/api/models/v1_create_customer_request'
37
38
  require 'jamm/api/models/v1_create_customer_response'
38
39
  require 'jamm/api/models/v1_customer'
39
40
  require 'jamm/api/models/v1_delete_customer_response'
41
+ require 'jamm/api/models/v1_error'
40
42
  require 'jamm/api/models/v1_event_type'
41
43
  require 'jamm/api/models/v1_get_charge_response'
42
44
  require 'jamm/api/models/v1_get_charges_response'
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.9'
4
+ VERSION = '1.0.10'
5
5
  end
data/lib/jamm/webhook.rb CHANGED
@@ -13,13 +13,12 @@ module Jamm
13
13
  out = {
14
14
  id: json[:id],
15
15
  signature: json[:signature],
16
- merchant_id: json[:merchantId],
17
- event_type: json[:eventType],
16
+ event_type: json[:event_type],
18
17
  content: nil,
19
- created_at: json[:createdAt]
18
+ created_at: json[:created_at]
20
19
  }
21
20
 
22
- case json[:eventType]
21
+ case json[:event_type]
23
22
  when Jamm::OpenAPI::EventType::CHARGE_CREATED
24
23
  out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
25
24
  return out
@@ -27,9 +26,21 @@ module Jamm
27
26
  when Jamm::OpenAPI::EventType::CHARGE_UPDATED
28
27
  out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
29
28
  return out
29
+
30
+ when Jamm::OpenAPI::EventType::CHARGE_SUCCESS
31
+ out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
32
+ return out
33
+
34
+ when Jamm::OpenAPI::EventType::CHARGE_FAIL
35
+ out[:content] = Jamm::OpenAPI::ChargeMessage.new(json[:content])
36
+ return out
37
+
38
+ when Jamm::OpenAPI::EventType::CONTRACT_ACTIVATED
39
+ out[:content] = Jamm::OpenAPI::ContractMessage.new(json[:content])
40
+ return out
30
41
  end
31
42
 
32
- raise Jamm::Error, 'Unknown event type'
43
+ raise 'Unknown event type'
33
44
  end
34
45
  end
35
46
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jamm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamm
@@ -78,6 +78,7 @@ files:
78
78
  - lib/jamm/api/models/v1_charge_message_status.rb
79
79
  - lib/jamm/api/models/v1_charge_result.rb
80
80
  - lib/jamm/api/models/v1_contract.rb
81
+ - lib/jamm/api/models/v1_contract_message.rb
81
82
  - lib/jamm/api/models/v1_contract_status.rb
82
83
  - lib/jamm/api/models/v1_create_contract_with_charge_request.rb
83
84
  - lib/jamm/api/models/v1_create_contract_with_charge_response.rb
@@ -87,6 +88,7 @@ files:
87
88
  - lib/jamm/api/models/v1_create_customer_response.rb
88
89
  - lib/jamm/api/models/v1_customer.rb
89
90
  - lib/jamm/api/models/v1_delete_customer_response.rb
91
+ - lib/jamm/api/models/v1_error.rb
90
92
  - lib/jamm/api/models/v1_event_type.rb
91
93
  - lib/jamm/api/models/v1_get_charge_response.rb
92
94
  - lib/jamm/api/models/v1_get_charges_response.rb