@ketab-ir/core 1.3.14 → 1.3.16
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,60 @@ 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
|
+
}
|
|
35
|
+
export interface IKtbLiteratureReviewerSubmissionInput extends IKtbNewPagedInput {
|
|
36
|
+
filter?: string;
|
|
37
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
38
|
+
type?: KtbArticleType;
|
|
39
|
+
isPublished?: boolean;
|
|
40
|
+
minAssignDate?: string;
|
|
41
|
+
maxAssignDate?: string;
|
|
42
|
+
minDeadLineDate?: string;
|
|
43
|
+
maxDeadLineDate?: string;
|
|
44
|
+
sorting?: string;
|
|
45
|
+
}
|
|
46
|
+
export interface IKtbLiteratureReviewerSubmission {
|
|
47
|
+
assignTime?: Date;
|
|
48
|
+
score?: number;
|
|
49
|
+
deadLineTime?: Date;
|
|
50
|
+
firstName?: null | string;
|
|
51
|
+
id?: number;
|
|
52
|
+
lastName?: null | string;
|
|
53
|
+
reviewTime?: Date;
|
|
54
|
+
reviewTitle?: null | string;
|
|
55
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
56
|
+
title?: null | string;
|
|
57
|
+
type?: KtbArticleType;
|
|
58
|
+
}
|
|
59
|
+
export declare class KtbLiteratureReviewerSubmission implements IKtbLiteratureReviewerSubmission {
|
|
60
|
+
assignTime?: Date;
|
|
61
|
+
score?: number;
|
|
62
|
+
deadLineTime?: Date;
|
|
63
|
+
firstName?: null | string;
|
|
64
|
+
id?: number;
|
|
65
|
+
lastName?: null | string;
|
|
66
|
+
reviewTime?: Date;
|
|
67
|
+
reviewTitle?: null | string;
|
|
68
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
69
|
+
title?: null | string;
|
|
70
|
+
type?: KtbArticleType;
|
|
71
|
+
constructor(data?: IKtbLiteratureReviewerSubmission);
|
|
72
|
+
}
|
|
73
|
+
export interface IKtbLiteratureReviewerSubmissionDetail extends IKtbLiteratureReviewerSubmission {
|
|
74
|
+
description?: null | string;
|
|
75
|
+
publishDate?: Date;
|
|
76
|
+
reviewDescription?: null | string;
|
|
77
|
+
}
|
|
78
|
+
export declare class KtbLiteratureReviewerSubmissionDetail extends KtbLiteratureReviewerSubmission implements IKtbLiteratureReviewerSubmissionDetail {
|
|
79
|
+
description?: null | string;
|
|
80
|
+
publishDate?: Date;
|
|
81
|
+
reviewDescription?: null | string;
|
|
82
|
+
constructor(data: IKtbLiteratureReviewerSubmissionDetail);
|
|
29
83
|
}
|
|
30
84
|
export interface IKtbLiteratureGetSubmissionInput extends IKtbNewPagedInput {
|
|
31
85
|
status?: KtbLiteratureSubmissionStatus;
|
|
@@ -55,7 +109,7 @@ export declare class KtbLiteratureApplicantSubmission implements IKtbLiteratureA
|
|
|
55
109
|
title?: null | string;
|
|
56
110
|
type?: KtbArticleType;
|
|
57
111
|
get fullname(): string;
|
|
58
|
-
constructor(data
|
|
112
|
+
constructor(data?: IKtbLiteratureApplicantSubmission);
|
|
59
113
|
}
|
|
60
114
|
export interface IKtbLiteratureApplicantSubmissionDetail {
|
|
61
115
|
additionDescription?: null | string;
|
|
@@ -86,7 +140,7 @@ export declare class KtbLiteratureApplicantSubmissionDetail implements IKtbLiter
|
|
|
86
140
|
status?: KtbLiteratureSubmissionStatus;
|
|
87
141
|
title?: null | string;
|
|
88
142
|
type?: KtbArticleType;
|
|
89
|
-
constructor(data
|
|
143
|
+
constructor(data?: IKtbLiteratureApplicantSubmissionDetail);
|
|
90
144
|
}
|
|
91
145
|
export interface IKtbLiteratureApplicantArticle {
|
|
92
146
|
creationTime?: Date;
|
|
@@ -109,7 +163,7 @@ export declare class KtbLiteratureApplicantArticle implements IKtbLiteratureAppl
|
|
|
109
163
|
title?: null | string;
|
|
110
164
|
type?: KtbArticleType;
|
|
111
165
|
viewCount?: number;
|
|
112
|
-
constructor(data
|
|
166
|
+
constructor(data?: IKtbLiteratureApplicantArticle);
|
|
113
167
|
}
|
|
114
168
|
export interface IKtbLiteratureApplicantArticleDetail {
|
|
115
169
|
creationTime?: Date;
|
|
@@ -138,5 +192,5 @@ export declare class KtbLiteratureApplicantArticleDetail implements IKtbLiteratu
|
|
|
138
192
|
status?: number;
|
|
139
193
|
title?: null | string;
|
|
140
194
|
viewCount?: number;
|
|
141
|
-
constructor(data
|
|
195
|
+
constructor(data?: IKtbLiteratureApplicantArticleDetail);
|
|
142
196
|
}
|