@glidevvr/storage-payload-types-pkg 1.0.155 → 1.0.157
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 +37 -4
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -332,7 +332,6 @@ export interface Tenant {
|
|
|
332
332
|
environment: 'production' | 'staging' | 'qa' | 'local';
|
|
333
333
|
seCompanyId: number;
|
|
334
334
|
seApiKey?: string | null;
|
|
335
|
-
seApiPrivateKey?: string | null;
|
|
336
335
|
/**
|
|
337
336
|
* The Browser key is responsible for client side communications with the Google APIs, and should be restricted by domain.
|
|
338
337
|
*/
|
|
@@ -353,6 +352,10 @@ export interface Tenant {
|
|
|
353
352
|
* The Google Tag Manager ID. This should include the "GTM-" prefix.
|
|
354
353
|
*/
|
|
355
354
|
gtmId?: string | null;
|
|
355
|
+
/**
|
|
356
|
+
* Enter the content value for the <meta name="google-site-verification" content="..."> tag.
|
|
357
|
+
*/
|
|
358
|
+
gsc?: string | null;
|
|
356
359
|
/**
|
|
357
360
|
* Search engine visibility for the website. It is up to search engines to honor this request.
|
|
358
361
|
*/
|
|
@@ -611,6 +614,9 @@ export interface Post {
|
|
|
611
614
|
slug: string;
|
|
612
615
|
author?: (string | null) | User;
|
|
613
616
|
publishedAt?: string | null;
|
|
617
|
+
/**
|
|
618
|
+
* Images should have a horizontal aspect ratio and be at least 1280px wide.
|
|
619
|
+
*/
|
|
614
620
|
featuredImage?: (string | null) | Media;
|
|
615
621
|
/**
|
|
616
622
|
* Defaults to the beginning of your post content if not entered.
|
|
@@ -795,7 +801,7 @@ export interface Facility {
|
|
|
795
801
|
facilityFeatures?: (string | FacilityFeature)[] | null;
|
|
796
802
|
facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
|
|
797
803
|
/**
|
|
798
|
-
* The first image selected is displayed on market pages.
|
|
804
|
+
* The first image selected is displayed on market pages. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
|
|
799
805
|
*/
|
|
800
806
|
gallery?: (string | Media)[] | null;
|
|
801
807
|
contentTabs?: ContentTabs;
|
|
@@ -918,9 +924,12 @@ export interface Brand {
|
|
|
918
924
|
id: string;
|
|
919
925
|
tenant?: (string | null) | Tenant;
|
|
920
926
|
name: string;
|
|
927
|
+
/**
|
|
928
|
+
* For best results, choose an image with a horizontal aspect ratio that's at least 200x52 pixels.
|
|
929
|
+
*/
|
|
921
930
|
logo: string | Media;
|
|
922
931
|
/**
|
|
923
|
-
* Defaults to the header logo if not provided.
|
|
932
|
+
* Defaults to the header logo if not provided. For best results, choose an image with a horizontal aspect ratio that's at least 200x53 pixels.
|
|
924
933
|
*/
|
|
925
934
|
footerLogo?: (string | null) | Media;
|
|
926
935
|
primaryColor: string;
|
|
@@ -1409,6 +1418,9 @@ export interface GalleryBlock {
|
|
|
1409
1418
|
export interface HomeHero {
|
|
1410
1419
|
title?: string | null;
|
|
1411
1420
|
subtitle?: string | null;
|
|
1421
|
+
/**
|
|
1422
|
+
* Images should have a horizontal aspect ratio. Full size images should be at least 1920x960 pixels. Half size images should be at least 1280x731 pixels.
|
|
1423
|
+
*/
|
|
1412
1424
|
backgroundImage?: (string | null) | Media;
|
|
1413
1425
|
layoutMode?: ('half' | 'full') | null;
|
|
1414
1426
|
fullImageContentAlign?: ('center' | 'right' | 'left') | null;
|
|
@@ -1436,8 +1448,17 @@ export interface SingleTestimonialBlock {
|
|
|
1436
1448
|
testimonialText?: string | null;
|
|
1437
1449
|
author?: string | null;
|
|
1438
1450
|
rating: number;
|
|
1451
|
+
/**
|
|
1452
|
+
* For best results, choose an image with a square aspect ratio that's at least 100x100 pixels and has a centered subject.
|
|
1453
|
+
*/
|
|
1439
1454
|
topImage?: (string | null) | Media;
|
|
1455
|
+
/**
|
|
1456
|
+
* For best results, choose an image with a square aspect ratio that's at least 200x200 pixels and has a centered subject.
|
|
1457
|
+
*/
|
|
1440
1458
|
middleImage?: (string | null) | Media;
|
|
1459
|
+
/**
|
|
1460
|
+
* For best results, choose an image with a square aspect ratio that's at least 100x100 pixels and has a centered subject.
|
|
1461
|
+
*/
|
|
1441
1462
|
bottomImage?: (string | null) | Media;
|
|
1442
1463
|
buttonLink?: {
|
|
1443
1464
|
type?: ('reference' | 'custom') | null;
|
|
@@ -1476,6 +1497,9 @@ export interface SingleTestimonialBlock {
|
|
|
1476
1497
|
*/
|
|
1477
1498
|
export interface MediaBlock {
|
|
1478
1499
|
mediaType?: ('image' | 'video') | null;
|
|
1500
|
+
/**
|
|
1501
|
+
* Images should have a horizontal aspect ratio and be at least 800x450 pixels.
|
|
1502
|
+
*/
|
|
1479
1503
|
image?: (string | null) | Media;
|
|
1480
1504
|
/**
|
|
1481
1505
|
* Paste any YouTube or Vimeo video URL (watch, embed, shorts, or share links)
|
|
@@ -1619,6 +1643,9 @@ export interface StorageDefenderBlock {
|
|
|
1619
1643
|
heroSection?: {
|
|
1620
1644
|
mainTitle?: string | null;
|
|
1621
1645
|
heroTagline?: string | null;
|
|
1646
|
+
/**
|
|
1647
|
+
* Images should have a horizontal aspect ratio and be at least 1920x960 pixels.
|
|
1648
|
+
*/
|
|
1622
1649
|
heroBackgroundImage?: (string | null) | Media;
|
|
1623
1650
|
};
|
|
1624
1651
|
introSection?: {
|
|
@@ -1666,6 +1693,9 @@ export interface StorageDefenderBlock {
|
|
|
1666
1693
|
label?: string | null;
|
|
1667
1694
|
};
|
|
1668
1695
|
disclaimer?: string | null;
|
|
1696
|
+
/**
|
|
1697
|
+
* Images should have a vertical aspect ratio and be at least 350x499 pixels.
|
|
1698
|
+
*/
|
|
1669
1699
|
disclaimerImage?: (string | null) | Media;
|
|
1670
1700
|
};
|
|
1671
1701
|
featuresSection?: {
|
|
@@ -1686,6 +1716,9 @@ export interface StorageDefenderBlock {
|
|
|
1686
1716
|
| {
|
|
1687
1717
|
title: string;
|
|
1688
1718
|
description?: string | null;
|
|
1719
|
+
/**
|
|
1720
|
+
* Images should have a square aspect ratio and be at least 160x160 pixels.
|
|
1721
|
+
*/
|
|
1689
1722
|
image?: (string | null) | Media;
|
|
1690
1723
|
id?: string | null;
|
|
1691
1724
|
}[]
|
|
@@ -2524,12 +2557,12 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
2524
2557
|
environment?: T;
|
|
2525
2558
|
seCompanyId?: T;
|
|
2526
2559
|
seApiKey?: T;
|
|
2527
|
-
seApiPrivateKey?: T;
|
|
2528
2560
|
googleApiBrowserKey?: T;
|
|
2529
2561
|
googleApiServerKey?: T;
|
|
2530
2562
|
cloudfrontDistributionId?: T;
|
|
2531
2563
|
domain?: T;
|
|
2532
2564
|
gtmId?: T;
|
|
2565
|
+
gsc?: T;
|
|
2533
2566
|
websiteNotIndexable?: T;
|
|
2534
2567
|
defaultBrand?: T;
|
|
2535
2568
|
favicon?: T;
|