@esfaenza/extensions 11.2.34 → 11.2.35

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.
@@ -1,37 +1,23 @@
1
1
  /**
2
2
  * Classe che rappresenta una risposta ricevuta da un Backend
3
3
  */
4
- export declare class CallResult {
5
- /**
6
- * Tempo impiegato perché la chiamata terminasse
7
- */
4
+ export declare class CallResult<T = never> {
5
+ /** Tempo impiegato perché la chiamata terminasse */
8
6
  elapsedtime: string;
9
- /**
10
- * **true** se tutto è andato bene, **false** altrimenti
11
- */
7
+ /** **true** se tutto è andato bene, **false** altrimenti */
12
8
  success: boolean;
13
- /**
14
- * Indica se ci sono errori
15
- */
9
+ /** Indica se ci sono errori */
16
10
  haserror: boolean;
17
- /**
18
- * Codice dell'eventuale errore restituito
19
- */
11
+ /** Codice dell'eventuale errore restituito */
20
12
  errorcode: string;
21
- /**
22
- * Log dell'eventuale errore restituito
23
- */
13
+ /** Log dell'eventuale errore restituito */
24
14
  error: string;
25
- /**
26
- * ID dell'eventuale entità relativa a questa risposta
27
- */
15
+ /** ID dell'eventuale entità relativa a questa risposta */
28
16
  entityid: any;
29
- /**
30
- * Indica se ci sono warning
31
- */
17
+ /** Indica se ci sono warning */
32
18
  haswarning: boolean;
33
- /**
34
- * Log dell'eventuale warning restituito
35
- */
19
+ /** Log dell'eventuale warning restituito */
36
20
  warning: string;
21
+ /** Entità collegata a questo CallResult */
22
+ entity: T;
37
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/extensions",
3
- "version": "11.2.34",
3
+ "version": "11.2.35",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },