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
@@ -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 GetChargeResponse
18
+ attr_accessor :charge, :customer
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :charge => :charge,
24
+ :customer => :customer
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
+ :charge => :ChargeResult,
37
+ :customer => :Customer
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::GetChargeResponse` 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::GetChargeResponse`. 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.charge = attributes[:charge] if attributes.key?(:charge)
59
+
60
+ return unless attributes.key?(:customer)
61
+
62
+ self.customer = attributes[:customer]
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
+ charge == other.charge &&
86
+ customer == other.customer
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
+ [charge, customer].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,214 @@
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 GetChargesResponse
18
+ attr_accessor :charges, :customer
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :charges => :charges,
24
+ :customer => :customer
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
+ :charges => :'Array<ChargeResult>',
37
+ :customer => :Customer
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::GetChargesResponse` 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::GetChargesResponse`. 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
+ if attributes.key?(:charges) && (value = attributes[:charges]).is_a?(Array)
59
+ self.charges = value
60
+ end
61
+
62
+ return unless attributes.key?(:customer)
63
+
64
+ self.customer = attributes[:customer]
65
+ end
66
+
67
+ # Show invalid properties with the reasons. Usually used together with valid?
68
+ # @return Array for valid properties with the reasons
69
+ def list_invalid_properties
70
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
71
+ []
72
+ end
73
+
74
+ # Check to see if the all the properties in the model are valid
75
+ # @return true if the model is valid
76
+ def valid?
77
+ warn '[DEPRECATED] the `valid?` method is obsolete'
78
+ true
79
+ end
80
+
81
+ # Checks equality by comparing each attribute.
82
+ # @param [Object] Object to be compared
83
+ def ==(other)
84
+ return true if equal?(other)
85
+
86
+ self.class == other.class &&
87
+ charges == other.charges &&
88
+ customer == other.customer
89
+ end
90
+
91
+ # @see the `==` method
92
+ # @param [Object] Object to be compared
93
+ def eql?(other)
94
+ self == other
95
+ end
96
+
97
+ # Calculates hash code according to all attributes.
98
+ # @return [Integer] Hash code
99
+ def hash
100
+ [charges, customer].hash
101
+ end
102
+
103
+ # Builds the object from hash
104
+ # @param [Hash] attributes Model attributes in the form of hash
105
+ # @return [Object] Returns the model itself
106
+ def self.build_from_hash(attributes)
107
+ return nil unless attributes.is_a?(Hash)
108
+
109
+ attributes = attributes.transform_keys(&:to_sym)
110
+ transformed_hash = {}
111
+ openapi_types.each_pair do |key, type|
112
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
113
+ transformed_hash[key.to_s] = nil
114
+ elsif type =~ /\AArray<(.*)>/i
115
+ # check to ensure the input is an array given that the attribute
116
+ # is documented as an array but the input is not
117
+ 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)
118
+ elsif !attributes[attribute_map[key]].nil?
119
+ transformed_hash[key.to_s] = _deserialize(type, attributes[attribute_map[key]])
120
+ end
121
+ end
122
+ new(transformed_hash)
123
+ end
124
+
125
+ # Deserializes the data based on type
126
+ # @param string type Data type
127
+ # @param string value Value to be deserialized
128
+ # @return [Object] Deserialized data
129
+ def self._deserialize(type, value)
130
+ case type.to_sym
131
+ when :Time
132
+ Time.parse(value)
133
+ when :Date
134
+ Date.parse(value)
135
+ when :String
136
+ value.to_s
137
+ when :Integer
138
+ value.to_i
139
+ when :Float
140
+ value.to_f
141
+ when :Boolean
142
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
143
+ true
144
+ else
145
+ false
146
+ end
147
+ when :Object
148
+ # generic object (usually a Hash), return directly
149
+ value
150
+ when /\AArray<(?<inner_type>.+)>\z/
151
+ inner_type = Regexp.last_match[:inner_type]
152
+ value.map { |v| _deserialize(inner_type, v) }
153
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
154
+ k_type = Regexp.last_match[:k_type]
155
+ v_type = Regexp.last_match[:v_type]
156
+ {}.tap do |hash|
157
+ value.each do |k, v|
158
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
159
+ end
160
+ end
161
+ else # model
162
+ # models (e.g. Pet) or oneOf
163
+ klass = Api.const_get(type)
164
+ klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
165
+ end
166
+ end
167
+
168
+ # Returns the string representation of the object
169
+ # @return [String] String presentation of the object
170
+ def to_s
171
+ to_hash.to_s
172
+ end
173
+
174
+ # to_body is an alias to to_hash (backward compatibility)
175
+ # @return [Hash] Returns the object in the form of hash
176
+ def to_body
177
+ to_hash
178
+ end
179
+
180
+ # Returns the object in the form of hash
181
+ # @return [Hash] Returns the object in the form of hash
182
+ def to_hash
183
+ hash = {}
184
+ self.class.attribute_map.each_pair do |attr, param|
185
+ value = send(attr)
186
+ if value.nil?
187
+ is_nullable = self.class.openapi_nullable.include?(attr)
188
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
189
+ end
190
+
191
+ hash[param] = _to_hash(value)
192
+ end
193
+ hash
194
+ end
195
+
196
+ # Outputs non-array value in the form of hash
197
+ # For object, use to_hash. Otherwise, just return the value
198
+ # @param [Object] value Any valid value
199
+ # @return [Hash] Returns the value in the form of hash
200
+ def _to_hash(value)
201
+ if value.is_a?(Array)
202
+ value.compact.map { |v| _to_hash(v) }
203
+ elsif value.is_a?(Hash)
204
+ {}.tap do |hash|
205
+ value.each { |k, v| hash[k] = _to_hash(v) }
206
+ end
207
+ elsif value.respond_to? :to_hash
208
+ value.to_hash
209
+ else
210
+ value
211
+ end
212
+ end
213
+ end
214
+ 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
@@ -15,13 +15,13 @@ require 'time'
15
15
 
16
16
  module Api
17
17
  class GetContractResponse
18
- attr_accessor :contract, :customer
18
+ attr_accessor :customer, :contract
19
19
 
20
20
  # Attribute mapping from ruby-style variable name to JSON key.
21
21
  def self.attribute_map
22
22
  {
23
- :contract => :contract,
24
- :customer => :customer
23
+ :customer => :customer,
24
+ :contract => :contract
25
25
  }
26
26
  end
27
27
 
@@ -33,8 +33,8 @@ module Api
33
33
  # Attribute type mapping.
34
34
  def self.openapi_types
35
35
  {
36
- :contract => :Contract,
37
- :customer => :Customer
36
+ :customer => :MerchantCustomer,
37
+ :contract => :Contract
38
38
  }
39
39
  end
40
40
 
@@ -55,11 +55,11 @@ module Api
55
55
  h[k.to_sym] = v
56
56
  end
57
57
 
58
- self.contract = attributes[:contract] if attributes.key?(:contract)
58
+ self.customer = attributes[:customer] if attributes.key?(:customer)
59
59
 
60
- return unless attributes.key?(:customer)
60
+ return unless attributes.key?(:contract)
61
61
 
62
- self.customer = attributes[:customer]
62
+ self.contract = attributes[:contract]
63
63
  end
64
64
 
65
65
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -82,8 +82,8 @@ module Api
82
82
  return true if equal?(other)
83
83
 
84
84
  self.class == other.class &&
85
- contract == other.contract &&
86
- customer == other.customer
85
+ customer == other.customer &&
86
+ contract == other.contract
87
87
  end
88
88
 
89
89
  # @see the `==` method
@@ -95,7 +95,7 @@ module Api
95
95
  # Calculates hash code according to all attributes.
96
96
  # @return [Integer] Hash code
97
97
  def hash
98
- [contract, customer].hash
98
+ [customer, contract].hash
99
99
  end
100
100
 
101
101
  # Builds the object from hash
@@ -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
@@ -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