ntk-cms-api 1.2.106 → 1.2.108

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.
Files changed (26) hide show
  1. package/bundles/ntk-cms-api.umd.js +49 -1
  2. package/bundles/ntk-cms-api.umd.js.map +1 -1
  3. package/bundles/ntk-cms-api.umd.min.js +1 -1
  4. package/bundles/ntk-cms-api.umd.min.js.map +1 -1
  5. package/esm2015/lib/models/entity/estate/estatePropertyModel.js +1 -1
  6. package/esm2015/lib/models/entity/estate/estatePropertyShareAgencyModel.js +1 -1
  7. package/esm2015/lib/models/entity/estate/estatePropertyShareAgentModel.js +1 -1
  8. package/esm2015/lib/models/entity/estate/estatePropertyShareSiteModel.js +1 -1
  9. package/esm2015/lib/service/base/apiCmsServerBase.service.js +2 -2
  10. package/esm2015/lib/service/base/iApiCmsServerBase.js +1 -1
  11. package/esm2015/lib/service/estate/estatePropertyShareAgency.service.js +13 -1
  12. package/esm2015/lib/service/estate/estatePropertyShareAgent.service.js +13 -1
  13. package/esm2015/lib/service/estate/estatePropertyShareSite.service.js +24 -1
  14. package/fesm2015/ntk-cms-api.js +45 -1
  15. package/fesm2015/ntk-cms-api.js.map +1 -1
  16. package/lib/models/entity/estate/estatePropertyModel.d.ts +1 -0
  17. package/lib/models/entity/estate/estatePropertyShareAgencyModel.d.ts +1 -0
  18. package/lib/models/entity/estate/estatePropertyShareAgentModel.d.ts +1 -0
  19. package/lib/models/entity/estate/estatePropertyShareSiteModel.d.ts +1 -0
  20. package/lib/service/base/apiCmsServerBase.service.d.ts +1 -1
  21. package/lib/service/base/iApiCmsServerBase.d.ts +1 -1
  22. package/lib/service/estate/estatePropertyShareAgency.service.d.ts +3 -0
  23. package/lib/service/estate/estatePropertyShareAgent.service.d.ts +3 -0
  24. package/lib/service/estate/estatePropertyShareSite.service.d.ts +4 -0
  25. package/ntk-cms-api.metadata.json +1 -1
  26. package/package.json +1 -1
@@ -29,6 +29,7 @@ export declare class EstatePropertyModel extends BaseModuleEntity<string> {
29
29
  propertyTypeLanduse: EstatePropertyTypeLanduseModel;
30
30
  propertyTypeUsage: EstatePropertyTypeUsageModel;
31
31
  sharingKey: number;
32
+ sharingId: number;
32
33
  geolocationlatitude?: number;
33
34
  geolocationlongitude?: number;
34
35
  address: string;
@@ -2,4 +2,5 @@ import { BaseModuleEntity } from '../base/baseModuleEntity';
2
2
  export declare class EstatePropertyShareAgencyModel extends BaseModuleEntity<string> {
3
3
  linkEstateAgencyId: string;
4
4
  linkEstatePropertyId: string;
5
+ accessViewHiddenInfo: boolean;
5
6
  }
@@ -2,4 +2,5 @@ import { BaseModuleEntity } from '../base/baseModuleEntity';
2
2
  export declare class EstatePropertyShareAgentModel extends BaseModuleEntity<string> {
3
3
  linkEstateAgentId: string;
4
4
  linkEstatePropertyId: string;
5
+ accessViewHiddenInfo: boolean;
5
6
  }
@@ -2,4 +2,5 @@ import { BaseModuleEntity } from '../base/baseModuleEntity';
2
2
  export declare class EstatePropertyShareSiteModel extends BaseModuleEntity<string> {
3
3
  linkCmsSiteId: number;
4
4
  linkEstatePropertyId: string;
5
+ accessViewHiddenInfo: boolean;
5
6
  }
@@ -12,7 +12,7 @@ import { CoreModuleLogMemoModel } from '../../models/entity/core-module-log/core
12
12
  import { ExportFileModel } from '../../models/entity/base/exportFileModel';
13
13
  export declare class ApiCmsServerBase<TModel, TKey> extends ApiServerBase implements IApiCmsServerBase {
14
14
  ServiceViewModel(): Observable<ErrorExceptionResult<TModel>>;
15
- ServicelReportFileGetAl(): Observable<ErrorExceptionResult<CoreModuleEntityReportFileModel>>;
15
+ ServiceReportFileGetAll(): Observable<ErrorExceptionResult<CoreModuleEntityReportFileModel>>;
16
16
  ServiceGetAll(model: FilterModel): Observable<ErrorExceptionResult<TModel>>;
17
17
  ServiceGetAllEditor(model: FilterModel): Observable<ErrorExceptionResult<TModel>>;
18
18
  ServiceGetOneById(id: TKey): Observable<ErrorExceptionResult<TModel>>;
@@ -13,7 +13,7 @@ export interface IApiCmsServerBase {
13
13
  ServiceGetCount(model: FilterModel): Observable<ErrorExceptionResultBase>;
14
14
  ServiceGetExist(model: FilterModel): Observable<ErrorExceptionResultBase>;
15
15
  ServiceDelete(id: any): Observable<ErrorExceptionResultBase>;
16
- ServicelReportFileGetAl(): Observable<ErrorExceptionResult<CoreModuleEntityReportFileModel>>;
16
+ ServiceReportFileGetAll(): Observable<ErrorExceptionResult<CoreModuleEntityReportFileModel>>;
17
17
  ServiceExportFile(model: FilterModel): Observable<ErrorExceptionResultExportFile>;
18
18
  ServiceExportFileGetOne(id: any, model: ExportFileModel): Observable<ErrorExceptionResultExportFile>;
19
19
  }
@@ -1,5 +1,8 @@
1
1
  import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
2
  import { EstatePropertyShareAgencyModel } from '../../models/entity/estate/estatePropertyShareAgencyModel';
3
+ import { Observable } from 'rxjs';
4
+ import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
3
5
  export declare class EstatePropertyShareAgencyService extends ApiCmsServerBase<EstatePropertyShareAgencyModel, string> {
4
6
  getModuleControllerUrl(): string;
7
+ ServiceJoin(linkEstateAgencyId: string, shareKey: string): Observable<ErrorExceptionResultBase>;
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
2
  import { EstatePropertyShareAgentModel } from '../../models/entity/estate/estatePropertyShareAgentModel';
3
+ import { Observable } from 'rxjs';
4
+ import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
3
5
  export declare class EstatePropertyShareAgentService extends ApiCmsServerBase<EstatePropertyShareAgentModel, string> {
4
6
  getModuleControllerUrl(): string;
7
+ ServiceJoin(linkEstateAgentId: string, shareKey: string): Observable<ErrorExceptionResultBase>;
5
8
  }
@@ -1,5 +1,9 @@
1
1
  import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
2
  import { EstatePropertyShareSiteModel } from '../../models/entity/estate/estatePropertyShareSiteModel';
3
+ import { Observable } from 'rxjs';
4
+ import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
3
5
  export declare class EstatePropertyShareSiteService extends ApiCmsServerBase<EstatePropertyShareSiteModel, string> {
4
6
  getModuleControllerUrl(): string;
7
+ ServiceJoinBySiteId(linkSitId: string, shareKey: string): Observable<ErrorExceptionResultBase>;
8
+ ServiceJoin(shareKey: string): Observable<ErrorExceptionResultBase>;
5
9
  }