@glidevvr/storage-payload-types-pkg 1.0.57 → 1.0.58
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.
- package/package.json +1 -1
- package/payload-types.ts +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -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;
|