@glidevvr/storage-payload-types-pkg 1.0.71 → 1.0.72

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 +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -317,7 +317,7 @@ export interface Tenant {
317
317
  * The page for the All Locations page content. Routing will use this page's slug.
318
318
  */
319
319
  allFacilitiesPage?: (string | null) | Market;
320
- paymentSystem?: ('provider' | 'storage_essentials') | null;
320
+ paymentSystem?: ('none' | 'storage_essentials') | null;
321
321
  seCompanyId?: number | null;
322
322
  seApiKey?: string | null;
323
323
  seApiPrivateKey?: string | null;
@@ -329,6 +329,10 @@ export interface Tenant {
329
329
  * The Server key is responsible for server side communcations with the Google APIs, and may be restricted by IP addresss.
330
330
  */
331
331
  googleApiServerKey?: string | null;
332
+ /**
333
+ * The domain of the website. Used for SEO/preview purposes.
334
+ */
335
+ domain?: string | null;
332
336
  /**
333
337
  * The Google Tag Manager ID. This should include the "GTM-" prefix.
334
338
  */
@@ -747,7 +751,7 @@ export interface Facility {
747
751
  * Select multiple features related to this facility.
748
752
  */
749
753
  facilityFeatures?: (string | FacilityFeature)[] | null;
750
- facilityPaymentSystem?: ('default' | 'none' | 'provider' | 'storage_essentials') | null;
754
+ facilityPaymentSystem?: ('default' | 'none' | 'storage_essentials') | null;
751
755
  /**
752
756
  * The first image selected is displayed on market pages.
753
757
  */
@@ -2515,6 +2519,7 @@ export interface TenantsSelect<T extends boolean = true> {
2515
2519
  seApiPrivateKey?: T;
2516
2520
  googleApiBrowserKey?: T;
2517
2521
  googleApiServerKey?: T;
2522
+ domain?: T;
2518
2523
  gtmId?: T;
2519
2524
  websiteNotIndexable?: T;
2520
2525
  defaultBrand?: T;