@smallstack/core-common
Advanced tools
Comparing version 0.9.34 to 0.9.35
@@ -28,2 +28,6 @@ import { Collection } from "../../../../index"; | ||
}; | ||
"getUnverifiedUsers": { | ||
name: string; | ||
parameters: {}; | ||
}; | ||
"getMyUser": { | ||
@@ -30,0 +34,0 @@ name: string; |
@@ -17,2 +17,3 @@ import { QueryOptions, QueryObject, CollectionsService, Collection, DataBridge, SmallstackModel } from "../../../../index"; | ||
getFullUsers(parameters?: {}, queryOptions?: QueryOptions): QueryObject<ModelClass>; | ||
getUnverifiedUsers(parameters?: {}, queryOptions?: QueryOptions): QueryObject<ModelClass>; | ||
getMyUser(parameters?: {}, queryOptions?: QueryOptions): QueryObject<ModelClass>; | ||
@@ -19,0 +20,0 @@ updateProfileDetails(newValues: any, callback?: (error: Error, result: any) => void): void; |
@@ -58,2 +58,17 @@ { | ||
{ | ||
"name": "getUnverifiedUsers", | ||
"selector": { | ||
"emails.verified": false | ||
}, | ||
"fields": { | ||
"createdAt": 1, | ||
"profile.firstName": 1, | ||
"profile.lastName": 1, | ||
"emails": 1 | ||
}, | ||
"access": { | ||
"hasRole": "backoffice.users" | ||
} | ||
}, | ||
{ | ||
"name": "getMyUser", | ||
@@ -60,0 +75,0 @@ "selector": { |
{ | ||
"name": "@smallstack/core-common", | ||
"main": "./dist/bundle/index.umd.js", | ||
"version": "0.9.34", | ||
"version": "0.9.35", | ||
"types": "./dist/bundle/dts/index.d.ts", | ||
@@ -6,0 +6,0 @@ "homepage": "https://smallstack.io", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
2155049
21344