From 4e250dd9eb489279ab3581dee79b8c8516117e7f Mon Sep 17 00:00:00 2001 From: Boris Waaub Date: Mon, 30 Mar 2026 17:17:33 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20nouveaux=20champs=20dans=20UpsertM?= =?UTF-8?q?essage=20pour=20g=C3=A9rer=20les=20informations=20suppl=C3=A9me?= =?UTF-8?q?ntaires=20sur=20la=20personne?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ChillPersonBundle/Actions/Upsert/UpsertMessage.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php b/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php index 99ac19920..09f95fd44 100644 --- a/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php +++ b/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php @@ -14,6 +14,7 @@ namespace Chill\PersonBundle\Actions\Upsert; class UpsertMessage { public string $externalId; + public string $moreExternalIds; public int $personIdentifierDefinitionId; public ?string $firstName = null; public ?string $lastName = null; @@ -21,9 +22,14 @@ class UpsertMessage public ?string $birthdate = null; public ?string $mobileNumber = null; public ?string $phoneNumber = null; + public ?array $otherPhoneNumbers = []; + public ?array $spokenLanguages = []; + public ?string $countryOfBirth = null; + public ?string $placeOfBirth = null; + public ?string $deathdate = null; + public ?string $center = null; public ?string $addressStreet = null; - /** * The extra field of the address. */ @@ -31,7 +37,6 @@ class UpsertMessage public ?string $addressStreetNumber = null; public ?string $addressPostcode = null; public ?string $addressCity = null; - public ?string $center = null; public function hasAddressInfo(): bool {