@glidevvr/storage-payload-types-pkg 1.0.57 → 1.0.59

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 +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.57",
3
+ "version": "1.0.59",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -411,7 +411,7 @@ export interface Market {
411
411
  country: 'USA' | 'Canada';
412
412
  state?: string | null;
413
413
  city?: string | null;
414
- sort: 'facility_title' | 'state' | 'city' | 'starting_price';
414
+ sort: 'facility_title';
415
415
  customOrGeo: 'geo' | 'custom';
416
416
  customFacilities?: (string | Facility)[] | null;
417
417
  blocks?:
@@ -1781,6 +1781,10 @@ export interface Build {
1781
1781
  id: string;
1782
1782
  tenant?: (string | null) | Tenant;
1783
1783
  buildId: number;
1784
+ /**
1785
+ * Bitbucket pipeline UUID (Universally Unique Identifier) for tracking and management.
1786
+ */
1787
+ uuid?: string | null;
1784
1788
  status: 'pending' | 'in_progress' | 'completed' | 'failed';
1785
1789
  createdBy?: string | null;
1786
1790
  updatedAt: string;
@@ -2858,6 +2862,7 @@ export interface RedirectsSelect<T extends boolean = true> {
2858
2862
  export interface BuildsSelect<T extends boolean = true> {
2859
2863
  tenant?: T;
2860
2864
  buildId?: T;
2865
+ uuid?: T;
2861
2866
  status?: T;
2862
2867
  createdBy?: T;
2863
2868
  updatedAt?: T;