@arsedizioni/ars-utils 21.2.195 → 21.2.197

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": "@arsedizioni/ars-utils",
3
- "version": "21.2.195",
3
+ "version": "21.2.197",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -1,6 +1,6 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { Signal, OnDestroy } from '@angular/core';
3
- import { NameValueItem, Folder, QueryModel, LoginResult, ApiResult, FolderTree, QueryResultModel } from '@arsedizioni/ars-utils/core';
3
+ import { NameValueItem, Folder, QueryModel, LoginResult, ApiResult, UpdateResultModel, FolderTree, QueryResultModel } from '@arsedizioni/ars-utils/core';
4
4
  import { SendToDialogResult } from '@arsedizioni/ars-utils/ui.application';
5
5
  import { LoginOAuthType } from '@arsedizioni/ars-utils/ui.oauth';
6
6
  import * as _angular_common_http from '@angular/common/http';
@@ -1209,7 +1209,7 @@ declare class ClipperService implements OnDestroy {
1209
1209
  * Send documents link by email
1210
1210
  */
1211
1211
  sendTo(params: ClipperSendDocumentsByEmailParams): rxjs.Observable<ApiResult<number>>;
1212
- notifyPropertyTo(params: ClipperNotifyDocumentUserPropertyParams): rxjs.Observable<ApiResult<ClipperDocumentPropertyTracking[]>>;
1212
+ notifyPropertyTo(params: ClipperNotifyDocumentUserPropertyParams): rxjs.Observable<UpdateResultModel<ClipperDocumentPropertyTracking>>;
1213
1213
  /**
1214
1214
  * Display a page the full document report
1215
1215
  */
@@ -1494,6 +1494,11 @@ declare class ClipperService implements OnDestroy {
1494
1494
  * @param item: the item to save
1495
1495
  */
1496
1496
  saveProperty(item: ClipperDocumentProperty): rxjs.Observable<ApiResult<ClipperDocumentProperty>>;
1497
+ /**
1498
+ * Get the property tracking list for a property
1499
+ * @param id: the property id
1500
+ */
1501
+ getPropertyTrackings(id: number): rxjs.Observable<ApiResult<ClipperDocumentPropertyTracking[]>>;
1497
1502
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipperService, never>;
1498
1503
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClipperService>;
1499
1504
  }