@databutton/firebase-types 1.78.26 → 1.78.28
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.
|
@@ -1633,6 +1633,11 @@ export interface DomainV2 {
|
|
|
1633
1633
|
*/
|
|
1634
1634
|
apiHost?: string;
|
|
1635
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
|