@databutton/firebase-types 1.40.2 → 1.40.3
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.
|
@@ -778,10 +778,18 @@ export interface InitialDevxConfig {
|
|
|
778
778
|
activeVersion: string;
|
|
779
779
|
minimumRequiredVersion: string;
|
|
780
780
|
}
|
|
781
|
-
|
|
781
|
+
/**
|
|
782
|
+
* @deprecated Use UpgradeWorkspaceRequest
|
|
783
|
+
*/
|
|
784
|
+
export interface UpgradeDevxRequest {
|
|
782
785
|
requestedBy: PerformedBy;
|
|
783
786
|
devxVersion: string;
|
|
784
787
|
}
|
|
788
|
+
export interface UpgradeWorkspaceRequest {
|
|
789
|
+
requestedBy: PerformedBy;
|
|
790
|
+
workspaceVersion: string;
|
|
791
|
+
}
|
|
792
|
+
export type UpgradeRequest = UpgradeDevxRequest | UpgradeWorkspaceRequest;
|
|
785
793
|
export interface WorkspaceConfig {
|
|
786
794
|
active: string;
|
|
787
795
|
latest: string;
|