@databutton/firebase-types 1.90.2 → 1.90.4
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.
|
@@ -961,12 +961,13 @@ export interface IntegrationTemplate {
|
|
|
961
961
|
createdBy: PerformedBy;
|
|
962
962
|
lastUpdatedBy: PerformedBy;
|
|
963
963
|
}
|
|
964
|
+
export type IntegrationStatus = "connecting" | "connected" | "needs_reconnect";
|
|
964
965
|
/**
|
|
965
966
|
* Integrations installed to user apps. If supported taken from AvailableIntegrations, otherwise custom.
|
|
966
967
|
* Once installed they evolve by themselves.
|
|
967
968
|
*/
|
|
968
969
|
export interface InstalledIntegration {
|
|
969
|
-
status?:
|
|
970
|
+
status?: IntegrationStatus;
|
|
970
971
|
displayName: string;
|
|
971
972
|
templateSemVerVersion: string;
|
|
972
973
|
templateId: string;
|