@databutton/firebase-types 1.85.1 → 1.85.3
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.
|
@@ -887,10 +887,10 @@ export interface IntegrationTemplate {
|
|
|
887
887
|
name: string;
|
|
888
888
|
};
|
|
889
889
|
/** Optional scopes for the integration. e.g. "read:contacts", "write:contacts". Allows for managing these via the admin panel and comparing installed vs available scopes. Broken down into sections for easier management and allowing users to select scope sections they need. */
|
|
890
|
-
|
|
890
|
+
optionalScopes?: {
|
|
891
891
|
sectionName: string;
|
|
892
892
|
scopes: string[];
|
|
893
|
-
};
|
|
893
|
+
}[];
|
|
894
894
|
/**
|
|
895
895
|
* Riff-oauth are integrations that use our provided Riff OAuth flow
|
|
896
896
|
* Any integration using a custom flow should have usage descriubed in the guide field
|
|
@@ -950,10 +950,10 @@ export interface InstalledIntegration {
|
|
|
950
950
|
name: string;
|
|
951
951
|
};
|
|
952
952
|
/** Installed optional scopes for the integration. e.g. "read:contacts", "write:contacts". Allows for managing these via the admin panel and comparing installed vs available scopes. Broken down into sections for easier management and allowing users to select scope sections they need. */
|
|
953
|
-
|
|
953
|
+
optionalScopes?: {
|
|
954
954
|
sectionName: string;
|
|
955
955
|
scopes: string[];
|
|
956
|
-
};
|
|
956
|
+
}[];
|
|
957
957
|
authStrategy: "riff-oauth" | "oauth" | "api-key" | "custom";
|
|
958
958
|
/**
|
|
959
959
|
* human/agent-readable notes (scopes, pagination, rate limits, usage examples). Living document. used by agent, and for debug
|