--- /dev/null
+diff --git a/./node_modules/@mirohq/miro-api/dist/api/apis.js b/./node_modules/@mirohq/miro-api/dist/api/apis_fixed.js
+index 2b6e0e3..d3a6a89 100644
+--- a/./node_modules/@mirohq/miro-api/dist/api/apis.js
++++ b/./node_modules/@mirohq/miro-api/dist/api/apis_fixed.js
+@@ -1972,6 +1972,10 @@ class MiroApi {
+ urlResource.search = localVarQueryParameters.toString();
+ const { response, bodyAsJson } = await makeJsonRequest(typeof this.accessToken === 'function' ? await this.accessToken() : this.accessToken, 'GET', urlResource, undefined, this.logger);
+ const body = models_1.ObjectSerializer.deserialize(bodyAsJson, 'GenericItemCursorPaged');
++ // Copy the style for each item from the bodyAsJson.items to the body.items
++ for (let i = 0; i < body.data.length; i++) {
++ body.data[i].style = bodyAsJson.data[i].style;
++ }
+ return { response, body };
+ }
+ /**
+@@ -2010,6 +2014,10 @@ class MiroApi {
+ urlResource.search = localVarQueryParameters.toString();
+ const { response, bodyAsJson } = await makeJsonRequest(typeof this.accessToken === 'function' ? await this.accessToken() : this.accessToken, 'GET', urlResource, undefined, this.logger);
+ const body = models_1.ObjectSerializer.deserialize(bodyAsJson, 'GenericItemCursorPaged');
++ // Copy the style for each item from the bodyAsJson.items to the body.items
++ for (let i = 0; i < body.data.length; i++) {
++ body.data[i].style = bodyAsJson.data[i].style;
++ }
+ return { response, body };
+ }
+ /**
+@@ -2035,6 +2043,7 @@ class MiroApi {
+ urlResource.search = localVarQueryParameters.toString();
+ const { response, bodyAsJson } = await makeJsonRequest(typeof this.accessToken === 'function' ? await this.accessToken() : this.accessToken, 'GET', urlResource, undefined, this.logger);
+ const body = models_1.ObjectSerializer.deserialize(bodyAsJson, 'GenericItem');
++ body.style = bodyAsJson.style;
+ return { response, body };
+ }
+ /**