@backstage-community/plugin-search-backend-module-azure-devops 0.1.1 → 0.1.2
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.
- package/CHANGELOG.md +6 -0
- package/config.d.ts +19 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/config.d.ts
CHANGED
|
@@ -39,27 +39,25 @@ export interface Config {
|
|
|
39
39
|
/**
|
|
40
40
|
* Array of one or more wikis to collate
|
|
41
41
|
*/
|
|
42
|
-
wikis?:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
},
|
|
62
|
-
];
|
|
42
|
+
wikis?: Array<{
|
|
43
|
+
/**
|
|
44
|
+
* The identifier of the wiki. This can be found by looking at the URL of the wiki in Azure DevOps.
|
|
45
|
+
* It is typically something like '{nameOfWiki}.wiki'; required
|
|
46
|
+
*/
|
|
47
|
+
wikiIdentifier: string;
|
|
48
|
+
/**
|
|
49
|
+
* The name of the organization the wiki is contained in; required.
|
|
50
|
+
*/
|
|
51
|
+
organization: string;
|
|
52
|
+
/**
|
|
53
|
+
* The name of the project the wiki is contained in; required.
|
|
54
|
+
*/
|
|
55
|
+
project: string;
|
|
56
|
+
/**
|
|
57
|
+
* A string to append to the title of articles to make them easier to identify as search results from the wiki; optional
|
|
58
|
+
*/
|
|
59
|
+
titleSuffix: string;
|
|
60
|
+
}>;
|
|
63
61
|
};
|
|
64
62
|
};
|
|
65
63
|
};
|
package/package.json
CHANGED