@glidevvr/storage-payload-types-pkg 1.0.191 → 1.0.193
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 +21 -1
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -340,6 +340,10 @@ export interface Tenant {
|
|
|
340
340
|
* The Cloudfront Distribution ID is used to invalidate the Cloudfront distribution when a new version of the website is deployed.
|
|
341
341
|
*/
|
|
342
342
|
cloudfrontDistributionId?: string | null;
|
|
343
|
+
/**
|
|
344
|
+
* API key for the Cubby Components.
|
|
345
|
+
*/
|
|
346
|
+
cubbyApiKey?: string | null;
|
|
343
347
|
/**
|
|
344
348
|
* The domain of the website. Used for SEO/preview purposes.
|
|
345
349
|
*/
|
|
@@ -925,7 +929,19 @@ export interface Facility {
|
|
|
925
929
|
gallery?: (string | Media)[] | null;
|
|
926
930
|
contentTabs?: ContentTabs;
|
|
927
931
|
unitTableSettings: {
|
|
928
|
-
|
|
932
|
+
/**
|
|
933
|
+
* When enabled, use Cubby for unit table display instead of the standard settings.
|
|
934
|
+
*/
|
|
935
|
+
useCubbyUnitTable?: boolean | null;
|
|
936
|
+
/**
|
|
937
|
+
* Enter the facility slug for Cubby integration.
|
|
938
|
+
*/
|
|
939
|
+
cubbyFacilitySlug?: string | null;
|
|
940
|
+
/**
|
|
941
|
+
* Select the layout style for displaying units.
|
|
942
|
+
*/
|
|
943
|
+
cubbyUnitLayout?: ('list' | 'grid' | 'carousel') | null;
|
|
944
|
+
selectedFacilities?: string[];
|
|
929
945
|
tableLayout: 'row' | 'grid';
|
|
930
946
|
buttonLayout: 'separate' | 'combined';
|
|
931
947
|
vacancyNotice: boolean;
|
|
@@ -2582,6 +2598,9 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
2582
2598
|
unitTableSettings?:
|
|
2583
2599
|
| T
|
|
2584
2600
|
| {
|
|
2601
|
+
useCubbyUnitTable?: T;
|
|
2602
|
+
cubbyFacilitySlug?: T;
|
|
2603
|
+
cubbyUnitLayout?: T;
|
|
2585
2604
|
selectedFacilities?: T;
|
|
2586
2605
|
tableLayout?: T;
|
|
2587
2606
|
buttonLayout?: T;
|
|
@@ -3068,6 +3087,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
3068
3087
|
seApiKey?: T;
|
|
3069
3088
|
googleApiBrowserKey?: T;
|
|
3070
3089
|
cloudfrontDistributionId?: T;
|
|
3090
|
+
cubbyApiKey?: T;
|
|
3071
3091
|
domain?: T;
|
|
3072
3092
|
gtmId?: T;
|
|
3073
3093
|
gsc?: T;
|