@glidevvr/storage-payload-types-pkg 1.0.20 → 1.0.22

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 +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -299,6 +299,7 @@ export interface Tenant {
299
299
  * The page for the All Locations page content. Routing will use this page's slug.
300
300
  */
301
301
  allFacilitiesPage?: (string | null) | Market;
302
+ seCompanyId?: number | null;
302
303
  seApiKey?: string | null;
303
304
  seApiPrivateKey?: string | null;
304
305
  /**
@@ -447,7 +448,7 @@ export interface Media {
447
448
  updatedBy?: string | null;
448
449
  updatedAt: string;
449
450
  createdAt: string;
450
- url: string;
451
+ url?: string | null;
451
452
  thumbnailURL?: string | null;
452
453
  filename: string;
453
454
  mimeType: string;
@@ -2133,6 +2134,7 @@ export interface TenantsSelect<T extends boolean = true> {
2133
2134
  users?: T;
2134
2135
  defaultBrand?: T;
2135
2136
  allFacilitiesPage?: T;
2137
+ seCompanyId?: T;
2136
2138
  seApiKey?: T;
2137
2139
  seApiPrivateKey?: T;
2138
2140
  googleApiBrowserKey?: T;