jamm 1.0.8 → 1.0.9

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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +9 -1
  4. data/Rakefile +5 -0
  5. data/lib/jamm/api/api/customer_api.rb +68 -10
  6. data/lib/jamm/api/api/healthcheck_api.rb +2 -2
  7. data/lib/jamm/api/api/payment_api.rb +145 -20
  8. data/lib/jamm/api/api/webhook_service_api.rb +82 -0
  9. data/lib/jamm/api/api_client.rb +2 -2
  10. data/lib/jamm/api/api_error.rb +2 -2
  11. data/lib/jamm/api/configuration.rb +2 -2
  12. data/lib/jamm/api/models/customer_service_update_customer_body.rb +9 -4
  13. data/lib/jamm/api/models/{rpc_status.rb → googlerpc_status.rb} +5 -5
  14. data/lib/jamm/api/models/protobuf_any.rb +2 -2
  15. data/lib/jamm/api/models/v1_add_charge_request.rb +2 -2
  16. data/lib/jamm/api/models/v1_add_charge_response.rb +2 -2
  17. data/lib/jamm/api/models/v1_buyer.rb +11 -3
  18. data/lib/jamm/api/models/v1_charge.rb +2 -2
  19. data/lib/jamm/api/models/v1_charge_message.rb +292 -0
  20. data/lib/jamm/api/models/v1_charge_message_status.rb +44 -0
  21. data/lib/jamm/api/models/v1_charge_result.rb +285 -0
  22. data/lib/jamm/api/models/v1_contract.rb +2 -2
  23. data/lib/jamm/api/models/v1_contract_status.rb +2 -2
  24. data/lib/jamm/api/models/v1_create_contract_with_charge_request.rb +2 -2
  25. data/lib/jamm/api/models/v1_create_contract_with_charge_response.rb +2 -2
  26. data/lib/jamm/api/models/v1_create_contract_without_charge_request.rb +2 -2
  27. data/lib/jamm/api/models/v1_create_contract_without_charge_response.rb +2 -2
  28. data/lib/jamm/api/models/v1_create_customer_request.rb +2 -2
  29. data/lib/jamm/api/models/v1_create_customer_response.rb +2 -2
  30. data/lib/jamm/api/models/v1_customer.rb +9 -4
  31. data/lib/jamm/api/models/v1_delete_customer_response.rb +2 -2
  32. data/lib/jamm/api/models/v1_event_type.rb +45 -0
  33. data/lib/jamm/api/models/v1_get_charge_response.rb +212 -0
  34. data/lib/jamm/api/models/v1_get_charges_response.rb +214 -0
  35. data/lib/jamm/api/models/v1_get_contract_response.rb +13 -13
  36. data/lib/jamm/api/models/v1_get_customer_response.rb +2 -2
  37. data/lib/jamm/api/models/v1_initial_charge.rb +2 -2
  38. data/lib/jamm/api/models/v1_merchant.rb +2 -2
  39. data/lib/jamm/api/models/v1_merchant_customer.rb +2 -2
  40. data/lib/jamm/api/models/v1_merchant_webhook_message.rb +259 -0
  41. data/lib/jamm/api/models/v1_message_response.rb +212 -0
  42. data/lib/jamm/api/models/v1_pagination.rb +212 -0
  43. data/lib/jamm/api/models/v1_payment_link.rb +2 -2
  44. data/lib/jamm/api/models/v1_ping_response.rb +2 -2
  45. data/lib/jamm/api/models/v1_update_customer_response.rb +2 -2
  46. data/lib/jamm/api/models/v1_url.rb +2 -2
  47. data/lib/jamm/api/models/v1_withdraw_request.rb +212 -0
  48. data/lib/jamm/api/models/v1_withdraw_response.rb +212 -0
  49. data/lib/jamm/api/version.rb +2 -2
  50. data/lib/jamm/api.rb +15 -3
  51. data/lib/jamm/api_patches.rb +14 -0
  52. data/lib/jamm/charge.rb +43 -0
  53. data/lib/jamm/client.rb +1 -1
  54. data/lib/jamm/contract.rb +35 -0
  55. data/lib/jamm/customer.rb +24 -9
  56. data/lib/jamm/healthcheck.rb +14 -0
  57. data/lib/jamm/openapi.rb +10 -0
  58. data/lib/jamm/version.rb +1 -1
  59. data/lib/jamm/webhook.rb +35 -0
  60. data/lib/jamm.rb +16 -14
  61. metadata +21 -4
  62. data/lib/jamm/payment.rb +0 -27
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -0,0 +1,212 @@
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 WithdrawRequest
18
+ attr_accessor :customer, :charge
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :customer => :customer,
24
+ :charge => :charge
25
+ }
26
+ end
27
+
28
+ # Returns all the JSON keys this model knows about
29
+ def self.acceptable_attributes
30
+ attribute_map.values
31
+ end
32
+
33
+ # Attribute type mapping.
34
+ def self.openapi_types
35
+ {
36
+ :customer => :String,
37
+ :charge => :InitialCharge
38
+ }
39
+ end
40
+
41
+ # List of attributes with nullable: true
42
+ def self.openapi_nullable
43
+ Set.new([])
44
+ end
45
+
46
+ # Initializes the object
47
+ # @param [Hash] attributes Model attributes in the form of hash
48
+ def initialize(attributes = {})
49
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::WithdrawRequest` initialize method' unless attributes.is_a?(Hash)
50
+
51
+ # check to see if the attribute exists and convert string to symbol for hash key
52
+ attributes = attributes.each_with_object({}) do |(k, v), h|
53
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::WithdrawRequest`. 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)
54
+
55
+ h[k.to_sym] = v
56
+ end
57
+
58
+ self.customer = attributes[:customer] if attributes.key?(:customer)
59
+
60
+ return unless attributes.key?(:charge)
61
+
62
+ self.charge = attributes[:charge]
63
+ end
64
+
65
+ # Show invalid properties with the reasons. Usually used together with valid?
66
+ # @return Array for valid properties with the reasons
67
+ def list_invalid_properties
68
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
69
+ []
70
+ end
71
+
72
+ # Check to see if the all the properties in the model are valid
73
+ # @return true if the model is valid
74
+ def valid?
75
+ warn '[DEPRECATED] the `valid?` method is obsolete'
76
+ true
77
+ end
78
+
79
+ # Checks equality by comparing each attribute.
80
+ # @param [Object] Object to be compared
81
+ def ==(other)
82
+ return true if equal?(other)
83
+
84
+ self.class == other.class &&
85
+ customer == other.customer &&
86
+ charge == other.charge
87
+ end
88
+
89
+ # @see the `==` method
90
+ # @param [Object] Object to be compared
91
+ def eql?(other)
92
+ self == other
93
+ end
94
+
95
+ # Calculates hash code according to all attributes.
96
+ # @return [Integer] Hash code
97
+ def hash
98
+ [customer, charge].hash
99
+ end
100
+
101
+ # Builds the object from hash
102
+ # @param [Hash] attributes Model attributes in the form of hash
103
+ # @return [Object] Returns the model itself
104
+ def self.build_from_hash(attributes)
105
+ return nil unless attributes.is_a?(Hash)
106
+
107
+ attributes = attributes.transform_keys(&:to_sym)
108
+ transformed_hash = {}
109
+ openapi_types.each_pair do |key, type|
110
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
111
+ transformed_hash[key.to_s] = nil
112
+ elsif type =~ /\AArray<(.*)>/i
113
+ # check to ensure the input is an array given that the attribute
114
+ # is documented as an array but the input is not
115
+ 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)
116
+ elsif !attributes[attribute_map[key]].nil?
117
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
118
+ end
119
+ end
120
+ new(transformed_hash)
121
+ end
122
+
123
+ # Deserializes the data based on type
124
+ # @param string type Data type
125
+ # @param string value Value to be deserialized
126
+ # @return [Object] Deserialized data
127
+ def self._deserialize(type, value)
128
+ case type.to_sym
129
+ when :Time
130
+ Time.parse(value)
131
+ when :Date
132
+ Date.parse(value)
133
+ when :String
134
+ value.to_s
135
+ when :Integer
136
+ value.to_i
137
+ when :Float
138
+ value.to_f
139
+ when :Boolean
140
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
141
+ true
142
+ else
143
+ false
144
+ end
145
+ when :Object
146
+ # generic object (usually a Hash), return directly
147
+ value
148
+ when /\AArray<(?<inner_type>.+)>\z/
149
+ inner_type = Regexp.last_match[:inner_type]
150
+ value.map { |v| _deserialize(inner_type, v) }
151
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
152
+ k_type = Regexp.last_match[:k_type]
153
+ v_type = Regexp.last_match[:v_type]
154
+ {}.tap do |hash|
155
+ value.each do |k, v|
156
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
157
+ end
158
+ end
159
+ else # model
160
+ # models (e.g. Pet) or oneOf
161
+ klass = Api.const_get(type)
162
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
163
+ end
164
+ end
165
+
166
+ # Returns the string representation of the object
167
+ # @return [String] String presentation of the object
168
+ def to_s
169
+ to_hash.to_s
170
+ end
171
+
172
+ # to_body is an alias to to_hash (backward compatibility)
173
+ # @return [Hash] Returns the object in the form of hash
174
+ def to_body
175
+ to_hash
176
+ end
177
+
178
+ # Returns the object in the form of hash
179
+ # @return [Hash] Returns the object in the form of hash
180
+ def to_hash
181
+ hash = {}
182
+ self.class.attribute_map.each_pair do |attr, param|
183
+ value = send(attr)
184
+ if value.nil?
185
+ is_nullable = self.class.openapi_nullable.include?(attr)
186
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
187
+ end
188
+
189
+ hash[param] = _to_hash(value)
190
+ end
191
+ hash
192
+ end
193
+
194
+ # Outputs non-array value in the form of hash
195
+ # For object, use to_hash. Otherwise, just return the value
196
+ # @param [Object] value Any valid value
197
+ # @return [Hash] Returns the value in the form of hash
198
+ def _to_hash(value)
199
+ if value.is_a?(Array)
200
+ value.compact.map { |v| _to_hash(v) }
201
+ elsif value.is_a?(Hash)
202
+ {}.tap do |hash|
203
+ value.each { |k, v| hash[k] = _to_hash(v) }
204
+ end
205
+ elsif value.respond_to? :to_hash
206
+ value.to_hash
207
+ else
208
+ value
209
+ end
210
+ end
211
+ end
212
+ end
@@ -0,0 +1,212 @@
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 WithdrawResponse
18
+ attr_accessor :customer, :charge
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :customer => :customer,
24
+ :charge => :charge
25
+ }
26
+ end
27
+
28
+ # Returns all the JSON keys this model knows about
29
+ def self.acceptable_attributes
30
+ attribute_map.values
31
+ end
32
+
33
+ # Attribute type mapping.
34
+ def self.openapi_types
35
+ {
36
+ :customer => :Customer,
37
+ :charge => :ChargeResult
38
+ }
39
+ end
40
+
41
+ # List of attributes with nullable: true
42
+ def self.openapi_nullable
43
+ Set.new([])
44
+ end
45
+
46
+ # Initializes the object
47
+ # @param [Hash] attributes Model attributes in the form of hash
48
+ def initialize(attributes = {})
49
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::WithdrawResponse` initialize method' unless attributes.is_a?(Hash)
50
+
51
+ # check to see if the attribute exists and convert string to symbol for hash key
52
+ attributes = attributes.each_with_object({}) do |(k, v), h|
53
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::WithdrawResponse`. 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)
54
+
55
+ h[k.to_sym] = v
56
+ end
57
+
58
+ self.customer = attributes[:customer] if attributes.key?(:customer)
59
+
60
+ return unless attributes.key?(:charge)
61
+
62
+ self.charge = attributes[:charge]
63
+ end
64
+
65
+ # Show invalid properties with the reasons. Usually used together with valid?
66
+ # @return Array for valid properties with the reasons
67
+ def list_invalid_properties
68
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
69
+ []
70
+ end
71
+
72
+ # Check to see if the all the properties in the model are valid
73
+ # @return true if the model is valid
74
+ def valid?
75
+ warn '[DEPRECATED] the `valid?` method is obsolete'
76
+ true
77
+ end
78
+
79
+ # Checks equality by comparing each attribute.
80
+ # @param [Object] Object to be compared
81
+ def ==(other)
82
+ return true if equal?(other)
83
+
84
+ self.class == other.class &&
85
+ customer == other.customer &&
86
+ charge == other.charge
87
+ end
88
+
89
+ # @see the `==` method
90
+ # @param [Object] Object to be compared
91
+ def eql?(other)
92
+ self == other
93
+ end
94
+
95
+ # Calculates hash code according to all attributes.
96
+ # @return [Integer] Hash code
97
+ def hash
98
+ [customer, charge].hash
99
+ end
100
+
101
+ # Builds the object from hash
102
+ # @param [Hash] attributes Model attributes in the form of hash
103
+ # @return [Object] Returns the model itself
104
+ def self.build_from_hash(attributes)
105
+ return nil unless attributes.is_a?(Hash)
106
+
107
+ attributes = attributes.transform_keys(&:to_sym)
108
+ transformed_hash = {}
109
+ openapi_types.each_pair do |key, type|
110
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
111
+ transformed_hash[key.to_s] = nil
112
+ elsif type =~ /\AArray<(.*)>/i
113
+ # check to ensure the input is an array given that the attribute
114
+ # is documented as an array but the input is not
115
+ 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)
116
+ elsif !attributes[attribute_map[key]].nil?
117
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
118
+ end
119
+ end
120
+ new(transformed_hash)
121
+ end
122
+
123
+ # Deserializes the data based on type
124
+ # @param string type Data type
125
+ # @param string value Value to be deserialized
126
+ # @return [Object] Deserialized data
127
+ def self._deserialize(type, value)
128
+ case type.to_sym
129
+ when :Time
130
+ Time.parse(value)
131
+ when :Date
132
+ Date.parse(value)
133
+ when :String
134
+ value.to_s
135
+ when :Integer
136
+ value.to_i
137
+ when :Float
138
+ value.to_f
139
+ when :Boolean
140
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
141
+ true
142
+ else
143
+ false
144
+ end
145
+ when :Object
146
+ # generic object (usually a Hash), return directly
147
+ value
148
+ when /\AArray<(?<inner_type>.+)>\z/
149
+ inner_type = Regexp.last_match[:inner_type]
150
+ value.map { |v| _deserialize(inner_type, v) }
151
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
152
+ k_type = Regexp.last_match[:k_type]
153
+ v_type = Regexp.last_match[:v_type]
154
+ {}.tap do |hash|
155
+ value.each do |k, v|
156
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
157
+ end
158
+ end
159
+ else # model
160
+ # models (e.g. Pet) or oneOf
161
+ klass = Api.const_get(type)
162
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
163
+ end
164
+ end
165
+
166
+ # Returns the string representation of the object
167
+ # @return [String] String presentation of the object
168
+ def to_s
169
+ to_hash.to_s
170
+ end
171
+
172
+ # to_body is an alias to to_hash (backward compatibility)
173
+ # @return [Hash] Returns the object in the form of hash
174
+ def to_body
175
+ to_hash
176
+ end
177
+
178
+ # Returns the object in the form of hash
179
+ # @return [Hash] Returns the object in the form of hash
180
+ def to_hash
181
+ hash = {}
182
+ self.class.attribute_map.each_pair do |attr, param|
183
+ value = send(attr)
184
+ if value.nil?
185
+ is_nullable = self.class.openapi_nullable.include?(attr)
186
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
187
+ end
188
+
189
+ hash[param] = _to_hash(value)
190
+ end
191
+ hash
192
+ end
193
+
194
+ # Outputs non-array value in the form of hash
195
+ # For object, use to_hash. Otherwise, just return the value
196
+ # @param [Object] value Any valid value
197
+ # @return [Hash] Returns the value in the form of hash
198
+ def _to_hash(value)
199
+ if value.is_a?(Array)
200
+ value.compact.map { |v| _to_hash(v) }
201
+ elsif value.is_a?(Hash)
202
+ {}.tap do |hash|
203
+ value.each { |k, v| hash[k] = _to_hash(v) }
204
+ end
205
+ elsif value.respond_to? :to_hash
206
+ value.to_hash
207
+ else
208
+ value
209
+ end
210
+ end
211
+ end
212
+ end
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
data/lib/jamm/api.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # #api/v1/common.proto
3
+ # #Jamm API
4
4
  #
5
5
  # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
6
  #
7
- # The version of the OpenAPI document: version not set
7
+ # The version of the OpenAPI document: 1.0
8
8
  #
9
9
  # Generated by: https://openapi-generator.tech
10
10
  # Generator version: 7.9.0
@@ -18,12 +18,15 @@ require 'jamm/api/configuration'
18
18
 
19
19
  # Models
20
20
  require 'jamm/api/models/customer_service_update_customer_body'
21
+ require 'jamm/api/models/googlerpc_status'
21
22
  require 'jamm/api/models/protobuf_any'
22
- require 'jamm/api/models/rpc_status'
23
23
  require 'jamm/api/models/v1_add_charge_request'
24
24
  require 'jamm/api/models/v1_add_charge_response'
25
25
  require 'jamm/api/models/v1_buyer'
26
26
  require 'jamm/api/models/v1_charge'
27
+ require 'jamm/api/models/v1_charge_message'
28
+ require 'jamm/api/models/v1_charge_message_status'
29
+ require 'jamm/api/models/v1_charge_result'
27
30
  require 'jamm/api/models/v1_contract'
28
31
  require 'jamm/api/models/v1_contract_status'
29
32
  require 'jamm/api/models/v1_create_contract_with_charge_request'
@@ -34,20 +37,29 @@ require 'jamm/api/models/v1_create_customer_request'
34
37
  require 'jamm/api/models/v1_create_customer_response'
35
38
  require 'jamm/api/models/v1_customer'
36
39
  require 'jamm/api/models/v1_delete_customer_response'
40
+ require 'jamm/api/models/v1_event_type'
41
+ require 'jamm/api/models/v1_get_charge_response'
42
+ require 'jamm/api/models/v1_get_charges_response'
37
43
  require 'jamm/api/models/v1_get_contract_response'
38
44
  require 'jamm/api/models/v1_get_customer_response'
39
45
  require 'jamm/api/models/v1_initial_charge'
40
46
  require 'jamm/api/models/v1_merchant'
41
47
  require 'jamm/api/models/v1_merchant_customer'
48
+ require 'jamm/api/models/v1_merchant_webhook_message'
49
+ require 'jamm/api/models/v1_message_response'
50
+ require 'jamm/api/models/v1_pagination'
42
51
  require 'jamm/api/models/v1_payment_link'
43
52
  require 'jamm/api/models/v1_ping_response'
44
53
  require 'jamm/api/models/v1_url'
45
54
  require 'jamm/api/models/v1_update_customer_response'
55
+ require 'jamm/api/models/v1_withdraw_request'
56
+ require 'jamm/api/models/v1_withdraw_response'
46
57
 
47
58
  # APIs
48
59
  require 'jamm/api/api/customer_api'
49
60
  require 'jamm/api/api/healthcheck_api'
50
61
  require 'jamm/api/api/payment_api'
62
+ require 'jamm/api/api/webhook_service_api'
51
63
 
52
64
  module Api
53
65
  class << self
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Api
4
+ class Customer
5
+ # Allow to drill down to list charges.
6
+ # e.g. cus.charges --> []
7
+ def charges(pagination: nil)
8
+ Jamm::Charge.list(
9
+ customer: self.id,
10
+ pagination: pagination
11
+ )
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rest-client'
4
+ require 'json'
5
+ require 'base64'
6
+ require 'jamm/errors'
7
+
8
+ module Jamm
9
+ module Charge
10
+ def self.create_with_redirect(customer:, charge:, redirect:)
11
+ request = Jamm::OpenAPI::AddChargeRequest.new(
12
+ customer: customer,
13
+ charge: charge,
14
+ redirect: redirect
15
+ )
16
+
17
+ Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).add_charge(request)
18
+ end
19
+
20
+ def self.create_without_redirect(customer:, charge:)
21
+ request = Jamm::OpenAPI::WithdrawRequest.new(
22
+ customer: customer,
23
+ charge: charge
24
+ )
25
+
26
+ Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).withdraw(request)
27
+ end
28
+
29
+ def self.get(charge_id)
30
+ Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).get_charge(charge_id)
31
+ rescue Jamm::OpenAPI::ApiError => e
32
+ [404].include?(e.code) ? nil : raise
33
+ end
34
+
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
39
+ rescue Jamm::OpenAPI::ApiError => e
40
+ [404].include?(e.code) ? nil : []
41
+ end
42
+ end
43
+ end
data/lib/jamm/client.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Jamm
2
2
  module Client
3
3
  def self.handler
4
- base = Jamm::ApiClient.new
4
+ base = Jamm::OpenAPI::ApiClient.new
5
5
 
6
6
  # Configure
7
7
  base.config.host = Jamm.openapi.config.host
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rest-client'
4
+ require 'json'
5
+ require 'base64'
6
+ require 'jamm/errors'
7
+
8
+ module Jamm
9
+ module Contract
10
+ def self.create_with_charge(buyer:, charge:, redirect:)
11
+ request = Jamm::OpenAPI::CreateContractWithChargeRequest.new(
12
+ buyer: buyer,
13
+ charge: charge,
14
+ redirect: redirect
15
+ )
16
+
17
+ Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).create_contract_with_charge(request)
18
+ end
19
+
20
+ def self.create_without_charge(buyer:, redirect:)
21
+ request = Jamm::OpenAPI::CreateContractWithoutChargeRequest.new(
22
+ buyer: buyer,
23
+ redirect: redirect
24
+ )
25
+
26
+ Jamm::OpenAPI::PaymentApi.new(Jamm::Client.handler).create_contract_without_charge(request)
27
+ end
28
+
29
+ def self.get(customer_id)
30
+ Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get_contract(customer_id)
31
+ rescue Jamm::OpenAPI::ApiError => e
32
+ [404].include?(e.code) ? nil : raise
33
+ end
34
+ end
35
+ end
data/lib/jamm/customer.rb CHANGED
@@ -4,23 +4,38 @@ require 'rest-client'
4
4
  require 'json'
5
5
  require 'base64'
6
6
  require 'jamm/errors'
7
+ require 'jamm/api/models/v1_create_customer_request'
7
8
 
8
9
  module Jamm
9
10
  module Customer
10
- def self.get(customer:)
11
- Jamm::CustomerApi.new(Jamm::Client.handler).get customer
12
- rescue Jamm::ApiError => e
13
- return nil if e.code == 404
11
+ def self.create(buyer:)
12
+ r = Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).create(
13
+ buyer: buyer
14
+ )
14
15
 
15
- raise
16
+ r.customer
16
17
  end
17
18
 
18
- def self.update(**params)
19
- Jamm::CustomerApi.new(Jamm::Client.handler).update(params[:id], params)
19
+ def self.get(id_or_email)
20
+ Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get(id_or_email)
21
+ rescue Jamm::OpenAPI::ApiError => e
22
+ [404].include?(e.code) ? nil : raise
20
23
  end
21
24
 
22
- def self.delete(customer:)
23
- Jamm::CustomerApi.new(Jamm::Client.handler).delete customer
25
+ def self.get_contract(id)
26
+ Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).get_contract(id)
27
+ rescue Jamm::OpenAPI::ApiError => e
28
+ [404].include?(e.code) ? nil : raise
29
+ end
30
+
31
+ def self.update(id, params)
32
+ r = Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).update(id, params)
33
+
34
+ r.customer
35
+ end
36
+
37
+ def self.delete(id)
38
+ Jamm::OpenAPI::CustomerApi.new(Jamm::Client.handler).delete(id)
24
39
  end
25
40
  end
26
41
  end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rest-client'
4
+ require 'json'
5
+ require 'base64'
6
+ require 'jamm/errors'
7
+
8
+ module Jamm
9
+ module Healthcheck
10
+ def self.ping
11
+ Jamm::OpenAPI::HealthcheckApi.new(Jamm::Client.handler).ping
12
+ end
13
+ end
14
+ end