@redhat-cloud-services/frontend-components-config-utilities 4.4.1 → 4.5.0
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.
|
@@ -32,6 +32,26 @@
|
|
|
32
32
|
],
|
|
33
33
|
"additionalProperties": false
|
|
34
34
|
},
|
|
35
|
+
"apiSpecInfo": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"properties": {
|
|
38
|
+
"url": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "Publicly hosted API spec, i.e. console.redhat.com/api/name/v1/openapi.json"
|
|
41
|
+
},
|
|
42
|
+
"bundleLabels": {
|
|
43
|
+
"type": "array",
|
|
44
|
+
"items": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"required": [
|
|
50
|
+
"url",
|
|
51
|
+
"bundleLabels"
|
|
52
|
+
],
|
|
53
|
+
"additionalProperties": false
|
|
54
|
+
},
|
|
35
55
|
"apiCatalogEntry": {
|
|
36
56
|
"type": "object",
|
|
37
57
|
"properties": {
|
|
@@ -39,9 +59,20 @@
|
|
|
39
59
|
"type": "array",
|
|
40
60
|
"items": {
|
|
41
61
|
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"description": "DEPRECATED soon in favor of specs"
|
|
64
|
+
},
|
|
65
|
+
"specs": {
|
|
66
|
+
"type": "array",
|
|
67
|
+
"items": {
|
|
68
|
+
"$ref": "#/$defs/apiSpecInfo"
|
|
42
69
|
}
|
|
43
70
|
}
|
|
44
|
-
}
|
|
71
|
+
},
|
|
72
|
+
"additionalProperties": false,
|
|
73
|
+
"required": [
|
|
74
|
+
"versions"
|
|
75
|
+
]
|
|
45
76
|
},
|
|
46
77
|
"frontend": {
|
|
47
78
|
"type": "object",
|
package/package.json
CHANGED