@ketab-ir/core 1.3.12 → 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,17 +15,71 @@ 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;
|
|
22
22
|
}): Observable<IKtbLiteratureApplicantSubmissionDetail | undefined>;
|
|
23
23
|
abstract createOrEditSubmission(input: IKtbLiteratureCreateSumbmissionInput): Observable<void>;
|
|
24
|
-
abstract getAllArticles(input?: IKtbLiteratureGetSubmissionInput): Observable<IKtbPageResult<
|
|
24
|
+
abstract getAllArticles(input?: IKtbLiteratureGetSubmissionInput): Observable<IKtbPageResult<IKtbLiteratureApplicantArticle>>;
|
|
25
25
|
abstract createOrEditArticle(input: IKtbLiteratureCreateArticleInput): Observable<void>;
|
|
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;
|
|
@@ -36,26 +90,26 @@ export interface IKtbLiteratureGetSubmissionInput extends IKtbNewPagedInput {
|
|
|
36
90
|
}
|
|
37
91
|
export interface IKtbLiteratureApplicantSubmission {
|
|
38
92
|
creationTime?: Date;
|
|
93
|
+
firstName?: null | string;
|
|
39
94
|
id?: number;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
shortDescription?: null | string;
|
|
95
|
+
lastName?: null | string;
|
|
96
|
+
publishDate?: null | Date;
|
|
43
97
|
status?: KtbLiteratureSubmissionStatus;
|
|
44
98
|
title?: null | string;
|
|
45
99
|
type?: KtbArticleType;
|
|
46
|
-
|
|
100
|
+
fullname?: string;
|
|
47
101
|
}
|
|
48
102
|
export declare class KtbLiteratureApplicantSubmission implements IKtbLiteratureApplicantSubmission {
|
|
49
103
|
creationTime?: Date;
|
|
104
|
+
firstName?: null | string;
|
|
50
105
|
id?: number;
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
shortDescription?: null | string;
|
|
106
|
+
lastName?: null | string;
|
|
107
|
+
publishDate?: null | Date;
|
|
54
108
|
status?: KtbLiteratureSubmissionStatus;
|
|
55
109
|
title?: null | string;
|
|
56
110
|
type?: KtbArticleType;
|
|
57
|
-
|
|
58
|
-
constructor(data
|
|
111
|
+
get fullname(): string;
|
|
112
|
+
constructor(data?: IKtbLiteratureApplicantSubmission);
|
|
59
113
|
}
|
|
60
114
|
export interface IKtbLiteratureApplicantSubmissionDetail {
|
|
61
115
|
additionDescription?: null | string;
|
|
@@ -86,7 +140,30 @@ 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);
|
|
144
|
+
}
|
|
145
|
+
export interface IKtbLiteratureApplicantArticle {
|
|
146
|
+
creationTime?: Date;
|
|
147
|
+
id?: number;
|
|
148
|
+
isPublish?: boolean;
|
|
149
|
+
publishTime?: Date;
|
|
150
|
+
shortDescription?: null | string;
|
|
151
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
152
|
+
title?: null | string;
|
|
153
|
+
type?: KtbArticleType;
|
|
154
|
+
viewCount?: number;
|
|
155
|
+
}
|
|
156
|
+
export declare class KtbLiteratureApplicantArticle implements IKtbLiteratureApplicantArticle {
|
|
157
|
+
creationTime?: Date;
|
|
158
|
+
id?: number;
|
|
159
|
+
isPublish?: boolean;
|
|
160
|
+
publishTime?: Date;
|
|
161
|
+
shortDescription?: null | string;
|
|
162
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
163
|
+
title?: null | string;
|
|
164
|
+
type?: KtbArticleType;
|
|
165
|
+
viewCount?: number;
|
|
166
|
+
constructor(data?: IKtbLiteratureApplicantArticle);
|
|
90
167
|
}
|
|
91
168
|
export interface IKtbLiteratureApplicantArticleDetail {
|
|
92
169
|
creationTime?: Date;
|
|
@@ -115,5 +192,5 @@ export declare class KtbLiteratureApplicantArticleDetail implements IKtbLiteratu
|
|
|
115
192
|
status?: number;
|
|
116
193
|
title?: null | string;
|
|
117
194
|
viewCount?: number;
|
|
118
|
-
constructor(data
|
|
195
|
+
constructor(data?: IKtbLiteratureApplicantArticleDetail);
|
|
119
196
|
}
|