@rolatech/angular-services 20.2.9-beta.4 → 20.2.9-beta.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolatech/angular-services",
3
- "version": "20.2.9-beta.4",
3
+ "version": "20.2.9-beta.6",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
@@ -12,7 +12,7 @@
12
12
  "rxjs": "^6.5.3 || ^7.4.0"
13
13
  },
14
14
  "dependencies": {
15
- "@rolatech/angular-common": "20.2.9-beta.4",
15
+ "@rolatech/angular-common": "20.2.9-beta.6",
16
16
  "tslib": "^2.3.0"
17
17
  },
18
18
  "repository": {
@@ -779,6 +779,7 @@ declare class AmenityService extends BaseService {
779
779
  declare class PropertyService extends BaseService {
780
780
  init(): void;
781
781
  me(options: any): Observable<any>;
782
+ byAgent(options: any): Observable<ApiResponse<any>>;
782
783
  findByIds(ids: Array<string>): Observable<any>;
783
784
  publish(propertyId: string): Observable<any>;
784
785
  submitForReview(propertyId: string): Observable<any>;
@@ -1082,7 +1083,6 @@ interface SearchResult<T> {
1082
1083
  }
1083
1084
  declare class PropertySearchService extends BaseService {
1084
1085
  init(): void;
1085
- search1(options: any): Observable<any>;
1086
1086
  search<T = any>(rawParams: Record<string, any>): Observable<SearchResult<T>>;
1087
1087
  stripUndefined<T extends Record<string, any>>(obj: T): Partial<T>;
1088
1088
  isEmptyFilter(params: Record<string, any>, ignoreKeys?: string[]): boolean;