@glidevvr/storage-payload-types-pkg 1.0.121 → 1.0.123

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.121",
3
+ "version": "1.0.123",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -387,7 +387,7 @@ export interface Tenant {
387
387
  export interface User {
388
388
  id: string;
389
389
  /**
390
- * Super Admin: Full system control. Partner Admin: Manages users within their Partner. User: Restricted access to Partner data.
390
+ * Super Admin: Full system control over all organizations. Admin: Administrative access. User: Restricted access to organization data.
391
391
  */
392
392
  role: 'user' | 'partner-admin' | 'api-user' | 'super-admin';
393
393
  /**
@@ -1508,7 +1508,7 @@ export interface RentalStepsBlock {
1508
1508
  export interface SearchCalloutBlock {
1509
1509
  text: string;
1510
1510
  /**
1511
- * The button will direct the user to the All Locations page selected for the partner.
1511
+ * The button will direct the user to the All Locations page selected for the organization.
1512
1512
  */
1513
1513
  buttonText: string;
1514
1514
  id?: string | null;