Skip to content

Commit

Permalink
1.20.0 - create order by vintage year (#60)
Browse files Browse the repository at this point in the history
* 1.20.0

* add spec

* fix nullable order spec

* add 1.20.0 changelog
  • Loading branch information
rmody3 committed Apr 18, 2022
1 parent 2dfc211 commit e7d12c9
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.20.0] - 2022-04-18

### Added

- Adds optional `vintage_year` field to `order` creation

## [1.19.0] - 2022-04-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
patch_ruby (1.19.0)
patch_ruby (1.20.0)
typhoeus (~> 1.0, >= 1.0.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/patch_ruby/api_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ApiClient
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
def initialize(config = Configuration.default)
@config = config
@user_agent = "patch-ruby/1.19.0"
@user_agent = "patch-ruby/1.20.0"
@default_headers = {
'Content-Type' => 'application/json',
'User-Agent' => @user_agent
Expand Down
47 changes: 43 additions & 4 deletions lib/patch_ruby/models/create_order_request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ class CreateOrderRequest

attr_accessor :state

attr_accessor :vintage_year

class EnumAttributeValidator
attr_reader :datatype
attr_reader :allowable_values
Expand Down Expand Up @@ -54,7 +56,8 @@ def self.attribute_map
:'total_price_cents_usd' => :'total_price_cents_usd',
:'project_id' => :'project_id',
:'metadata' => :'metadata',
:'state' => :'state'
:'state' => :'state',
:'vintage_year' => :'vintage_year'
}
end

Expand All @@ -70,13 +73,20 @@ def self.openapi_types
:'total_price_cents_usd' => :'Integer',
:'project_id' => :'String',
:'metadata' => :'Object',
:'state' => :'String'
:'state' => :'String',
:'vintage_year' => :'Integer'
}
end

# List of attributes with nullable: true
def self.openapi_nullable
Set.new([
:'mass_g',
:'total_price_cents_usd',
:'project_id',
:'metadata',
:'state',
:'vintage_year'
])
end

Expand Down Expand Up @@ -126,6 +136,10 @@ def initialize(attributes = {})
if attributes.key?(:'state')
self.state = attributes[:'state']
end

if attributes.key?(:'vintage_year')
self.vintage_year = attributes[:'vintage_year']
end
end

# Show invalid properties with the reasons. Usually used together with valid?
Expand All @@ -144,6 +158,14 @@ def list_invalid_properties
invalid_properties.push('invalid value for "total_price_cents_usd", must be greater than or equal to 1.')
end

if !@vintage_year.nil? && @vintage_year > 2100
invalid_properties.push('invalid value for "vintage_year", must be smaller than or equal to 2100.')
end

if !@vintage_year.nil? && @vintage_year < 1900
invalid_properties.push('invalid value for "vintage_year", must be greater than or equal to 1900.')
end

invalid_properties
end

Expand All @@ -155,6 +177,8 @@ def valid?
return false if !@total_price_cents_usd.nil? && @total_price_cents_usd < 1
state_validator = EnumAttributeValidator.new('String', ["draft", "placed"])
return false unless state_validator.valid?(@state)
return false if !@vintage_year.nil? && @vintage_year > 2100
return false if !@vintage_year.nil? && @vintage_year < 1900
true
end

Expand Down Expand Up @@ -192,6 +216,20 @@ def state=(state)
@state = state
end

# Custom attribute writer method with validation
# @param [Object] vintage_year Value to be assigned
def vintage_year=(vintage_year)
if !vintage_year.nil? && vintage_year > 2100
fail ArgumentError, 'invalid value for "vintage_year", must be smaller than or equal to 2100.'
end

if !vintage_year.nil? && vintage_year < 1900
fail ArgumentError, 'invalid value for "vintage_year", must be greater than or equal to 1900.'
end

@vintage_year = vintage_year
end

# Checks equality by comparing each attribute.
# @param [Object] Object to be compared
def ==(o)
Expand All @@ -201,7 +239,8 @@ def ==(o)
total_price_cents_usd == o.total_price_cents_usd &&
project_id == o.project_id &&
metadata == o.metadata &&
state == o.state
state == o.state &&
vintage_year == o.vintage_year
end

# @see the `==` method
Expand All @@ -213,7 +252,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Integer] Hash code
def hash
[mass_g, total_price_cents_usd, project_id, metadata, state].hash
[mass_g, total_price_cents_usd, project_id, metadata, state, vintage_year].hash
end

# Builds the object from hash
Expand Down
2 changes: 1 addition & 1 deletion lib/patch_ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module Patch
VERSION = '1.19.0'
VERSION = '1.20.0'
end
9 changes: 9 additions & 0 deletions spec/integration/orders_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,13 @@
cancel_order_response = Patch::Order.cancel_order(order_to_cancel_id)
expect(cancel_order_response.data.state).to eq 'cancelled'
end

it 'supports create with a vintage year' do
create_order_response =
Patch::Order.create_order(mass_g: 100, vintage_year: 2022)

expect(create_order_response.success).to eq true
expect(create_order_response.data.id).not_to be_nil
expect(create_order_response.data.mass_g).to eq(100)
end
end
4 changes: 3 additions & 1 deletion spec/models/create_order_request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
it_behaves_like "a generated class" do
let(:instance) { @instance }
let(:instance_hash) { { project_id: @instance.project_id, mass_g: @instance.mass_g, total_price_cents_usd: @instance.total_price_cents_usd, metadata: @instance.metadata } }
let(:nullable_properties) { Set.new }
let(:nullable_properties) do
Set.new(%i[mass_g total_price_cents_usd project_id metadata state vintage_year])
end
end

describe 'test an instance of CreateOrderRequest' do
Expand Down

0 comments on commit e7d12c9

Please sign in to comment.