@fiado/api-invoker 1.1.81 → 1.1.82
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.
|
@@ -51,8 +51,8 @@ let IdentityApi = class IdentityApi {
|
|
|
51
51
|
throw new Error("Directory ID is required.");
|
|
52
52
|
}
|
|
53
53
|
const url = `${this.baseUrl}identities/profile?directoryId=${directoryId}&typeOfDirectoryId=USER`;
|
|
54
|
-
const operationName = "getUserInfoByIds";
|
|
55
|
-
return await this.httpRequest.get(url
|
|
54
|
+
// const operationName = "getUserInfoByIds";
|
|
55
|
+
return await this.httpRequest.get(url);
|
|
56
56
|
}
|
|
57
57
|
};
|
|
58
58
|
exports.IdentityApi = IdentityApi;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.82",
|
|
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",
|
|
@@ -53,9 +53,9 @@ export class IdentityApi implements IIdentityApi {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
const url = `${this.baseUrl}identities/profile?directoryId=${directoryId}&typeOfDirectoryId=USER`;
|
|
56
|
-
const operationName = "getUserInfoByIds";
|
|
56
|
+
// const operationName = "getUserInfoByIds";
|
|
57
57
|
|
|
58
|
-
return await this.httpRequest.get<any>(url
|
|
58
|
+
return await this.httpRequest.get<any>(url);
|
|
59
59
|
|
|
60
60
|
}
|
|
61
61
|
}
|