ntk-cms-api 20.26.10 → 20.26.12
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.
|
@@ -1232,7 +1232,7 @@ declare class BaseModuleConfigAdminMainValuesModel {
|
|
|
1232
1232
|
|
|
1233
1233
|
declare class BaseModuleConfigSiteAccessValuesModel {
|
|
1234
1234
|
mainDataContentRowCount: number;
|
|
1235
|
-
|
|
1235
|
+
useDataAccessViewOtherSiteIds: number[];
|
|
1236
1236
|
}
|
|
1237
1237
|
|
|
1238
1238
|
declare class BaseModuleConfigSiteValuesModel {
|
|
@@ -3613,6 +3613,7 @@ declare class ModuleSiteStorageValuesModel extends BaseModuleSiteStorageValuesMo
|
|
|
3613
3613
|
* مدل محتوای فایل
|
|
3614
3614
|
*/
|
|
3615
3615
|
declare class FileContentModel extends BaseModuleEntity<number> {
|
|
3616
|
+
createdByIp: string;
|
|
3616
3617
|
/** لینک به شناسه دستهبندی */
|
|
3617
3618
|
linkCategoryId: number;
|
|
3618
3619
|
/** نام فایل */
|
|
@@ -3959,6 +3960,7 @@ declare class LinkManagementTargetCategoryModel extends BaseModuleEntity<number>
|
|
|
3959
3960
|
* لینک ثبت شده
|
|
3960
3961
|
*/
|
|
3961
3962
|
declare class LinkManagementTargetModel extends BaseModuleEntity<number> {
|
|
3963
|
+
createdByIp: string;
|
|
3962
3964
|
/** عنوان */
|
|
3963
3965
|
title: string;
|
|
3964
3966
|
/** توضیحات */
|
|
@@ -8242,6 +8244,7 @@ declare class ContactModuleSiteStorageValuesModel extends BaseModuleSiteStorageV
|
|
|
8242
8244
|
* مدل محتوای مخاطب
|
|
8243
8245
|
*/
|
|
8244
8246
|
declare class ContactContentModel extends BaseModuleEntity<string> {
|
|
8247
|
+
createdByIp: string;
|
|
8245
8248
|
/** عنوان */
|
|
8246
8249
|
title: string;
|
|
8247
8250
|
/** نام */
|
|
@@ -8696,6 +8699,8 @@ declare class TicketingFaqModel extends BaseModuleEntity<number> {
|
|
|
8696
8699
|
declare class TicketingDepartemenModel extends BaseModuleEntity<number> {
|
|
8697
8700
|
/** عنوان */
|
|
8698
8701
|
title: string;
|
|
8702
|
+
/** توضیحات */
|
|
8703
|
+
description: string;
|
|
8699
8704
|
/** جواب پیشفرض برای این بخش */
|
|
8700
8705
|
defaultAnswerBody: string;
|
|
8701
8706
|
/** اولویت در پاسخگویی */
|
|
@@ -8760,6 +8765,7 @@ declare class TicketingAnswerModel extends BaseModuleEntity<number> {
|
|
|
8760
8765
|
* مدل کار تیکت
|
|
8761
8766
|
*/
|
|
8762
8767
|
declare class TicketingTaskModel extends BaseModuleEntity<number> {
|
|
8768
|
+
createdByIp: string;
|
|
8763
8769
|
/** تاریخ انقضا */
|
|
8764
8770
|
expireDate?: Date;
|
|
8765
8771
|
/** عنوان */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ntk-cms-api",
|
|
3
|
-
"version": "20.26.
|
|
3
|
+
"version": "20.26.12",
|
|
4
4
|
"description": "Complete API service layer and data models for CMS operations with TypeScript support",
|
|
5
5
|
"author": "Alireza-Karavi",
|
|
6
6
|
"license": "ISC",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
},
|
|
38
38
|
"sideEffects": false,
|
|
39
39
|
"module": "fesm2022/ntk-cms-api.mjs",
|
|
40
|
-
"typings": "
|
|
40
|
+
"typings": "index.d.ts",
|
|
41
41
|
"exports": {
|
|
42
42
|
"./package.json": {
|
|
43
43
|
"default": "./package.json"
|
|
44
44
|
},
|
|
45
45
|
".": {
|
|
46
|
-
"types": "./
|
|
46
|
+
"types": "./index.d.ts",
|
|
47
47
|
"default": "./fesm2022/ntk-cms-api.mjs"
|
|
48
48
|
}
|
|
49
49
|
}
|