@databutton/firebase-types 1.78.25 → 1.78.27

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.
@@ -1632,7 +1632,12 @@ export interface DomainV2 {
1632
1632
  * If bypassing the proxy, the api host to use
1633
1633
  */
1634
1634
  apiHost?: string;
1635
- cloudFormationVersion?: string;
1635
+ cloudFormationVersion?: string | null;
1636
+ /**
1637
+ * This is used when deactivating the domain to give it time to be deleted from AWS
1638
+ * before the domain can be requested again from another app
1639
+ */
1640
+ frozenUntil?: Timestamp | null;
1636
1641
  }
1637
1642
  /**
1638
1643
  * Taken from AWS types
@@ -47,7 +47,9 @@ export declare enum CustomDomainFailureCode {
47
47
  APP_MISSING_SLUG = "APP_MISSING_SLUG",
48
48
  MISSING_SUBSCRIPTION = "MISSING_SUBSCRIPTION",
49
49
  DOMAIN_IN_USE = "DOMAIN_IN_USE",
50
- UNKNOWN_ERROR = "UNKNOWN_ERROR"
50
+ UNKNOWN_ERROR = "UNKNOWN_ERROR",
51
+ DOMAIN_FROZEN = "DOMAIN_FROZEN",
52
+ DOMAIN_NEEDS_MIGRATION = "DOMAIN_NEEDS_MIGRATION"
51
53
  }
52
54
  export type CustomDomainResponse = {
53
55
  status: "Success";
@@ -6,5 +6,7 @@ export var CustomDomainFailureCode;
6
6
  CustomDomainFailureCode["MISSING_SUBSCRIPTION"] = "MISSING_SUBSCRIPTION";
7
7
  CustomDomainFailureCode["DOMAIN_IN_USE"] = "DOMAIN_IN_USE";
8
8
  CustomDomainFailureCode["UNKNOWN_ERROR"] = "UNKNOWN_ERROR";
9
+ CustomDomainFailureCode["DOMAIN_FROZEN"] = "DOMAIN_FROZEN";
10
+ CustomDomainFailureCode["DOMAIN_NEEDS_MIGRATION"] = "DOMAIN_NEEDS_MIGRATION";
9
11
  })(CustomDomainFailureCode || (CustomDomainFailureCode = {}));
10
12
  //# sourceMappingURL=requests.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.25",
3
+ "version": "1.78.27",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {