Skip to content

Commit 9c224a5

Browse files
authored
Add /estimates/ecommerce API support (#71)
1 parent c6cfff8 commit 9c224a5

13 files changed

+482
-18
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.24.2] - 2022-08-10
9+
10+
### Added
11+
12+
- Adds `Patch::Estimate.create_ecommerce_estimate` method
13+
814
## [1.24.0] - 2022-07-22
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.24.1)
4+
patch_ruby (1.24.2)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,6 @@ Patch::Estimate.create_mass_estimate(mass_g: mass)
127127
distance_m = 1_000_000 # Pass in the distance traveled in meters
128128
Patch::Estimate.create_flight_estimate(distance_m: distance_m)
129129

130-
# Create a shipping estimate
131-
distance_m = 1_000_000 # Pass in the shipping distance in meters
132-
package_mass_g = 10_000 # Pass in the weight of the package shipped in grams
133-
transportation_method = "air" # Pass in the transportation method (air, rail, road, sea)
134-
Patch::Estimate.create_shipping_estimate(
135-
distance_m: distance_m,
136-
package_mass_g: package_mass_g,
137-
transportation_method: transportation_method
138-
)
139-
140130
# Create a vehicle estimate
141131
distance_m = 1_000_000 # Pass in the shipping distance in meters
142132
make = "Toyota" # Pass in the car make
@@ -149,10 +139,20 @@ Patch::Estimate.create_vehicle_estimate(
149139
year: year
150140
)
151141

152-
# Create a flight estimate
142+
# Create a Bitcoin estimate
153143
transaction_value_btc_sats = 1000; # [Optional] Pass in the transaction value in satoshis
154144
Patch::Estimate.create_bitcoin_estimate(transaction_value_btc_sats: transaction_value_btc_sats)
155145

146+
# Create an ecommerce estimate
147+
distance_m = 1_000_000 # Pass in the shipping distance in meters
148+
package_mass_g = 10_000 # Pass in the weight of the package shipped in grams
149+
transportation_method = "air" # Pass in the transportation method (air, rail, road, sea)
150+
Patch::Estimate.create_ecommerce_estimate(
151+
distance_m: distance_m,
152+
package_mass_g: package_mass_g,
153+
transportation_method: transportation_method
154+
)
155+
156156
## You can also specify a project-id field (optional) to be used instead of the preferred one
157157
project_id = 'pro_test_1234' # Pass in the project's ID
158158
Patch::Estimate.create_mass_estimate(mass_g: mass, project_id: project_id)

lib/patch_ruby.rb

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
require 'patch_ruby/models/allocation'
2121
require 'patch_ruby/models/create_air_shipping_estimate_request'
2222
require 'patch_ruby/models/create_bitcoin_estimate_request'
23+
require 'patch_ruby/models/create_ecommerce_estimate_request'
2324
require 'patch_ruby/models/create_ethereum_estimate_request'
2425
require 'patch_ruby/models/create_flight_estimate_request'
2526
require 'patch_ruby/models/create_hotel_estimate_request'

lib/patch_ruby/api/estimates_api.rb

+70
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class EstimatesApi
1717
OPERATIONS = [
1818
:create_air_shipping_estimate,
1919
:create_bitcoin_estimate,
20+
:create_ecommerce_estimate,
2021
:create_ethereum_estimate,
2122
:create_flight_estimate,
2223
:create_hotel_estimate,
@@ -173,6 +174,75 @@ def create_bitcoin_estimate_with_http_info(create_bitcoin_estimate_request, opts
173174
return data, status_code, headers
174175
end
175176

177+
# Create an e-commerce estimate given the distance traveled in meters, package weight, and transportation method.
178+
# Creates a e-commerce estimate for the amount of CO2 to be compensated. An order in the `draft` state may be created based on the parameters.
179+
# @param create_ecommerce_estimate_request [CreateEcommerceEstimateRequest]
180+
# @param [Hash] opts the optional parameters
181+
# @return [EstimateResponse]
182+
def create_ecommerce_estimate(create_ecommerce_estimate_request = {}, opts = {})
183+
_create_ecommerce_estimate_request = Patch::CreateEcommerceEstimateRequest.new(create_ecommerce_estimate_request)
184+
data, _status_code, _headers = create_ecommerce_estimate_with_http_info(_create_ecommerce_estimate_request, opts)
185+
data
186+
end
187+
188+
# Create an e-commerce estimate given the distance traveled in meters, package weight, and transportation method.
189+
# Creates a e-commerce estimate for the amount of CO2 to be compensated. An order in the `draft` state may be created based on the parameters.
190+
# @param create_ecommerce_estimate_request [CreateEcommerceEstimateRequest]
191+
# @param [Hash] opts the optional parameters
192+
# @return [Array<(EstimateResponse, Integer, Hash)>] EstimateResponse data, response status code and response headers
193+
def create_ecommerce_estimate_with_http_info(create_ecommerce_estimate_request, opts = {})
194+
if @api_client.config.debugging
195+
@api_client.config.logger.debug 'Calling API: EstimatesApi.create_ecommerce_estimate ...'
196+
end
197+
# verify the required parameter 'create_ecommerce_estimate_request' is set
198+
if @api_client.config.client_side_validation && create_ecommerce_estimate_request.nil?
199+
fail ArgumentError, "Missing the required parameter 'create_ecommerce_estimate_request' when calling EstimatesApi.create_ecommerce_estimate"
200+
end
201+
# resource path
202+
local_var_path = '/v1/estimates/ecommerce'
203+
204+
# query parameters
205+
query_params = opts[:query_params] || {}
206+
207+
# header parameters
208+
header_params = opts[:header_params] || {}
209+
# HTTP header 'Accept' (if needed)
210+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
211+
# HTTP header 'Content-Type'
212+
content_type = @api_client.select_header_content_type(['application/json'])
213+
if !content_type.nil?
214+
header_params['Content-Type'] = content_type
215+
end
216+
217+
# form parameters
218+
form_params = opts[:form_params] || {}
219+
220+
# http body (model)
221+
post_body = opts[:debug_body] || @api_client.object_to_http_body(create_ecommerce_estimate_request)
222+
223+
# return_type
224+
return_type = opts[:debug_return_type] || 'EstimateResponse'
225+
226+
# auth_names
227+
auth_names = opts[:debug_auth_names] || ['bearer_auth']
228+
229+
new_options = opts.merge(
230+
:operation => :"EstimatesApi.create_ecommerce_estimate",
231+
:header_params => header_params,
232+
:query_params => query_params,
233+
:form_params => form_params,
234+
:body => post_body,
235+
:auth_names => auth_names,
236+
:return_type => return_type
237+
)
238+
239+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
240+
if @api_client.config.debugging
241+
@api_client.config.logger.debug "API called: EstimatesApi#create_ecommerce_estimate\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
242+
end
243+
return data, status_code, headers
244+
end
245+
176246
# Create an ethereum estimate
177247
# Creates an ethereum estimate for the amount of CO2 to be compensated. An order in the `draft` state may be created based on the parameters, linked to the estimate.
178248
# @param create_ethereum_estimate_request [CreateEthereumEstimateRequest]

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.24.1"
34+
@user_agent = "patch-ruby/1.24.2"
3535
@default_headers = {
3636
'Content-Type' => 'application/json',
3737
'User-Agent' => @user_agent

lib/patch_ruby/models/create_air_shipping_estimate_request.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def initialize(attributes = {})
151151
if attributes.key?(:'emissions_scope')
152152
self.emissions_scope = attributes[:'emissions_scope']
153153
else
154-
self.emissions_scope = 'wtw'
154+
self.emissions_scope = 'ttw'
155155
end
156156

157157
if attributes.key?(:'project_id')

0 commit comments

Comments
 (0)