diff --git a/package-lock.json b/package-lock.json index 1e05d3f8..6cdf5660 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3845,7 +3845,6 @@ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -4927,7 +4926,6 @@ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "dev": true, - "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", diff --git a/src/ops/InternalRoleOps.ts b/src/ops/InternalRoleOps.ts index c604958b..3434fd56 100644 --- a/src/ops/InternalRoleOps.ts +++ b/src/ops/InternalRoleOps.ts @@ -74,17 +74,13 @@ export type InternalRole = { * @param {string} roleId internal role uuid * @returns {Promise} a promise that resolves to an internal role object */ - deleteInternalRole( - roleId: string - ): Promise; + deleteInternalRole(roleId: string): Promise; /** * Delete internal role by name * @param {string} roleName internal role name * @returns {Promise} a promise that resolves to an internal role object */ - deleteInternalRoleByName( - roleName: string - ): Promise; + deleteInternalRoleByName(roleName: string): Promise; /** * Delete all internal roles * @returns {Promise} a promise that resolves to an array of internal role objects