Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,15 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `AccountBilling.timestampsAtsa` and `AccountBilling.timestampsPostSignum` property
- Add `Features.timestampsAtsa` and `Features.timestampsPostSignum` property
- Add `EnvelopeProperties.timestampsEnabled` property
- Add `EnvelopeProperties.timestampsRenewalPeriod` property
- Add `EnvelopeProperties.defaultTimestampsRenewalPeriod` property
- Add `Features.timestampsRenewal` property
- Add `AccountBilling.timestampsRenewal` property
- Add `EnvelopeDocument.timestampEnabled` and `EnvelopeDocument.timestampsRenewalPeriod` properties
- Add `EnvelopeTemplateDocument.timestampEnabled` and `EnvelopeTemplateDocument.timestampsRenewalPeriod` properties
- Add `EnvelopeProperties.defaultTimestampDocuments` and `EnvelopeProperties.timestampAuditLogRenewalPeriod` properties
- Add `EnvelopeTemplate.defaultTimestampDocuments` property
- Deprecate `EnvelopeProperties.timestampDocuments` in favor of `EnvelopeProperties.defaultTimestampDocuments`
- Deprecate `EnvelopeTemplate.timestampDocuments` in favor of `EnvelopeTemplate.defaultTimestampDocuments`

## [2.11.0] - 2025-11-12
### Deprecated
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"symfony/http-client": "*"
},
"require-dev": {
"digitalcz/coding-standard": "^0.2.0",
"digitalcz/coding-standard": "^0.3.0",
"nyholm/nsa": "^1.2.1",
"nyholm/psr7": "^1.3",
"php-http/httplug": "^2.1",
Expand All @@ -55,6 +55,7 @@
"phpstan/phpstan-phpunit": "^1.3.2",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.19.1",
"symfony/cache": "^6.0",
"symfony/http-client": "^6.0",
"symfony/var-dumper": "^6.0"
Expand Down
4 changes: 4 additions & 0 deletions src/Resource/EnvelopeDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,8 @@ class EnvelopeDocument extends BaseResource
public ?DateTime $invalidatedAt = null;

public bool $hasSignatures;

public bool $timestampEnabled;

public ?int $timestampsRenewalPeriod = null;
}
7 changes: 6 additions & 1 deletion src/Resource/EnvelopeProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ class EnvelopeProperties extends BaseResource

public bool $auditLogAvailableToAccountUsers;

public bool $defaultTimestampDocuments;

/** @deprecated Use $defaultTimestampDocuments instead */
public bool $timestampDocuments;

public bool $timestampAuditLog;
Expand All @@ -51,5 +54,7 @@ class EnvelopeProperties extends BaseResource

public bool $timestampsEnabled;

public ?int $timestampsRenewalPeriod;
public ?int $defaultTimestampsRenewalPeriod = null;

public ?int $timestampAuditLogRenewalPeriod = null;
}
3 changes: 3 additions & 0 deletions src/Resource/EnvelopeTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ class EnvelopeTemplate extends BaseResource

public string $channelForDownload;

public bool $defaultTimestampDocuments;

/** @deprecated Use $defaultTimestampDocuments instead */
public bool $timestampDocuments;

public bool $sendCompleted;
Expand Down
4 changes: 4 additions & 0 deletions src/Resource/EnvelopeTemplateDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@ class EnvelopeTemplateDocument extends BaseResource

/** @var array<string, string> */
public array $assignments;

public bool $timestampEnabled;

public ?int $timestampsRenewalPeriod = null;
}
Loading