panda_doc 0.13.0 → 0.13.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5112e058fffb7e215f11d5f45779140776f3a1fc8a71bdf3f8982786540684c2
4
- data.tar.gz: 192bbe2e32c98464054b50c922f522366a7b000d17784cc1f7e55e5db299eff4
3
+ metadata.gz: ea092eb81ffea5fd05fc07db1e23e5d1df5b67270a357936fa08f8f4d8cb7a36
4
+ data.tar.gz: 95dc6c4ba632984f35a73ed3f4bcb8e2f0d4ace085b067cbc3fba66f57b19d34
5
5
  SHA512:
6
- metadata.gz: d93d73114d02127e6371da588265d0b97509a56abd7399d965ba0a4dd267c54f3f2706d2b4be4ea7f1213f34546698872bb8a0a6e01e94c2df5cbbc4f0655150
7
- data.tar.gz: 7d6b8d7c177cf544378ae302e232fb32a1cc80a57e3e7b5d6dbd3273b0a9aec511dcc58e266028e2150d60afaeada1465d37b59536e04c26be0d2a4f689da75d
6
+ metadata.gz: 03d387404d1915da96e892f244bf3af54984cf2ca0817ddfb69983efae07521977f4012a4e41876efbc419b3c78fc08973f99ab6de95200e5fbb518d595b76a4
7
+ data.tar.gz: bdbaf844557b895f1b1966aeabd6821ac9c14d53bf729825e935ea3c7dd81068f4a55f4df58eb1ed3f15569ec6624f7f10326a891afb855e8ee167454a3a3432
data/CHANGELOG.md CHANGED
@@ -3,7 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
- ## [0.13.0][] (2025-07-21)
6
+ ## [0.13.1][]
7
+
8
+ Fixes:
9
+
10
+ - Fixes #62 - make Document Sections attribute optional (@lannon)
11
+
12
+ ## [0.13.0][]
7
13
 
8
14
  New:
9
15
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- panda_doc (0.13.0)
4
+ panda_doc (0.13.1)
5
5
  dry-configurable
6
6
  dry-struct
7
7
  faraday (>= 2.0.1, < 3.0)
@@ -2,12 +2,12 @@ module PandaDoc
2
2
  module Objects
3
3
  class DocumentSection < Base
4
4
  attribute :uuid, Types::String
5
- attribute :document_uuid, Types::String
6
- attribute :status, Types::Custom::DocumentStatus
5
+ attribute? :document_uuid, Types::String
6
+ attribute? :status, Types::Custom::DocumentStatus
7
7
  attribute :name, Types::String
8
8
 
9
- attribute :date_created, Types::Params::DateTime
10
- attribute :date_modified, Types::Params::DateTime
9
+ attribute? :date_created, Types::Params::DateTime
10
+ attribute? :date_modified, Types::Params::DateTime
11
11
 
12
12
  alias_method :created_at, :date_created
13
13
  alias_method :updated_at, :date_modified
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PandaDoc
4
- VERSION = "0.13.0"
4
+ VERSION = "0.13.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: panda_doc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Pstyga