From 5a008ca1557f8de395eec9db99fa11309d2827f4 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Fri, 5 Apr 2024 12:55:25 +0200 Subject: [PATCH] Add missing 'preferRelatedApplications' attribute to Manifest Dto 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. --- src/Dto/Manifest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Dto/Manifest.php b/src/Dto/Manifest.php index 2b9adf8..a81f2a9 100644 --- a/src/Dto/Manifest.php +++ b/src/Dto/Manifest.php @@ -96,6 +96,9 @@ final class Manifest #[SerializedName('related_applications')] public array $relatedApplications = []; + #[SerializedName('prefer_related_applications')] + public bool $preferRelatedApplications = false; + /** * @var array */