diff --git a/./node_modules/@mirohq/miro-api/dist/api/apis.js b/./node_modules/@mirohq/miro-api/dist/api/apis_fixed.js index d53640b..3781b25 100644 --- a/./node_modules/@mirohq/miro-api/dist/api/apis.js +++ b/./node_modules/@mirohq/miro-api/dist/api/apis_fixed.js @@ -1359,6 +1359,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 }; } /** @@ -1409,6 +1413,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 }; } /**