From ff19b7bb0884191a75b349efba63277427bcdec2 Mon Sep 17 00:00:00 2001 From: Sven Wiltink Date: Wed, 18 Sep 2024 08:53:37 +0000 Subject: [PATCH] added issuerType for HaipCertificates --- CHANGELOG.md | 4 ++++ src/Entity/Haip/Certificate.php | 10 ++++++++++ src/TransipAPI.php | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37eca66..70a1025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ CHANGELOG ========= +6.53.1 +--- +* Add issuerType to `HaipCertificate` + 6.53.0 --- * Add MailPackage API resources diff --git a/src/Entity/Haip/Certificate.php b/src/Entity/Haip/Certificate.php index bcd9d46..8b3757e 100644 --- a/src/Entity/Haip/Certificate.php +++ b/src/Entity/Haip/Certificate.php @@ -21,6 +21,11 @@ class Certificate extends AbstractEntity */ protected $expirationDate; + /** + * @var string + */ + protected $issuerType; + public function getId(): string { return $this->id; @@ -35,4 +40,9 @@ public function getExpirationDate(): string { return $this->expirationDate; } + + public function getIssuerType(): string + { + return $this->issuerType; + } } diff --git a/src/TransipAPI.php b/src/TransipAPI.php index d23bb07..ab213f7 100644 --- a/src/TransipAPI.php +++ b/src/TransipAPI.php @@ -109,7 +109,7 @@ class TransipAPI { public const TRANSIP_API_ENDPOINT = "https://api.transip.nl/v6"; - public const TRANSIP_API_LIBRARY_VERSION = "6.53.0"; + public const TRANSIP_API_LIBRARY_VERSION = "6.53.1"; public const TRANSIP_API_DEMO_TOKEN = "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImN3MiFSbDU2eDNoUnkjelM4YmdOIn0.eyJpc3MiOiJhcGkudHJhbnNpcC5ubCIsImF1ZCI6ImFwaS50cmFuc2lwLm5sIiwianRpIjoiY3cyIVJsNTZ4M2hSeSN6UzhiZ04iLCJpYXQiOjE1ODIyMDE1NTAsIm5iZiI6MTU4MjIwMTU1MCwiZXhwIjoyMTE4NzQ1NTUwLCJjaWQiOiI2MDQ0OSIsInJvIjpmYWxzZSwiZ2siOmZhbHNlLCJrdiI6dHJ1ZX0.fYBWV4O5WPXxGuWG-vcrFWqmRHBm9yp0PHiYh_oAWxWxCaZX2Rf6WJfc13AxEeZ67-lY0TA2kSaOCp0PggBb_MGj73t4cH8gdwDJzANVxkiPL1Saqiw2NgZ3IHASJnisUWNnZp8HnrhLLe5ficvb1D9WOUOItmFC2ZgfGObNhlL2y-AMNLT4X7oNgrNTGm-mespo0jD_qH9dK5_evSzS3K8o03gu6p19jxfsnIh8TIVRvNdluYC2wo4qDl5EW5BEZ8OSuJ121ncOT1oRpzXB0cVZ9e5_UVAEr9X3f26_Eomg52-PjrgcRJ_jPIUYbrlo06KjjX2h0fzMr21ZE023Gw"; /**