ngx-dsxlibrary 1.21.25 → 1.21.26

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": "ngx-dsxlibrary",
3
- "version": "1.21.25",
3
+ "version": "1.21.26",
4
4
  "description": "Libreria para control de código automatizado.",
5
5
  "author": "DevSoftXela",
6
6
  "dependencies": {
@@ -230,6 +230,8 @@ interface ServiceResult<T> {
230
230
  data: T | null;
231
231
  /** Indica si la operación fue exitosa */
232
232
  isSuccess: boolean;
233
+ /** Título de la respuesta */
234
+ title: string;
233
235
  /** Mensaje descriptivo del resultado de la operación */
234
236
  message: string;
235
237
  }
@@ -673,6 +673,8 @@ interface ServiceResult<T> {
673
673
  data: T | null;
674
674
  /** Indica si la operación fue exitosa */
675
675
  isSuccess: boolean;
676
+ /** Título de la respuesta */
677
+ title: string;
676
678
  /** Mensaje descriptivo del resultado de la operación */
677
679
  message: string;
678
680
  }