From 8ae6bdf54bdd5ea10b42d1594684e110d3096a63 Mon Sep 17 00:00:00 2001 From: Stephen von Takach Date: Tue, 6 Feb 2024 09:57:08 +1100 Subject: [PATCH] fix(driver_model): add images array to system model --- shard.yml | 2 +- src/placeos-driver/driver_model.cr | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/shard.yml b/shard.yml index b9727c1e..548e8bd3 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: placeos-driver -version: 6.9.17 +version: 6.9.18 crystal: ">= 1.0.0" dependencies: diff --git a/src/placeos-driver/driver_model.cr b/src/placeos-driver/driver_model.cr index d285cb73..9d2fdaab 100644 --- a/src/placeos-driver/driver_model.cr +++ b/src/placeos-driver/driver_model.cr @@ -20,6 +20,7 @@ struct PlaceOS::Driver::DriverModel property timezone : String? property support_url : String? property zones : Array(String) + property images : Array(String)? end struct Metadata