@mojaloop/security-bc-client-lib
Advanced tools
Comparing version 0.0.52 to 0.0.53
@@ -54,2 +54,7 @@ /***** | ||
addPrivilege(privId: string, labelName: string, description: string): void; | ||
addPrivilegesArray(privsArray: { | ||
privId: string; | ||
labelName: string; | ||
description: string; | ||
}[]): void; | ||
} |
@@ -98,4 +98,9 @@ /***** | ||
} | ||
addPrivilegesArray(privsArray) { | ||
for (const privObj of privsArray) { | ||
this.addPrivilege(privObj.privId, privObj.labelName, privObj.description); | ||
} | ||
} | ||
} | ||
exports.AuthorizationClient = AuthorizationClient; | ||
//# sourceMappingURL=authorization_client.js.map |
{ | ||
"name": "@mojaloop/security-bc-client-lib", | ||
"version": "0.0.52", | ||
"version": "0.0.53", | ||
"description": "mojaloop security authentication and authorization client library", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
Sorry, the diff of this file is not supported yet
29631
434