@@ -87,7 +87,7 @@ async def get_async(
87
87
synapse_client : Optional ["Synapse" ] = None ,
88
88
) -> "WikiOrderHint" :
89
89
"""
90
- Get the order hint of a wiki page tree asynchronously .
90
+ Get the order hint of a wiki page tree.
91
91
92
92
Arguments:
93
93
synapse_client: Optionally provide a Synapse client.
@@ -113,7 +113,7 @@ async def update_async(
113
113
synapse_client : Optional ["Synapse" ] = None ,
114
114
) -> "WikiOrderHint" :
115
115
"""
116
- Update the order hint of a wiki page tree asynchronously .
116
+ Update the order hint of a wiki page tree.
117
117
118
118
Arguments:
119
119
synapse_client: Optionally provide a Synapse client.
@@ -187,7 +187,7 @@ async def get_async(
187
187
synapse_client : Optional ["Synapse" ] = None ,
188
188
) -> list :
189
189
"""
190
- Get the history of a wiki page asynchronously as a list of WikiHistorySnapshot objects.
190
+ Get the history of a wiki page as a list of WikiHistorySnapshot objects.
191
191
192
192
Arguments:
193
193
owner_id: The ID of the owner entity.
@@ -266,7 +266,7 @@ async def get_async(
266
266
synapse_client : Optional ["Synapse" ] = None ,
267
267
) -> list :
268
268
"""
269
- Get the header tree (hierarchy) of wiki pages for an entity asynchronously .
269
+ Get the header tree (hierarchy) of wiki pages for an entity.
270
270
271
271
Arguments:
272
272
owner_id: The ID of the owner entity.
@@ -650,7 +650,7 @@ async def delete_async(
650
650
synapse_client : Optional ["Synapse" ] = None ,
651
651
) -> None :
652
652
"""
653
- Delete this wiki page asynchronously .
653
+ Delete this wiki page.
654
654
655
655
Arguments:
656
656
synapse_client: Optionally provide a Synapse client.
@@ -677,7 +677,7 @@ async def get_attachment_handles_async(
677
677
synapse_client : Optional ["Synapse" ] = None ,
678
678
) -> list :
679
679
"""
680
- Get the file handles of all attachments on this wiki page asynchronously .
680
+ Get the file handles of all attachments on this wiki page.
681
681
682
682
Arguments:
683
683
synapse_client: Optionally provide a Synapse client.
@@ -709,7 +709,7 @@ async def get_attachment_url_async(
709
709
synapse_client : Optional ["Synapse" ] = None ,
710
710
) -> dict :
711
711
"""
712
- Get the URL of a wiki page attachment asynchronously .
712
+ Get the URL of a wiki page attachment.
713
713
714
714
Arguments:
715
715
file_name: The name of the file to get.
@@ -748,7 +748,7 @@ async def get_attachment_preview_url_async(
748
748
synapse_client : Optional ["Synapse" ] = None ,
749
749
) -> dict :
750
750
"""
751
- Get the preview URL of a wiki page attachment asynchronously .
751
+ Get the preview URL of a wiki page attachment.
752
752
753
753
Arguments:
754
754
file_name: The name of the file to get.
@@ -786,7 +786,7 @@ async def get_markdown_url_async(
786
786
synapse_client : Optional ["Synapse" ] = None ,
787
787
) -> dict :
788
788
"""
789
- Get the markdown URL of this wiki page asynchronously .
789
+ Get the markdown URL of this wiki page.
790
790
791
791
Arguments:
792
792
redirect: When set to false, the URL will be returned as text/plain instead of redirecting. Default is False.
0 commit comments