ntk-cms-api 1.2.75 → 1.2.77
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 +26 -17
- 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/estate/_export.js +2 -1
- package/esm2015/lib/models/entity/estate/estateCustomerOrderResultModel.js +4 -0
- package/esm2015/lib/service/core-main/coreSiteUser.service.js +3 -18
- package/esm2015/lib/service/estate/_export.js +2 -1
- package/esm2015/lib/service/estate/estateCustomerOrderResult.service.js +11 -0
- package/fesm2015/ntk-cms-api.js +15 -17
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/_export.d.ts +1 -0
- package/lib/models/entity/estate/estateCustomerOrderResultModel.d.ts +12 -0
- package/lib/service/core-main/coreSiteUser.service.d.ts +1 -3
- package/lib/service/estate/_export.d.ts +1 -0
- package/lib/service/estate/estateCustomerOrderResult.service.d.ts +5 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3098,25 +3098,10 @@
|
|
|
3098
3098
|
CoreSiteUserService.prototype.getModuleControllerUrl = function () {
|
|
3099
3099
|
return 'CoreSiteUser';
|
|
3100
3100
|
};
|
|
3101
|
-
CoreSiteUserService.prototype.
|
|
3102
|
-
var _this = this;
|
|
3103
|
-
if (model == null) {
|
|
3104
|
-
model = new FilterModel();
|
|
3105
|
-
}
|
|
3106
|
-
return this.http
|
|
3107
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteUser', model, {
|
|
3108
|
-
headers: this.getHeaders(),
|
|
3109
|
-
})
|
|
3110
|
-
.pipe(operators.retry(this.configApiRetry),
|
|
3111
|
-
// catchError(this.handleError)
|
|
3112
|
-
operators.map(function (ret) {
|
|
3113
|
-
return _this.errorExceptionResultCheck(ret);
|
|
3114
|
-
}));
|
|
3115
|
-
};
|
|
3116
|
-
CoreSiteUserService.prototype.ServiceGetCurrentSiteUsers = function () {
|
|
3101
|
+
CoreSiteUserService.prototype.ServiceGetAllSiteCurrentUser = function () {
|
|
3117
3102
|
var _this = this;
|
|
3118
3103
|
return this.http
|
|
3119
|
-
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/
|
|
3104
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteCurrentUser', {
|
|
3120
3105
|
headers: this.getHeaders(),
|
|
3121
3106
|
})
|
|
3122
3107
|
.pipe(operators.retry(this.configApiRetry),
|
|
@@ -12376,6 +12361,20 @@
|
|
|
12376
12361
|
{ type: i0.Injectable }
|
|
12377
12362
|
];
|
|
12378
12363
|
|
|
12364
|
+
var EstateCustomerOrderResultService = /** @class */ (function (_super) {
|
|
12365
|
+
__extends(EstateCustomerOrderResultService, _super);
|
|
12366
|
+
function EstateCustomerOrderResultService() {
|
|
12367
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
12368
|
+
}
|
|
12369
|
+
EstateCustomerOrderResultService.prototype.getModuleControllerUrl = function () {
|
|
12370
|
+
return 'EstateCustomerOrderResult';
|
|
12371
|
+
};
|
|
12372
|
+
return EstateCustomerOrderResultService;
|
|
12373
|
+
}(ApiCmsServerBase));
|
|
12374
|
+
EstateCustomerOrderResultService.decorators = [
|
|
12375
|
+
{ type: i0.Injectable }
|
|
12376
|
+
];
|
|
12377
|
+
|
|
12379
12378
|
var EstateModuleConfigAdminMainValuesModel = /** @class */ (function (_super) {
|
|
12380
12379
|
__extends(EstateModuleConfigAdminMainValuesModel, _super);
|
|
12381
12380
|
function EstateModuleConfigAdminMainValuesModel() {
|
|
@@ -12609,6 +12608,14 @@
|
|
|
12609
12608
|
return EstatePropertyExpertPriceModel;
|
|
12610
12609
|
}(BaseModuleEntity));
|
|
12611
12610
|
|
|
12611
|
+
var EstateCustomerOrderResultModel = /** @class */ (function (_super) {
|
|
12612
|
+
__extends(EstateCustomerOrderResultModel, _super);
|
|
12613
|
+
function EstateCustomerOrderResultModel() {
|
|
12614
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
12615
|
+
}
|
|
12616
|
+
return EstateCustomerOrderResultModel;
|
|
12617
|
+
}(BaseModuleEntity));
|
|
12618
|
+
|
|
12612
12619
|
(function (EstateUserTypeEnum) {
|
|
12613
12620
|
EstateUserTypeEnum[EstateUserTypeEnum["Customer"] = 1] = "Customer";
|
|
12614
12621
|
EstateUserTypeEnum[EstateUserTypeEnum["Agent"] = 2] = "Agent";
|
|
@@ -15111,6 +15118,8 @@
|
|
|
15111
15118
|
exports.EstateContractTypeModel = EstateContractTypeModel;
|
|
15112
15119
|
exports.EstateContractTypeService = EstateContractTypeService;
|
|
15113
15120
|
exports.EstateCustomerOrderModel = EstateCustomerOrderModel;
|
|
15121
|
+
exports.EstateCustomerOrderResultModel = EstateCustomerOrderResultModel;
|
|
15122
|
+
exports.EstateCustomerOrderResultService = EstateCustomerOrderResultService;
|
|
15114
15123
|
exports.EstateCustomerOrderService = EstateCustomerOrderService;
|
|
15115
15124
|
exports.EstateEnumService = EstateEnumService;
|
|
15116
15125
|
exports.EstateModuleConfigAdminMainValuesModel = EstateModuleConfigAdminMainValuesModel;
|