@nodeart/dal
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "@nodeart/dal", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Bridge for database connector(for now only Firebase).", | ||
@@ -12,5 +12,5 @@ "main": "index.ts", | ||
"dependencies": { | ||
"@nodeart/firebaseconnector": "^1.0.4", | ||
"@nodeart/firebaseconnector": "^1.0.5", | ||
"@angular/core": "2.2.0" | ||
} | ||
} |
@@ -127,3 +127,3 @@ import { esIndex } from './consts'; | ||
} | ||
getTotalPagesByCategoryIds(queryObj) { | ||
@@ -141,2 +141,14 @@ return this.connector.requestItemsTotal(esIndex, 'product', queryObj); | ||
registerUser(registerForm){ | ||
return this.connector.registerUser(registerForm); | ||
} | ||
getUserData(uid){ | ||
return this.connector.getUserData(uid); | ||
} | ||
loginEmail(email, password){ | ||
return this.connector.loginEmail(email, password); | ||
} | ||
getOneAttribute(queryObj){ | ||
@@ -143,0 +155,0 @@ return this.connector.requestData(esIndex, 'attributes', queryObj); |
5383
157