Skip to content

Commit f340aee

Browse files
authored
Add issued_to field to Orders APIs (#64)
* Add issued_to field to Orders APIs * Add nullable field * Add gem testing example
1 parent e8d29a0 commit f340aee

17 files changed

+862
-53
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.23.0] - 2022-06-03
9+
10+
### Added
11+
12+
- Adds support for the `issued_to` parameter on `orders`, to add support for creating and placing orders on behalf of another party.
13+
814
## [1.22.0] - 2022-05-16
915

1016
### Added

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
patch_ruby (1.22.0)
4+
patch_ruby (1.23.0)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

README.md

+32-2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ total_price = 5_00 # Pass in the total price in smallest currency unit (ie cents
7474
currency = "USD"
7575
Patch::Order.create_order(total_price: total_price, currency: currency)
7676

77+
# Create an order with issued_to field (optional)
78+
total_price = 5_00 # Pass in the total price in smallest currency unit (ie cents for USD).
79+
currency = "USD"
80+
issued_to = {email: "[email protected]", name: "Company A"}
81+
Patch::Order.create_order(total_price: total_price, currency: currency, issued_to: issued_to)
82+
7783
## You can also specify a project-id field (optional) to be used instead of the preferred one
7884
project_id = 'pro_test_1234' # Pass in the project's ID
7985
Patch::Order.create_order(amount: amount, unit: unit, project_id: project_id)
@@ -90,6 +96,11 @@ Patch::Order.retrieve_order(order_id)
9096
order_id = 'ord_test_1234' # Pass in the order's id
9197
Patch::Order.place_order(order_id)
9298

99+
## Placing an order on behalf of another party with the issued_to field (optional)
100+
order_id = 'ord_test_1234' # Pass in the order's id
101+
issued_to = {email: "[email protected]", name: "Company A"}
102+
Patch::Order.place_order(order_id, issued_to: issued_to)
103+
93104
# Cancel an order
94105
order_id = 'ord_test_1234' # Pass in the order's id
95106
Patch::Order.cancel_order(order_id)
@@ -191,12 +202,12 @@ minimum_available_mass = 100
191202
Patch::Project.retrieve_projects(minimum_available_mass: minimum_available_mass)
192203

193204
# Retrieve a project in a different language
194-
# See http://docs.patch.test:3000/#/internationalization for more information and support
205+
# See http://docs.patch.test:3000/#/internationalization for more information and support
195206
project_id = 'pro_test_1234'
196207
Patch::Project.retrieve_project(project_id, accept_language: 'fr')
197208

198209
# Retrieve a list of projects in a different language
199-
# See http://docs.patch.test:3000/#/internationalization for more information and support
210+
# See http://docs.patch.test:3000/#/internationalization for more information and support
200211
Patch::Project.retrieve_projects(accept_language: 'fr')
201212
```
202213
## Contributing
@@ -219,6 +230,25 @@ This will create a .gem file. To install the local gem:
219230
gem install patch_ruby-1.x.x.gem
220231
```
221232

233+
Once you have installed the gem, you can easily test with `irb`. Here's an example of testing Order creation:
234+
```bash
235+
brett@Bretts-MacBook-Pro patch-ruby $ irb
236+
irb(main):001:0> require 'patch_ruby'
237+
=> true
238+
irb(main):002:0>
239+
irb(main):003:1* Patch.configure do |config|
240+
irb(main):004:1* # Configure the Patch gem with your API key here
241+
irb(main):005:1* config.access_token = ENV['SANDBOX_API_KEY']
242+
irb(main):006:0> end
243+
=> "[REDACTED]"
244+
irb(main):007:0> total_price = 5_00
245+
=> 500
246+
irb(main):008:0> currency = "USD"
247+
=> "USD"
248+
irb(main):009:0> issued_to = {email: "[email protected]", name: "Company A"}
249+
irb(main):010:0> Patch::Order.create_order(total_price: total_price, currency: currency, issued_to: issued_to)
250+
```
251+
222252
### Running tests
223253

224254
Set up the required environment variable.

lib/patch_ruby.rb

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
require 'patch_ruby/models/estimate_response'
3434
require 'patch_ruby/models/highlight'
3535
require 'patch_ruby/models/inventory'
36+
require 'patch_ruby/models/issued_to'
3637
require 'patch_ruby/models/meta_index_object'
3738
require 'patch_ruby/models/order'
3839
require 'patch_ruby/models/order_inventory'
@@ -41,13 +42,15 @@
4142
require 'patch_ruby/models/order_response'
4243
require 'patch_ruby/models/parent_technology_type'
4344
require 'patch_ruby/models/photo'
45+
require 'patch_ruby/models/place_order_request'
4446
require 'patch_ruby/models/project'
4547
require 'patch_ruby/models/project_list_response'
4648
require 'patch_ruby/models/project_response'
4749
require 'patch_ruby/models/sdg'
4850
require 'patch_ruby/models/standard'
4951
require 'patch_ruby/models/technology_type'
5052
require 'patch_ruby/models/technology_type_list_response'
53+
require 'patch_ruby/models/v1_orders_issued_to'
5154

5255
# APIs
5356
require 'patch_ruby/api/estimates_api'

lib/patch_ruby/api/orders_api.rb

+41-34
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ def initialize(api_client = ApiClient.default)
2828
@api_client = api_client
2929
end
3030
# Cancel an order
31-
# Cancelling an order removes the associated offset allocation from an order. You will not be charged for cancelled orders. Only orders in the `draft` or `placed` state can be cancelled.
32-
# @param id [String]
31+
# Cancelling an order removes the associated offset allocation from an order. You will not be charged for cancelled orders. Only orders in the `draft` or `placed` state can be cancelled.
32+
# @param id [String]
3333
# @param [Hash] opts the optional parameters
3434
# @return [OrderResponse]
3535
def cancel_order(id, opts = {})
36-
36+
3737
data, _status_code, _headers = cancel_order_with_http_info(id, opts)
3838
data
3939
end
4040

4141
# Cancel an order
42-
# Cancelling an order removes the associated offset allocation from an order. You will not be charged for cancelled orders. Only orders in the `draft` or `placed` state can be cancelled.
43-
# @param id [String]
42+
# Cancelling an order removes the associated offset allocation from an order. You will not be charged for cancelled orders. Only orders in the `draft` or `placed` state can be cancelled.
43+
# @param id [String]
4444
# @param [Hash] opts the optional parameters
4545
# @return [Array<(OrderResponse, Integer, Hash)>] OrderResponse data, response status code and response headers
4646
def cancel_order_with_http_info(id, opts = {})
@@ -92,19 +92,19 @@ def cancel_order_with_http_info(id, opts = {})
9292
end
9393

9494
# Creates an order
95-
# Creates an order in the `placed` or `draft` state.
96-
# @param create_order_request [CreateOrderRequest]
95+
# Creates an order in the `placed` or `draft` state.
96+
# @param create_order_request [CreateOrderRequest]
9797
# @param [Hash] opts the optional parameters
9898
# @return [OrderResponse]
9999
def create_order(create_order_request = {}, opts = {})
100-
_create_order_request = Patch::CreateOrderRequest.new(create_order_request)
100+
_create_order_request = Patch::CreateOrderRequest.new(create_order_request)
101101
data, _status_code, _headers = create_order_with_http_info(_create_order_request, opts)
102102
data
103103
end
104104

105105
# Creates an order
106-
# Creates an order in the &#x60;placed&#x60; or &#x60;draft&#x60; state.
107-
# @param create_order_request [CreateOrderRequest]
106+
# Creates an order in the &#x60;placed&#x60; or &#x60;draft&#x60; state.
107+
# @param create_order_request [CreateOrderRequest]
108108
# @param [Hash] opts the optional parameters
109109
# @return [Array<(OrderResponse, Integer, Hash)>] OrderResponse data, response status code and response headers
110110
def create_order_with_http_info(create_order_request, opts = {})
@@ -161,20 +161,22 @@ def create_order_with_http_info(create_order_request, opts = {})
161161
end
162162

163163
# Place an order
164-
# Placing an order confirms an order's allocation of offsets. Only orders that are in the `draft` state can be placed
165-
# @param id [String]
164+
# Placing an order confirms an order's allocation of offsets. Only orders that are in the `draft` state can be placed
165+
# @param id [String]
166166
# @param [Hash] opts the optional parameters
167+
# @option opts [PlaceOrderRequest] :place_order_request
167168
# @return [OrderResponse]
168-
def place_order(id, opts = {})
169-
170-
data, _status_code, _headers = place_order_with_http_info(id, opts)
169+
def place_order(id, place_order_request = {}, opts = {})
170+
_place_order_request = Patch::PlaceOrderRequest.new(place_order_request)
171+
data, _status_code, _headers = place_order_with_http_info(id, opts.merge!({place_order_request: place_order_request}))
171172
data
172173
end
173174

174175
# Place an order
175-
# Placing an order confirms an order&#39;s allocation of offsets. Only orders that are in the &#x60;draft&#x60; state can be placed
176-
# @param id [String]
176+
# Placing an order confirms an order&#39;s allocation of offsets. Only orders that are in the &#x60;draft&#x60; state can be placed
177+
# @param id [String]
177178
# @param [Hash] opts the optional parameters
179+
# @option opts [PlaceOrderRequest] :place_order_request
178180
# @return [Array<(OrderResponse, Integer, Hash)>] OrderResponse data, response status code and response headers
179181
def place_order_with_http_info(id, opts = {})
180182
if @api_client.config.debugging
@@ -194,12 +196,17 @@ def place_order_with_http_info(id, opts = {})
194196
header_params = opts[:header_params] || {}
195197
# HTTP header 'Accept' (if needed)
196198
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
199+
# HTTP header 'Content-Type'
200+
content_type = @api_client.select_header_content_type(['application/json'])
201+
if !content_type.nil?
202+
header_params['Content-Type'] = content_type
203+
end
197204

198205
# form parameters
199206
form_params = opts[:form_params] || {}
200207

201208
# http body (model)
202-
post_body = opts[:debug_body]
209+
post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'place_order_request'])
203210

204211
# return_type
205212
return_type = opts[:debug_return_type] || 'OrderResponse'
@@ -225,19 +232,19 @@ def place_order_with_http_info(id, opts = {})
225232
end
226233

227234
# Retrieves an order
228-
# Retrieves a given order and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
229-
# @param id [String]
235+
# Retrieves a given order and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
236+
# @param id [String]
230237
# @param [Hash] opts the optional parameters
231238
# @return [OrderResponse]
232239
def retrieve_order(id, opts = {})
233-
240+
234241
data, _status_code, _headers = retrieve_order_with_http_info(id, opts)
235242
data
236243
end
237244

238245
# Retrieves an order
239-
# Retrieves a given order and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
240-
# @param id [String]
246+
# Retrieves a given order and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
247+
# @param id [String]
241248
# @param [Hash] opts the optional parameters
242249
# @return [Array<(OrderResponse, Integer, Hash)>] OrderResponse data, response status code and response headers
243250
def retrieve_order_with_http_info(id, opts = {})
@@ -289,26 +296,26 @@ def retrieve_order_with_http_info(id, opts = {})
289296
end
290297

291298
# Retrieves a list of orders
292-
# Retrieves a list of orders and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
299+
# Retrieves a list of orders and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
293300
# @param [Hash] opts the optional parameters
294-
# @option opts [Integer] :page
295-
# @option opts [String] :metadata
296-
# @option opts [String] :metadata_example1
297-
# @option opts [String] :metadata_example2
301+
# @option opts [Integer] :page
302+
# @option opts [String] :metadata
303+
# @option opts [String] :metadata_example1
304+
# @option opts [String] :metadata_example2
298305
# @return [OrderListResponse]
299306
def retrieve_orders(opts = {})
300-
307+
301308
data, _status_code, _headers = retrieve_orders_with_http_info(opts)
302309
data
303310
end
304311

305312
# Retrieves a list of orders
306-
# Retrieves a list of orders and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
313+
# Retrieves a list of orders and its allocation offsets or negative emissions. You can only retrieve orders associated with the organization you are querying for.
307314
# @param [Hash] opts the optional parameters
308-
# @option opts [Integer] :page
309-
# @option opts [String] :metadata
310-
# @option opts [String] :metadata_example1
311-
# @option opts [String] :metadata_example2
315+
# @option opts [Integer] :page
316+
# @option opts [String] :metadata
317+
# @option opts [String] :metadata_example1
318+
# @option opts [String] :metadata_example2
312319
# @return [Array<(OrderListResponse, Integer, Hash)>] OrderListResponse data, response status code and response headers
313320
def retrieve_orders_with_http_info(opts = {})
314321
if @api_client.config.debugging

lib/patch_ruby/api_client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ApiClient
3131
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
3232
def initialize(config = Configuration.default)
3333
@config = config
34-
@user_agent = "patch-ruby/1.22.0"
34+
@user_agent = "patch-ruby/1.23.0"
3535
@default_headers = {
3636
'Content-Type' => 'application/json',
3737
'User-Agent' => @user_agent

lib/patch_ruby/models/allocation.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Allocation
1818
# A unique uid for the record. UIDs will be prepended by all_prod or all_test depending on the mode it was created in.
1919
attr_accessor :id
2020

21-
# A boolean indicating if this project is a production or test mode project.
21+
# A boolean indicating if this project is a production or demo mode project.
2222
attr_accessor :production
2323

2424
# The amount (in grams) of allocated carbon offsets.

lib/patch_ruby/models/create_order_request.rb

+15-5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ class CreateOrderRequest
3535

3636
attr_accessor :unit
3737

38+
attr_accessor :issued_to
39+
3840
class EnumAttributeValidator
3941
attr_reader :datatype
4042
attr_reader :allowable_values
@@ -69,7 +71,8 @@ def self.attribute_map
6971
:'total_price' => :'total_price',
7072
:'currency' => :'currency',
7173
:'amount' => :'amount',
72-
:'unit' => :'unit'
74+
:'unit' => :'unit',
75+
:'issued_to' => :'issued_to'
7376
}
7477
end
7578

@@ -90,7 +93,8 @@ def self.openapi_types
9093
:'total_price' => :'Integer',
9194
:'currency' => :'String',
9295
:'amount' => :'Integer',
93-
:'unit' => :'String'
96+
:'unit' => :'String',
97+
:'issued_to' => :'V1OrdersIssuedTo'
9498
}
9599
end
96100

@@ -106,7 +110,8 @@ def self.openapi_nullable
106110
:'total_price',
107111
:'currency',
108112
:'amount',
109-
:'unit'
113+
:'unit',
114+
:'issued_to'
110115
])
111116
end
112117

@@ -176,6 +181,10 @@ def initialize(attributes = {})
176181
if attributes.key?(:'unit')
177182
self.unit = attributes[:'unit']
178183
end
184+
185+
if attributes.key?(:'issued_to')
186+
self.issued_to = attributes[:'issued_to']
187+
end
179188
end
180189

181190
# Show invalid properties with the reasons. Usually used together with valid?
@@ -331,7 +340,8 @@ def ==(o)
331340
total_price == o.total_price &&
332341
currency == o.currency &&
333342
amount == o.amount &&
334-
unit == o.unit
343+
unit == o.unit &&
344+
issued_to == o.issued_to
335345
end
336346

337347
# @see the `==` method
@@ -343,7 +353,7 @@ def eql?(o)
343353
# Calculates hash code according to all attributes.
344354
# @return [Integer] Hash code
345355
def hash
346-
[mass_g, total_price_cents_usd, project_id, metadata, state, vintage_year, total_price, currency, amount, unit].hash
356+
[mass_g, total_price_cents_usd, project_id, metadata, state, vintage_year, total_price, currency, amount, unit, issued_to].hash
347357
end
348358

349359
# Builds the object from hash

lib/patch_ruby/models/estimate.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Estimate
1818
# A unique uid for the record. UIDs will be prepended by est_prod or est_test depending on the mode it was created in.
1919
attr_accessor :id
2020

21-
# A boolean indicating if this estimate is a production or test mode estimate.
21+
# A boolean indicating if this estimate is a production or demo mode estimate.
2222
attr_accessor :production
2323

2424
# The type of estimate. Available types are mass, flight, shipping, vehicle, and crypto.

0 commit comments

Comments
 (0)