add GetComments and update proto

This commit is contained in:
2023-08-14 14:27:29 +03:00
parent 85d1191dd9
commit 37e92e8473
16 changed files with 850 additions and 142 deletions

View File

@@ -0,0 +1,9 @@
/* tslint:disable */
/* eslint-disable */
export interface Comment {
created?: string;
id?: number;
package?: number;
text?: string;
updated?: string;
}

View File

@@ -0,0 +1,6 @@
/* tslint:disable */
/* eslint-disable */
import { Comment } from './comment';
export interface GetCommentsRsp {
comments?: Array<Comment>;
}