ntk-cms-api 1.2.255 → 1.2.257
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/esm2020/lib/models/entity/estate/estatePropertyCompanyModel.mjs +7 -1
- package/esm2020/lib/models/entity/estate/estatePropertyProjectModel.mjs +7 -1
- package/esm2020/lib/models/entity/estate/estatePropertySupplierModel.mjs +7 -1
- package/esm2020/lib/models/entity/web-designer/webDesignerMainPageModel.mjs +1 -1
- package/fesm2015/ntk-cms-api.mjs +15 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +15 -0
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/entity/estate/estatePropertyCompanyModel.d.ts +2 -1
- package/lib/models/entity/estate/estatePropertyProjectModel.d.ts +2 -1
- package/lib/models/entity/estate/estatePropertySupplierModel.d.ts +2 -1
- package/lib/models/entity/web-designer/webDesignerMainPageModel.d.ts +2 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -11228,10 +11228,20 @@ class EstatePropertyShareSiteModel extends BaseModuleEntity {
|
|
|
11228
11228
|
|
|
11229
11229
|
//@@tag-Version-2201011
|
|
11230
11230
|
class EstatePropertyProjectModel extends BaseModuleEntity {
|
|
11231
|
+
constructor() {
|
|
11232
|
+
super(...arguments);
|
|
11233
|
+
this.mainAdminRecordStatus = RecordStatusEnum.Pending;
|
|
11234
|
+
// * About */
|
|
11235
|
+
}
|
|
11231
11236
|
}
|
|
11232
11237
|
|
|
11233
11238
|
//@@tag-Version-2311011
|
|
11234
11239
|
class EstatePropertyCompanyModel extends BaseModuleEntity {
|
|
11240
|
+
constructor() {
|
|
11241
|
+
super(...arguments);
|
|
11242
|
+
this.mainAdminRecordStatus = RecordStatusEnum.Pending;
|
|
11243
|
+
// * About */
|
|
11244
|
+
}
|
|
11235
11245
|
}
|
|
11236
11246
|
|
|
11237
11247
|
//@@tag-Version-2201011
|
|
@@ -11270,6 +11280,11 @@ class EstatePropertySupplierCategoryModel extends BaseModuleEntity {
|
|
|
11270
11280
|
|
|
11271
11281
|
//@@tag-Version-2311011
|
|
11272
11282
|
class EstatePropertySupplierModel extends BaseModuleEntity {
|
|
11283
|
+
constructor() {
|
|
11284
|
+
super(...arguments);
|
|
11285
|
+
this.mainAdminRecordStatus = RecordStatusEnum.Pending;
|
|
11286
|
+
// * About */
|
|
11287
|
+
}
|
|
11273
11288
|
}
|
|
11274
11289
|
|
|
11275
11290
|
//@@tag-Version-2212191
|