@glidevvr/storage-payload-types-pkg 1.0.206 → 1.0.207

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.206",
3
+ "version": "1.0.207",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -326,6 +326,10 @@ export interface Tenant {
326
326
  * This notice will be displayed on all pages of the website.
327
327
  */
328
328
  siteWideNotice?: string | null;
329
+ /**
330
+ * 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.
331
+ */
332
+ searchRadius: '10' | '15' | '20' | '25' | '30';
329
333
  /**
330
334
  * The environment of the VaporTable, TenantPay, Rental Funnel, and Storage Essentials API (facilities, hours, categories, etc.)
331
335
  */
@@ -333,7 +337,7 @@ export interface Tenant {
333
337
  seCompanyId: number;
334
338
  seApiKey?: string | null;
335
339
  /**
336
- * The Browser key is responsible for client side communications with the Google APIs, and should be restricted by domain.
340
+ * The Browser key is responsible for client side communications with the Google APIs, and should be restricted by domain. Required APIs: Maps JavaScript API (for facility maps and location search) and Geocoding API (for location search).
337
341
  */
338
342
  googleApiBrowserKey?: string | null;
339
343
  /**
@@ -3159,6 +3163,7 @@ export interface TenantsSelect<T extends boolean = true> {
3159
3163
  comingSoonForm?: T;
3160
3164
  paymentSystem?: T;
3161
3165
  siteWideNotice?: T;
3166
+ searchRadius?: T;
3162
3167
  environment?: T;
3163
3168
  seCompanyId?: T;
3164
3169
  seApiKey?: T;