ntk-cms-api 1.0.430 → 1.0.434
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 +168 -21
- 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/dto/estate/_export.js +1 -2
- package/esm2015/lib/models/entity/core-main/coreModuleModel.js +1 -1
- package/esm2015/lib/models/entity/core-main/coreModuleSaleSerialModel.js +1 -1
- package/esm2015/lib/models/entity/core-module-main/_export.js +7 -1
- package/esm2015/lib/models/entity/core-module-main/coreModuleRelationshipContentModel.js +4 -0
- package/esm2015/lib/models/entity/core-module-main/coreModuleSiteAccountingDocumentDetailModel.js +4 -0
- package/esm2015/lib/models/entity/core-module-main/coreModuleSiteAccountingDocumentDetailTypeModel.js +4 -0
- package/esm2015/lib/models/entity/core-module-main/coreModuleSiteAccountingDocumentModel.js +4 -0
- package/esm2015/lib/models/entity/core-module-main/coreModuleSiteCreditModel.js +4 -0
- package/esm2015/lib/models/entity/core-module-main/coreModuleSiteUserCreditModel.js +4 -0
- package/esm2015/lib/models/entity/estate/estatePropertyModel.js +1 -1
- package/esm2015/lib/service/core-module-main/_export.js +7 -1
- package/esm2015/lib/service/core-module-main/coreModuleRelationshipContent.service.js +11 -0
- package/esm2015/lib/service/core-module-main/coreModuleSiteAccountingDocument.service.js +11 -0
- package/esm2015/lib/service/core-module-main/coreModuleSiteAccountingDocumentDetail.service.js +11 -0
- package/esm2015/lib/service/core-module-main/coreModuleSiteAccountingDocumentDetailType.service.js +11 -0
- package/esm2015/lib/service/core-module-main/coreModuleSiteCredit.service.js +23 -0
- package/esm2015/lib/service/core-module-main/coreModuleSiteUserCredit.service.js +23 -0
- package/esm2015/lib/service/estate/estateProperty.service.js +1 -13
- package/fesm2015/ntk-cms-api.js +95 -19
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +0 -1
- package/lib/models/entity/core-main/coreModuleModel.d.ts +2 -0
- package/lib/models/entity/core-main/coreModuleSaleSerialModel.d.ts +3 -3
- package/lib/models/entity/core-module-main/_export.d.ts +6 -0
- package/lib/models/entity/core-module-main/coreModuleRelationshipContentModel.d.ts +8 -0
- package/lib/models/entity/core-module-main/coreModuleSiteAccountingDocumentDetailModel.d.ts +27 -0
- package/lib/models/entity/core-module-main/coreModuleSiteAccountingDocumentDetailTypeModel.d.ts +6 -0
- package/lib/models/entity/core-module-main/coreModuleSiteAccountingDocumentModel.d.ts +13 -0
- package/lib/models/entity/core-module-main/coreModuleSiteCreditModel.d.ts +5 -0
- package/lib/models/entity/core-module-main/coreModuleSiteUserCreditModel.d.ts +6 -0
- package/lib/models/entity/estate/estatePropertyModel.d.ts +4 -0
- package/lib/service/core-module-main/_export.d.ts +6 -0
- package/lib/service/core-module-main/coreModuleRelationshipContent.service.d.ts +5 -0
- package/lib/service/core-module-main/coreModuleSiteAccountingDocument.service.d.ts +5 -0
- package/lib/service/core-module-main/coreModuleSiteAccountingDocumentDetail.service.d.ts +5 -0
- package/lib/service/core-module-main/coreModuleSiteAccountingDocumentDetailType.service.d.ts +5 -0
- package/lib/service/core-module-main/coreModuleSiteCredit.service.d.ts +8 -0
- package/lib/service/core-module-main/coreModuleSiteUserCredit.service.d.ts +8 -0
- package/lib/service/estate/estateProperty.service.d.ts +0 -2
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
- package/esm2015/lib/models/dto/estate/estatePropertyDtoModel.js +0 -7
- package/lib/models/dto/estate/estatePropertyDtoModel.d.ts +0 -46
|
@@ -4191,6 +4191,114 @@
|
|
|
4191
4191
|
{ type: i0.Injectable }
|
|
4192
4192
|
];
|
|
4193
4193
|
|
|
4194
|
+
var CoreModuleSiteCreditService = /** @class */ (function (_super) {
|
|
4195
|
+
__extends(CoreModuleSiteCreditService, _super);
|
|
4196
|
+
function CoreModuleSiteCreditService() {
|
|
4197
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4198
|
+
}
|
|
4199
|
+
CoreModuleSiteCreditService.prototype.getModuleControllerUrl = function () {
|
|
4200
|
+
return 'CoreModuleSiteCredit';
|
|
4201
|
+
};
|
|
4202
|
+
CoreModuleSiteCreditService.prototype.ServiceGetCredit = function (LinkModuleId) {
|
|
4203
|
+
var _this = this;
|
|
4204
|
+
return this.http
|
|
4205
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetCredit/' + LinkModuleId, {
|
|
4206
|
+
headers: this.getHeaders(),
|
|
4207
|
+
})
|
|
4208
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
4209
|
+
// catchError(this.handleError)
|
|
4210
|
+
operators.map(function (ret) {
|
|
4211
|
+
return _this.errorExceptionResultCheck(ret);
|
|
4212
|
+
}));
|
|
4213
|
+
};
|
|
4214
|
+
return CoreModuleSiteCreditService;
|
|
4215
|
+
}(ApiCmsServerBase));
|
|
4216
|
+
CoreModuleSiteCreditService.decorators = [
|
|
4217
|
+
{ type: i0.Injectable }
|
|
4218
|
+
];
|
|
4219
|
+
|
|
4220
|
+
var CoreModuleSiteUserCreditService = /** @class */ (function (_super) {
|
|
4221
|
+
__extends(CoreModuleSiteUserCreditService, _super);
|
|
4222
|
+
function CoreModuleSiteUserCreditService() {
|
|
4223
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4224
|
+
}
|
|
4225
|
+
CoreModuleSiteUserCreditService.prototype.getModuleControllerUrl = function () {
|
|
4226
|
+
return 'CoreModuleSiteUserCredit';
|
|
4227
|
+
};
|
|
4228
|
+
CoreModuleSiteUserCreditService.prototype.ServiceGetCredit = function (LinkModuleId) {
|
|
4229
|
+
var _this = this;
|
|
4230
|
+
return this.http
|
|
4231
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetCredit/' + LinkModuleId, {
|
|
4232
|
+
headers: this.getHeaders(),
|
|
4233
|
+
})
|
|
4234
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
4235
|
+
// catchError(this.handleError)
|
|
4236
|
+
operators.map(function (ret) {
|
|
4237
|
+
return _this.errorExceptionResultCheck(ret);
|
|
4238
|
+
}));
|
|
4239
|
+
};
|
|
4240
|
+
return CoreModuleSiteUserCreditService;
|
|
4241
|
+
}(ApiCmsServerBase));
|
|
4242
|
+
CoreModuleSiteUserCreditService.decorators = [
|
|
4243
|
+
{ type: i0.Injectable }
|
|
4244
|
+
];
|
|
4245
|
+
|
|
4246
|
+
var CoreModuleSiteAccountingDocumentDetailTypeService = /** @class */ (function (_super) {
|
|
4247
|
+
__extends(CoreModuleSiteAccountingDocumentDetailTypeService, _super);
|
|
4248
|
+
function CoreModuleSiteAccountingDocumentDetailTypeService() {
|
|
4249
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4250
|
+
}
|
|
4251
|
+
CoreModuleSiteAccountingDocumentDetailTypeService.prototype.getModuleControllerUrl = function () {
|
|
4252
|
+
return 'CoreModuleSiteAccountingDocumentDetailType';
|
|
4253
|
+
};
|
|
4254
|
+
return CoreModuleSiteAccountingDocumentDetailTypeService;
|
|
4255
|
+
}(ApiCmsServerBase));
|
|
4256
|
+
CoreModuleSiteAccountingDocumentDetailTypeService.decorators = [
|
|
4257
|
+
{ type: i0.Injectable }
|
|
4258
|
+
];
|
|
4259
|
+
|
|
4260
|
+
var CoreModuleSiteAccountingDocumentDetailService = /** @class */ (function (_super) {
|
|
4261
|
+
__extends(CoreModuleSiteAccountingDocumentDetailService, _super);
|
|
4262
|
+
function CoreModuleSiteAccountingDocumentDetailService() {
|
|
4263
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4264
|
+
}
|
|
4265
|
+
CoreModuleSiteAccountingDocumentDetailService.prototype.getModuleControllerUrl = function () {
|
|
4266
|
+
return 'CoreModuleSiteAccountingDocumentDetail';
|
|
4267
|
+
};
|
|
4268
|
+
return CoreModuleSiteAccountingDocumentDetailService;
|
|
4269
|
+
}(ApiCmsServerBase));
|
|
4270
|
+
CoreModuleSiteAccountingDocumentDetailService.decorators = [
|
|
4271
|
+
{ type: i0.Injectable }
|
|
4272
|
+
];
|
|
4273
|
+
|
|
4274
|
+
var CoreModuleSiteAccountingDocumentService = /** @class */ (function (_super) {
|
|
4275
|
+
__extends(CoreModuleSiteAccountingDocumentService, _super);
|
|
4276
|
+
function CoreModuleSiteAccountingDocumentService() {
|
|
4277
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4278
|
+
}
|
|
4279
|
+
CoreModuleSiteAccountingDocumentService.prototype.getModuleControllerUrl = function () {
|
|
4280
|
+
return 'CoreModuleSiteAccountingDocument';
|
|
4281
|
+
};
|
|
4282
|
+
return CoreModuleSiteAccountingDocumentService;
|
|
4283
|
+
}(ApiCmsServerBase));
|
|
4284
|
+
CoreModuleSiteAccountingDocumentService.decorators = [
|
|
4285
|
+
{ type: i0.Injectable }
|
|
4286
|
+
];
|
|
4287
|
+
|
|
4288
|
+
var CoreModuleRelationshipContentService = /** @class */ (function (_super) {
|
|
4289
|
+
__extends(CoreModuleRelationshipContentService, _super);
|
|
4290
|
+
function CoreModuleRelationshipContentService() {
|
|
4291
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4292
|
+
}
|
|
4293
|
+
CoreModuleRelationshipContentService.prototype.getModuleControllerUrl = function () {
|
|
4294
|
+
return 'CoreModuleRelationshipContent';
|
|
4295
|
+
};
|
|
4296
|
+
return CoreModuleRelationshipContentService;
|
|
4297
|
+
}(ApiCmsServerBase));
|
|
4298
|
+
CoreModuleRelationshipContentService.decorators = [
|
|
4299
|
+
{ type: i0.Injectable }
|
|
4300
|
+
];
|
|
4301
|
+
|
|
4194
4302
|
var CoreModuleLogScoreService = /** @class */ (function (_super) {
|
|
4195
4303
|
__extends(CoreModuleLogScoreService, _super);
|
|
4196
4304
|
function CoreModuleLogScoreService() {
|
|
@@ -4249,6 +4357,54 @@
|
|
|
4249
4357
|
return CoreModuleTagModel;
|
|
4250
4358
|
}(BaseModuleEntity));
|
|
4251
4359
|
|
|
4360
|
+
var CoreModuleSiteUserCreditModel = /** @class */ (function (_super) {
|
|
4361
|
+
__extends(CoreModuleSiteUserCreditModel, _super);
|
|
4362
|
+
function CoreModuleSiteUserCreditModel() {
|
|
4363
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4364
|
+
}
|
|
4365
|
+
return CoreModuleSiteUserCreditModel;
|
|
4366
|
+
}(BaseModuleEntity));
|
|
4367
|
+
|
|
4368
|
+
var CoreModuleSiteCreditModel = /** @class */ (function (_super) {
|
|
4369
|
+
__extends(CoreModuleSiteCreditModel, _super);
|
|
4370
|
+
function CoreModuleSiteCreditModel() {
|
|
4371
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4372
|
+
}
|
|
4373
|
+
return CoreModuleSiteCreditModel;
|
|
4374
|
+
}(BaseModuleEntity));
|
|
4375
|
+
|
|
4376
|
+
var CoreModuleSiteAccountingDocumentDetailTypeModel = /** @class */ (function (_super) {
|
|
4377
|
+
__extends(CoreModuleSiteAccountingDocumentDetailTypeModel, _super);
|
|
4378
|
+
function CoreModuleSiteAccountingDocumentDetailTypeModel() {
|
|
4379
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4380
|
+
}
|
|
4381
|
+
return CoreModuleSiteAccountingDocumentDetailTypeModel;
|
|
4382
|
+
}(BaseModuleEntity));
|
|
4383
|
+
|
|
4384
|
+
var CoreModuleSiteAccountingDocumentDetailModel = /** @class */ (function (_super) {
|
|
4385
|
+
__extends(CoreModuleSiteAccountingDocumentDetailModel, _super);
|
|
4386
|
+
function CoreModuleSiteAccountingDocumentDetailModel() {
|
|
4387
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4388
|
+
}
|
|
4389
|
+
return CoreModuleSiteAccountingDocumentDetailModel;
|
|
4390
|
+
}(BaseModuleEntity));
|
|
4391
|
+
|
|
4392
|
+
var CoreModuleSiteAccountingDocumentModel = /** @class */ (function (_super) {
|
|
4393
|
+
__extends(CoreModuleSiteAccountingDocumentModel, _super);
|
|
4394
|
+
function CoreModuleSiteAccountingDocumentModel() {
|
|
4395
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4396
|
+
}
|
|
4397
|
+
return CoreModuleSiteAccountingDocumentModel;
|
|
4398
|
+
}(BaseModuleEntity));
|
|
4399
|
+
|
|
4400
|
+
var CoreModuleRelationshipContentModel = /** @class */ (function (_super) {
|
|
4401
|
+
__extends(CoreModuleRelationshipContentModel, _super);
|
|
4402
|
+
function CoreModuleRelationshipContentModel() {
|
|
4403
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
4404
|
+
}
|
|
4405
|
+
return CoreModuleRelationshipContentModel;
|
|
4406
|
+
}(BaseModuleEntity));
|
|
4407
|
+
|
|
4252
4408
|
var CoreModuleLogFavoriteModel = /** @class */ (function (_super) {
|
|
4253
4409
|
__extends(CoreModuleLogFavoriteModel, _super);
|
|
4254
4410
|
function CoreModuleLogFavoriteModel() {
|
|
@@ -10824,19 +10980,6 @@
|
|
|
10824
10980
|
EstatePropertyService.prototype.getModuleControllerUrl = function () {
|
|
10825
10981
|
return 'EstateProperty';
|
|
10826
10982
|
};
|
|
10827
|
-
EstatePropertyService.prototype.ServiceAdvanceAdd = function (model) {
|
|
10828
|
-
var _this = this;
|
|
10829
|
-
// this.loadingStatus=true;
|
|
10830
|
-
return this.http
|
|
10831
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/', model, {
|
|
10832
|
-
headers: this.getHeaders(),
|
|
10833
|
-
})
|
|
10834
|
-
.pipe(operators.retry(this.configApiRetry),
|
|
10835
|
-
// catchError(this.handleError)
|
|
10836
|
-
operators.map(function (ret) {
|
|
10837
|
-
return _this.errorExceptionResultCheck(ret);
|
|
10838
|
-
}));
|
|
10839
|
-
};
|
|
10840
10983
|
EstatePropertyService.prototype.ServiceFavoriteAdd = function (Id) {
|
|
10841
10984
|
var _this = this;
|
|
10842
10985
|
return this.http
|
|
@@ -11226,13 +11369,6 @@
|
|
|
11226
11369
|
EnumInputDataType[EnumInputDataType["TextArea"] = 5] = "TextArea";
|
|
11227
11370
|
})(exports.EnumInputDataType || (exports.EnumInputDataType = {}));
|
|
11228
11371
|
|
|
11229
|
-
var EstatePropertyDtoModel = /** @class */ (function () {
|
|
11230
|
-
function EstatePropertyDtoModel() {
|
|
11231
|
-
this.MainAdminRecordStatus = exports.EnumRecordStatus.Pending;
|
|
11232
|
-
}
|
|
11233
|
-
return EstatePropertyDtoModel;
|
|
11234
|
-
}());
|
|
11235
|
-
|
|
11236
11372
|
var WebDesignerEnumService = /** @class */ (function (_super) {
|
|
11237
11373
|
__extends(WebDesignerEnumService, _super);
|
|
11238
11374
|
function WebDesignerEnumService() {
|
|
@@ -12697,6 +12833,8 @@
|
|
|
12697
12833
|
exports.CoreModuleProcessCustomizeService = CoreModuleProcessCustomizeService;
|
|
12698
12834
|
exports.CoreModuleProcessModel = CoreModuleProcessModel;
|
|
12699
12835
|
exports.CoreModuleProcessService = CoreModuleProcessService;
|
|
12836
|
+
exports.CoreModuleRelationshipContentModel = CoreModuleRelationshipContentModel;
|
|
12837
|
+
exports.CoreModuleRelationshipContentService = CoreModuleRelationshipContentService;
|
|
12700
12838
|
exports.CoreModuleSaleHeaderCalculateDtoModel = CoreModuleSaleHeaderCalculateDtoModel;
|
|
12701
12839
|
exports.CoreModuleSaleHeaderGroupModel = CoreModuleSaleHeaderGroupModel;
|
|
12702
12840
|
exports.CoreModuleSaleHeaderGroupService = CoreModuleSaleHeaderGroupService;
|
|
@@ -12712,9 +12850,19 @@
|
|
|
12712
12850
|
exports.CoreModuleSaleSerialModel = CoreModuleSaleSerialModel;
|
|
12713
12851
|
exports.CoreModuleSaleSerialService = CoreModuleSaleSerialService;
|
|
12714
12852
|
exports.CoreModuleService = CoreModuleService;
|
|
12853
|
+
exports.CoreModuleSiteAccountingDocumentDetailModel = CoreModuleSiteAccountingDocumentDetailModel;
|
|
12854
|
+
exports.CoreModuleSiteAccountingDocumentDetailService = CoreModuleSiteAccountingDocumentDetailService;
|
|
12855
|
+
exports.CoreModuleSiteAccountingDocumentDetailTypeModel = CoreModuleSiteAccountingDocumentDetailTypeModel;
|
|
12856
|
+
exports.CoreModuleSiteAccountingDocumentDetailTypeService = CoreModuleSiteAccountingDocumentDetailTypeService;
|
|
12857
|
+
exports.CoreModuleSiteAccountingDocumentModel = CoreModuleSiteAccountingDocumentModel;
|
|
12858
|
+
exports.CoreModuleSiteAccountingDocumentService = CoreModuleSiteAccountingDocumentService;
|
|
12859
|
+
exports.CoreModuleSiteCreditModel = CoreModuleSiteCreditModel;
|
|
12860
|
+
exports.CoreModuleSiteCreditService = CoreModuleSiteCreditService;
|
|
12715
12861
|
exports.CoreModuleSiteModel = CoreModuleSiteModel;
|
|
12716
12862
|
exports.CoreModuleSiteService = CoreModuleSiteService;
|
|
12717
12863
|
exports.CoreModuleSiteStorageValuesModel = CoreModuleSiteStorageValuesModel;
|
|
12864
|
+
exports.CoreModuleSiteUserCreditModel = CoreModuleSiteUserCreditModel;
|
|
12865
|
+
exports.CoreModuleSiteUserCreditService = CoreModuleSiteUserCreditService;
|
|
12718
12866
|
exports.CoreModuleTagCategoryModel = CoreModuleTagCategoryModel;
|
|
12719
12867
|
exports.CoreModuleTagCategoryService = CoreModuleTagCategoryService;
|
|
12720
12868
|
exports.CoreModuleTagModel = CoreModuleTagModel;
|
|
@@ -12821,7 +12969,6 @@
|
|
|
12821
12969
|
exports.EstatePropertyDetailModel = EstatePropertyDetailModel;
|
|
12822
12970
|
exports.EstatePropertyDetailService = EstatePropertyDetailService;
|
|
12823
12971
|
exports.EstatePropertyDetailValueModel = EstatePropertyDetailValueModel;
|
|
12824
|
-
exports.EstatePropertyDtoModel = EstatePropertyDtoModel;
|
|
12825
12972
|
exports.EstatePropertyHistoryModel = EstatePropertyHistoryModel;
|
|
12826
12973
|
exports.EstatePropertyHistoryService = EstatePropertyHistoryService;
|
|
12827
12974
|
exports.EstatePropertyModel = EstatePropertyModel;
|