backend-plus 1.19.4 → 1.19.5

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.
@@ -393,6 +393,8 @@ export class AppBackend{
393
393
  addUnloggedServices(mainApp:ExpressPlus, baseUrl:string):void
394
394
  addLoggedServices():void
395
395
  getProcedures():Promise<ProcedureDef[]>
396
+ isAdmin():boolean
397
+ canChangePass():Promise<boolean>
396
398
  getMenu(context?:Context):MenuDefinition
397
399
  inDbClient<T>(req:Request|null, doThisWithDbClient:(client:Client)=>Promise<T>):Promise<T>
398
400
  inTransaction<T>(req:Request|null, doThisWithDbTransaction:(client:Client)=>Promise<T>):Promise<T>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backend-plus",
3
3
  "description": "Backend for typed controls",
4
- "version": "1.19.4",
4
+ "version": "1.19.5",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/backend-plus",