Skip to content

Commit 8770ce7

Browse files
authored
1.18.0 (#57)
* 1.18.0 * ingore cancel draft order specs temporarily, add spec for creating draft order
1 parent efe1b4c commit 8770ce7

File tree

7 files changed

+68
-10
lines changed

7 files changed

+68
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.18.0] - 2022-03-22
9+
### Changed
10+
11+
- Adds optional `state` field to `order` creation
12+
813
## [1.17.0] - 2022-01-11
914

1015
### Changed

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

77
GEM

lib/patch_ruby/api/orders_api.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def cancel_order_with_http_info(id, opts = {})
9292
end
9393

9494
# Creates an order
95-
# Creates an order in the `placed` state. To create a `draft` order, create an estimate first.
95+
# Creates an order in the `placed` or `draft` state.
9696
# @param create_order_request [CreateOrderRequest]
9797
# @param [Hash] opts the optional parameters
9898
# @return [OrderResponse]
@@ -103,7 +103,7 @@ def create_order(create_order_request = {}, opts = {})
103103
end
104104

105105
# Creates an order
106-
# Creates an order in the `placed` state. To create a `draft` order, create an estimate first.
106+
# Creates an order in the `placed` or `draft` state.
107107
# @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

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

lib/patch_ruby/models/create_order_request.rb

+47-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,38 @@ class CreateOrderRequest
2323

2424
attr_accessor :metadata
2525

26+
attr_accessor :state
27+
28+
class EnumAttributeValidator
29+
attr_reader :datatype
30+
attr_reader :allowable_values
31+
32+
def initialize(datatype, allowable_values)
33+
@allowable_values = allowable_values.map do |value|
34+
case datatype.to_s
35+
when /Integer/i
36+
value.to_i
37+
when /Float/i
38+
value.to_f
39+
else
40+
value
41+
end
42+
end
43+
end
44+
45+
def valid?(value)
46+
!value || allowable_values.include?(value)
47+
end
48+
end
49+
2650
# Attribute mapping from ruby-style variable name to JSON key.
2751
def self.attribute_map
2852
{
2953
:'mass_g' => :'mass_g',
3054
:'total_price_cents_usd' => :'total_price_cents_usd',
3155
:'project_id' => :'project_id',
32-
:'metadata' => :'metadata'
56+
:'metadata' => :'metadata',
57+
:'state' => :'state'
3358
}
3459
end
3560

@@ -44,7 +69,8 @@ def self.openapi_types
4469
:'mass_g' => :'Integer',
4570
:'total_price_cents_usd' => :'Integer',
4671
:'project_id' => :'String',
47-
:'metadata' => :'Object'
72+
:'metadata' => :'Object',
73+
:'state' => :'String'
4874
}
4975
end
5076

@@ -96,6 +122,10 @@ def initialize(attributes = {})
96122
if attributes.key?(:'metadata')
97123
self.metadata = attributes[:'metadata']
98124
end
125+
126+
if attributes.key?(:'state')
127+
self.state = attributes[:'state']
128+
end
99129
end
100130

101131
# Show invalid properties with the reasons. Usually used together with valid?
@@ -123,6 +153,8 @@ def valid?
123153
return false if !@mass_g.nil? && @mass_g > 100000000000
124154
return false if !@mass_g.nil? && @mass_g < 0
125155
return false if !@total_price_cents_usd.nil? && @total_price_cents_usd < 1
156+
state_validator = EnumAttributeValidator.new('String', ["draft", "placed"])
157+
return false unless state_validator.valid?(@state)
126158
true
127159
end
128160

@@ -150,6 +182,16 @@ def total_price_cents_usd=(total_price_cents_usd)
150182
@total_price_cents_usd = total_price_cents_usd
151183
end
152184

185+
# Custom attribute writer method checking allowed values (enum).
186+
# @param [Object] state Object to be assigned
187+
def state=(state)
188+
validator = EnumAttributeValidator.new('String', ["draft", "placed"])
189+
unless validator.valid?(state)
190+
fail ArgumentError, "invalid value for \"state\", must be one of #{validator.allowable_values}."
191+
end
192+
@state = state
193+
end
194+
153195
# Checks equality by comparing each attribute.
154196
# @param [Object] Object to be compared
155197
def ==(o)
@@ -158,7 +200,8 @@ def ==(o)
158200
mass_g == o.mass_g &&
159201
total_price_cents_usd == o.total_price_cents_usd &&
160202
project_id == o.project_id &&
161-
metadata == o.metadata
203+
metadata == o.metadata &&
204+
state == o.state
162205
end
163206

164207
# @see the `==` method
@@ -170,7 +213,7 @@ def eql?(o)
170213
# Calculates hash code according to all attributes.
171214
# @return [Integer] Hash code
172215
def hash
173-
[mass_g, total_price_cents_usd, project_id, metadata].hash
216+
[mass_g, total_price_cents_usd, project_id, metadata, state].hash
174217
end
175218

176219
# Builds the object from hash

lib/patch_ruby/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module Patch
14-
VERSION = '1.17.1'
14+
VERSION = '1.18.0'
1515
end

spec/integration/orders_spec.rb

+11-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,17 @@
8484
.to all(have_key(:user))
8585
end
8686

87-
it 'supports place and cancel for orders created via an estimate' do
87+
it 'supports creation in draft state' do
88+
create_order_response =
89+
Patch::Order.create_order(mass_g: 100, state: "draft")
90+
91+
expect(create_order_response.success).to eq true
92+
expect(create_order_response.data.id).not_to be_nil
93+
expect(create_order_response.data.mass_g).to eq(100)
94+
expect(create_order_response.data.state).to eq("draft")
95+
end
96+
97+
xit 'supports place and cancel for orders created via an estimate' do
8898
create_estimate_to_place_response = Patch::Estimate.create_mass_estimate(mass_g: 100, create_order: true)
8999
order_to_place_id = create_estimate_to_place_response.data.order.id
90100

0 commit comments

Comments
 (0)