jamm 1.0.2 → 1.0.5

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: 8f2b7953e94c5584d2c5703e13a054ae3ab58a5cbce6ab623cf8ff0a7c99b065
4
- data.tar.gz: 92dec2fed68fb705b61c3c730066a31c7bae8f509c068bd6cf547f39f4303d8c
3
+ metadata.gz: 7ff167592a3b265fac5fec78cb2fc81b03319980f24caff65db16742fb24536e
4
+ data.tar.gz: b1de9712252cd6d60452c07e589f2e4558e66d8bc3fecb12e59ac00c9f8fac71
5
5
  SHA512:
6
- metadata.gz: 5ab43dd8395233738268c7b26b8bd35a3aa58ea179f70508d936a0c5e4777be05e76c1a787b7c5a632d9d08a12dc49b1dc47921ebd4b8b891cdb578a9baa4656
7
- data.tar.gz: b7cc97b42d35c7a3cbd333a66a756f83e69daba837898e0cb7fe8b14c1970bfb95405251b69f1d4757773250874cde6b7484dafd6be905b08b58535672454112
6
+ metadata.gz: c1437d7d975ee4a3f2d9f39910c15f7864f98e93d5b1addac74f8abdd9a4e2f14e49fdc86b2236a267d95a35b6be86118f0928957cdd8b4178379ca04d8788bf
7
+ data.tar.gz: 82b03ecc2a5ebae9e7c1756a00080f45df9637951910295891825463a74645a0fe14ed3457685f35faf3d7b6e801754dd32d65e181a00e214d299f1ab66faa18
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jamm (1.0.2)
4
+ jamm (1.0.5)
5
5
  rest-client (~> 2.0)
6
6
  typhoeus (~> 1.0, >= 1.0.1)
7
7
 
@@ -19,7 +19,9 @@ GEM
19
19
  domain_name (0.6.20240107)
20
20
  ethon (0.16.0)
21
21
  ffi (>= 1.15.0)
22
- ffi (1.17.0)
22
+ ffi (1.17.0-aarch64-linux-gnu)
23
+ ffi (1.17.0-arm64-darwin)
24
+ ffi (1.17.0-x86_64-linux-gnu)
23
25
  hashdiff (1.1.0)
24
26
  http-accept (1.7.0)
25
27
  http-cookie (1.0.5)
@@ -51,8 +53,7 @@ GEM
51
53
  http-cookie (>= 1.0.2, < 2.0)
52
54
  mime-types (>= 1.16, < 4.0)
53
55
  netrc (~> 0.8)
54
- rexml (3.3.6)
55
- strscan
56
+ rexml (3.3.9)
56
57
  rubocop (1.63.3)
57
58
  json (~> 2.3)
58
59
  language_server-protocol (>= 3.17.0)
@@ -68,7 +69,6 @@ GEM
68
69
  parser (>= 3.3.0.4)
69
70
  ruby-progressbar (1.13.0)
70
71
  ruby2_keywords (0.0.5)
71
- strscan (3.1.0)
72
72
  test-unit (3.6.2)
73
73
  power_assert
74
74
  typhoeus (1.4.1)
data/jamm.gemspec CHANGED
@@ -20,12 +20,12 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.files = `git ls-files`.split("\n").reject do |file|
22
22
  file.start_with?(
23
- "examples",
24
- "images",
25
- "openapi",
26
- "pkg",
27
- "test",
28
- "Makefile",
23
+ 'examples',
24
+ 'images',
25
+ 'openapi',
26
+ 'pkg',
27
+ 'test',
28
+ 'Makefile'
29
29
  )
30
30
  end
31
31
 
@@ -20,6 +20,67 @@ module Api
20
20
  @api_client = api_client
21
21
  end
22
22
 
23
+ # Use existing contract with charge
24
+ # Use existing contract with charge
25
+ # @param body [AddChargeRequest]
26
+ # @param [Hash] opts the optional parameters
27
+ # @return [AddChargeResponse]
28
+ def add_charge(body, opts = {})
29
+ data, _status_code, _headers = add_charge_with_http_info(body, opts)
30
+ data
31
+ end
32
+
33
+ # Use existing contract with charge
34
+ # Use existing contract with charge
35
+ # @param body [AddChargeRequest]
36
+ # @param [Hash] opts the optional parameters
37
+ # @return [Array<(AddChargeResponse, Integer, Hash)>] AddChargeResponse data, response status code and response headers
38
+ def add_charge_with_http_info(body, opts = {})
39
+ @api_client.config.logger.debug 'Calling API: PaymentApi.add_charge ...' if @api_client.config.debugging
40
+ # verify the required parameter 'body' is set
41
+ raise ArgumentError, "Missing the required parameter 'body' when calling PaymentApi.add_charge" if @api_client.config.client_side_validation && body.nil?
42
+
43
+ # resource path
44
+ local_var_path = '/v1/add-charge'
45
+
46
+ # query parameters
47
+ query_params = opts[:query_params] || {}
48
+
49
+ # header parameters
50
+ header_params = opts[:header_params] || {}
51
+ # HTTP header 'Accept' (if needed)
52
+ header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
53
+ # HTTP header 'Content-Type'
54
+ content_type = @api_client.select_header_content_type(['application/json'])
55
+ header_params['Content-Type'] = content_type unless content_type.nil?
56
+
57
+ # form parameters
58
+ form_params = opts[:form_params] || {}
59
+
60
+ # http body (model)
61
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(body)
62
+
63
+ # return_type
64
+ return_type = opts[:debug_return_type] || 'AddChargeResponse'
65
+
66
+ # auth_names
67
+ auth_names = opts[:debug_auth_names] || []
68
+
69
+ new_options = opts.merge(
70
+ :operation => :"PaymentApi.add_charge",
71
+ :header_params => header_params,
72
+ :query_params => query_params,
73
+ :form_params => form_params,
74
+ :body => post_body,
75
+ :auth_names => auth_names,
76
+ :return_type => return_type
77
+ )
78
+
79
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
80
+ @api_client.config.logger.debug "API called: PaymentApi#add_charge\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" if @api_client.config.debugging
81
+ [data, status_code, headers]
82
+ end
83
+
23
84
  # Create a contract with initial charge
24
85
  # Create a contract with initial charge
25
86
  # @param body [CreateContractWithChargeRequest]
@@ -0,0 +1,217 @@
1
+ # frozen_string_literal: true
2
+
3
+ # #api/v1/common.proto
4
+ #
5
+ # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ #
7
+ # The version of the OpenAPI document: version not set
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 AddChargeRequest
18
+ attr_accessor :customer, :charge, :redirect
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
+ :redirect => :redirect
26
+ }
27
+ end
28
+
29
+ # Returns all the JSON keys this model knows about
30
+ def self.acceptable_attributes
31
+ attribute_map.values
32
+ end
33
+
34
+ # Attribute type mapping.
35
+ def self.openapi_types
36
+ {
37
+ :customer => :String,
38
+ :charge => :InitialCharge,
39
+ :redirect => :URL
40
+ }
41
+ end
42
+
43
+ # List of attributes with nullable: true
44
+ def self.openapi_nullable
45
+ Set.new([])
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::AddChargeRequest` initialize method' unless attributes.is_a?(Hash)
52
+
53
+ # check to see if the attribute exists and convert string to symbol for hash key
54
+ attributes = attributes.each_with_object({}) do |(k, v), h|
55
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::AddChargeRequest`. 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)
56
+
57
+ h[k.to_sym] = v
58
+ end
59
+
60
+ self.customer = attributes[:customer] if attributes.key?(:customer)
61
+
62
+ self.charge = attributes[:charge] if attributes.key?(:charge)
63
+
64
+ return unless attributes.key?(:redirect)
65
+
66
+ self.redirect = attributes[:redirect]
67
+ end
68
+
69
+ # Show invalid properties with the reasons. Usually used together with valid?
70
+ # @return Array for valid properties with the reasons
71
+ def list_invalid_properties
72
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
73
+ []
74
+ end
75
+
76
+ # Check to see if the all the properties in the model are valid
77
+ # @return true if the model is valid
78
+ def valid?
79
+ warn '[DEPRECATED] the `valid?` method is obsolete'
80
+ true
81
+ end
82
+
83
+ # Checks equality by comparing each attribute.
84
+ # @param [Object] Object to be compared
85
+ def ==(other)
86
+ return true if equal?(other)
87
+
88
+ self.class == other.class &&
89
+ customer == other.customer &&
90
+ charge == other.charge &&
91
+ redirect == other.redirect
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
+ [customer, charge, redirect].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
@@ -0,0 +1,217 @@
1
+ # frozen_string_literal: true
2
+
3
+ # #api/v1/common.proto
4
+ #
5
+ # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ #
7
+ # The version of the OpenAPI document: version not set
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 AddChargeResponse
18
+ attr_accessor :charge, :customer, :payment_link
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
+ :payment_link => :paymentLink
26
+ }
27
+ end
28
+
29
+ # Returns all the JSON keys this model knows about
30
+ def self.acceptable_attributes
31
+ attribute_map.values
32
+ end
33
+
34
+ # Attribute type mapping.
35
+ def self.openapi_types
36
+ {
37
+ :charge => :Charge,
38
+ :customer => :Customer,
39
+ :payment_link => :PaymentLink
40
+ }
41
+ end
42
+
43
+ # List of attributes with nullable: true
44
+ def self.openapi_nullable
45
+ Set.new([])
46
+ end
47
+
48
+ # Initializes the object
49
+ # @param [Hash] attributes Model attributes in the form of hash
50
+ def initialize(attributes = {})
51
+ raise ArgumentError, 'The input argument (attributes) must be a hash in `Api::AddChargeResponse` initialize method' unless attributes.is_a?(Hash)
52
+
53
+ # check to see if the attribute exists and convert string to symbol for hash key
54
+ attributes = attributes.each_with_object({}) do |(k, v), h|
55
+ raise ArgumentError, "`#{k}` is not a valid attribute in `Api::AddChargeResponse`. 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)
56
+
57
+ h[k.to_sym] = v
58
+ end
59
+
60
+ self.charge = attributes[:charge] if attributes.key?(:charge)
61
+
62
+ self.customer = attributes[:customer] if attributes.key?(:customer)
63
+
64
+ return unless attributes.key?(:payment_link)
65
+
66
+ self.payment_link = attributes[:payment_link]
67
+ end
68
+
69
+ # Show invalid properties with the reasons. Usually used together with valid?
70
+ # @return Array for valid properties with the reasons
71
+ def list_invalid_properties
72
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
73
+ []
74
+ end
75
+
76
+ # Check to see if the all the properties in the model are valid
77
+ # @return true if the model is valid
78
+ def valid?
79
+ warn '[DEPRECATED] the `valid?` method is obsolete'
80
+ true
81
+ end
82
+
83
+ # Checks equality by comparing each attribute.
84
+ # @param [Object] Object to be compared
85
+ def ==(other)
86
+ return true if equal?(other)
87
+
88
+ self.class == other.class &&
89
+ charge == other.charge &&
90
+ customer == other.customer &&
91
+ payment_link == other.payment_link
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
+ [charge, customer, payment_link].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,16 +19,40 @@ module Api
19
19
  # 契約ID (例: con-1234567890) @gotags: validate:\"required\"
20
20
  attr_accessor :id
21
21
 
22
+ attr_accessor :status
23
+
22
24
  # Created date of the contract. 契約の作成日時。
23
25
  attr_accessor :created_at
24
26
 
25
27
  # Updated date of the contract. 契約の更新日時。
26
28
  attr_accessor :updated_at
27
29
 
30
+ class EnumAttributeValidator
31
+ attr_reader :datatype, :allowable_values
32
+
33
+ def initialize(datatype, allowable_values)
34
+ @allowable_values = allowable_values.map do |value|
35
+ case datatype.to_s
36
+ when /Integer/i
37
+ value.to_i
38
+ when /Float/i
39
+ value.to_f
40
+ else
41
+ value
42
+ end
43
+ end
44
+ end
45
+
46
+ def valid?(value)
47
+ !value || allowable_values.include?(value)
48
+ end
49
+ end
50
+
28
51
  # Attribute mapping from ruby-style variable name to JSON key.
29
52
  def self.attribute_map
30
53
  {
31
54
  :id => :id,
55
+ :status => :status,
32
56
  :created_at => :createdAt,
33
57
  :updated_at => :updatedAt
34
58
  }
@@ -43,6 +67,7 @@ module Api
43
67
  def self.openapi_types
44
68
  {
45
69
  :id => :String,
70
+ :status => :ContractStatus,
46
71
  :created_at => :Time,
47
72
  :updated_at => :Time
48
73
  }
@@ -67,6 +92,12 @@ module Api
67
92
 
68
93
  self.id = attributes[:id] if attributes.key?(:id)
69
94
 
95
+ self.status = if attributes.key?(:status)
96
+ attributes[:status]
97
+ else
98
+ 'CONTRACT_STATUS_UNSPECIFIED'
99
+ end
100
+
70
101
  self.created_at = attributes[:created_at] if attributes.key?(:created_at)
71
102
 
72
103
  return unless attributes.key?(:updated_at)
@@ -95,6 +126,7 @@ module Api
95
126
 
96
127
  self.class == other.class &&
97
128
  id == other.id &&
129
+ status == other.status &&
98
130
  created_at == other.created_at &&
99
131
  updated_at == other.updated_at
100
132
  end
@@ -108,7 +140,7 @@ module Api
108
140
  # Calculates hash code according to all attributes.
109
141
  # @return [Integer] Hash code
110
142
  def hash
111
- [id, created_at, updated_at].hash
143
+ [id, status, created_at, updated_at].hash
112
144
  end
113
145
 
114
146
  # Builds the object from hash
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ # #api/v1/common.proto
4
+ #
5
+ # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ #
7
+ # The version of the OpenAPI document: version not set
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 ContractStatus
18
+ UNSPECIFIED = 'CONTRACT_STATUS_UNSPECIFIED'
19
+ INITIAL = 'CONTRACT_STATUS_INITIAL'
20
+ APPROVED = 'CONTRACT_STATUS_APPROVED'
21
+ ACTIVATED = 'CONTRACT_STATUS_ACTIVATED'
22
+ WAITING_EKYC = 'CONTRACT_STATUS_WAITING_EKYC'
23
+ EXPIRED = 'CONTRACT_STATUS_EXPIRED'
24
+ DEACTIVATED = 'CONTRACT_STATUS_DEACTIVATED'
25
+ CANCELLED = 'CONTRACT_STATUS_CANCELLED'
26
+ PENDING_CHARGE = 'CONTRACT_STATUS_PENDING_CHARGE'
27
+
28
+ def self.all_vars
29
+ @all_vars ||= [UNSPECIFIED, INITIAL, APPROVED, ACTIVATED, WAITING_EKYC, EXPIRED, DEACTIVATED, CANCELLED, PENDING_CHARGE].freeze
30
+ end
31
+
32
+ # Builds the enum from string
33
+ # @param [String] The enum value in the form of the string
34
+ # @return [String] The enum value
35
+ def self.build_from_hash(value)
36
+ new.build_from_hash(value)
37
+ end
38
+
39
+ # Builds the enum from string
40
+ # @param [String] The enum value in the form of the string
41
+ # @return [String] The enum value
42
+ def build_from_hash(value)
43
+ return value if ContractStatus.all_vars.include?(value)
44
+
45
+ raise "Invalid ENUM value #{value} for class #ContractStatus"
46
+ end
47
+ end
48
+ end
data/lib/jamm/api.rb CHANGED
@@ -20,9 +20,12 @@ require 'jamm/api/configuration'
20
20
  require 'jamm/api/models/customer_service_update_customer_body'
21
21
  require 'jamm/api/models/protobuf_any'
22
22
  require 'jamm/api/models/rpc_status'
23
+ require 'jamm/api/models/v1_add_charge_request'
24
+ require 'jamm/api/models/v1_add_charge_response'
23
25
  require 'jamm/api/models/v1_buyer'
24
26
  require 'jamm/api/models/v1_charge'
25
27
  require 'jamm/api/models/v1_contract'
28
+ require 'jamm/api/models/v1_contract_status'
26
29
  require 'jamm/api/models/v1_create_contract_with_charge_request'
27
30
  require 'jamm/api/models/v1_create_contract_with_charge_response'
28
31
  require 'jamm/api/models/v1_create_contract_without_charge_request'
data/lib/jamm/payment.rb CHANGED
@@ -18,9 +18,22 @@ module Jamm
18
18
  end
19
19
 
20
20
  def self.get_contract(contract:)
21
- Jamm::PaymentApi.new(Jamm::Client.handler).get_contract(contract)
22
- rescue Jamm::ApiError => e
23
- puts e
21
+ begin
22
+ Jamm::PaymentApi.new(Jamm::Client.handler).get_contract(contract)
23
+ rescue Jamm::ApiError => e
24
+ puts e
25
+ end
26
+ end
27
+
28
+ def self.add_charge(**params)
29
+ request = Jamm::AddChargeRequest.new(params)
30
+
31
+ begin
32
+ p = Jamm::PaymentApi.new(Jamm::Client.handler)
33
+ p.add_charge(request)
34
+ rescue Jamm::ApiError => e
35
+ puts e
36
+ end
24
37
  end
25
38
  end
26
39
  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.2'
4
+ VERSION = '1.0.5'
5
5
  end
data/lib/jamm.rb CHANGED
@@ -46,7 +46,7 @@ module Jamm
46
46
  # Debugger mode, uncomment when needed
47
47
  # when 'develop'
48
48
  # self.oauth_base = "https://merchant-identity.#{env}.jamm-pay.jp"
49
- #
49
+
50
50
  # self.openapi = Jamm::ApiClient.new
51
51
  # openapi.config.host = 'api.jamm.test'
52
52
 
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.2
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamm
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-25 00:00:00.000000000 Z
11
+ date: 2024-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -69,9 +69,12 @@ files:
69
69
  - lib/jamm/api/models/customer_service_update_customer_body.rb
70
70
  - lib/jamm/api/models/protobuf_any.rb
71
71
  - lib/jamm/api/models/rpc_status.rb
72
+ - lib/jamm/api/models/v1_add_charge_request.rb
73
+ - lib/jamm/api/models/v1_add_charge_response.rb
72
74
  - lib/jamm/api/models/v1_buyer.rb
73
75
  - lib/jamm/api/models/v1_charge.rb
74
76
  - lib/jamm/api/models/v1_contract.rb
77
+ - lib/jamm/api/models/v1_contract_status.rb
75
78
  - lib/jamm/api/models/v1_create_contract_with_charge_request.rb
76
79
  - lib/jamm/api/models/v1_create_contract_with_charge_response.rb
77
80
  - lib/jamm/api/models/v1_create_contract_without_charge_request.rb
@@ -101,7 +104,7 @@ licenses:
101
104
  - MIT
102
105
  metadata:
103
106
  source_code_uri: https://github.com/jamm-pay/Jamm-SDK-Ruby
104
- post_install_message:
107
+ post_install_message:
105
108
  rdoc_options: []
106
109
  require_paths:
107
110
  - lib
@@ -116,8 +119,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
119
  - !ruby/object:Gem::Version
117
120
  version: '0'
118
121
  requirements: []
119
- rubygems_version: 3.2.3
120
- signing_key:
122
+ rubygems_version: 3.4.19
123
+ signing_key:
121
124
  specification_version: 4
122
125
  summary: Ruby SDK for the Jamm API
123
126
  test_files: []