@fiado/api-invoker 3.2.0 → 3.3.0
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/bin/contract-business/api/ContractBusinessApi.d.ts +1 -0
- package/bin/contract-business/api/interfaces/IContractBusinessApi.d.ts +1 -0
- package/package.json +1 -1
- package/src/contract-business/api/ContractBusinessApi.ts +1 -0
- package/src/contract-business/api/interfaces/IContractBusinessApi.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
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",
|
|
@@ -16,6 +16,7 @@ export default class ContractBusinessApi implements IContractBusinessApi {
|
|
|
16
16
|
peopleId: string;
|
|
17
17
|
folio: string;
|
|
18
18
|
sessionId: string;
|
|
19
|
+
metadata?: Record<string, unknown>;
|
|
19
20
|
}): Promise<any> {
|
|
20
21
|
const { documentType, ...body } = params;
|
|
21
22
|
return await this.httpRequest.post(`${this.baseUrl}/sign/${documentType}`, body);
|