@glidevvr/storage-payload-types-pkg 1.0.165 → 1.0.167

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 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.165",
3
+ "version": "1.0.167",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -349,7 +349,7 @@ export interface Tenant {
349
349
  */
350
350
  domain?: string | null;
351
351
  /**
352
- * The Google Tag Manager ID. This should include the "GTM-" prefix.
352
+ * The Google Tag Manager Container ID. This should include the "GTM-" prefix.
353
353
  */
354
354
  gtmId?: string | null;
355
355
  /**
@@ -807,7 +807,7 @@ export interface Facility {
807
807
  contentTabs?: ContentTabs;
808
808
  unitTableSettings: {
809
809
  selectedFacilities: string[];
810
- tableLayout: 'row';
810
+ tableLayout: 'row' | 'grid';
811
811
  buttonLayout: 'separate' | 'combined';
812
812
  vacancyNotice: boolean;
813
813
  /**
@@ -816,10 +816,6 @@ export interface Facility {
816
816
  vacancyThreshold?: number | null;
817
817
  showAppliedPromoPrice: boolean;
818
818
  unavailableUnits: boolean;
819
- /**
820
- * If a unit is unavailable, show nearby options.
821
- */
822
- showNearbyUnits?: boolean | null;
823
819
  disableRental: boolean;
824
820
  disableReservation: boolean;
825
821
  /**
@@ -2474,7 +2470,6 @@ export interface FacilitiesSelect<T extends boolean = true> {
2474
2470
  vacancyThreshold?: T;
2475
2471
  showAppliedPromoPrice?: T;
2476
2472
  unavailableUnits?: T;
2477
- showNearbyUnits?: T;
2478
2473
  disableRental?: T;
2479
2474
  disableReservation?: T;
2480
2475
  disableSoftReservation?: T;