@fiado/api-invoker 1.1.60 → 1.1.61
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.
|
@@ -15,5 +15,5 @@ export declare class DirectoryApi implements IDirectoryApi {
|
|
|
15
15
|
addOwnerDirectoryId(directoryId: string, newOwnerDirectoryId: any): Promise<any>;
|
|
16
16
|
updateOwnerDirectoryId(directoryId: string, newOwnerDirectoryId: any): Promise<any>;
|
|
17
17
|
updateUserProfile(directoryId: string, profile: Profile): Promise<void>;
|
|
18
|
-
updateStatus(directoryId: string, status: Status
|
|
18
|
+
updateStatus(directoryId: string, status: Status): Promise<void>;
|
|
19
19
|
}
|
|
@@ -49,5 +49,5 @@ export interface IDirectoryApi {
|
|
|
49
49
|
addOwnerDirectoryId(directoryId: string, newOwnerDirectoryId: any): Promise<any>;
|
|
50
50
|
updateUserProfile(directoryId: string, profile: Profile): Promise<void>;
|
|
51
51
|
updateOwnerDirectoryId(directoryId: string, newOwnerDirectoryId: any): Promise<any>;
|
|
52
|
-
updateStatus(directoryId: string, status: Status
|
|
52
|
+
updateStatus(directoryId: string, status: Status): Promise<void>;
|
|
53
53
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiado/api-invoker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.61",
|
|
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",
|
|
@@ -113,7 +113,7 @@ export class DirectoryApi implements IDirectoryApi {
|
|
|
113
113
|
return await this.httpRequest.post(`${url}`, body, { 'operationName': operationName });
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
public async updateStatus(directoryId: string, status: Status
|
|
116
|
+
public async updateStatus(directoryId: string, status: Status): Promise<void> {
|
|
117
117
|
|
|
118
118
|
const url = `${this.baseUrl}`;
|
|
119
119
|
const operationName = "updateStatus";
|
|
@@ -59,5 +59,5 @@ export interface IDirectoryApi {
|
|
|
59
59
|
|
|
60
60
|
updateOwnerDirectoryId(directoryId: string, newOwnerDirectoryId): Promise<any>
|
|
61
61
|
|
|
62
|
-
updateStatus(directoryId: string, status: Status
|
|
62
|
+
updateStatus(directoryId: string, status: Status): Promise<void>
|
|
63
63
|
}
|