@backstage-community/plugin-search-backend-module-azure-devops 0.1.0 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/config.d.ts +19 -21
  3. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage-community/plugin-search-backend-module-azure-devops
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 4d58c3f: Corrected config syntax for array
8
+
9
+ ## 0.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 5b5125a: Added missing `configSchema` to `package.json`
14
+
3
15
  ## 0.1.0
4
16
 
5
17
  ### Minor Changes
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
- * The identifier of the wiki. This can be found by looking at the URL of the wiki in Azure DevOps.
46
- * It is typically something like '{nameOfWiki}.wiki'; required
47
- */
48
- wikiIdentifier: string;
49
- /**
50
- * The name of the organization the wiki is contained in; required.
51
- */
52
- organization: string;
53
- /**
54
- * The name of the project the wiki is contained in; required.
55
- */
56
- project: string;
57
- /**
58
- * A string to append to the title of articles to make them easier to identify as search results from the wiki; optional
59
- */
60
- titleSuffix: string;
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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.0",
2
+ "version": "0.1.2",
3
3
  "license": "Apache-2.0",
4
4
  "name": "@backstage-community/plugin-search-backend-module-azure-devops",
5
5
  "description": "The azure-devops backend module for the search plugin.",
@@ -49,6 +49,7 @@
49
49
  "dist",
50
50
  "config.d.ts"
51
51
  ],
52
+ "configSchema": "config.d.ts",
52
53
  "typesVersions": {
53
54
  "*": {
54
55
  "package.json": [