From 847d9b3bee4914dc81a0804ce1541511644bcd67 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sat, 22 Apr 2023 19:02:26 -0400 Subject: [PATCH] Switching to old comment GetPost. --- src/types/GetPost.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/types/GetPost.ts b/src/types/GetPost.ts index 6a203b7..99d97f2 100644 --- a/src/types/GetPost.ts +++ b/src/types/GetPost.ts @@ -1,7 +1,9 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. -import type { PostOrCommentId } from "./PostOrCommentId"; +import type { CommentId } from "./CommentId"; +import type { PostId } from "./PostId"; export interface GetPost { - id: PostOrCommentId; + id?: PostId; + comment_id?: CommentId; auth?: string; }