@rolatech/angular-services 20.0.0-beta.13 → 20.0.0-beta.14
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/index.d.ts
CHANGED
|
@@ -459,6 +459,7 @@ declare class PropertyService extends BaseService {
|
|
|
459
459
|
submitForReview(propertyId: string): Observable<any>;
|
|
460
460
|
reviewApprove(id: string): Observable<any>;
|
|
461
461
|
reviewReject(id: string, data: any): Observable<any>;
|
|
462
|
+
export(): Observable<any>;
|
|
462
463
|
archived(propertyId: string): Observable<any>;
|
|
463
464
|
findWishlist(options: any): Observable<Object>;
|
|
464
465
|
addToWishlist(propertyId: string): Observable<Object>;
|
|
@@ -521,6 +522,12 @@ declare class PropertyService extends BaseService {
|
|
|
521
522
|
createTenant<T>(data: any): Observable<T>;
|
|
522
523
|
updateTenant<T>(id: string, data: any): Observable<T>;
|
|
523
524
|
deleteTenant<T>(id: string): Observable<T>;
|
|
525
|
+
uploadVideoTourInit(propertyId: string, data: any): Observable<any>;
|
|
526
|
+
uploadVideoTourPartsToProperty(propertyId: string, data: FormData): Observable<any>;
|
|
527
|
+
completePartUpload(propertyId: string, data: any): Observable<any>;
|
|
528
|
+
uploadVideoToProperty(propertyId: string, data: any): Observable<any>;
|
|
529
|
+
deletePropertyVideo(propertyId: string, videoId: any): Observable<any>;
|
|
530
|
+
uploadPropertyVideoThumbnail(videoId: any, data: FormData): Observable<any>;
|
|
524
531
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyService, never>;
|
|
525
532
|
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyService>;
|
|
526
533
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-services",
|
|
3
|
-
"version": "20.0.0-beta.
|
|
3
|
+
"version": "20.0.0-beta.14",
|
|
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.0.0-beta.
|
|
15
|
+
"@rolatech/angular-common": "20.0.0-beta.14",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|