portfoliomanager-rb 0.0.8 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 803ed8643d092d7c3e17d7706f311e569075d42952174b927d31f3461a3dcbfa
4
- data.tar.gz: f538035a20a63f4877096e9bd1ef0de78abdaccbea62e04f6f77ee3b7ce9ec14
3
+ metadata.gz: 78432e494e351cbc200fb88496fc1e4f021437447a89b70e0160a1ab7defd369
4
+ data.tar.gz: c5875d9df4762d1e10f5e46d213f634222fc5e0807d6ce679f290ab2b1edaada
5
5
  SHA512:
6
- metadata.gz: daa7e076fed10a4e42585de0c77f1a2b50e6aa2a8ddb0647e81322ba08939b36681a36f912a195b3c0831023dd332ed100d38fea126cee64f9122ee2e8929597
7
- data.tar.gz: dacaa0a1af858687237cdaa0b7ebc5be9c97e5bea516686bf32e7e90de41fa2eeacada993e80f4350f8b7f29eb561334a3a800d6588483402ff9703d1d62d0c4
6
+ metadata.gz: 278ad7658fe70310081dc42035c434d18d94fdf3c7dd1e69a29ef1dae042cc6d113e4bd8c11c7d62d780dcf2404358c706694b7eacff9b9ff4e7c5db209f43d3
7
+ data.tar.gz: 2ce87503dfe0eaa87b6707a2769c58411860c2f822db00ff0551fa12d7c4b2ec3e02b6fcb609150ffcdf3a35e03cc7b48ec914b9a2492264e999edcff1b7fa0b
data/CHANGELOG.md CHANGED
@@ -51,6 +51,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
51
  ### Changed
52
52
  - Fix value handling in `PortfolioManager::Xml::CustomFieldList::CustomField`.
53
53
 
54
+ ## [0.0.9] - 2024-06-12
55
+
56
+ ### Changed
57
+ - Fix mapping registry for `PortfolioManager::Xml::CustomFieldList::CustomField`.
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
+
54
64
  [Unreleased]: https://github.com/pnnl/portfoliomanager-rb/compare/v0.0.1...HEAD
55
65
  [0.0.1]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.1
56
66
  [0.0.2]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.2
@@ -59,4 +69,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
59
69
  [0.0.5]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.5
60
70
  [0.0.6]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.6
61
71
  [0.0.7]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.7
62
- [0.0.8]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.7
72
+ [0.0.8]: https://github.com/pnnl/portfoliomanager-rb/releases/tag/v0.0.8
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- portfoliomanager-rb (0.0.8)
4
+ portfoliomanager-rb (0.0.10)
5
5
  logger-application (~> 0.0.2)
6
6
  soap4r-ng (~> 2.0.4)
7
7
 
@@ -3410,7 +3410,6 @@ module PortfolioManager
3410
3410
  Registry.register(
3411
3411
  :class => PortfolioManager::Xml::CustomFieldList::CustomField,
3412
3412
  :schema_name => XSD::QName.new(nil, "customField"),
3413
- :is_anonymous => true,
3414
3413
  :schema_qualified => false,
3415
3414
  :schema_attribute => {
3416
3415
  XSD::QName.new(nil, "name") => "SOAP::SOAPString"
@@ -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 send_meter_share_request_from_test_environment(dx_account_id, property_id, access_level = "READ_WRITE")
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)
@@ -1,3 +1,3 @@
1
1
  module PortfolioManager
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: portfoliomanager-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Borkum