@glidevvr/storage-payload-types-pkg 1.0.279 → 1.0.281

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.279",
3
+ "version": "1.0.281",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -2524,6 +2524,10 @@ export interface BatchStatus {
2524
2524
  | number
2525
2525
  | boolean
2526
2526
  | null;
2527
+ /**
2528
+ * ID of the facility being processed (for single-facility-scrape jobs)
2529
+ */
2530
+ facilityId?: string | null;
2527
2531
  /**
2528
2532
  * ID of the API user who initiated the batch
2529
2533
  */
@@ -3985,6 +3989,7 @@ export interface BatchStatusesSelect<T extends boolean = true> {
3985
3989
  createdItems?: T;
3986
3990
  updatedItems?: T;
3987
3991
  errors?: T;
3992
+ facilityId?: T;
3988
3993
  userId?: T;
3989
3994
  userUsername?: T;
3990
3995
  scrapeResult?: T;