@utdk/openrouteservice 2.0.0-20260530.2-dev.646adf4
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/LICENSE +373 -0
- package/README.md +3 -0
- package/index.ts +22 -0
- package/metadata.ts +3 -0
- package/openapi.json +1228 -0
- package/overlay.yaml +23 -0
- package/package.json +32 -0
- package/provenance.json +24 -0
- package/research.json +92 -0
- package/types.ts +3 -0
package/overlay.yaml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Spec enrichment overlay for openrouteservice
|
|
2
|
+
# Edit this file to add corrections, pagination hints, and auth hints.
|
|
3
|
+
# This overlay is applied during regeneration to enrich the generated package.
|
|
4
|
+
# Keys under 'descriptions', 'paginationHints', and 'authHints' are keyed by operationId.
|
|
5
|
+
#
|
|
6
|
+
# Example description correction:
|
|
7
|
+
# descriptions:
|
|
8
|
+
# listRepos: "List all repositories the authenticated user has access to."
|
|
9
|
+
#
|
|
10
|
+
# Example pagination hint:
|
|
11
|
+
# paginationHints:
|
|
12
|
+
# listRepos:
|
|
13
|
+
# type: cursor
|
|
14
|
+
# cursorParam: page
|
|
15
|
+
# limitParam: per_page
|
|
16
|
+
# resultsKey: items
|
|
17
|
+
|
|
18
|
+
provider: openrouteservice
|
|
19
|
+
specUrl: https://raw.githubusercontent.com/mvanhorn/cli-printing-press/main/catalog/specs/openrouteservice-spec.yaml
|
|
20
|
+
generatedAt: 2026-05-30T18:15:32.547Z
|
|
21
|
+
descriptions: {}
|
|
22
|
+
paginationHints: {}
|
|
23
|
+
authHints: {}
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@utdk/openrouteservice",
|
|
3
|
+
"version": "2.0.0-20260530.2-dev.646adf4",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Generated UTDK provider client for OpenRouteService API. Open-source routing, geocoding, isochrone, distance-matrix, and VRP optimization API\nbuilt on OpenStreetMap. Pelias powers geocoding; Vroom powers optimization.\n\nThis spec covers the endpoints commonly used for back-end agent workflows\n(geocoding, matrices for VRP solvers, route ETAs, isochrones, full VRP solve).\nThe full ORS surface (POIs, snap-to-road, elevation, optimization advanced\nconstraints) can be added incrementally — see notes in the catalog entry.\n\nThe hosted free API (`https://api.openrouteservice.org`) exposes routing,\nmatrix, isochrones, optimization, and geocoding. Self-hosted ORS Docker\ncovers the ORS backend endpoints (routing, matrix, isochrones, optimization);\ngeocoding is hosted-public-API only.\n\nAuth: pass the API key in the `Authorization` header. Sign up free at\nhttps://openrouteservice.org/dev/#/signup.\n\nRate limits (free plan, hosted): 2,000 directions/day, 500 matrix/day,\n500 optimization/day, 500 isochrones/day, 1,000 geocode/day, 40/min on\nmost endpoints. Self-hosted backend endpoints: no hosted request caps.",
|
|
6
|
+
"homepage": "https://openrouteservice.org",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"openrouteservice",
|
|
9
|
+
"generated",
|
|
10
|
+
"openapi",
|
|
11
|
+
"utdk"
|
|
12
|
+
],
|
|
13
|
+
"utdk": {
|
|
14
|
+
"provider": "openrouteservice",
|
|
15
|
+
"generation": 2,
|
|
16
|
+
"generatedAt": "2026-05-30T18:16:06.572Z",
|
|
17
|
+
"auth": [
|
|
18
|
+
{
|
|
19
|
+
"auth_type": "api_key",
|
|
20
|
+
"api_key": "${ORS_API_KEY}",
|
|
21
|
+
"var_name": "Authorization",
|
|
22
|
+
"location": "header"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"openapi": {
|
|
26
|
+
"title": "OpenRouteService API",
|
|
27
|
+
"url": "https://raw.githubusercontent.com/mvanhorn/cli-printing-press/main/catalog/specs/openrouteservice-spec.yaml",
|
|
28
|
+
"version": "v2",
|
|
29
|
+
"termsOfService": null
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
package/provenance.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"provider": "openrouteservice",
|
|
3
|
+
"generatedAt": "2026-05-30T18:16:15.163Z",
|
|
4
|
+
"generation": 2,
|
|
5
|
+
"source": {
|
|
6
|
+
"type": "openapi",
|
|
7
|
+
"url": "https://raw.githubusercontent.com/mvanhorn/cli-printing-press/main/catalog/specs/openrouteservice-spec.yaml",
|
|
8
|
+
"hash": "sha256:40b767eb0b0dddafe5a3e0ba303c1039c84e0f945dbdf7eaa5aadc1af59435b5",
|
|
9
|
+
"fetchedAt": "2026-05-30T18:16:15.163Z"
|
|
10
|
+
},
|
|
11
|
+
"ingestSource": "printing-press",
|
|
12
|
+
"pipeline": {
|
|
13
|
+
"research": {
|
|
14
|
+
"noveltyScore": 6,
|
|
15
|
+
"competingPackages": 13
|
|
16
|
+
},
|
|
17
|
+
"scorecard": {
|
|
18
|
+
"infrastructure": "fail",
|
|
19
|
+
"domain": 85
|
|
20
|
+
},
|
|
21
|
+
"agentReadiness": "pass"
|
|
22
|
+
},
|
|
23
|
+
"bundlerVersion": "0.1.1"
|
|
24
|
+
}
|
package/research.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"provider": "openrouteservice",
|
|
3
|
+
"generatedAt": "2026-05-30T18:16:07.952Z",
|
|
4
|
+
"noveltyScore": 6,
|
|
5
|
+
"npmPackages": [
|
|
6
|
+
{
|
|
7
|
+
"name": "openrouteservice-js",
|
|
8
|
+
"version": "0.4.1",
|
|
9
|
+
"description": "A Javascript client for openrouteservice services.",
|
|
10
|
+
"category": "other"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "@aws-sdk/middleware-sdk-s3",
|
|
14
|
+
"version": "3.972.44",
|
|
15
|
+
"description": "[](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3) [](https://www.npmjs.com/package/@",
|
|
16
|
+
"category": "other"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "@aws-sdk/core",
|
|
20
|
+
"version": "3.974.15",
|
|
21
|
+
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
|
22
|
+
"category": "other"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "@aws-sdk/middleware-logger",
|
|
26
|
+
"version": "3.972.15",
|
|
27
|
+
"description": "[](https://www.npmjs.com/package/@aws-sdk/middleware-logger) [](https://www.npmjs.com/package/@",
|
|
28
|
+
"category": "other"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "@aws-sdk/types",
|
|
32
|
+
"version": "3.973.9",
|
|
33
|
+
"description": "Types for the AWS SDK",
|
|
34
|
+
"category": "other"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "undici-types",
|
|
38
|
+
"version": "8.3.0",
|
|
39
|
+
"description": "A stand-alone types package for Undici",
|
|
40
|
+
"category": "other"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "@babel/types",
|
|
44
|
+
"version": "7.29.7",
|
|
45
|
+
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
|
|
46
|
+
"category": "other"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "mime-types",
|
|
50
|
+
"version": "3.0.2",
|
|
51
|
+
"description": "The ultimate javascript content-type utility.",
|
|
52
|
+
"category": "other"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "@types/babel__core",
|
|
56
|
+
"version": "7.20.5",
|
|
57
|
+
"description": "TypeScript definitions for @babel/core",
|
|
58
|
+
"category": "types"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "mcp-proxy",
|
|
62
|
+
"version": "6.5.1",
|
|
63
|
+
"description": "A TypeScript SSE proxy for MCP servers that use stdio transport.",
|
|
64
|
+
"category": "mcp-server"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "cloudflare",
|
|
68
|
+
"version": "6.3.0",
|
|
69
|
+
"description": "The official TypeScript library for the Cloudflare API",
|
|
70
|
+
"category": "other"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "@modelcontextprotocol/sdk",
|
|
74
|
+
"version": "1.29.0",
|
|
75
|
+
"description": "Model Context Protocol implementation for TypeScript",
|
|
76
|
+
"category": "other"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "@playwright/mcp",
|
|
80
|
+
"version": "0.0.75",
|
|
81
|
+
"description": "Playwright Tools for MCP",
|
|
82
|
+
"category": "mcp-server"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"gapAnalysis": {
|
|
86
|
+
"hasOfficialSdk": false,
|
|
87
|
+
"hasCommunitySDK": false,
|
|
88
|
+
"hasTypeDefinitions": true,
|
|
89
|
+
"hasMcpServer": true,
|
|
90
|
+
"recommendation": "No existing TypeScript SDK found for openrouteservice. Generating from OpenAPI spec provides high value. An MCP server already exists; differentiate by offering better type coverage."
|
|
91
|
+
}
|
|
92
|
+
}
|
package/types.ts
ADDED