@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
- templateRef?: string | null;
733
- projectId?: string | null;
734
- serviceType?: string | null;
735
- region?: string | null;
736
- regionCode?: string | null;
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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.36.12",
3
+ "version": "1.37.1",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {