@ketab-ir/core 1.3.14 → 1.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,7 +15,7 @@ export interface IKtbLiteratureCreateArticleInput {
|
|
|
15
15
|
description?: string;
|
|
16
16
|
type?: KtbArticleType;
|
|
17
17
|
}
|
|
18
|
-
export declare abstract class
|
|
18
|
+
export declare abstract class IKtbLiteratureClientService {
|
|
19
19
|
abstract getAllSubmission(input?: IKtbLiteratureGetSubmissionInput): Observable<IKtbPageResult<IKtbLiteratureApplicantSubmission>>;
|
|
20
20
|
abstract getSubmissionDetail(input: {
|
|
21
21
|
id?: number;
|
|
@@ -26,6 +26,67 @@ export declare abstract class IKtbLiteratureClienService {
|
|
|
26
26
|
abstract getArticle(input?: {
|
|
27
27
|
id: number;
|
|
28
28
|
}): Observable<IKtbLiteratureApplicantArticleDetail>;
|
|
29
|
+
abstract getAllReviewrSubmission(input?: IKtbLiteratureReviewerSubmissionInput): Observable<IKtbPageResult<IKtbLiteratureReviewerSubmission>>;
|
|
30
|
+
abstract getReview(input: {
|
|
31
|
+
id: number;
|
|
32
|
+
reviewerId?: number;
|
|
33
|
+
}): Observable<KtbLiteratureReviewerSubmissionDetail>;
|
|
34
|
+
abstract createOrEditReview(input: {
|
|
35
|
+
id?: number;
|
|
36
|
+
title?: string;
|
|
37
|
+
description?: string;
|
|
38
|
+
score?: number;
|
|
39
|
+
submissionId?: number;
|
|
40
|
+
}): Observable<void>;
|
|
41
|
+
}
|
|
42
|
+
export interface IKtbLiteratureReviewerSubmissionInput extends IKtbNewPagedInput {
|
|
43
|
+
filter?: string;
|
|
44
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
45
|
+
type?: KtbArticleType;
|
|
46
|
+
isPublished?: boolean;
|
|
47
|
+
minAssignDate?: string;
|
|
48
|
+
maxAssignDate?: string;
|
|
49
|
+
minDeadLineDate?: string;
|
|
50
|
+
maxDeadLineDate?: string;
|
|
51
|
+
sorting?: string;
|
|
52
|
+
}
|
|
53
|
+
export interface IKtbLiteratureReviewerSubmission {
|
|
54
|
+
assignTime?: Date;
|
|
55
|
+
score?: number;
|
|
56
|
+
deadLineTime?: Date;
|
|
57
|
+
firstName?: null | string;
|
|
58
|
+
id?: number;
|
|
59
|
+
lastName?: null | string;
|
|
60
|
+
reviewTime?: Date;
|
|
61
|
+
reviewTitle?: null | string;
|
|
62
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
63
|
+
title?: null | string;
|
|
64
|
+
type?: KtbArticleType;
|
|
65
|
+
}
|
|
66
|
+
export declare class KtbLiteratureReviewerSubmission implements IKtbLiteratureReviewerSubmission {
|
|
67
|
+
assignTime?: Date;
|
|
68
|
+
score?: number;
|
|
69
|
+
deadLineTime?: Date;
|
|
70
|
+
firstName?: null | string;
|
|
71
|
+
id?: number;
|
|
72
|
+
lastName?: null | string;
|
|
73
|
+
reviewTime?: Date;
|
|
74
|
+
reviewTitle?: null | string;
|
|
75
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
76
|
+
title?: null | string;
|
|
77
|
+
type?: KtbArticleType;
|
|
78
|
+
constructor(data?: IKtbLiteratureReviewerSubmission);
|
|
79
|
+
}
|
|
80
|
+
export interface IKtbLiteratureReviewerSubmissionDetail extends IKtbLiteratureReviewerSubmission {
|
|
81
|
+
description?: null | string;
|
|
82
|
+
publishDate?: Date;
|
|
83
|
+
reviewDescription?: null | string;
|
|
84
|
+
}
|
|
85
|
+
export declare class KtbLiteratureReviewerSubmissionDetail extends KtbLiteratureReviewerSubmission implements IKtbLiteratureReviewerSubmissionDetail {
|
|
86
|
+
description?: null | string;
|
|
87
|
+
publishDate?: Date;
|
|
88
|
+
reviewDescription?: null | string;
|
|
89
|
+
constructor(data: IKtbLiteratureReviewerSubmissionDetail);
|
|
29
90
|
}
|
|
30
91
|
export interface IKtbLiteratureGetSubmissionInput extends IKtbNewPagedInput {
|
|
31
92
|
status?: KtbLiteratureSubmissionStatus;
|
|
@@ -55,7 +116,7 @@ export declare class KtbLiteratureApplicantSubmission implements IKtbLiteratureA
|
|
|
55
116
|
title?: null | string;
|
|
56
117
|
type?: KtbArticleType;
|
|
57
118
|
get fullname(): string;
|
|
58
|
-
constructor(data
|
|
119
|
+
constructor(data?: IKtbLiteratureApplicantSubmission);
|
|
59
120
|
}
|
|
60
121
|
export interface IKtbLiteratureApplicantSubmissionDetail {
|
|
61
122
|
additionDescription?: null | string;
|
|
@@ -86,7 +147,7 @@ export declare class KtbLiteratureApplicantSubmissionDetail implements IKtbLiter
|
|
|
86
147
|
status?: KtbLiteratureSubmissionStatus;
|
|
87
148
|
title?: null | string;
|
|
88
149
|
type?: KtbArticleType;
|
|
89
|
-
constructor(data
|
|
150
|
+
constructor(data?: IKtbLiteratureApplicantSubmissionDetail);
|
|
90
151
|
}
|
|
91
152
|
export interface IKtbLiteratureApplicantArticle {
|
|
92
153
|
creationTime?: Date;
|
|
@@ -109,7 +170,7 @@ export declare class KtbLiteratureApplicantArticle implements IKtbLiteratureAppl
|
|
|
109
170
|
title?: null | string;
|
|
110
171
|
type?: KtbArticleType;
|
|
111
172
|
viewCount?: number;
|
|
112
|
-
constructor(data
|
|
173
|
+
constructor(data?: IKtbLiteratureApplicantArticle);
|
|
113
174
|
}
|
|
114
175
|
export interface IKtbLiteratureApplicantArticleDetail {
|
|
115
176
|
creationTime?: Date;
|
|
@@ -138,5 +199,5 @@ export declare class KtbLiteratureApplicantArticleDetail implements IKtbLiteratu
|
|
|
138
199
|
status?: number;
|
|
139
200
|
title?: null | string;
|
|
140
201
|
viewCount?: number;
|
|
141
|
-
constructor(data
|
|
202
|
+
constructor(data?: IKtbLiteratureApplicantArticleDetail);
|
|
142
203
|
}
|