@fiado/api-invoker 1.1.3 → 1.1.4
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,6 +1,6 @@
|
|
|
1
1
|
import { IStpSpeiApi } from "./interfaces/IStpSpeiApi";
|
|
2
2
|
import { IHttpRequest } from "@fiado/http-client";
|
|
3
|
-
import { PutStpOrderRequest } from "@fiado/type-kit/bin/
|
|
3
|
+
import { PutStpOrderRequest } from "@fiado/type-kit/bin/stpSpei";
|
|
4
4
|
export declare class StpSpeiApi implements IStpSpeiApi {
|
|
5
5
|
private httpRequest;
|
|
6
6
|
private readonly baseUrl;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Sirve como un puente entre diferentes funciones lambda, facilitando la comunicación entre ellas a traves de invocaciones http",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@fiado/gateway-adapter": "^1.1.31",
|
|
17
17
|
"@fiado/http-client": "^1.0.2",
|
|
18
18
|
"@fiado/logger": "^1.0.2",
|
|
19
|
-
"@fiado/type-kit": "^1.2.
|
|
19
|
+
"@fiado/type-kit": "^1.2.9",
|
|
20
20
|
"dotenv": "^16.4.5",
|
|
21
21
|
"inversify": "^6.0.2",
|
|
22
22
|
"reflect-metadata": "^0.2.1",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {IStpSpeiApi} from "./interfaces/IStpSpeiApi";
|
|
2
2
|
import {inject, injectable} from "inversify";
|
|
3
3
|
import {IHttpRequest} from "@fiado/http-client";
|
|
4
|
-
import {PutStpOrderRequest} from "@fiado/type-kit/bin/
|
|
4
|
+
import {PutStpOrderRequest} from "@fiado/type-kit/bin/stpSpei";
|
|
5
5
|
|
|
6
6
|
@injectable()
|
|
7
7
|
export class StpSpeiApi implements IStpSpeiApi {
|