panda_doc 0.13.1 → 0.14.0

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: ea092eb81ffea5fd05fc07db1e23e5d1df5b67270a357936fa08f8f4d8cb7a36
4
- data.tar.gz: 95dc6c4ba632984f35a73ed3f4bcb8e2f0d4ace085b067cbc3fba66f57b19d34
3
+ metadata.gz: 8cdca77337fdbfae0c78e828baa8a1aa6c75c62b4a525963aa664cdb8b6a8dec
4
+ data.tar.gz: 93809f540a826037c7c00b060edc90587e8695438e92564ed0cb312bdd5b8e4d
5
5
  SHA512:
6
- metadata.gz: 03d387404d1915da96e892f244bf3af54984cf2ca0817ddfb69983efae07521977f4012a4e41876efbc419b3c78fc08973f99ab6de95200e5fbb518d595b76a4
7
- data.tar.gz: bdbaf844557b895f1b1966aeabd6821ac9c14d53bf729825e935ea3c7dd81068f4a55f4df58eb1ed3f15569ec6624f7f10326a891afb855e8ee167454a3a3432
6
+ metadata.gz: d1737dfaac3a3f2b8fb6cdac9fce3d0472d52f30e34fd805c14a9efc6f7b23ccc93602ca8b04fc23d45800633f6cfd9f02e55c3f2f8c64096c9ba30a9efe9b63
7
+ data.tar.gz: 360afc4f824fdee34cc06c686b1ed785efaf3c2bbe95a29d7c3e020ee3c2ec84a9f626fb59ef52cdb9e2135164d18565af72f9dcf9cf5a4800d01e6a6ee89a8c
@@ -46,8 +46,3 @@ jobs:
46
46
  SIMPLECOV: ${{ matrix.coverage }}
47
47
  run: |
48
48
  bundle exec rake spec
49
- - name: Publish code coverage
50
- if: ${{ matrix.coverage == '1' && github.actor != 'dependabot[bot]' && github.ref_name == 'main' }}
51
- uses: paambaati/codeclimate-action@v8
52
- env:
53
- CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.4.3
1
+ 3.4.8
data/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
+
7
+ ## [0.14.0][]
8
+
9
+ New:
10
+
11
+ - Add new optional fields to Document (by @lannon)
12
+
6
13
  ## [0.13.1][]
7
14
 
8
15
  Fixes:
@@ -15,7 +22,6 @@ New:
15
22
 
16
23
  - Add Document Sections list and delete actions (by @lannon)
17
24
 
18
-
19
25
  ## [0.12.0][] (2025-06-20)
20
26
 
21
27
  New:
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- panda_doc (0.13.1)
4
+ panda_doc (0.14.0)
5
5
  dry-configurable
6
6
  dry-struct
7
7
  faraday (>= 2.0.1, < 3.0)
@@ -41,7 +41,7 @@ GEM
41
41
  dry-inflector (~> 1.0)
42
42
  dry-logic (~> 1.4)
43
43
  zeitwerk (~> 2.6)
44
- faraday (2.13.2)
44
+ faraday (2.13.4)
45
45
  faraday-net_http (>= 2.0, < 3.5)
46
46
  json
47
47
  logger
@@ -50,7 +50,7 @@ GEM
50
50
  faraday-net_http (3.4.1)
51
51
  net-http (>= 0.5.0)
52
52
  ice_nine (0.11.2)
53
- json (2.12.2)
53
+ json (2.13.1)
54
54
  logger (1.7.0)
55
55
  multipart-post (2.4.1)
56
56
  net-http (0.6.0)
@@ -11,7 +11,11 @@ module PandaDoc
11
11
  attribute :date_created, Types::Params::DateTime
12
12
  attribute :date_modified, Types::Params::DateTime
13
13
  attribute? :expiration_date, Types::Params::DateTime.optional
14
+ attribute? :date_completed, Types::Params::DateTime.optional
15
+ attribute? :date_sent, Types::Params::DateTime.optional
16
+ attribute? :content_date_modified, Types::Params::DateTime.optional
14
17
  attribute :version, Types::String.optional
18
+ attribute? :ref_number, Types::String.optional
15
19
 
16
20
  attribute? :tokens, Types::Array.of(Objects::Token)
17
21
  attribute? :fields, Types::Array.of(Objects::Field)
@@ -20,6 +24,9 @@ module PandaDoc
20
24
  alias_method :created_at, :date_created
21
25
  alias_method :updated_at, :date_modified
22
26
  alias_method :expires_at, :expiration_date
27
+ alias_method :completed_at, :date_completed
28
+ alias_method :sent_at, :date_sent
29
+ alias_method :content_modified_at, :content_date_modified
23
30
  end
24
31
  end
25
32
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PandaDoc
4
- VERSION = "0.13.1"
4
+ VERSION = "0.14.0"
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.1
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Pstyga
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
156
156
  - !ruby/object:Gem::Version
157
157
  version: '0'
158
158
  requirements: []
159
- rubygems_version: 3.6.7
159
+ rubygems_version: 3.6.9
160
160
  specification_version: 4
161
161
  summary: Ruby wrapper for PandaDoc.com API
162
162
  test_files: []