@databutton/firebase-types 1.87.4 → 1.87.5
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.
|
@@ -1700,7 +1700,8 @@ export declare enum CertificateStatus {
|
|
|
1700
1700
|
ISSUED = "ISSUED",
|
|
1701
1701
|
PENDING_VALIDATION = "PENDING_VALIDATION",
|
|
1702
1702
|
REVOKED = "REVOKED",
|
|
1703
|
-
VALIDATION_TIMED_OUT = "VALIDATION_TIMED_OUT"
|
|
1703
|
+
VALIDATION_TIMED_OUT = "VALIDATION_TIMED_OUT",
|
|
1704
|
+
CERTIFICATE_NOT_FOUND = "CERTIFICATE_NOT_FOUND"
|
|
1704
1705
|
}
|
|
1705
1706
|
export type Domain = DomainV1 | DomainV2;
|
|
1706
1707
|
export interface DomainValidationRecord {
|
|
@@ -72,5 +72,6 @@ export var CertificateStatus;
|
|
|
72
72
|
CertificateStatus["PENDING_VALIDATION"] = "PENDING_VALIDATION";
|
|
73
73
|
CertificateStatus["REVOKED"] = "REVOKED";
|
|
74
74
|
CertificateStatus["VALIDATION_TIMED_OUT"] = "VALIDATION_TIMED_OUT";
|
|
75
|
+
CertificateStatus["CERTIFICATE_NOT_FOUND"] = "CERTIFICATE_NOT_FOUND";
|
|
75
76
|
})(CertificateStatus || (CertificateStatus = {}));
|
|
76
77
|
//# sourceMappingURL=persisted.js.map
|