@databutton/firebase-types 1.36.12 → 1.37.1
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.
|
@@ -728,14 +728,27 @@ export type SuggestedAction = {
|
|
|
728
728
|
type: "compare-code";
|
|
729
729
|
code: string;
|
|
730
730
|
};
|
|
731
|
+
export type AppbutlerResources = {
|
|
732
|
+
image: string;
|
|
733
|
+
alwaysOn: boolean;
|
|
734
|
+
cpu: string;
|
|
735
|
+
memory: string;
|
|
736
|
+
};
|
|
731
737
|
export type Appbutler = {
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
738
|
+
createdBy: PerformedBy;
|
|
739
|
+
serviceType: string;
|
|
740
|
+
resources: AppbutlerResources;
|
|
741
|
+
cloudRunServiceId?: string;
|
|
742
|
+
region?: string;
|
|
743
|
+
regionCode?: string;
|
|
744
|
+
templateRef?: string;
|
|
745
|
+
projectId?: string;
|
|
737
746
|
};
|
|
738
747
|
export interface InitialDevxConfig {
|
|
739
748
|
activeVersion: string;
|
|
740
749
|
}
|
|
750
|
+
export interface UpgradeRequest {
|
|
751
|
+
requestedBy: PerformedBy;
|
|
752
|
+
devxVersion: string;
|
|
753
|
+
}
|
|
741
754
|
export {};
|