@glidevvr/storage-payload-types-pkg 1.0.247 → 1.0.249

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 +15 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.247",
3
+ "version": "1.0.249",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -722,6 +722,10 @@ export interface Facility {
722
722
  * If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
723
723
  */
724
724
  softReservationAppExternalUrl?: string | null;
725
+ /**
726
+ * Additional unit parameters not provided by default from the unitGroup API. Please use comma to separate each new field.
727
+ */
728
+ additionalUnitSourceInfo?: string | null;
725
729
  allowedCategories: string[];
726
730
  allowedFeatures: string[];
727
731
  /**
@@ -943,6 +947,14 @@ export interface ContentTabs {
943
947
  * Select which tab should be open when users first land on the facility page. Only enabled tabs can be selected.
944
948
  */
945
949
  defaultTab?: ('findUnit' | 'features' | 'about' | 'map' | 'customTab1' | 'customTab2') | null;
950
+ /**
951
+ * Enable this to customize the order in which tabs appear on the facility page. If disabled, tabs will appear in the default order.
952
+ */
953
+ customizeTabOrder?: boolean | null;
954
+ /**
955
+ * Drag to reorder how tabs appear on the facility page. Disabled tabs must be removed from this list (click the X). Only enabled tabs should be included.
956
+ */
957
+ tabOrder?: ('findUnit' | 'features' | 'about' | 'map' | 'customTab1' | 'customTab2')[] | null;
946
958
  findUnit?: {
947
959
  /**
948
960
  * Show or hide the "Find a unit" tab on the facility page.
@@ -2945,6 +2957,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
2945
2957
  reservationAppExternalUrl?: T;
2946
2958
  softReservationAppLocation?: T;
2947
2959
  softReservationAppExternalUrl?: T;
2960
+ additionalUnitSourceInfo?: T;
2948
2961
  allowedCategories?: T;
2949
2962
  allowedFeatures?: T;
2950
2963
  sort?: T;
@@ -2987,6 +3000,8 @@ export interface FacilitiesSelect<T extends boolean = true> {
2987
3000
  */
2988
3001
  export interface ContentTabsSelect<T extends boolean = true> {
2989
3002
  defaultTab?: T;
3003
+ customizeTabOrder?: T;
3004
+ tabOrder?: T;
2990
3005
  findUnit?:
2991
3006
  | T
2992
3007
  | {