Skip to content

Commit

Permalink
Add Envelope.name and deprecate Envelope.emailSubject
Browse files Browse the repository at this point in the history
  • Loading branch information
spajxo committed Feb 26, 2024
1 parent 9e7a3c9 commit 3ce4517
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
- Add `DeactivateAccount` endpoint
- Add `MyAccount.idpAlias`
- Add `IdentifyScenarioInfo.approvalMode`
- Add `Envelope.name`

### Deprecated
- Deprecate `Envelope.emailSubject`

## [2.2.0] - 2023-12-18
### Added
Expand Down
3 changes: 3 additions & 0 deletions src/Resource/Envelope.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ class Envelope extends BaseResource

public ?string $metadata = null;

public string $name;

/** @deprecated use $name instead */
public string $emailSubject;

public string $emailBody;
Expand Down

0 comments on commit 3ce4517

Please sign in to comment.