@rolatech/angular-services 20.2.9-beta.1 → 20.2.9-beta.2
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.
|
|
3
|
+
"version": "20.2.9-beta.2",
|
|
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.
|
|
15
|
+
"@rolatech/angular-common": "20.2.9-beta.2",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
@@ -446,6 +446,7 @@ interface PermissionsDto {
|
|
|
446
446
|
canReject: boolean;
|
|
447
447
|
canWithdraw: boolean;
|
|
448
448
|
canEdit: boolean;
|
|
449
|
+
canCancel: boolean;
|
|
449
450
|
canMarkUnderOffer: boolean;
|
|
450
451
|
canStartReferencing: boolean;
|
|
451
452
|
canMarkReferencesPassed: boolean;
|
|
@@ -1432,6 +1433,8 @@ declare class PropertyOfferCounterService extends BaseService {
|
|
|
1432
1433
|
markReferencesFailed(id: string, data: any): Observable<any>;
|
|
1433
1434
|
markReferencesReopen(id: string, data: any): Observable<any>;
|
|
1434
1435
|
markCompleted(id: string): Observable<any>;
|
|
1436
|
+
cancelByTenant(id: string, clientId?: string): Observable<any>;
|
|
1437
|
+
cancelByAgent(id: string, clientId?: string): Observable<any>;
|
|
1435
1438
|
getEditLock(id: string): Observable<ApiResponse<EditLockResponse>>;
|
|
1436
1439
|
acquireLock(id: string, clientId: string): Observable<ApiResponse<EditLockResponse>>;
|
|
1437
1440
|
heartbeat(id: string): Observable<ApiResponse<EditLockResponse>>;
|