portfoliomanager-rb 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/lib/portfolio_manager/services/connection.rb +1 -1
- data/lib/portfolio_manager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78432e494e351cbc200fb88496fc1e4f021437447a89b70e0160a1ab7defd369
|
4
|
+
data.tar.gz: c5875d9df4762d1e10f5e46d213f634222fc5e0807d6ce679f290ab2b1edaada
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 278ad7658fe70310081dc42035c434d18d94fdf3c7dd1e69a29ef1dae042cc6d113e4bd8c11c7d62d780dcf2404358c706694b7eacff9b9ff4e7c5db209f43d3
|
7
|
+
data.tar.gz: 2ce87503dfe0eaa87b6707a2769c58411860c2f822db00ff0551fa12d7c4b2ec3e02b6fcb609150ffcdf3a35e03cc7b48ec914b9a2492264e999edcff1b7fa0b
|
data/CHANGELOG.md
CHANGED
@@ -56,6 +56,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
56
56
|
### Changed
|
57
57
|
- Fix mapping registry for `PortfolioManager::Xml::CustomFieldList::CustomField`.
|
58
58
|
|
59
|
+
## [0.0.10] - 2024-06-12
|
60
|
+
|
61
|
+
### Changed
|
62
|
+
- Fix name of `PortfolioManager::Services::Connection::SimulatingConnectionShareRequests::Test#send_property_share_request_from_test_environment` method.
|
63
|
+
|
59
64
|
[Unreleased]: https://github.com/pnnl/portfoliomanager-rb/compare/v0.0.1...HEAD
|
60
65
|
[0.0.1]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.1
|
61
66
|
[0.0.2]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.2
|
@@ -66,3 +71,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
66
71
|
[0.0.7]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.7
|
67
72
|
[0.0.8]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.8
|
68
73
|
[0.0.9]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.9
|
74
|
+
[0.0.10]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.10
|
data/Gemfile.lock
CHANGED
@@ -297,7 +297,7 @@ module PortfolioManager
|
|
297
297
|
# @raise [PortfolioManager::HTTPBasicCredentialsNotFoundError]
|
298
298
|
# @raise [PortfolioManager::HTTPResponseError]
|
299
299
|
# @see https://portfoliomanager.energystar.gov/webservices/home/test/api/connection/inviteProperty/post
|
300
|
-
def
|
300
|
+
def send_property_share_request_from_test_environment(dx_account_id, property_id, access_level = "READ_WRITE")
|
301
301
|
request(Net::HTTP::Post, path_for("invite", "account", dx_account_id, "property", property_id), {
|
302
302
|
"accessLevel" => access_level,
|
303
303
|
}, {}, nil, nil, PortfolioManager::Xml::ResponseType, basic_auth: true)
|