@glidevvr/storage-payload-types-pkg 1.0.227 → 1.0.229
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 +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -333,6 +333,10 @@ export interface Tenant {
|
|
|
333
333
|
* Search radius in miles from the geographic center of the entered zip code or city/state. Facilities within the searched city or zip code will always be returned, even if outside this radius.
|
|
334
334
|
*/
|
|
335
335
|
searchRadius: '10' | '15' | '20' | '25' | '30';
|
|
336
|
+
/**
|
|
337
|
+
* Show the company name and address in the footer
|
|
338
|
+
*/
|
|
339
|
+
showCompanyInfoInFooter?: boolean | null;
|
|
336
340
|
/**
|
|
337
341
|
* The environment of the VaporTable, TenantPay, Rental Funnel, and Storage Essentials API (facilities, hours, categories, etc.)
|
|
338
342
|
*/
|
|
@@ -3429,6 +3433,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
3429
3433
|
paymentSystem?: T;
|
|
3430
3434
|
siteWideNotice?: T;
|
|
3431
3435
|
searchRadius?: T;
|
|
3436
|
+
showCompanyInfoInFooter?: T;
|
|
3432
3437
|
environment?: T;
|
|
3433
3438
|
seCompanyId?: T;
|
|
3434
3439
|
seApiKey?: T;
|