@glidevvr/storage-payload-types-pkg 1.0.159 → 1.0.161
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 +30 -55
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -273,7 +273,7 @@ export interface Page {
|
|
|
273
273
|
| MediaBlock
|
|
274
274
|
| RentalStepsBlock
|
|
275
275
|
| SearchCalloutBlock
|
|
276
|
-
|
|
|
276
|
+
| StorageResourcesBlock
|
|
277
277
|
| SizeGuideBlock
|
|
278
278
|
| StorageDefenderBlock
|
|
279
279
|
)[];
|
|
@@ -464,7 +464,7 @@ export interface Market {
|
|
|
464
464
|
| MediaBlock
|
|
465
465
|
| RentalStepsBlock
|
|
466
466
|
| SearchCalloutBlock
|
|
467
|
-
|
|
|
467
|
+
| StorageResourcesBlock
|
|
468
468
|
| SizeGuideBlock
|
|
469
469
|
| StorageDefenderBlock
|
|
470
470
|
)[]
|
|
@@ -1142,7 +1142,7 @@ export interface FeaturedLocationsBlock {
|
|
|
1142
1142
|
selectedLocations: (string | Facility)[];
|
|
1143
1143
|
id?: string | null;
|
|
1144
1144
|
blockName?: string | null;
|
|
1145
|
-
blockType: '
|
|
1145
|
+
blockType: 'featuredLocations';
|
|
1146
1146
|
}
|
|
1147
1147
|
/**
|
|
1148
1148
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1216,7 +1216,7 @@ export interface FeaturesGridBlock {
|
|
|
1216
1216
|
} | null;
|
|
1217
1217
|
id?: string | null;
|
|
1218
1218
|
blockName?: string | null;
|
|
1219
|
-
blockType: '
|
|
1219
|
+
blockType: 'featuresGrid';
|
|
1220
1220
|
}
|
|
1221
1221
|
/**
|
|
1222
1222
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1437,7 +1437,7 @@ export interface HomeHero {
|
|
|
1437
1437
|
export interface HorizontalRuleBlock {
|
|
1438
1438
|
id?: string | null;
|
|
1439
1439
|
blockName?: string | null;
|
|
1440
|
-
blockType: '
|
|
1440
|
+
blockType: 'horizontalRule';
|
|
1441
1441
|
}
|
|
1442
1442
|
/**
|
|
1443
1443
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1524,7 +1524,7 @@ export interface RentalStepsBlock {
|
|
|
1524
1524
|
| null;
|
|
1525
1525
|
id?: string | null;
|
|
1526
1526
|
blockName?: string | null;
|
|
1527
|
-
blockType: '
|
|
1527
|
+
blockType: 'rentalSteps';
|
|
1528
1528
|
}
|
|
1529
1529
|
/**
|
|
1530
1530
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1538,13 +1538,13 @@ export interface SearchCalloutBlock {
|
|
|
1538
1538
|
buttonText: string;
|
|
1539
1539
|
id?: string | null;
|
|
1540
1540
|
blockName?: string | null;
|
|
1541
|
-
blockType: '
|
|
1541
|
+
blockType: 'searchCallout';
|
|
1542
1542
|
}
|
|
1543
1543
|
/**
|
|
1544
1544
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1545
|
-
* via the `definition` "
|
|
1545
|
+
* via the `definition` "StorageResourcesBlock".
|
|
1546
1546
|
*/
|
|
1547
|
-
export interface
|
|
1547
|
+
export interface StorageResourcesBlock {
|
|
1548
1548
|
heading?: string | null;
|
|
1549
1549
|
description?: {
|
|
1550
1550
|
root: {
|
|
@@ -1624,7 +1624,7 @@ export interface StoragResourcesBlock {
|
|
|
1624
1624
|
| null;
|
|
1625
1625
|
id?: string | null;
|
|
1626
1626
|
blockName?: string | null;
|
|
1627
|
-
blockType: '
|
|
1627
|
+
blockType: 'storageResources';
|
|
1628
1628
|
}
|
|
1629
1629
|
/**
|
|
1630
1630
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1633,7 +1633,7 @@ export interface StoragResourcesBlock {
|
|
|
1633
1633
|
export interface SizeGuideBlock {
|
|
1634
1634
|
id?: string | null;
|
|
1635
1635
|
blockName?: string | null;
|
|
1636
|
-
blockType: '
|
|
1636
|
+
blockType: 'sizeGuide';
|
|
1637
1637
|
}
|
|
1638
1638
|
/**
|
|
1639
1639
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -1753,7 +1753,7 @@ export interface StorageDefenderBlock {
|
|
|
1753
1753
|
};
|
|
1754
1754
|
id?: string | null;
|
|
1755
1755
|
blockName?: string | null;
|
|
1756
|
-
blockType: '
|
|
1756
|
+
blockType: 'storageDefender';
|
|
1757
1757
|
}
|
|
1758
1758
|
/**
|
|
1759
1759
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
@@ -2076,19 +2076,19 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
2076
2076
|
cta?: T | CallToActionBlockSelect<T>;
|
|
2077
2077
|
content?: T | ContentBlockSelect<T>;
|
|
2078
2078
|
faq?: T | FaqBlockSelect<T>;
|
|
2079
|
-
|
|
2080
|
-
|
|
2079
|
+
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|
|
2080
|
+
featuresGrid?: T | FeaturesGridBlockSelect<T>;
|
|
2081
2081
|
formBlock?: T | FormBlockSelect<T>;
|
|
2082
2082
|
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2083
2083
|
homeHero?: T | HomeHeroSelect<T>;
|
|
2084
|
-
|
|
2084
|
+
horizontalRule?: T | HorizontalRuleBlockSelect<T>;
|
|
2085
2085
|
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
2086
2086
|
mediaBlock?: T | MediaBlockSelect<T>;
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2087
|
+
rentalSteps?: T | RentalStepsBlockSelect<T>;
|
|
2088
|
+
searchCallout?: T | SearchCalloutBlockSelect<T>;
|
|
2089
|
+
storageResources?: T | StorageResourcesBlockSelect<T>;
|
|
2090
|
+
sizeGuide?: T | SizeGuideBlockSelect<T>;
|
|
2091
|
+
storageDefender?: T | StorageDefenderBlockSelect<T>;
|
|
2092
2092
|
};
|
|
2093
2093
|
meta?:
|
|
2094
2094
|
| T
|
|
@@ -2340,9 +2340,9 @@ export interface SearchCalloutBlockSelect<T extends boolean = true> {
|
|
|
2340
2340
|
}
|
|
2341
2341
|
/**
|
|
2342
2342
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2343
|
-
* via the `definition` "
|
|
2343
|
+
* via the `definition` "StorageResourcesBlock_select".
|
|
2344
2344
|
*/
|
|
2345
|
-
export interface
|
|
2345
|
+
export interface StorageResourcesBlockSelect<T extends boolean = true> {
|
|
2346
2346
|
heading?: T;
|
|
2347
2347
|
description?: T;
|
|
2348
2348
|
buttonLink?:
|
|
@@ -2825,19 +2825,19 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2825
2825
|
cta?: T | CallToActionBlockSelect<T>;
|
|
2826
2826
|
content?: T | ContentBlockSelect<T>;
|
|
2827
2827
|
faq?: T | FaqBlockSelect<T>;
|
|
2828
|
-
|
|
2829
|
-
|
|
2828
|
+
featuredLocations?: T | FeaturedLocationsBlockSelect<T>;
|
|
2829
|
+
featuresGrid?: T | FeaturesGridBlockSelect<T>;
|
|
2830
2830
|
formBlock?: T | FormBlockSelect<T>;
|
|
2831
2831
|
galleryBlock?: T | GalleryBlockSelect<T>;
|
|
2832
2832
|
homeHero?: T | HomeHeroSelect<T>;
|
|
2833
|
-
|
|
2833
|
+
horizontalRule?: T | HorizontalRuleBlockSelect<T>;
|
|
2834
2834
|
singleTestimonial?: T | SingleTestimonialBlockSelect<T>;
|
|
2835
2835
|
mediaBlock?: T | MediaBlockSelect<T>;
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2836
|
+
rentalSteps?: T | RentalStepsBlockSelect<T>;
|
|
2837
|
+
searchCallout?: T | SearchCalloutBlockSelect<T>;
|
|
2838
|
+
storageResources?: T | StorageResourcesBlockSelect<T>;
|
|
2839
|
+
sizeGuide?: T | SizeGuideBlockSelect<T>;
|
|
2840
|
+
storageDefender?: T | StorageDefenderBlockSelect<T>;
|
|
2841
2841
|
};
|
|
2842
2842
|
meta?:
|
|
2843
2843
|
| T
|
|
@@ -3158,31 +3158,6 @@ export interface TaskSchedulePublish {
|
|
|
3158
3158
|
};
|
|
3159
3159
|
output?: unknown;
|
|
3160
3160
|
}
|
|
3161
|
-
/**
|
|
3162
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3163
|
-
* via the `definition` "BannerBlock".
|
|
3164
|
-
*/
|
|
3165
|
-
export interface BannerBlock {
|
|
3166
|
-
style: 'info' | 'warning' | 'error' | 'success';
|
|
3167
|
-
content: {
|
|
3168
|
-
root: {
|
|
3169
|
-
type: string;
|
|
3170
|
-
children: {
|
|
3171
|
-
type: string;
|
|
3172
|
-
version: number;
|
|
3173
|
-
[k: string]: unknown;
|
|
3174
|
-
}[];
|
|
3175
|
-
direction: ('ltr' | 'rtl') | null;
|
|
3176
|
-
format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
|
|
3177
|
-
indent: number;
|
|
3178
|
-
version: number;
|
|
3179
|
-
};
|
|
3180
|
-
[k: string]: unknown;
|
|
3181
|
-
};
|
|
3182
|
-
id?: string | null;
|
|
3183
|
-
blockName?: string | null;
|
|
3184
|
-
blockType: 'banner';
|
|
3185
|
-
}
|
|
3186
3161
|
/**
|
|
3187
3162
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3188
3163
|
* via the `definition` "ButtonBlock".
|