@glidevvr/storage-payload-types-pkg 1.0.13 → 1.0.14
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/package.json +1 -1
- package/payload-types.ts +3 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -314,6 +314,9 @@ export interface User {
|
|
|
314
314
|
* Super Admin: Full system control. Partner Admin: Manages users within their Partner. User: Restricted access to Partner data.
|
|
315
315
|
*/
|
|
316
316
|
role: 'user' | 'partner-admin' | 'api-user' | 'super-admin';
|
|
317
|
+
/**
|
|
318
|
+
* Username must be unique and cannot contain spaces, uppercase letters, or special characters besides underscores, periods, and hyphens.
|
|
319
|
+
*/
|
|
317
320
|
username: string;
|
|
318
321
|
firstName: string;
|
|
319
322
|
lastName: string;
|