ntk-cms-api 1.2.81 → 1.2.82
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/bundles/ntk-cms-api.umd.js +13 -0
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/models/entity/base/accessModel.js +2 -1
- package/esm2015/lib/models/entity/base/baseEntity.js +2 -1
- package/esm2015/lib/models/entity/base/baseModuleEntity.js +2 -1
- package/esm2015/lib/models/entity/base/captchaModel.js +2 -1
- package/esm2015/lib/models/entity/base/enumInfoModel.js +2 -1
- package/esm2015/lib/models/entity/base/errorExceptionResult.js +2 -1
- package/esm2015/lib/models/entity/base/errorExceptionResultBase.js +2 -1
- package/esm2015/lib/models/entity/base/errorExceptionResultExportFile.js +2 -1
- package/esm2015/lib/models/entity/base/exportFileModel.js +2 -1
- package/esm2015/lib/models/entity/base/fieldInfo/dataFieldInfoModel.js +2 -1
- package/esm2015/lib/models/entity/base/filterDataModel.js +2 -1
- package/esm2015/lib/models/entity/base/filterModel.js +2 -1
- package/esm2015/lib/models/entity/estate/estateCustomerOrderModel.js +2 -1
- package/esm2015/lib/models/entity/estate/estatePropertyAdsModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estatePropertyTypeUsageModel.js +1 -1
- package/fesm2015/ntk-cms-api.js +13 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/base/accessModel.d.ts +2 -0
- package/lib/models/entity/base/fieldInfo/dataFieldInfoModel.d.ts +1 -0
- package/lib/models/entity/estate/estateCustomerOrderModel.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1335,6 +1335,7 @@
|
|
|
1335
1335
|
this.accessWatchField = false;
|
|
1336
1336
|
this.accessEditField = false;
|
|
1337
1337
|
this.accessAddField = false;
|
|
1338
|
+
this.accessExportField = false;
|
|
1338
1339
|
}
|
|
1339
1340
|
return DataFieldInfoModel;
|
|
1340
1341
|
}());
|
|
@@ -1359,6 +1360,7 @@
|
|
|
1359
1360
|
return GetPropertiesInfoModel;
|
|
1360
1361
|
}(FieldInfoModel));
|
|
1361
1362
|
|
|
1363
|
+
//@@tag-Version-2201011
|
|
1362
1364
|
var AccessModel = /** @class */ (function () {
|
|
1363
1365
|
function AccessModel() {
|
|
1364
1366
|
this.accessDeleteRow = false;
|
|
@@ -1380,6 +1382,7 @@
|
|
|
1380
1382
|
return AccessModel;
|
|
1381
1383
|
}());
|
|
1382
1384
|
|
|
1385
|
+
//@@tag-Version-2201011
|
|
1383
1386
|
var BaseEntity = /** @class */ (function () {
|
|
1384
1387
|
function BaseEntity() {
|
|
1385
1388
|
this.recordStatus = exports.EnumRecordStatus.Available;
|
|
@@ -1388,6 +1391,7 @@
|
|
|
1388
1391
|
return BaseEntity;
|
|
1389
1392
|
}());
|
|
1390
1393
|
|
|
1394
|
+
//@@tag-Version-2201011
|
|
1391
1395
|
var BaseModuleEntity = /** @class */ (function (_super) {
|
|
1392
1396
|
__extends(BaseModuleEntity, _super);
|
|
1393
1397
|
function BaseModuleEntity() {
|
|
@@ -1396,18 +1400,21 @@
|
|
|
1396
1400
|
return BaseModuleEntity;
|
|
1397
1401
|
}(BaseEntity));
|
|
1398
1402
|
|
|
1403
|
+
//@@tag-Version-2201011
|
|
1399
1404
|
var CaptchaModel = /** @class */ (function () {
|
|
1400
1405
|
function CaptchaModel() {
|
|
1401
1406
|
}
|
|
1402
1407
|
return CaptchaModel;
|
|
1403
1408
|
}());
|
|
1404
1409
|
|
|
1410
|
+
//@@tag-Version-2201011
|
|
1405
1411
|
var EnumInfoModel = /** @class */ (function () {
|
|
1406
1412
|
function EnumInfoModel() {
|
|
1407
1413
|
}
|
|
1408
1414
|
return EnumInfoModel;
|
|
1409
1415
|
}());
|
|
1410
1416
|
|
|
1417
|
+
//@@tag-Version-2201011
|
|
1411
1418
|
var ErrorExceptionResultBase = /** @class */ (function () {
|
|
1412
1419
|
function ErrorExceptionResultBase() {
|
|
1413
1420
|
this.status = 0;
|
|
@@ -1416,6 +1423,7 @@
|
|
|
1416
1423
|
return ErrorExceptionResultBase;
|
|
1417
1424
|
}());
|
|
1418
1425
|
|
|
1426
|
+
//@@tag-Version-2201011
|
|
1419
1427
|
var ErrorExceptionResult = /** @class */ (function (_super) {
|
|
1420
1428
|
__extends(ErrorExceptionResult, _super);
|
|
1421
1429
|
function ErrorExceptionResult() {
|
|
@@ -1426,6 +1434,7 @@
|
|
|
1426
1434
|
return ErrorExceptionResult;
|
|
1427
1435
|
}(ErrorExceptionResultBase));
|
|
1428
1436
|
|
|
1437
|
+
//@@tag-Version-2201011
|
|
1429
1438
|
var ErrorExceptionResultExportFile = /** @class */ (function (_super) {
|
|
1430
1439
|
__extends(ErrorExceptionResultExportFile, _super);
|
|
1431
1440
|
function ErrorExceptionResultExportFile() {
|
|
@@ -1437,12 +1446,14 @@
|
|
|
1437
1446
|
return ErrorExceptionResultExportFile;
|
|
1438
1447
|
}(ErrorExceptionResultBase));
|
|
1439
1448
|
|
|
1449
|
+
//@@tag-Version-2201011
|
|
1440
1450
|
var ExportFileModel = /** @class */ (function () {
|
|
1441
1451
|
function ExportFileModel() {
|
|
1442
1452
|
}
|
|
1443
1453
|
return ExportFileModel;
|
|
1444
1454
|
}());
|
|
1445
1455
|
|
|
1456
|
+
//@@tag-Version-2201011
|
|
1446
1457
|
var FilterDataModel = /** @class */ (function () {
|
|
1447
1458
|
function FilterDataModel() {
|
|
1448
1459
|
this.filters = new Array();
|
|
@@ -1450,6 +1461,7 @@
|
|
|
1450
1461
|
return FilterDataModel;
|
|
1451
1462
|
}());
|
|
1452
1463
|
|
|
1464
|
+
//@@tag-Version-2201011
|
|
1453
1465
|
var FilterModel = /** @class */ (function () {
|
|
1454
1466
|
function FilterModel() {
|
|
1455
1467
|
this.countLoad = false;
|
|
@@ -12528,6 +12540,7 @@
|
|
|
12528
12540
|
return EstateBillboardModel;
|
|
12529
12541
|
}(BaseModuleEntity));
|
|
12530
12542
|
|
|
12543
|
+
//@@tag-Version-2211261
|
|
12531
12544
|
var EstateCustomerOrderModel = /** @class */ (function (_super) {
|
|
12532
12545
|
__extends(EstateCustomerOrderModel, _super);
|
|
12533
12546
|
function EstateCustomerOrderModel() {
|