@loopstack/hub-client 0.10.0 → 0.10.1
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.
- package/CHANGELOG.md +6 -0
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/api.ts
CHANGED
|
@@ -228,6 +228,12 @@ export interface UserDto {
|
|
|
228
228
|
* @memberof UserDto
|
|
229
229
|
*/
|
|
230
230
|
'roles': Array<string>;
|
|
231
|
+
/**
|
|
232
|
+
* Whether the user has access
|
|
233
|
+
* @type {boolean}
|
|
234
|
+
* @memberof UserDto
|
|
235
|
+
*/
|
|
236
|
+
'hasAccess': boolean;
|
|
231
237
|
/**
|
|
232
238
|
* User settings and preferences
|
|
233
239
|
* @type {UserSettingsDto}
|
package/dist/api.d.ts
CHANGED
|
@@ -215,6 +215,12 @@ export interface UserDto {
|
|
|
215
215
|
* @memberof UserDto
|
|
216
216
|
*/
|
|
217
217
|
'roles': Array<string>;
|
|
218
|
+
/**
|
|
219
|
+
* Whether the user has access
|
|
220
|
+
* @type {boolean}
|
|
221
|
+
* @memberof UserDto
|
|
222
|
+
*/
|
|
223
|
+
'hasAccess': boolean;
|
|
218
224
|
/**
|
|
219
225
|
* User settings and preferences
|
|
220
226
|
* @type {UserSettingsDto}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -215,6 +215,12 @@ export interface UserDto {
|
|
|
215
215
|
* @memberof UserDto
|
|
216
216
|
*/
|
|
217
217
|
'roles': Array<string>;
|
|
218
|
+
/**
|
|
219
|
+
* Whether the user has access
|
|
220
|
+
* @type {boolean}
|
|
221
|
+
* @memberof UserDto
|
|
222
|
+
*/
|
|
223
|
+
'hasAccess': boolean;
|
|
218
224
|
/**
|
|
219
225
|
* User settings and preferences
|
|
220
226
|
* @type {UserSettingsDto}
|