@glidevvr/storage-payload-types-pkg 1.0.56 → 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 +36 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -177,6 +177,7 @@ export interface Config {
|
|
|
177
177
|
'facility-features': FacilityFeature;
|
|
178
178
|
'deletion-logs': DeletionLog;
|
|
179
179
|
redirects: Redirect;
|
|
180
|
+
builds: Build;
|
|
180
181
|
forms: Form;
|
|
181
182
|
'form-submissions': FormSubmission;
|
|
182
183
|
'payload-jobs': PayloadJob;
|
|
@@ -203,6 +204,7 @@ export interface Config {
|
|
|
203
204
|
'facility-features': FacilityFeaturesSelect<false> | FacilityFeaturesSelect<true>;
|
|
204
205
|
'deletion-logs': DeletionLogsSelect<false> | DeletionLogsSelect<true>;
|
|
205
206
|
redirects: RedirectsSelect<false> | RedirectsSelect<true>;
|
|
207
|
+
builds: BuildsSelect<false> | BuildsSelect<true>;
|
|
206
208
|
forms: FormsSelect<false> | FormsSelect<true>;
|
|
207
209
|
'form-submissions': FormSubmissionsSelect<false> | FormSubmissionsSelect<true>;
|
|
208
210
|
'payload-jobs': PayloadJobsSelect<false> | PayloadJobsSelect<true>;
|
|
@@ -1771,6 +1773,23 @@ export interface Redirect {
|
|
|
1771
1773
|
updatedAt: string;
|
|
1772
1774
|
createdAt: string;
|
|
1773
1775
|
}
|
|
1776
|
+
/**
|
|
1777
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
1778
|
+
* via the `definition` "builds".
|
|
1779
|
+
*/
|
|
1780
|
+
export interface Build {
|
|
1781
|
+
id: string;
|
|
1782
|
+
tenant?: (string | null) | Tenant;
|
|
1783
|
+
buildId: number;
|
|
1784
|
+
/**
|
|
1785
|
+
* Bitbucket pipeline UUID (Universally Unique Identifier) for tracking and management.
|
|
1786
|
+
*/
|
|
1787
|
+
uuid?: string | null;
|
|
1788
|
+
status: 'pending' | 'in_progress' | 'completed' | 'failed';
|
|
1789
|
+
createdBy?: string | null;
|
|
1790
|
+
updatedAt: string;
|
|
1791
|
+
createdAt: string;
|
|
1792
|
+
}
|
|
1774
1793
|
/**
|
|
1775
1794
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
1776
1795
|
* via the `definition` "form-submissions".
|
|
@@ -1940,6 +1959,10 @@ export interface PayloadLockedDocument {
|
|
|
1940
1959
|
relationTo: 'redirects';
|
|
1941
1960
|
value: string | Redirect;
|
|
1942
1961
|
} | null)
|
|
1962
|
+
| ({
|
|
1963
|
+
relationTo: 'builds';
|
|
1964
|
+
value: string | Build;
|
|
1965
|
+
} | null)
|
|
1943
1966
|
| ({
|
|
1944
1967
|
relationTo: 'forms';
|
|
1945
1968
|
value: string | Form;
|
|
@@ -2832,6 +2855,19 @@ export interface RedirectsSelect<T extends boolean = true> {
|
|
|
2832
2855
|
updatedAt?: T;
|
|
2833
2856
|
createdAt?: T;
|
|
2834
2857
|
}
|
|
2858
|
+
/**
|
|
2859
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
2860
|
+
* via the `definition` "builds_select".
|
|
2861
|
+
*/
|
|
2862
|
+
export interface BuildsSelect<T extends boolean = true> {
|
|
2863
|
+
tenant?: T;
|
|
2864
|
+
buildId?: T;
|
|
2865
|
+
uuid?: T;
|
|
2866
|
+
status?: T;
|
|
2867
|
+
createdBy?: T;
|
|
2868
|
+
updatedAt?: T;
|
|
2869
|
+
createdAt?: T;
|
|
2870
|
+
}
|
|
2835
2871
|
/**
|
|
2836
2872
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
2837
2873
|
* via the `definition` "forms_select".
|