patch_ruby 1.18.0 → 1.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3312ae1bca095a1ee4b912f2267748f57818ef9be2c10febd7bf5f8095bf15a4
4
- data.tar.gz: dc08f9414555d65f420a2b8bae74a44c582b15a9702f40bd1e8a875cb094d637
3
+ metadata.gz: 6e90b99f33c3f3a2115590dba9caffe9335da298a1bb4fb362496e31d87c8f6e
4
+ data.tar.gz: 86a32f5775dd5d23fa61b5ac2617f6ff65ff1a487d9deb19bcf5f27752dc5dad
5
5
  SHA512:
6
- metadata.gz: fdf4400660c261231c72654cdead5108cfe90ff6d02457b9057ae7bb8537c55f19e2edb7004604b5d9a39474d5da9222bc8ffded005e808b0c0ab718186eec15
7
- data.tar.gz: 4680eafea0b29e4eef4a8e393c56d4b0c9ad12828fa255535035e5fa786a86ef5237cfe0bb715270e3a2b376241d2e42294eb36444da17e17452d7e606d218f9
6
+ metadata.gz: 8f85ec5d3bb14d15411ae9b75da0d0e4655d599dec6144128801b05c3f5a8984f644de5fb0c95065d7c1e7c1adf73f4c4d5af24c0ff216291866b020ffeecc13
7
+ data.tar.gz: 9cd5df665fe03ff82e9f1d6b49d48dc7378cea330c023d38572d89cadc537cf58464eb0ef88c2c195e99f953ad79135c954632f0c9864709b41b8fa31e3529d6
data/CHANGELOG.md CHANGED
@@ -5,7 +5,35 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.21.0] - 2022-05-03
9
+
10
+ ### Added
11
+
12
+ - Adds optional `total_price` and `currency` field to `order` creation
13
+ - Adds optional `amount` and `unit` field to `order` creation
14
+ - Adds inventory to `project` responses
15
+ - Adds inventory to `order` responses
16
+
17
+ ### Changed
18
+
19
+ - Deprecates `mass_g` and `total_price_cents_usd` fields for create `order` requests
20
+ - Deprecates `average_price_per_tonne_cents_usd` and `remaining_mass_g` from `project` responses
21
+ - Deprecates `price_cents_usd`, `patch_fee_cents_usd`, and `mass_g` from `order` responses
22
+
23
+ ## [1.20.0] - 2022-04-18
24
+
25
+ ### Added
26
+
27
+ - Adds optional `vintage_year` field to `order` creation
28
+
29
+ ## [1.19.0] - 2022-04-05
30
+
31
+ ### Added
32
+
33
+ - Adds `Patch::Estimate.create_hotel_estimate` method
34
+
8
35
  ## [1.18.0] - 2022-03-22
36
+
9
37
  ### Changed
10
38
 
11
39
  - Adds optional `state` field to `order` creation
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- patch_ruby (1.18.0)
4
+ patch_ruby (1.21.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -73,6 +73,7 @@ PLATFORMS
73
73
  arm64-darwin-20
74
74
  arm64-darwin-21
75
75
  x86_64-darwin-20
76
+ x86_64-linux
76
77
 
77
78
  DEPENDENCIES
78
79
  factory_bot (~> 6.2)
data/README.md CHANGED
@@ -51,9 +51,9 @@ end
51
51
 
52
52
  ### Orders
53
53
 
54
- In Patch, orders represent a purchase of carbon offsets or negative emissions by mass. Place orders directly if you know the amount of carbon dioxide you would like to sequester. If you do not know how much to purchase, use an estimate.
54
+ In Patch, orders represent a purchase of carbon offsets or negative emissions by amount. Place orders directly if you know the amount of carbon dioxide you would like to sequester. If you do not know how much to purchase, use an estimate.
55
55
 
56
- You can also create an order with a maximum desired price, and we'll allocate enough mass to
56
+ You can also create an order with a maximum desired price, and we'll allocate enough to
57
57
  fulfill the order for you.
58
58
 
59
59
  [API Reference](https://docs.patch.io/#/?id=orders)
@@ -62,23 +62,25 @@ fulfill the order for you.
62
62
 
63
63
  ```ruby
64
64
  # Create an order - you can create an order
65
- # providing either mass_g or total_price_cents_usd, but not both
65
+ # providing either amount (and unit) or total_price (and currency), but not both
66
66
 
67
- # Create order with mass
68
- mass = 1_000_000 # Pass in the mass in grams (i.e. 1 metric tonne)
69
- Patch::Order.create_order(mass_g: mass)
67
+ # Create order with amount
68
+ amount = 1_000_000 # Pass in the amount in unit specified
69
+ unit = "g"
70
+ Patch::Order.create_order(amount: amount, unit: unit)
70
71
 
71
- # Create an order with maximum total price
72
- total_price_cents_usd = 5_00 # Pass in the total price in cents (i.e. 5 dollars)
73
- Patch::Order.create_order(total_price_cents_usd: total_price_cents_usd)
72
+ # Create an order with total price
73
+ total_price = 5_00 # Pass in the total price in smallest currency unit (ie cents for USD).
74
+ currency = "USD"
75
+ Patch::Order.create_order(total_price: total_price, currency: currency)
74
76
 
75
77
  ## You can also specify a project-id field (optional) to be used instead of the preferred one
76
78
  project_id = 'pro_test_1234' # Pass in the project's ID
77
- Patch::Order.create_order(mass_g: mass, project_id: project_id)
79
+ Patch::Order.create_order(amount: amount, unit: unit, project_id: project_id)
78
80
 
79
81
  ## Orders also accept a metadata field (optional)
80
82
  metadata = {user: "john doe"}
81
- Patch::Order.create_order(mass_g: mass, metadata: metadata)
83
+ Patch::Order.create_order(amount: amount, unit: unit, metadata: metadata)
82
84
 
83
85
  # Retrieve an order
84
86
  order_id = 'ord_test_1234' # Pass in the order's id
@@ -18,6 +18,7 @@ module Patch
18
18
  :create_bitcoin_estimate,
19
19
  :create_ethereum_estimate,
20
20
  :create_flight_estimate,
21
+ :create_hotel_estimate,
21
22
  :create_mass_estimate,
22
23
  :create_shipping_estimate,
23
24
  :create_vehicle_estimate,
@@ -237,6 +238,75 @@ module Patch
237
238
  return data, status_code, headers
238
239
  end
239
240
 
241
+ # Create a hotel estimate.
242
+ # Creates a hotel estimate for the amount of CO2 to be compensated. An order in the `draft` state may be created based on the parameters.
243
+ # @param create_hotel_estimate_request [CreateHotelEstimateRequest]
244
+ # @param [Hash] opts the optional parameters
245
+ # @return [EstimateResponse]
246
+ def create_hotel_estimate(create_hotel_estimate_request = {}, opts = {})
247
+ _create_hotel_estimate_request = Patch::CreateHotelEstimateRequest.new(create_hotel_estimate_request)
248
+ data, _status_code, _headers = create_hotel_estimate_with_http_info(_create_hotel_estimate_request, opts)
249
+ data
250
+ end
251
+
252
+ # Create a hotel estimate.
253
+ # Creates a hotel estimate for the amount of CO2 to be compensated. An order in the `draft` state may be created based on the parameters.
254
+ # @param create_hotel_estimate_request [CreateHotelEstimateRequest]
255
+ # @param [Hash] opts the optional parameters
256
+ # @return [Array<(EstimateResponse, Integer, Hash)>] EstimateResponse data, response status code and response headers
257
+ def create_hotel_estimate_with_http_info(create_hotel_estimate_request, opts = {})
258
+ if @api_client.config.debugging
259
+ @api_client.config.logger.debug 'Calling API: EstimatesApi.create_hotel_estimate ...'
260
+ end
261
+ # verify the required parameter 'create_hotel_estimate_request' is set
262
+ if @api_client.config.client_side_validation && create_hotel_estimate_request.nil?
263
+ fail ArgumentError, "Missing the required parameter 'create_hotel_estimate_request' when calling EstimatesApi.create_hotel_estimate"
264
+ end
265
+ # resource path
266
+ local_var_path = '/v1/estimates/hotel'
267
+
268
+ # query parameters
269
+ query_params = opts[:query_params] || {}
270
+
271
+ # header parameters
272
+ header_params = opts[:header_params] || {}
273
+ # HTTP header 'Accept' (if needed)
274
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
275
+ # HTTP header 'Content-Type'
276
+ content_type = @api_client.select_header_content_type(['application/json'])
277
+ if !content_type.nil?
278
+ header_params['Content-Type'] = content_type
279
+ end
280
+
281
+ # form parameters
282
+ form_params = opts[:form_params] || {}
283
+
284
+ # http body (model)
285
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(create_hotel_estimate_request)
286
+
287
+ # return_type
288
+ return_type = opts[:debug_return_type] || 'EstimateResponse'
289
+
290
+ # auth_names
291
+ auth_names = opts[:debug_auth_names] || ['bearer_auth']
292
+
293
+ new_options = opts.merge(
294
+ :operation => :"EstimatesApi.create_hotel_estimate",
295
+ :header_params => header_params,
296
+ :query_params => query_params,
297
+ :form_params => form_params,
298
+ :body => post_body,
299
+ :auth_names => auth_names,
300
+ :return_type => return_type
301
+ )
302
+
303
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
304
+ if @api_client.config.debugging
305
+ @api_client.config.logger.debug "API called: EstimatesApi#create_hotel_estimate\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
306
+ end
307
+ return data, status_code, headers
308
+ end
309
+
240
310
  # Create an estimate based on mass of CO2
241
311
  # Creates an estimate for the mass of CO2 to be compensated. An order in the `draft` state will also be created, linked to the estimate.
242
312
  # @param create_mass_estimate_request [CreateMassEstimateRequest]
@@ -31,7 +31,7 @@ module Patch
31
31
  # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
32
32
  def initialize(config = Configuration.default)
33
33
  @config = config
34
- @user_agent = "patch-ruby/1.18.0"
34
+ @user_agent = "patch-ruby/1.21.0"
35
35
  @default_headers = {
36
36
  'Content-Type' => 'application/json',
37
37
  'User-Agent' => @user_agent
@@ -0,0 +1,300 @@
1
+ =begin
2
+ #Patch API V1
3
+
4
+ #The core API used to integrate with Patch's service
5
+
6
+ The version of the OpenAPI document: v1
7
+ Contact: engineering@usepatch.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module Patch
17
+ class CreateHotelEstimateRequest
18
+ attr_accessor :country_code
19
+
20
+ attr_accessor :city
21
+
22
+ attr_accessor :region
23
+
24
+ attr_accessor :star_rating
25
+
26
+ attr_accessor :number_of_nights
27
+
28
+ attr_accessor :number_of_rooms
29
+
30
+ attr_accessor :project_id
31
+
32
+ attr_accessor :create_order
33
+
34
+ # Attribute mapping from ruby-style variable name to JSON key.
35
+ def self.attribute_map
36
+ {
37
+ :'country_code' => :'country_code',
38
+ :'city' => :'city',
39
+ :'region' => :'region',
40
+ :'star_rating' => :'star_rating',
41
+ :'number_of_nights' => :'number_of_nights',
42
+ :'number_of_rooms' => :'number_of_rooms',
43
+ :'project_id' => :'project_id',
44
+ :'create_order' => :'create_order'
45
+ }
46
+ end
47
+
48
+ # Returns all the JSON keys this model knows about
49
+ def self.acceptable_attributes
50
+ attribute_map.values
51
+ end
52
+
53
+ # Attribute type mapping.
54
+ def self.openapi_types
55
+ {
56
+ :'country_code' => :'String',
57
+ :'city' => :'String',
58
+ :'region' => :'String',
59
+ :'star_rating' => :'Integer',
60
+ :'number_of_nights' => :'Integer',
61
+ :'number_of_rooms' => :'Integer',
62
+ :'project_id' => :'String',
63
+ :'create_order' => :'Boolean'
64
+ }
65
+ end
66
+
67
+ # List of attributes with nullable: true
68
+ def self.openapi_nullable
69
+ Set.new([
70
+ :'project_id',
71
+ :'create_order'
72
+ ])
73
+ end
74
+
75
+
76
+ # Allows models with corresponding API classes to delegate API operations to those API classes
77
+ # Exposes Model.operation_id which delegates to ModelsApi.new.operation_id
78
+ # Eg. Order.create_order delegates to OrdersApi.new.create_order
79
+ def self.method_missing(message, *args, &block)
80
+ if Object.const_defined?('Patch::CreateHotelEstimateRequestsApi::OPERATIONS') && Patch::CreateHotelEstimateRequestsApi::OPERATIONS.include?(message)
81
+ Patch::CreateHotelEstimateRequestsApi.new.send(message, *args)
82
+ else
83
+ super
84
+ end
85
+ end
86
+
87
+ # Initializes the object
88
+ # @param [Hash] attributes Model attributes in the form of hash
89
+ def initialize(attributes = {})
90
+ if (!attributes.is_a?(Hash))
91
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Patch::CreateHotelEstimateRequest` initialize method"
92
+ end
93
+
94
+ # check to see if the attribute exists and convert string to symbol for hash key
95
+ attributes = attributes.each_with_object({}) { |(k, v), h|
96
+ if (!self.class.attribute_map.key?(k.to_sym))
97
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Patch::CreateHotelEstimateRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
98
+ end
99
+ h[k.to_sym] = v
100
+ }
101
+
102
+ if attributes.key?(:'country_code')
103
+ self.country_code = attributes[:'country_code']
104
+ end
105
+
106
+ if attributes.key?(:'city')
107
+ self.city = attributes[:'city']
108
+ end
109
+
110
+ if attributes.key?(:'region')
111
+ self.region = attributes[:'region']
112
+ end
113
+
114
+ if attributes.key?(:'star_rating')
115
+ self.star_rating = attributes[:'star_rating']
116
+ end
117
+
118
+ if attributes.key?(:'number_of_nights')
119
+ self.number_of_nights = attributes[:'number_of_nights']
120
+ end
121
+
122
+ if attributes.key?(:'number_of_rooms')
123
+ self.number_of_rooms = attributes[:'number_of_rooms']
124
+ end
125
+
126
+ if attributes.key?(:'project_id')
127
+ self.project_id = attributes[:'project_id']
128
+ end
129
+
130
+ if attributes.key?(:'create_order')
131
+ self.create_order = attributes[:'create_order']
132
+ else
133
+ self.create_order = false
134
+ end
135
+ end
136
+
137
+ # Show invalid properties with the reasons. Usually used together with valid?
138
+ # @return Array for valid properties with the reasons
139
+ def list_invalid_properties
140
+ invalid_properties = Array.new
141
+ if @country_code.nil?
142
+ invalid_properties.push('invalid value for "country_code", country_code cannot be nil.')
143
+ end
144
+
145
+ invalid_properties
146
+ end
147
+
148
+ # Check to see if the all the properties in the model are valid
149
+ # @return true if the model is valid
150
+ def valid?
151
+ return false if @country_code.nil?
152
+ true
153
+ end
154
+
155
+ # Checks equality by comparing each attribute.
156
+ # @param [Object] Object to be compared
157
+ def ==(o)
158
+ return true if self.equal?(o)
159
+ self.class == o.class &&
160
+ country_code == o.country_code &&
161
+ city == o.city &&
162
+ region == o.region &&
163
+ star_rating == o.star_rating &&
164
+ number_of_nights == o.number_of_nights &&
165
+ number_of_rooms == o.number_of_rooms &&
166
+ project_id == o.project_id &&
167
+ create_order == o.create_order
168
+ end
169
+
170
+ # @see the `==` method
171
+ # @param [Object] Object to be compared
172
+ def eql?(o)
173
+ self == o
174
+ end
175
+
176
+ # Calculates hash code according to all attributes.
177
+ # @return [Integer] Hash code
178
+ def hash
179
+ [country_code, city, region, star_rating, number_of_nights, number_of_rooms, project_id, create_order].hash
180
+ end
181
+
182
+ # Builds the object from hash
183
+ # @param [Hash] attributes Model attributes in the form of hash
184
+ # @return [Object] Returns the model itself
185
+ def self.build_from_hash(attributes)
186
+ new.build_from_hash(attributes)
187
+ end
188
+
189
+ # Builds the object from hash
190
+ # @param [Hash] attributes Model attributes in the form of hash
191
+ # @return [Object] Returns the model itself
192
+ def build_from_hash(attributes)
193
+ return nil unless attributes.is_a?(Hash)
194
+ self.class.openapi_types.each_pair do |key, type|
195
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
196
+ self.send("#{key}=", nil)
197
+ elsif type =~ /\AArray<(.*)>/i
198
+ # check to ensure the input is an array given that the attribute
199
+ # is documented as an array but the input is not
200
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
201
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
202
+ end
203
+ elsif !attributes[self.class.attribute_map[key]].nil?
204
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
205
+ end
206
+ end
207
+
208
+ self
209
+ end
210
+
211
+ # Deserializes the data based on type
212
+ # @param string type Data type
213
+ # @param string value Value to be deserialized
214
+ # @return [Object] Deserialized data
215
+ def _deserialize(type, value)
216
+ case type.to_sym
217
+ when :Time
218
+ Time.parse(value)
219
+ when :Date
220
+ Date.parse(value)
221
+ when :String
222
+ value.to_s
223
+ when :Integer
224
+ value.to_i
225
+ when :Float
226
+ value.to_f
227
+ when :Boolean
228
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
229
+ true
230
+ else
231
+ false
232
+ end
233
+ when :Object
234
+ # generic object (usually a Hash), return directly
235
+ value
236
+ when /\AArray<(?<inner_type>.+)>\z/
237
+ inner_type = Regexp.last_match[:inner_type]
238
+ value.map { |v| _deserialize(inner_type, v) }
239
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
240
+ k_type = Regexp.last_match[:k_type]
241
+ v_type = Regexp.last_match[:v_type]
242
+ {}.tap do |hash|
243
+ value.each do |k, v|
244
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
245
+ end
246
+ end
247
+ else # model
248
+ # models (e.g. Pet) or oneOf
249
+ klass = Patch.const_get(type)
250
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
251
+ end
252
+ end
253
+
254
+ # Returns the string representation of the object
255
+ # @return [String] String presentation of the object
256
+ def to_s
257
+ to_hash.to_s
258
+ end
259
+
260
+ # to_body is an alias to to_hash (backward compatibility)
261
+ # @return [Hash] Returns the object in the form of hash
262
+ def to_body
263
+ to_hash
264
+ end
265
+
266
+ # Returns the object in the form of hash
267
+ # @return [Hash] Returns the object in the form of hash
268
+ def to_hash
269
+ hash = {}
270
+ self.class.attribute_map.each_pair do |attr, param|
271
+ value = self.send(attr)
272
+ if value.nil?
273
+ is_nullable = self.class.openapi_nullable.include?(attr)
274
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
275
+ end
276
+
277
+ hash[param] = _to_hash(value)
278
+ end
279
+ hash
280
+ end
281
+
282
+ # Outputs non-array value in the form of hash
283
+ # For object, use to_hash. Otherwise, just return the value
284
+ # @param [Object] value Any valid value
285
+ # @return [Hash] Returns the value in the form of hash
286
+ def _to_hash(value)
287
+ if value.is_a?(Array)
288
+ value.compact.map { |v| _to_hash(v) }
289
+ elsif value.is_a?(Hash)
290
+ {}.tap do |hash|
291
+ value.each { |k, v| hash[k] = _to_hash(v) }
292
+ end
293
+ elsif value.respond_to? :to_hash
294
+ value.to_hash
295
+ else
296
+ value
297
+ end
298
+ end
299
+ end
300
+ end