Skip to content

Commit b7623d1

Browse files
authored
Adds the verifier field to the project response (#49)
* Add verifier field * Add verifier field
1 parent 4cc8d07 commit b7623d1

File tree

8 files changed

+24
-9
lines changed

8 files changed

+24
-9
lines changed

.github/workflows/health_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Notify slack
3131
uses: kpritam/slack-job-status-action@v1
3232
with:
33-
if: failure()
33+
if: ${{ failure() }}
3434
job-status: ${{ job.status }}
3535
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
3636
channel: eng-notifications

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.1] - 2021-11-04
9+
10+
### Added
11+
12+
- Adds verifier to project responses
13+
814
## [1.15.0] - 2021-10-04
915

1016
### Added

Gemfile.lock

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

77
GEM
@@ -18,7 +18,7 @@ GEM
1818
coderay (1.1.3)
1919
concurrent-ruby (1.1.9)
2020
diff-lcs (1.4.4)
21-
ethon (0.14.0)
21+
ethon (0.15.0)
2222
ffi (>= 1.15.0)
2323
factory_bot (6.2.0)
2424
activesupport (>= 5.0.0)

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

lib/patch_ruby/models/order.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Order
3030
# The current state of the order.
3131
attr_accessor :state
3232

33-
# The current state of the allocated carbon offsets of the order.
33+
# DEPRECATED. Indicates if the order has been fully allocated to projects.
3434
attr_accessor :allocation_state
3535

3636
# The total price in cents USD of the carbon offsets purchased through this order.

lib/patch_ruby/models/project.rb

+12-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ class Project
5757
# The remaining mass in grams available for purchase for this project.
5858
attr_accessor :remaining_mass_g
5959

60-
# An object returning the Standard associated with this project.
60+
# The name of the project verifier. A verifier is the organization that verifies the calculations of the actual amount of greenhouse gas emissions that have been avoided or sequestered through implementation of the project.
61+
attr_accessor :verifier
62+
63+
# An object returning the Standard associated with this project. Standards provide guidance on GHG quantification, monitoring, and reporting. Standards can include protocols/methodologies and guidance documents.
6164
attr_accessor :standard
6265

6366
# An array returning the UN Sustainable Development Goals associated with this project.
@@ -107,6 +110,7 @@ def self.attribute_map
107110
:'photos' => :'photos',
108111
:'average_price_per_tonne_cents_usd' => :'average_price_per_tonne_cents_usd',
109112
:'remaining_mass_g' => :'remaining_mass_g',
113+
:'verifier' => :'verifier',
110114
:'standard' => :'standard',
111115
:'sdgs' => :'sdgs',
112116
:'tagline' => :'tagline',
@@ -136,6 +140,7 @@ def self.openapi_types
136140
:'photos' => :'Array<Photo>',
137141
:'average_price_per_tonne_cents_usd' => :'Integer',
138142
:'remaining_mass_g' => :'Integer',
143+
:'verifier' => :'String',
139144
:'standard' => :'Standard',
140145
:'sdgs' => :'Array<Sdg>',
141146
:'tagline' => :'String',
@@ -240,6 +245,10 @@ def initialize(attributes = {})
240245
self.remaining_mass_g = attributes[:'remaining_mass_g']
241246
end
242247

248+
if attributes.key?(:'verifier')
249+
self.verifier = attributes[:'verifier']
250+
end
251+
243252
if attributes.key?(:'standard')
244253
self.standard = attributes[:'standard']
245254
end
@@ -348,6 +357,7 @@ def ==(o)
348357
photos == o.photos &&
349358
average_price_per_tonne_cents_usd == o.average_price_per_tonne_cents_usd &&
350359
remaining_mass_g == o.remaining_mass_g &&
360+
verifier == o.verifier &&
351361
standard == o.standard &&
352362
sdgs == o.sdgs &&
353363
tagline == o.tagline &&
@@ -363,7 +373,7 @@ def eql?(o)
363373
# Calculates hash code according to all attributes.
364374
# @return [Integer] Hash code
365375
def hash
366-
[id, production, name, description, type, mechanism, country, state, latitude, longitude, developer, photos, average_price_per_tonne_cents_usd, remaining_mass_g, standard, sdgs, tagline, technology_type].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
367377
end
368378

369379
# 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.0'
14+
VERSION = '1.15.1'
1515
end

spec/integration/projects_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
expect(project.average_price_per_tonne_cents_usd)
5050
.to be_an_instance_of(Integer)
5151
expect(project.remaining_mass_g).to be_an_instance_of(Integer)
52-
expect(project.state).to be_an_instance_of(String)
5352
expect(project.longitude).to be_an_instance_of(Float)
5453
expect(project.latitude).to be_an_instance_of(Float)
5554

0 commit comments

Comments
 (0)