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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -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
|
}
|