@ketab-ir/core 1.5.5 → 1.5.7
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.
- package/esm2022/lib/modules/adabiat/ktb-literature.service.mjs +1 -1
- package/esm2022/lib/modules/ketabsal/ktb-bookdto.mjs +1 -1
- package/fesm2022/ketab-ir-core.mjs.map +1 -1
- package/lib/modules/adabiat/ktb-literature.service.d.ts +2 -0
- package/lib/modules/ketabsal/ktb-bookdto.d.ts +2 -0
- package/package.json +1 -1
|
@@ -134,6 +134,7 @@ export interface IKtbLiteratureApplicantSubmissionDetail {
|
|
|
134
134
|
status?: KtbLiteratureSubmissionStatus;
|
|
135
135
|
title?: null | string;
|
|
136
136
|
type?: KtbArticleType;
|
|
137
|
+
rejectionDescription?: string;
|
|
137
138
|
}
|
|
138
139
|
export declare class KtbLiteratureApplicantSubmissionDetail implements IKtbLiteratureApplicantSubmissionDetail {
|
|
139
140
|
additionDescription?: null | string;
|
|
@@ -149,6 +150,7 @@ export declare class KtbLiteratureApplicantSubmissionDetail implements IKtbLiter
|
|
|
149
150
|
status?: KtbLiteratureSubmissionStatus;
|
|
150
151
|
title?: null | string;
|
|
151
152
|
type?: KtbArticleType;
|
|
153
|
+
rejectionDescription?: string;
|
|
152
154
|
constructor(data?: IKtbLiteratureApplicantSubmissionDetail);
|
|
153
155
|
}
|
|
154
156
|
export interface IKtbLiteratureApplicantArticle {
|
|
@@ -10,6 +10,7 @@ export interface IKtsBookDto {
|
|
|
10
10
|
publishers?: null | Array<IKtbPublisher>;
|
|
11
11
|
sizeType?: null | string;
|
|
12
12
|
title?: null | string;
|
|
13
|
+
printVersion?: number;
|
|
13
14
|
}
|
|
14
15
|
export declare class KtsBookDto implements IKtsBookDto {
|
|
15
16
|
authors?: null | Array<IKtbAuthor>;
|
|
@@ -22,5 +23,6 @@ export declare class KtsBookDto implements IKtsBookDto {
|
|
|
22
23
|
publishers?: null | Array<IKtbPublisher>;
|
|
23
24
|
sizeType?: null | string;
|
|
24
25
|
title?: null | string;
|
|
26
|
+
printVersion?: number;
|
|
25
27
|
constructor(data: IKtsBookDto);
|
|
26
28
|
}
|