Skip to content

Commit

Permalink
Add missing 'preferRelatedApplications' attribute to Manifest Dto
Browse files Browse the repository at this point in the history
Added missing attribute 'preferRelatedApplications' to the Manifest data transfer object (Dto). This boolean property defaults to false and indicates whether applications listed under 'relatedApplications' should be preferred over the browser.
  • Loading branch information
Spomky committed Apr 5, 2024
1 parent bf6b4cf commit 5a008ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Dto/Manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ final class Manifest
#[SerializedName('related_applications')]
public array $relatedApplications = [];

#[SerializedName('prefer_related_applications')]
public bool $preferRelatedApplications = false;

/**
* @var array<Shortcut>
*/
Expand Down

0 comments on commit 5a008ca

Please sign in to comment.