@glidevvr/storage-payload-types-pkg 1.0.308 → 1.0.310
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 +36 -2
package/package.json
CHANGED
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
|
*/
|
|
@@ -5622,6 +5622,40 @@ export interface RowGroupBlock {
|
|
|
5622
5622
|
blockName?: string | null;
|
|
5623
5623
|
blockType: 'rowGroup';
|
|
5624
5624
|
}
|
|
5625
|
+
/**
|
|
5626
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5627
|
+
* via the `definition` "SearchFormBlock".
|
|
5628
|
+
*/
|
|
5629
|
+
export interface SearchFormBlock {
|
|
5630
|
+
/**
|
|
5631
|
+
* Text shown as the input label and aria-label.
|
|
5632
|
+
*/
|
|
5633
|
+
labelText?: string | null;
|
|
5634
|
+
/**
|
|
5635
|
+
* When set to placeholder, the label text appears inside the input as placeholder. The label remains in the DOM for screen readers.
|
|
5636
|
+
*/
|
|
5637
|
+
labelPlacement?: ('above' | 'placeholder') | null;
|
|
5638
|
+
/**
|
|
5639
|
+
* Display the "Near Me" geolocation button alongside the search input.
|
|
5640
|
+
*/
|
|
5641
|
+
showNearMe?: boolean | null;
|
|
5642
|
+
size?: ('default' | 'slim') | null;
|
|
5643
|
+
/**
|
|
5644
|
+
* Visual treatment of the search input.
|
|
5645
|
+
*/
|
|
5646
|
+
inputStyle?: ('outline' | 'gray' | 'white' | 'black') | null;
|
|
5647
|
+
/**
|
|
5648
|
+
* Only applies to the Outline input style. "Match text" uses the surrounding text color (good when the scheme color matches the surface). "Match button scheme" uses the active button scheme color (good when the scheme color contrasts with the surface).
|
|
5649
|
+
*/
|
|
5650
|
+
inputBorderColor?: ('text' | 'scheme') | null;
|
|
5651
|
+
/**
|
|
5652
|
+
* Color scheme for the Search and Near Me buttons. The "light" companion buttons can blend into pale or low-opacity backdrops — if your overlay/backdrop renders close to white, the Outline scheme is usually the safest choice.
|
|
5653
|
+
*/
|
|
5654
|
+
buttonScheme?: ('primary' | 'secondary' | 'tertiary' | 'outline') | null;
|
|
5655
|
+
id?: string | null;
|
|
5656
|
+
blockName?: string | null;
|
|
5657
|
+
blockType: 'searchForm';
|
|
5658
|
+
}
|
|
5625
5659
|
/**
|
|
5626
5660
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
5627
5661
|
* via the `definition` "FaqBlock".
|