@glidevvr/storage-payload-types-pkg 1.0.304 → 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 +44 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -1346,6 +1346,39 @@ export interface Tenant {
|
|
|
1346
1346
|
* Enable Storage Defender for this tenant. This will create a Storage Defender page in the Pages collection.
|
|
1347
1347
|
*/
|
|
1348
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
|
+
};
|
|
1349
1382
|
/**
|
|
1350
1383
|
* When enabled, builds cannot be triggered for this organization — neither manually via the Build & Deploy button nor automatically on content publish.
|
|
1351
1384
|
*/
|
|
@@ -4897,6 +4930,17 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
4897
4930
|
};
|
|
4898
4931
|
socialMedia?: T | SocialMediaSelect<T>;
|
|
4899
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
|
+
};
|
|
4900
4944
|
buildsDisabled?: T;
|
|
4901
4945
|
legacyWebsiteUrl?: T;
|
|
4902
4946
|
scrapeFacilityContent?: T;
|