From 71a8ce6809dcda03ec5cf61a4cedb6a0c2606180 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Tue, 14 Mar 2023 10:51:50 +0100 Subject: [PATCH 1/2] dynamite: Fix descriptions of methods with summary and description --- packages/dynamite/lib/src/openapi_builder.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dynamite/lib/src/openapi_builder.dart b/packages/dynamite/lib/src/openapi_builder.dart index 1c605fff..b355e5e1 100644 --- a/packages/dynamite/lib/src/openapi_builder.dart +++ b/packages/dynamite/lib/src/openapi_builder.dart @@ -579,7 +579,7 @@ class OpenAPIBuilder implements Builder { ..docs.addAll([ ..._descriptionToDocs(operation.summary), if (operation.summary != null && operation.description != null) ...[ - '', + '///', ], ..._descriptionToDocs(operation.description), ]); From 292bb09c96076d27a5c959d81fcb0fa5557b4315 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Thu, 23 Mar 2023 08:05:36 +0100 Subject: [PATCH 2/2] nextcloud: Regenerate --- packages/nextcloud/lib/src/nextcloud.openapi.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nextcloud/lib/src/nextcloud.openapi.dart b/packages/nextcloud/lib/src/nextcloud.openapi.dart index e468a542..a3618c95 100644 --- a/packages/nextcloud/lib/src/nextcloud.openapi.dart +++ b/packages/nextcloud/lib/src/nextcloud.openapi.dart @@ -1245,7 +1245,7 @@ class NextcloudUnifiedPushProviderClient { } /// Request to get push messages. - + /// /// This is a public page since it has to be handle by the non-connected app (NextPush app and not Nextcloud-app) Future syncDevice( {required String deviceId}) async {