@open-resource-discovery/specification 1.15.0 → 1.16.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.
- package/dist/generated/spec/v1/schemas/Configuration.schema.json +1 -1
- package/dist/generated/spec/v1/schemas/Document.schema.json +272 -72
- package/dist/generated/spec/v1/schemas/OrdOverlay.schema.json +2 -2
- package/dist/generated/spec/v1/types/Configuration.d.ts +1 -1
- package/dist/generated/spec/v1/types/Document.d.ts +293 -59
- package/dist/generated/spec/v1/types/OrdOverlay.d.ts +4 -3
- package/package.json +6 -6
|
@@ -192,6 +192,8 @@ export interface OverlaySystemInstance {
|
|
|
192
192
|
/**
|
|
193
193
|
* Optional [base URL](../../spec-v1/index.md#base-url) of the system instance.
|
|
194
194
|
* By providing the base URL, relative URLs in the overlay are resolved relative to it.
|
|
195
|
+
*
|
|
196
|
+
* The `baseUrl` MUST NOT contain a trailing slash.
|
|
195
197
|
*/
|
|
196
198
|
baseUrl?: string;
|
|
197
199
|
/**
|
|
@@ -243,6 +245,8 @@ export interface OverlaySystemInstance1 {
|
|
|
243
245
|
/**
|
|
244
246
|
* Optional [base URL](../../spec-v1/index.md#base-url) of the system instance.
|
|
245
247
|
* By providing the base URL, relative URLs in the overlay are resolved relative to it.
|
|
248
|
+
*
|
|
249
|
+
* The `baseUrl` MUST NOT contain a trailing slash.
|
|
246
250
|
*/
|
|
247
251
|
baseUrl?: string;
|
|
248
252
|
/**
|
|
@@ -314,9 +318,6 @@ export interface OverlaySelectorByRoot {
|
|
|
314
318
|
* **OData CSDL JSON** (`csdl-json`):
|
|
315
319
|
* - Patch root-level `$Version`, `$EntityContainer`, or add namespace objects
|
|
316
320
|
*
|
|
317
|
-
* **ORD Document** (no specific `definitionType`):
|
|
318
|
-
* - Patch root-level ORD document properties
|
|
319
|
-
*
|
|
320
321
|
* **MCP / A2A** (any Specification ID):
|
|
321
322
|
* - Patch top-level metadata or add root-level tool/skill definitions
|
|
322
323
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package",
|
|
3
3
|
"name": "@open-resource-discovery/specification",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.16.0",
|
|
5
5
|
"description": "Open Resource Discovery (ORD) Specification",
|
|
6
6
|
"author": "SAP SE",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"generate:llm-notebook": "npm run generate && ts-node ./src/helper/exportForNotebookLM.ts"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@biomejs/biome": "2.4.
|
|
42
|
+
"@biomejs/biome": "2.4.16",
|
|
43
43
|
"@docusaurus/core": "3.10.1",
|
|
44
44
|
"@docusaurus/faster": "3.10.1",
|
|
45
45
|
"@docusaurus/plugin-client-redirects": "3.10.1",
|
|
46
46
|
"@docusaurus/preset-classic": "3.10.1",
|
|
47
47
|
"@docusaurus/theme-mermaid": "3.10.1",
|
|
48
|
-
"@easyops-cn/docusaurus-search-local": "0.55.
|
|
48
|
+
"@easyops-cn/docusaurus-search-local": "0.55.2",
|
|
49
49
|
"@mdx-js/react": "3.1.1",
|
|
50
50
|
"@open-resource-discovery/spec-toolkit": "0.8.0",
|
|
51
51
|
"@types/fs-extra": "11.0.4",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"ajv-formats": "3.0.1",
|
|
54
54
|
"clsx": "2.1.1",
|
|
55
55
|
"fs-extra": "11.3.5",
|
|
56
|
-
"lefthook": "2.1.
|
|
56
|
+
"lefthook": "2.1.9",
|
|
57
57
|
"prism-react-renderer": "2.4.1",
|
|
58
|
-
"react": "19.2.
|
|
59
|
-
"react-dom": "19.2.
|
|
58
|
+
"react": "19.2.7",
|
|
59
|
+
"react-dom": "19.2.7",
|
|
60
60
|
"ts-node": "10.9.2",
|
|
61
61
|
"tslog": "4.10.2"
|
|
62
62
|
}
|