@databutton/firebase-types 1.12.43 → 1.12.44
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.
|
@@ -105,6 +105,15 @@ export interface Deployment {
|
|
|
105
105
|
requirementsRef?: string | null;
|
|
106
106
|
projectEventRef?: string | null;
|
|
107
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* Document created by the web app to signal that a component should be deployed.
|
|
110
|
+
*/
|
|
111
|
+
export interface DeploymentRequest {
|
|
112
|
+
createdBy: PerformedBy;
|
|
113
|
+
projectId: string;
|
|
114
|
+
componentType: "app" | "job" | "module";
|
|
115
|
+
componentId: string;
|
|
116
|
+
}
|
|
108
117
|
export interface Schedule {
|
|
109
118
|
createdAt: Timestamp;
|
|
110
119
|
updatedAt: Timestamp;
|