@glidevvr/storage-payload-types-pkg 1.0.86 → 1.0.87

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 +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.86",
3
+ "version": "1.0.87",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -322,6 +322,10 @@ export interface Tenant {
322
322
  * This notice will be displayed on all pages of the website.
323
323
  */
324
324
  siteWideNotice?: string | null;
325
+ /**
326
+ * The environment of the VaporTable, TenantPay, Rental Funnel, and Storage Essentials API (facilities, hours, categories, etc.)
327
+ */
328
+ environment: 'production' | 'staging' | 'qa' | 'local';
325
329
  seCompanyId?: number | null;
326
330
  seApiKey?: string | null;
327
331
  seApiPrivateKey?: string | null;
@@ -2541,6 +2545,7 @@ export interface TenantsSelect<T extends boolean = true> {
2541
2545
  allFacilitiesPage?: T;
2542
2546
  paymentSystem?: T;
2543
2547
  siteWideNotice?: T;
2548
+ environment?: T;
2544
2549
  seCompanyId?: T;
2545
2550
  seApiKey?: T;
2546
2551
  seApiPrivateKey?: T;