@glidevvr/storage-payload-types-pkg 1.0.248 → 1.0.249

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.248",
3
+ "version": "1.0.249",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -722,6 +722,10 @@ export interface Facility {
722
722
  * If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
723
723
  */
724
724
  softReservationAppExternalUrl?: string | null;
725
+ /**
726
+ * Additional unit parameters not provided by default from the unitGroup API. Please use comma to separate each new field.
727
+ */
728
+ additionalUnitSourceInfo?: string | null;
725
729
  allowedCategories: string[];
726
730
  allowedFeatures: string[];
727
731
  /**
@@ -2953,6 +2957,7 @@ export interface FacilitiesSelect<T extends boolean = true> {
2953
2957
  reservationAppExternalUrl?: T;
2954
2958
  softReservationAppLocation?: T;
2955
2959
  softReservationAppExternalUrl?: T;
2960
+ additionalUnitSourceInfo?: T;
2956
2961
  allowedCategories?: T;
2957
2962
  allowedFeatures?: T;
2958
2963
  sort?: T;