Skip to content

Commit 67cecb5

Browse files
authored
Adds the highlights field to the project response (#50)
* Adds the highlights field to the project response * Add assertion in integration test and update changelog * Update SDK to include icon_url
1 parent 3eb0843 commit 67cecb5

File tree

8 files changed

+298
-7
lines changed

8 files changed

+298
-7
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.15.2] - 2021-11-08
9+
10+
### Added
11+
12+
- Adds highlights to project responses
13+
814
## [1.15.1] - 2021-11-04
915

1016
### Added

Gemfile.lock

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

77
GEM
@@ -70,6 +70,7 @@ GEM
7070
zeitwerk (2.4.2)
7171

7272
PLATFORMS
73+
arm64-darwin-20
7374
x86_64-darwin-20
7475

7576
DEPENDENCIES

lib/patch_ruby.rb

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
require 'patch_ruby/models/estimate'
3232
require 'patch_ruby/models/estimate_list_response'
3333
require 'patch_ruby/models/estimate_response'
34+
require 'patch_ruby/models/highlight'
3435
require 'patch_ruby/models/meta_index_object'
3536
require 'patch_ruby/models/order'
3637
require 'patch_ruby/models/order_list_response'

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

lib/patch_ruby/models/highlight.rb

+264
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,264 @@
1+
=begin
2+
#Patch API V1
3+
4+
#The core API used to integrate with Patch's service
5+
6+
The version of the OpenAPI document: v1
7+
8+
Generated by: https://openapi-generator.tech
9+
OpenAPI Generator version: 5.2.1
10+
11+
=end
12+
13+
require 'date'
14+
require 'time'
15+
16+
module Patch
17+
class Highlight
18+
# A unique identifier for each highlight.
19+
attr_accessor :slug
20+
21+
# A short string that spotlights a characteristic about the project.
22+
attr_accessor :title
23+
24+
# A URL for the corresponding icon.
25+
attr_accessor :icon_url
26+
27+
# Attribute mapping from ruby-style variable name to JSON key.
28+
def self.attribute_map
29+
{
30+
:'slug' => :'slug',
31+
:'title' => :'title',
32+
:'icon_url' => :'icon_url'
33+
}
34+
end
35+
36+
# Returns all the JSON keys this model knows about
37+
def self.acceptable_attributes
38+
attribute_map.values
39+
end
40+
41+
# Attribute type mapping.
42+
def self.openapi_types
43+
{
44+
:'slug' => :'String',
45+
:'title' => :'String',
46+
:'icon_url' => :'String'
47+
}
48+
end
49+
50+
# List of attributes with nullable: true
51+
def self.openapi_nullable
52+
Set.new([
53+
])
54+
end
55+
56+
57+
# Allows models with corresponding API classes to delegate API operations to those API classes
58+
# Exposes Model.operation_id which delegates to ModelsApi.new.operation_id
59+
# Eg. Order.create_order delegates to OrdersApi.new.create_order
60+
def self.method_missing(message, *args, &block)
61+
if Object.const_defined?('Patch::HighlightsApi::OPERATIONS') && Patch::HighlightsApi::OPERATIONS.include?(message)
62+
Patch::HighlightsApi.new.send(message, *args)
63+
else
64+
super
65+
end
66+
end
67+
68+
# Initializes the object
69+
# @param [Hash] attributes Model attributes in the form of hash
70+
def initialize(attributes = {})
71+
if (!attributes.is_a?(Hash))
72+
fail ArgumentError, "The input argument (attributes) must be a hash in `Patch::Highlight` initialize method"
73+
end
74+
75+
# check to see if the attribute exists and convert string to symbol for hash key
76+
attributes = attributes.each_with_object({}) { |(k, v), h|
77+
if (!self.class.attribute_map.key?(k.to_sym))
78+
fail ArgumentError, "`#{k}` is not a valid attribute in `Patch::Highlight`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
79+
end
80+
h[k.to_sym] = v
81+
}
82+
83+
if attributes.key?(:'slug')
84+
self.slug = attributes[:'slug']
85+
end
86+
87+
if attributes.key?(:'title')
88+
self.title = attributes[:'title']
89+
end
90+
91+
if attributes.key?(:'icon_url')
92+
self.icon_url = attributes[:'icon_url']
93+
end
94+
end
95+
96+
# Show invalid properties with the reasons. Usually used together with valid?
97+
# @return Array for valid properties with the reasons
98+
def list_invalid_properties
99+
invalid_properties = Array.new
100+
if @slug.nil?
101+
invalid_properties.push('invalid value for "slug", slug cannot be nil.')
102+
end
103+
104+
if @title.nil?
105+
invalid_properties.push('invalid value for "title", title cannot be nil.')
106+
end
107+
108+
if @icon_url.nil?
109+
invalid_properties.push('invalid value for "icon_url", icon_url cannot be nil.')
110+
end
111+
112+
invalid_properties
113+
end
114+
115+
# Check to see if the all the properties in the model are valid
116+
# @return true if the model is valid
117+
def valid?
118+
return false if @slug.nil?
119+
return false if @title.nil?
120+
return false if @icon_url.nil?
121+
true
122+
end
123+
124+
# Checks equality by comparing each attribute.
125+
# @param [Object] Object to be compared
126+
def ==(o)
127+
return true if self.equal?(o)
128+
self.class == o.class &&
129+
slug == o.slug &&
130+
title == o.title &&
131+
icon_url == o.icon_url
132+
end
133+
134+
# @see the `==` method
135+
# @param [Object] Object to be compared
136+
def eql?(o)
137+
self == o
138+
end
139+
140+
# Calculates hash code according to all attributes.
141+
# @return [Integer] Hash code
142+
def hash
143+
[slug, title, icon_url].hash
144+
end
145+
146+
# Builds the object from hash
147+
# @param [Hash] attributes Model attributes in the form of hash
148+
# @return [Object] Returns the model itself
149+
def self.build_from_hash(attributes)
150+
new.build_from_hash(attributes)
151+
end
152+
153+
# Builds the object from hash
154+
# @param [Hash] attributes Model attributes in the form of hash
155+
# @return [Object] Returns the model itself
156+
def build_from_hash(attributes)
157+
return nil unless attributes.is_a?(Hash)
158+
self.class.openapi_types.each_pair do |key, type|
159+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
160+
self.send("#{key}=", nil)
161+
elsif type =~ /\AArray<(.*)>/i
162+
# check to ensure the input is an array given that the attribute
163+
# is documented as an array but the input is not
164+
if attributes[self.class.attribute_map[key]].is_a?(Array)
165+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
166+
end
167+
elsif !attributes[self.class.attribute_map[key]].nil?
168+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
169+
end
170+
end
171+
172+
self
173+
end
174+
175+
# Deserializes the data based on type
176+
# @param string type Data type
177+
# @param string value Value to be deserialized
178+
# @return [Object] Deserialized data
179+
def _deserialize(type, value)
180+
case type.to_sym
181+
when :Time
182+
Time.parse(value)
183+
when :Date
184+
Date.parse(value)
185+
when :String
186+
value.to_s
187+
when :Integer
188+
value.to_i
189+
when :Float
190+
value.to_f
191+
when :Boolean
192+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
193+
true
194+
else
195+
false
196+
end
197+
when :Object
198+
# generic object (usually a Hash), return directly
199+
value
200+
when /\AArray<(?<inner_type>.+)>\z/
201+
inner_type = Regexp.last_match[:inner_type]
202+
value.map { |v| _deserialize(inner_type, v) }
203+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
204+
k_type = Regexp.last_match[:k_type]
205+
v_type = Regexp.last_match[:v_type]
206+
{}.tap do |hash|
207+
value.each do |k, v|
208+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
209+
end
210+
end
211+
else # model
212+
# models (e.g. Pet) or oneOf
213+
klass = Patch.const_get(type)
214+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
215+
end
216+
end
217+
218+
# Returns the string representation of the object
219+
# @return [String] String presentation of the object
220+
def to_s
221+
to_hash.to_s
222+
end
223+
224+
# to_body is an alias to to_hash (backward compatibility)
225+
# @return [Hash] Returns the object in the form of hash
226+
def to_body
227+
to_hash
228+
end
229+
230+
# Returns the object in the form of hash
231+
# @return [Hash] Returns the object in the form of hash
232+
def to_hash
233+
hash = {}
234+
self.class.attribute_map.each_pair do |attr, param|
235+
value = self.send(attr)
236+
if value.nil?
237+
is_nullable = self.class.openapi_nullable.include?(attr)
238+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
239+
end
240+
241+
hash[param] = _to_hash(value)
242+
end
243+
hash
244+
end
245+
246+
# Outputs non-array value in the form of hash
247+
# For object, use to_hash. Otherwise, just return the value
248+
# @param [Object] value Any valid value
249+
# @return [Hash] Returns the value in the form of hash
250+
def _to_hash(value)
251+
if value.is_a?(Array)
252+
value.compact.map { |v| _to_hash(v) }
253+
elsif value.is_a?(Hash)
254+
{}.tap do |hash|
255+
value.each { |k, v| hash[k] = _to_hash(v) }
256+
end
257+
elsif value.respond_to? :to_hash
258+
value.to_hash
259+
else
260+
value
261+
end
262+
end
263+
end
264+
end

lib/patch_ruby/models/project.rb

+21-4
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ class Project
7171

7272
attr_accessor :technology_type
7373

74+
# An array of objects containing the highlight's slug and title. A highlight's title is a short string that spotlights a characteristic about the project.
75+
attr_accessor :highlights
76+
7477
class EnumAttributeValidator
7578
attr_reader :datatype
7679
attr_reader :allowable_values
@@ -114,7 +117,8 @@ def self.attribute_map
114117
:'standard' => :'standard',
115118
:'sdgs' => :'sdgs',
116119
:'tagline' => :'tagline',
117-
:'technology_type' => :'technology_type'
120+
:'technology_type' => :'technology_type',
121+
:'highlights' => :'highlights'
118122
}
119123
end
120124

@@ -144,7 +148,8 @@ def self.openapi_types
144148
:'standard' => :'Standard',
145149
:'sdgs' => :'Array<Sdg>',
146150
:'tagline' => :'String',
147-
:'technology_type' => :'TechnologyType'
151+
:'technology_type' => :'TechnologyType',
152+
:'highlights' => :'Array<Highlight>'
148153
}
149154
end
150155

@@ -266,6 +271,12 @@ def initialize(attributes = {})
266271
if attributes.key?(:'technology_type')
267272
self.technology_type = attributes[:'technology_type']
268273
end
274+
275+
if attributes.key?(:'highlights')
276+
if (value = attributes[:'highlights']).is_a?(Array)
277+
self.highlights = value
278+
end
279+
end
269280
end
270281

271282
# Show invalid properties with the reasons. Usually used together with valid?
@@ -308,6 +319,10 @@ def list_invalid_properties
308319
invalid_properties.push('invalid value for "technology_type", technology_type cannot be nil.')
309320
end
310321

322+
if @highlights.nil?
323+
invalid_properties.push('invalid value for "highlights", highlights cannot be nil.')
324+
end
325+
311326
invalid_properties
312327
end
313328

@@ -325,6 +340,7 @@ def valid?
325340
return false if @average_price_per_tonne_cents_usd.nil?
326341
return false if @remaining_mass_g.nil?
327342
return false if @technology_type.nil?
343+
return false if @highlights.nil?
328344
true
329345
end
330346

@@ -361,7 +377,8 @@ def ==(o)
361377
standard == o.standard &&
362378
sdgs == o.sdgs &&
363379
tagline == o.tagline &&
364-
technology_type == o.technology_type
380+
technology_type == o.technology_type &&
381+
highlights == o.highlights
365382
end
366383

367384
# @see the `==` method
@@ -373,7 +390,7 @@ def eql?(o)
373390
# Calculates hash code according to all attributes.
374391
# @return [Integer] Hash code
375392
def hash
376-
[id, production, name, description, type, mechanism, country, state, latitude, longitude, developer, photos, average_price_per_tonne_cents_usd, remaining_mass_g, verifier, standard, sdgs, tagline, technology_type].hash
393+
[id, production, name, description, type, mechanism, country, state, latitude, longitude, developer, photos, average_price_per_tonne_cents_usd, remaining_mass_g, verifier, standard, sdgs, tagline, technology_type, highlights].hash
377394
end
378395

379396
# 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.15.1'
14+
VERSION = '1.15.2'
1515
end

0 commit comments

Comments
 (0)