Skip to content
Closed
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes will be documented in this file.
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [Unreleased]
- Add `Limits.envelopes`, `Limits.noneOrManualIdentifications` and `Limits.aiIdentifications` properties
- Add `Limits.frequency` property
- Deprecate `Limits.envelopesMonthly` in favor of `Limits.envelopes`
- Deprecate `Limits.noneOrManualMonthlyIdentifications` in favor of `Limits.noneOrManualIdentifications`
- Deprecate `Limits.aiMonthlyIdentifications` in favor of `Limits.aiIdentifications`
- Add `EnvelopeProperties.expirationTimeOfDay`
- Add `Period` resource
- Add `EnvelopeProperties.expirationPeriod` property
Expand Down
2 changes: 1 addition & 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 Down
11 changes: 11 additions & 0 deletions src/Resource/Limits.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

class Limits extends BaseResource
{
public ?int $envelopes;

/** @deprecated Use $envelopes instead */
public ?int $envelopesMonthly;

public ?int $users;
Expand All @@ -16,11 +19,19 @@ class Limits extends BaseResource

public ?int $documents;

public ?int $noneOrManualIdentifications;

/** @deprecated Use $noneOrManualIdentifications instead */
public ?int $noneOrManualMonthlyIdentifications;

public ?int $aiIdentifications;

/** @deprecated Use $aiIdentifications instead */
public ?int $aiMonthlyIdentifications;

public ?int $tags;

public ?int $fileSize;

public string $frequency;
}
Loading