Skip to content

Commit dbad94f

Browse files
Upgrade api specification
1 parent 98cacb4 commit dbad94f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

packages/generator/spec.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1624,7 +1624,7 @@
16241624
"name": "project_id",
16251625
"schema": {
16261626
"type": "string",
1627-
"description": "The `project_id` for which you want to retrieve the list of boards. If this parameter is sent in the request, the `query` and `owner` parameters are ignored."
1627+
"description": "The `project_id` for which you want to retrieve the list of boards. Note that Projects have been renamed to Spaces. Use this as the unique identifier (ID) of the space. If this parameter is included in the request, the `query` and `owner` parameters are ignored."
16281628
}
16291629
},
16301630
{
@@ -13660,7 +13660,7 @@
1366013660
},
1366113661
"projectId": {
1366213662
"type": "string",
13663-
"description": "Unique identifier (ID) of the project to which the board must be added."
13663+
"description": "Unique identifier (ID) of the project to which the board must be added. Note that Projects have been renamed to Spaces. Use this parameter to update the space."
1366413664
}
1366513665
}
1366613666
},

packages/miro-api-python/miro_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
8282
self.default_headers[header_name] = header_value
8383
self.cookie = cookie
8484
# Set default User-Agent.
85-
self.user_agent = "OpenAPI-Generator/2.2.3/python"
85+
self.user_agent = "OpenAPI-Generator/2.2.4/python"
8686
self.client_side_validation = configuration.client_side_validation
8787

8888
def __enter__(self):

packages/miro-api-python/miro_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def to_debug_report(self):
390390
"OS: {env}\n"
391391
"Python Version: {pyversion}\n"
392392
"Version of the API: v2.0\n"
393-
"SDK Package Version: 2.2.3".format(env=sys.platform, pyversion=sys.version)
393+
"SDK Package Version: 2.2.4".format(env=sys.platform, pyversion=sys.version)
394394
)
395395

396396
def get_host_settings(self):

packages/miro-api-python/miro_api/models/board_changes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class BoardChanges(BaseModel):
4242
)
4343
project_id: Optional[StrictStr] = Field(
4444
default=None,
45-
description="Unique identifier (ID) of the project to which the board must be added.",
45+
description="Unique identifier (ID) of the project to which the board must be added. Note that Projects have been renamed to Spaces. Use this parameter to update the space.",
4646
alias="projectId",
4747
)
4848
additional_properties: Dict[str, Any] = {}

packages/miro-api/model/boardChanges.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class BoardChanges {
2727
*/
2828
'teamId'?: string
2929
/**
30-
* Unique identifier (ID) of the project to which the board must be added.
30+
* Unique identifier (ID) of the project to which the board must be added. Note that Projects have been renamed to Spaces. Use this parameter to update the space.
3131
*/
3232
'projectId'?: string
3333

0 commit comments

Comments
 (0)