Skip to content

Commit 8ce3445

Browse files
committed
Update open api spec
1 parent 2f5174a commit 8ce3445

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,14 +815,18 @@ export class FeedsApi {
815815

816816
async deleteComment(request: {
817817
id: string;
818+
hard_delete?: boolean;
818819
}): Promise<StreamResponse<DeleteCommentResponse>> {
820+
const queryParams = {
821+
hard_delete: request?.hard_delete,
822+
};
819823
const pathParams = {
820824
id: request?.id,
821825
};
822826

823827
const response = await this.apiClient.sendRequest<
824828
StreamResponse<DeleteCommentResponse>
825-
>('DELETE', '/api/v2/feeds/comments/{id}', pathParams, undefined);
829+
>('DELETE', '/api/v2/feeds/comments/{id}', pathParams, queryParams);
826830

827831
decoders.DeleteCommentResponse?.(response.body);
828832

0 commit comments

Comments
 (0)