ntk-cms-api 1.2.107 → 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.
@@ -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
  }
@@ -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
  }