Skip to content

Commit 564d897

Browse files
author
Jeremy Oustrich
authored
API version 2. See https://docs.patch.io/#/changelog for changes (#72)
1 parent 9c224a5 commit 564d897

File tree

69 files changed

+2093
-544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2093
-544
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
ruby-version: [3.0.2, 2.7.4, 2.6.8]
15+
ruby-version: [3.1.2, 3.0.2, 2.7.4]
1616
max-parallel: 1
1717

1818
steps:

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.2)
4+
patch_ruby (2.0.0)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

lib/patch_ruby.rb

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
=begin
2-
#Patch API V1
2+
#Patch API V2
33
44
#The core API used to integrate with Patch's service
55
6-
The version of the OpenAPI document: v1
6+
The version of the OpenAPI document: 2
77
88
Generated by: https://openapi-generator.tech
99
OpenAPI Generator version: 5.3.1
@@ -17,21 +17,23 @@
1717
require 'patch_ruby/configuration'
1818

1919
# Models
20-
require 'patch_ruby/models/allocation'
2120
require 'patch_ruby/models/create_air_shipping_estimate_request'
2221
require 'patch_ruby/models/create_bitcoin_estimate_request'
2322
require 'patch_ruby/models/create_ecommerce_estimate_request'
2423
require 'patch_ruby/models/create_ethereum_estimate_request'
2524
require 'patch_ruby/models/create_flight_estimate_request'
2625
require 'patch_ruby/models/create_hotel_estimate_request'
2726
require 'patch_ruby/models/create_mass_estimate_request'
27+
require 'patch_ruby/models/create_order_line_item_request'
2828
require 'patch_ruby/models/create_order_request'
2929
require 'patch_ruby/models/create_rail_shipping_estimate_request'
3030
require 'patch_ruby/models/create_road_shipping_estimate_request'
3131
require 'patch_ruby/models/create_sea_shipping_estimate_request'
3232
require 'patch_ruby/models/create_shipping_estimate_request'
3333
require 'patch_ruby/models/create_success_response'
3434
require 'patch_ruby/models/create_vehicle_estimate_request'
35+
require 'patch_ruby/models/delete_order_line_item_response'
36+
require 'patch_ruby/models/delete_order_response'
3537
require 'patch_ruby/models/error_response'
3638
require 'patch_ruby/models/estimate'
3739
require 'patch_ruby/models/estimate_list_response'
@@ -40,9 +42,10 @@
4042
require 'patch_ruby/models/inventory'
4143
require 'patch_ruby/models/meta_index_object'
4244
require 'patch_ruby/models/order'
43-
require 'patch_ruby/models/order_inventory'
44-
require 'patch_ruby/models/order_inventory_project'
4545
require 'patch_ruby/models/order_issued_to'
46+
require 'patch_ruby/models/order_line_item'
47+
require 'patch_ruby/models/order_line_item_project'
48+
require 'patch_ruby/models/order_line_item_response'
4649
require 'patch_ruby/models/order_list_response'
4750
require 'patch_ruby/models/order_response'
4851
require 'patch_ruby/models/parent_technology_type'
@@ -55,9 +58,11 @@
5558
require 'patch_ruby/models/standard'
5659
require 'patch_ruby/models/technology_type'
5760
require 'patch_ruby/models/technology_type_list_response'
61+
require 'patch_ruby/models/update_order_line_item_request'
5862

5963
# APIs
6064
require 'patch_ruby/api/estimates_api'
65+
require 'patch_ruby/api/order_line_items_api'
6166
require 'patch_ruby/api/orders_api'
6267
require 'patch_ruby/api/projects_api'
6368
require 'patch_ruby/api/technology_types_api'

lib/patch_ruby/api/estimates_api.rb

+72-2
Large diffs are not rendered by default.
+269
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,269 @@
1+
=begin
2+
#Patch API V2
3+
4+
#The core API used to integrate with Patch's service
5+
6+
The version of the OpenAPI document: 2
7+
8+
Generated by: https://openapi-generator.tech
9+
OpenAPI Generator version: 5.3.1
10+
11+
=end
12+
13+
require 'cgi'
14+
15+
module Patch
16+
class OrderLineItemsApi
17+
OPERATIONS = [
18+
:create_order_line_item,
19+
:delete_order_line_item,
20+
:update_order_line_item,
21+
]
22+
23+
attr_accessor :api_client
24+
25+
def initialize(api_client = ApiClient.default)
26+
@api_client = api_client
27+
end
28+
# Creates an order line item
29+
# Creates a line item on an order that is in the `draft` state.
30+
# @param order_id [String]
31+
# @param create_order_line_item_request [CreateOrderLineItemRequest]
32+
# @param [Hash] opts the optional parameters
33+
# @option opts [Integer] :patch_version
34+
# @return [OrderLineItemResponse]
35+
def create_order_line_item(order_id, create_order_line_item_request = {}, opts = {})
36+
_create_order_line_item_request = Patch::CreateOrderLineItemRequest.new(create_order_line_item_request)
37+
data, _status_code, _headers = create_order_line_item_with_http_info(order_id, _create_order_line_item_request, opts)
38+
data
39+
end
40+
41+
# Creates an order line item
42+
# Creates a line item on an order that is in the `draft` state.
43+
# @param order_id [String]
44+
# @param create_order_line_item_request [CreateOrderLineItemRequest]
45+
# @param [Hash] opts the optional parameters
46+
# @option opts [Integer] :patch_version
47+
# @return [Array<(OrderLineItemResponse, Integer, Hash)>] OrderLineItemResponse data, response status code and response headers
48+
def create_order_line_item_with_http_info(order_id, create_order_line_item_request, opts = {})
49+
if @api_client.config.debugging
50+
@api_client.config.logger.debug 'Calling API: OrderLineItemsApi.create_order_line_item ...'
51+
end
52+
# verify the required parameter 'order_id' is set
53+
if @api_client.config.client_side_validation && order_id.nil?
54+
fail ArgumentError, "Missing the required parameter 'order_id' when calling OrderLineItemsApi.create_order_line_item"
55+
end
56+
# verify the required parameter 'create_order_line_item_request' is set
57+
if @api_client.config.client_side_validation && create_order_line_item_request.nil?
58+
fail ArgumentError, "Missing the required parameter 'create_order_line_item_request' when calling OrderLineItemsApi.create_order_line_item"
59+
end
60+
# resource path
61+
local_var_path = '/v1/orders/{order_id}/line_items'.sub('{' + 'order_id' + '}', CGI.escape(order_id.to_s))
62+
63+
# query parameters
64+
query_params = opts[:query_params] || {}
65+
66+
# header parameters
67+
header_params = opts[:header_params] || {}
68+
69+
# HTTP header 'Accept' (if needed)
70+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
71+
# HTTP header 'Content-Type'
72+
content_type = @api_client.select_header_content_type(['application/json'])
73+
if !content_type.nil?
74+
header_params['Content-Type'] = content_type
75+
end
76+
header_params['Patch-Version'] = 2
77+
header_params[:'Patch-Version'] = opts[:'patch_version'] if !opts[:'patch_version'].nil?
78+
79+
# form parameters
80+
form_params = opts[:form_params] || {}
81+
82+
# http body (model)
83+
post_body = opts[:debug_body] || @api_client.object_to_http_body(create_order_line_item_request)
84+
85+
# return_type
86+
return_type = opts[:debug_return_type] || 'OrderLineItemResponse'
87+
88+
# auth_names
89+
auth_names = opts[:debug_auth_names] || ['bearer_auth']
90+
91+
new_options = opts.merge(
92+
:operation => :"OrderLineItemsApi.create_order_line_item",
93+
:header_params => header_params,
94+
:query_params => query_params,
95+
:form_params => form_params,
96+
:body => post_body,
97+
:auth_names => auth_names,
98+
:return_type => return_type
99+
)
100+
101+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
102+
if @api_client.config.debugging
103+
@api_client.config.logger.debug "API called: OrderLineItemsApi#create_order_line_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
104+
end
105+
return data, status_code, headers
106+
end
107+
108+
# Deletes an order line item
109+
# Deletes a line item on an order that is in the `draft` state.
110+
# @param order_id [String]
111+
# @param serial_number [String]
112+
# @param [Hash] opts the optional parameters
113+
# @option opts [Integer] :patch_version
114+
# @return [DeleteOrderLineItemResponse]
115+
def delete_order_line_item(order_id, serial_number, opts = {})
116+
117+
data, _status_code, _headers = delete_order_line_item_with_http_info(order_id, serial_number, opts)
118+
data
119+
end
120+
121+
# Deletes an order line item
122+
# Deletes a line item on an order that is in the `draft` state.
123+
# @param order_id [String]
124+
# @param serial_number [String]
125+
# @param [Hash] opts the optional parameters
126+
# @option opts [Integer] :patch_version
127+
# @return [Array<(DeleteOrderLineItemResponse, Integer, Hash)>] DeleteOrderLineItemResponse data, response status code and response headers
128+
def delete_order_line_item_with_http_info(order_id, serial_number, opts = {})
129+
if @api_client.config.debugging
130+
@api_client.config.logger.debug 'Calling API: OrderLineItemsApi.delete_order_line_item ...'
131+
end
132+
# verify the required parameter 'order_id' is set
133+
if @api_client.config.client_side_validation && order_id.nil?
134+
fail ArgumentError, "Missing the required parameter 'order_id' when calling OrderLineItemsApi.delete_order_line_item"
135+
end
136+
# verify the required parameter 'serial_number' is set
137+
if @api_client.config.client_side_validation && serial_number.nil?
138+
fail ArgumentError, "Missing the required parameter 'serial_number' when calling OrderLineItemsApi.delete_order_line_item"
139+
end
140+
# resource path
141+
local_var_path = '/v1/orders/{order_id}/line_items/{serial_number}'.sub('{' + 'order_id' + '}', CGI.escape(order_id.to_s)).sub('{' + 'serial_number' + '}', CGI.escape(serial_number.to_s))
142+
143+
# query parameters
144+
query_params = opts[:query_params] || {}
145+
146+
# header parameters
147+
header_params = opts[:header_params] || {}
148+
149+
# HTTP header 'Accept' (if needed)
150+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
151+
header_params['Patch-Version'] = 2
152+
header_params[:'Patch-Version'] = opts[:'patch_version'] if !opts[:'patch_version'].nil?
153+
154+
# form parameters
155+
form_params = opts[:form_params] || {}
156+
157+
# http body (model)
158+
post_body = opts[:debug_body]
159+
160+
# return_type
161+
return_type = opts[:debug_return_type] || 'DeleteOrderLineItemResponse'
162+
163+
# auth_names
164+
auth_names = opts[:debug_auth_names] || ['bearer_auth']
165+
166+
new_options = opts.merge(
167+
:operation => :"OrderLineItemsApi.delete_order_line_item",
168+
:header_params => header_params,
169+
:query_params => query_params,
170+
:form_params => form_params,
171+
:body => post_body,
172+
:auth_names => auth_names,
173+
:return_type => return_type
174+
)
175+
176+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
177+
if @api_client.config.debugging
178+
@api_client.config.logger.debug "API called: OrderLineItemsApi#delete_order_line_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
179+
end
180+
return data, status_code, headers
181+
end
182+
183+
# Updates an order line item
184+
# Updates a line item on an order that is in the `draft` state.
185+
# @param order_id [String]
186+
# @param serial_number [String]
187+
# @param update_order_line_item_request [UpdateOrderLineItemRequest]
188+
# @param [Hash] opts the optional parameters
189+
# @option opts [Integer] :patch_version
190+
# @return [OrderLineItemResponse]
191+
def update_order_line_item(order_id, serial_number, update_order_line_item_request = {}, opts = {})
192+
_update_order_line_item_request = Patch::UpdateOrderLineItemRequest.new(update_order_line_item_request)
193+
data, _status_code, _headers = update_order_line_item_with_http_info(order_id, serial_number, _update_order_line_item_request, opts)
194+
data
195+
end
196+
197+
# Updates an order line item
198+
# Updates a line item on an order that is in the `draft` state.
199+
# @param order_id [String]
200+
# @param serial_number [String]
201+
# @param update_order_line_item_request [UpdateOrderLineItemRequest]
202+
# @param [Hash] opts the optional parameters
203+
# @option opts [Integer] :patch_version
204+
# @return [Array<(OrderLineItemResponse, Integer, Hash)>] OrderLineItemResponse data, response status code and response headers
205+
def update_order_line_item_with_http_info(order_id, serial_number, update_order_line_item_request, opts = {})
206+
if @api_client.config.debugging
207+
@api_client.config.logger.debug 'Calling API: OrderLineItemsApi.update_order_line_item ...'
208+
end
209+
# verify the required parameter 'order_id' is set
210+
if @api_client.config.client_side_validation && order_id.nil?
211+
fail ArgumentError, "Missing the required parameter 'order_id' when calling OrderLineItemsApi.update_order_line_item"
212+
end
213+
# verify the required parameter 'serial_number' is set
214+
if @api_client.config.client_side_validation && serial_number.nil?
215+
fail ArgumentError, "Missing the required parameter 'serial_number' when calling OrderLineItemsApi.update_order_line_item"
216+
end
217+
# verify the required parameter 'update_order_line_item_request' is set
218+
if @api_client.config.client_side_validation && update_order_line_item_request.nil?
219+
fail ArgumentError, "Missing the required parameter 'update_order_line_item_request' when calling OrderLineItemsApi.update_order_line_item"
220+
end
221+
# resource path
222+
local_var_path = '/v1/orders/{order_id}/line_items/{serial_number}'.sub('{' + 'order_id' + '}', CGI.escape(order_id.to_s)).sub('{' + 'serial_number' + '}', CGI.escape(serial_number.to_s))
223+
224+
# query parameters
225+
query_params = opts[:query_params] || {}
226+
227+
# header parameters
228+
header_params = opts[:header_params] || {}
229+
230+
# HTTP header 'Accept' (if needed)
231+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
232+
# HTTP header 'Content-Type'
233+
content_type = @api_client.select_header_content_type(['application/json'])
234+
if !content_type.nil?
235+
header_params['Content-Type'] = content_type
236+
end
237+
header_params['Patch-Version'] = 2
238+
header_params[:'Patch-Version'] = opts[:'patch_version'] if !opts[:'patch_version'].nil?
239+
240+
# form parameters
241+
form_params = opts[:form_params] || {}
242+
243+
# http body (model)
244+
post_body = opts[:debug_body] || @api_client.object_to_http_body(update_order_line_item_request)
245+
246+
# return_type
247+
return_type = opts[:debug_return_type] || 'OrderLineItemResponse'
248+
249+
# auth_names
250+
auth_names = opts[:debug_auth_names] || ['bearer_auth']
251+
252+
new_options = opts.merge(
253+
:operation => :"OrderLineItemsApi.update_order_line_item",
254+
:header_params => header_params,
255+
:query_params => query_params,
256+
:form_params => form_params,
257+
:body => post_body,
258+
:auth_names => auth_names,
259+
:return_type => return_type
260+
)
261+
262+
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
263+
if @api_client.config.debugging
264+
@api_client.config.logger.debug "API called: OrderLineItemsApi#update_order_line_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
265+
end
266+
return data, status_code, headers
267+
end
268+
end
269+
end

0 commit comments

Comments
 (0)