@ketab-ir/core 1.3.12 → 1.3.14
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.
|
@@ -21,7 +21,7 @@ export declare abstract class IKtbLiteratureClienService {
|
|
|
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;
|
|
@@ -36,25 +36,25 @@ export interface IKtbLiteratureGetSubmissionInput extends IKtbNewPagedInput {
|
|
|
36
36
|
}
|
|
37
37
|
export interface IKtbLiteratureApplicantSubmission {
|
|
38
38
|
creationTime?: Date;
|
|
39
|
+
firstName?: null | string;
|
|
39
40
|
id?: number;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
shortDescription?: null | string;
|
|
41
|
+
lastName?: null | string;
|
|
42
|
+
publishDate?: null | Date;
|
|
43
43
|
status?: KtbLiteratureSubmissionStatus;
|
|
44
44
|
title?: null | string;
|
|
45
45
|
type?: KtbArticleType;
|
|
46
|
-
|
|
46
|
+
fullname?: string;
|
|
47
47
|
}
|
|
48
48
|
export declare class KtbLiteratureApplicantSubmission implements IKtbLiteratureApplicantSubmission {
|
|
49
49
|
creationTime?: Date;
|
|
50
|
+
firstName?: null | string;
|
|
50
51
|
id?: number;
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
shortDescription?: null | string;
|
|
52
|
+
lastName?: null | string;
|
|
53
|
+
publishDate?: null | Date;
|
|
54
54
|
status?: KtbLiteratureSubmissionStatus;
|
|
55
55
|
title?: null | string;
|
|
56
56
|
type?: KtbArticleType;
|
|
57
|
-
|
|
57
|
+
get fullname(): string;
|
|
58
58
|
constructor(data: IKtbLiteratureApplicantSubmission);
|
|
59
59
|
}
|
|
60
60
|
export interface IKtbLiteratureApplicantSubmissionDetail {
|
|
@@ -88,6 +88,29 @@ export declare class KtbLiteratureApplicantSubmissionDetail implements IKtbLiter
|
|
|
88
88
|
type?: KtbArticleType;
|
|
89
89
|
constructor(data: IKtbLiteratureApplicantSubmissionDetail);
|
|
90
90
|
}
|
|
91
|
+
export interface IKtbLiteratureApplicantArticle {
|
|
92
|
+
creationTime?: Date;
|
|
93
|
+
id?: number;
|
|
94
|
+
isPublish?: boolean;
|
|
95
|
+
publishTime?: Date;
|
|
96
|
+
shortDescription?: null | string;
|
|
97
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
98
|
+
title?: null | string;
|
|
99
|
+
type?: KtbArticleType;
|
|
100
|
+
viewCount?: number;
|
|
101
|
+
}
|
|
102
|
+
export declare class KtbLiteratureApplicantArticle implements IKtbLiteratureApplicantArticle {
|
|
103
|
+
creationTime?: Date;
|
|
104
|
+
id?: number;
|
|
105
|
+
isPublish?: boolean;
|
|
106
|
+
publishTime?: Date;
|
|
107
|
+
shortDescription?: null | string;
|
|
108
|
+
status?: KtbLiteratureSubmissionStatus;
|
|
109
|
+
title?: null | string;
|
|
110
|
+
type?: KtbArticleType;
|
|
111
|
+
viewCount?: number;
|
|
112
|
+
constructor(data: IKtbLiteratureApplicantArticle);
|
|
113
|
+
}
|
|
91
114
|
export interface IKtbLiteratureApplicantArticleDetail {
|
|
92
115
|
creationTime?: Date;
|
|
93
116
|
description?: null | string;
|