@glidevvr/storage-payload-types-pkg 1.0.308 → 1.0.309

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.308",
3
+ "version": "1.0.309",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1585,9 +1585,9 @@ export interface Tenant {
1585
1585
  export interface User {
1586
1586
  id: string;
1587
1587
  /**
1588
- * Super Admin: Full system control over all organizations. Admin: Administrative access. User: Restricted access to organization data.
1588
+ * Super Admin: Full system control over all organizations. Admin: Administrative access. Editor: Admin-lite access to facility imports and SE Facility ID. User: Restricted access to organization data.
1589
1589
  */
1590
- role: 'user' | 'admin' | 'api-user' | 'super-admin';
1590
+ role: 'user' | 'editor' | 'admin' | 'api-user' | 'super-admin';
1591
1591
  /**
1592
1592
  * Username must be unique and cannot contain spaces, uppercase letters, or special characters besides underscores, periods, and hyphens.
1593
1593
  */