api-client-fideicomisos 1.11.0 → 1.12.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/dist/client.d.ts
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
function tenesUnProyecto(_ref) {
|
|
4
4
|
var client = _ref.client,
|
|
5
5
|
jwtToken = _ref.jwtToken;
|
|
6
|
-
function get() {
|
|
6
|
+
function get(_ref2) {
|
|
7
|
+
var jwtToken = _ref2.jwtToken;
|
|
7
8
|
return client({
|
|
8
9
|
url: "/api/tenes-proyecto",
|
|
9
10
|
method: "get",
|
|
@@ -12,9 +13,9 @@ function tenesUnProyecto(_ref) {
|
|
|
12
13
|
}
|
|
13
14
|
});
|
|
14
15
|
}
|
|
15
|
-
function update(
|
|
16
|
-
var jwtToken =
|
|
17
|
-
data =
|
|
16
|
+
function update(_ref3) {
|
|
17
|
+
var jwtToken = _ref3.jwtToken,
|
|
18
|
+
data = _ref3.data;
|
|
18
19
|
return client({
|
|
19
20
|
url: "/api/tenes-proyecto",
|
|
20
21
|
method: "put",
|
package/package.json
CHANGED