api-client-fideicomisos 1.7.0 → 1.8.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
|
@@ -9,7 +9,8 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
9
9
|
function accesoClientes(_ref) {
|
|
10
10
|
var client = _ref.client,
|
|
11
11
|
jwtToken = _ref.jwtToken;
|
|
12
|
-
function get() {
|
|
12
|
+
function get(_ref2) {
|
|
13
|
+
var jwtToken = _ref2.jwtToken;
|
|
13
14
|
return client({
|
|
14
15
|
url: "/api/acceso-client",
|
|
15
16
|
method: "get",
|
|
@@ -18,9 +19,9 @@ function accesoClientes(_ref) {
|
|
|
18
19
|
}
|
|
19
20
|
});
|
|
20
21
|
}
|
|
21
|
-
function update(
|
|
22
|
-
var jwtToken =
|
|
23
|
-
data =
|
|
22
|
+
function update(_ref3) {
|
|
23
|
+
var jwtToken = _ref3.jwtToken,
|
|
24
|
+
data = _ref3.data;
|
|
24
25
|
var formattedData = {
|
|
25
26
|
data: _objectSpread({}, data)
|
|
26
27
|
};
|
package/package.json
CHANGED