@fiado/api-invoker 1.2.33 → 1.2.34
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.
|
@@ -4,5 +4,5 @@ import { ObservationCreateRequest } from '@fiado/type-kit/bin/observations';
|
|
|
4
4
|
* Interfaz para el servicio de Observations
|
|
5
5
|
*/
|
|
6
6
|
export interface IObservationsApi {
|
|
7
|
-
create(data: ObservationCreateRequest): Promise<FiadoApiResponse<any>>;
|
|
7
|
+
create(data: ObservationCreateRequest, author?: string): Promise<FiadoApiResponse<any>>;
|
|
8
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.34",
|
|
4
4
|
"description": "Sirve como un puente entre diferentes funciones lambda, facilitando la comunicación entre ellas a través de invocaciones http",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -5,5 +5,5 @@ import { ObservationCreateRequest } from '@fiado/type-kit/bin/observations';
|
|
|
5
5
|
* Interfaz para el servicio de Observations
|
|
6
6
|
*/
|
|
7
7
|
export interface IObservationsApi {
|
|
8
|
-
create(data: ObservationCreateRequest): Promise<FiadoApiResponse<any>>;
|
|
8
|
+
create(data: ObservationCreateRequest ,author?:string): Promise<FiadoApiResponse<any>>;
|
|
9
9
|
}
|