@glidevvr/storage-payload-types-pkg 1.0.303 → 1.0.305
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 +58 -1
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -735,6 +735,10 @@ export interface Page {
|
|
|
735
735
|
* Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
|
|
736
736
|
*/
|
|
737
737
|
videoUpload?: (string | null) | Media;
|
|
738
|
+
/**
|
|
739
|
+
* Show play/pause, volume, and progress controls. When off, the video plays as a silent, looping background.
|
|
740
|
+
*/
|
|
741
|
+
showVideoControls?: boolean | null;
|
|
738
742
|
id?: string | null;
|
|
739
743
|
blockName?: string | null;
|
|
740
744
|
blockType: 'mediaBlock';
|
|
@@ -1342,6 +1346,39 @@ export interface Tenant {
|
|
|
1342
1346
|
* Enable Storage Defender for this tenant. This will create a Storage Defender page in the Pages collection.
|
|
1343
1347
|
*/
|
|
1344
1348
|
storageDefender?: boolean | null;
|
|
1349
|
+
/**
|
|
1350
|
+
* These settings are passed to the SE Tenant Dashboard on the Pay Online page.
|
|
1351
|
+
*/
|
|
1352
|
+
tenantPaySettings?: {
|
|
1353
|
+
/**
|
|
1354
|
+
* Disable ability for users to edit their account information.
|
|
1355
|
+
*/
|
|
1356
|
+
disableAccountEditing?: boolean | null;
|
|
1357
|
+
/**
|
|
1358
|
+
* Hide gate code from users.
|
|
1359
|
+
*/
|
|
1360
|
+
disableGateCode?: boolean | null;
|
|
1361
|
+
/**
|
|
1362
|
+
* Disable the button on login for account registration.
|
|
1363
|
+
*/
|
|
1364
|
+
disableAccountRegistration?: boolean | null;
|
|
1365
|
+
/**
|
|
1366
|
+
* Host platform identifier for this app.
|
|
1367
|
+
*/
|
|
1368
|
+
siteCms?: string | null;
|
|
1369
|
+
/**
|
|
1370
|
+
* Disable ACH payments for users.
|
|
1371
|
+
*/
|
|
1372
|
+
disableAchPayments?: boolean | null;
|
|
1373
|
+
/**
|
|
1374
|
+
* Hides the button to cancel autopay.
|
|
1375
|
+
*/
|
|
1376
|
+
disableAutopayCancellation?: boolean | null;
|
|
1377
|
+
/**
|
|
1378
|
+
* Adds a dropdown to filter facilities by state.
|
|
1379
|
+
*/
|
|
1380
|
+
enableStateFilter?: boolean | null;
|
|
1381
|
+
};
|
|
1345
1382
|
/**
|
|
1346
1383
|
* When enabled, builds cannot be triggered for this organization — neither manually via the Build & Deploy button nor automatically on content publish.
|
|
1347
1384
|
*/
|
|
@@ -1489,6 +1526,10 @@ export interface Market {
|
|
|
1489
1526
|
* Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
|
|
1490
1527
|
*/
|
|
1491
1528
|
videoUpload?: (string | null) | Media;
|
|
1529
|
+
/**
|
|
1530
|
+
* Show play/pause, volume, and progress controls. When off, the video plays as a silent, looping background.
|
|
1531
|
+
*/
|
|
1532
|
+
showVideoControls?: boolean | null;
|
|
1492
1533
|
id?: string | null;
|
|
1493
1534
|
blockName?: string | null;
|
|
1494
1535
|
blockType: 'mediaBlock';
|
|
@@ -1594,7 +1635,7 @@ export interface Facility {
|
|
|
1594
1635
|
featuredFacilityFeatures?: (string | FacilityFeature)[] | null;
|
|
1595
1636
|
facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
|
|
1596
1637
|
/**
|
|
1597
|
-
* The first image
|
|
1638
|
+
* The first image in the gallery is used as the facility card thumbnail on market pages. Videos will not be used as thumbnails — ensure at least one image is included. For best results, use images with a 16:9 aspect ratio that are at least 1477x831 pixels wide.
|
|
1598
1639
|
*/
|
|
1599
1640
|
gallery?: (string | Media)[] | null;
|
|
1600
1641
|
contentTabs?: ContentTabs;
|
|
@@ -4009,6 +4050,7 @@ export interface MediaBlockSelect<T extends boolean = true> {
|
|
|
4009
4050
|
image?: T;
|
|
4010
4051
|
video?: T;
|
|
4011
4052
|
videoUpload?: T;
|
|
4053
|
+
showVideoControls?: T;
|
|
4012
4054
|
id?: T;
|
|
4013
4055
|
blockName?: T;
|
|
4014
4056
|
}
|
|
@@ -4888,6 +4930,17 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
4888
4930
|
};
|
|
4889
4931
|
socialMedia?: T | SocialMediaSelect<T>;
|
|
4890
4932
|
storageDefender?: T;
|
|
4933
|
+
tenantPaySettings?:
|
|
4934
|
+
| T
|
|
4935
|
+
| {
|
|
4936
|
+
disableAccountEditing?: T;
|
|
4937
|
+
disableGateCode?: T;
|
|
4938
|
+
disableAccountRegistration?: T;
|
|
4939
|
+
siteCms?: T;
|
|
4940
|
+
disableAchPayments?: T;
|
|
4941
|
+
disableAutopayCancellation?: T;
|
|
4942
|
+
enableStateFilter?: T;
|
|
4943
|
+
};
|
|
4891
4944
|
buildsDisabled?: T;
|
|
4892
4945
|
legacyWebsiteUrl?: T;
|
|
4893
4946
|
scrapeFacilityContent?: T;
|
|
@@ -5256,6 +5309,10 @@ export interface MediaBlock {
|
|
|
5256
5309
|
* Upload a video from the media collection. Only fully processed videos (Vimeo status: completed) are available for selection.
|
|
5257
5310
|
*/
|
|
5258
5311
|
videoUpload?: (string | null) | Media;
|
|
5312
|
+
/**
|
|
5313
|
+
* Show play/pause, volume, and progress controls. When off, the video plays as a silent, looping background.
|
|
5314
|
+
*/
|
|
5315
|
+
showVideoControls?: boolean | null;
|
|
5259
5316
|
id?: string | null;
|
|
5260
5317
|
blockName?: string | null;
|
|
5261
5318
|
blockType: 'mediaBlock';
|