Merge pull request #29045 from backstage/correct-msgraph-config-defs

fix: update target property in config interface to be optional
This commit is contained in:
Patrik Oldsberg
2025-03-04 12:45:00 +01:00
committed by GitHub
+3 -3
View File
@@ -32,7 +32,7 @@ export interface Config {
* The prefix of the target that this matches on, e.g.
* "https://graph.microsoft.com/v1.0", with no trailing slash.
*/
target?: string;
target: string;
/**
* The auth authority used.
*
@@ -116,7 +116,7 @@ export interface Config {
* The prefix of the target that this matches on, e.g.
* "https://graph.microsoft.com/v1.0", with no trailing slash.
*/
target: string;
target?: string;
/**
* The auth authority used.
*
@@ -231,7 +231,7 @@ export interface Config {
* The prefix of the target that this matches on, e.g.
* "https://graph.microsoft.com/v1.0", with no trailing slash.
*/
target: string;
target?: string;
/**
* The auth authority used.
*