@databutton/firebase-types 1.97.0 → 1.97.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.
|
@@ -47,7 +47,6 @@ export declare enum CollectionName {
|
|
|
47
47
|
INTEGRATIONS = "integrations",
|
|
48
48
|
INTEGRATION_TEMPLATES = "integration-templates",
|
|
49
49
|
INTEGRATION_CONNECTIONS = "installed-integrations",
|
|
50
|
-
INTEGRATION_DATA_ACCESS_RESOURCES = "data-access",
|
|
51
50
|
PAGES = "pages",
|
|
52
51
|
PATCH_ATTEMPTS = "patch-attempts",
|
|
53
52
|
PROFILES = "profiles",
|
|
@@ -48,7 +48,6 @@ export var CollectionName;
|
|
|
48
48
|
CollectionName["INTEGRATIONS"] = "integrations";
|
|
49
49
|
CollectionName["INTEGRATION_TEMPLATES"] = "integration-templates";
|
|
50
50
|
CollectionName["INTEGRATION_CONNECTIONS"] = "installed-integrations";
|
|
51
|
-
CollectionName["INTEGRATION_DATA_ACCESS_RESOURCES"] = "data-access";
|
|
52
51
|
CollectionName["PAGES"] = "pages";
|
|
53
52
|
CollectionName["PATCH_ATTEMPTS"] = "patch-attempts";
|
|
54
53
|
CollectionName["PROFILES"] = "profiles";
|
|
@@ -1112,7 +1112,6 @@ export interface Integration {
|
|
|
1112
1112
|
templateId: string;
|
|
1113
1113
|
templateVersion: string;
|
|
1114
1114
|
displayName: string;
|
|
1115
|
-
userDescription?: string;
|
|
1116
1115
|
enabled: boolean;
|
|
1117
1116
|
status?: IntegrationStatus;
|
|
1118
1117
|
metadata?: Record<string, string>;
|
|
@@ -1133,18 +1132,6 @@ export interface IntegrationLearning {
|
|
|
1133
1132
|
createdBy: PerformedBy;
|
|
1134
1133
|
createdAt: Timestamp;
|
|
1135
1134
|
}
|
|
1136
|
-
export interface IntegrationDataAccessResource {
|
|
1137
|
-
resourceType: string;
|
|
1138
|
-
resourceName: string;
|
|
1139
|
-
accessLevel: string;
|
|
1140
|
-
allowedRoles?: string[];
|
|
1141
|
-
permissions?: string[];
|
|
1142
|
-
description?: string;
|
|
1143
|
-
createdBy: PerformedBy;
|
|
1144
|
-
createdAt: Timestamp;
|
|
1145
|
-
lastUpdatedBy: PerformedBy;
|
|
1146
|
-
lastUpdatedAt: Timestamp;
|
|
1147
|
-
}
|
|
1148
1135
|
/**
|
|
1149
1136
|
* Account integration usage tracking
|
|
1150
1137
|
* Stored at: /accounts/{account_id}/integrations/{integration_label}/usage/{project_id}
|