roboport 0.1.0 → 0.2.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/mcp/auth.d.ts +2 -0
- package/mcp/index.d.ts +4 -1
- package/mcp/index.js +811 -801
- package/package.json +1 -1
package/mcp/auth.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ type OAuthAuthOptions = {
|
|
|
15
15
|
redirectPort?: number;
|
|
16
16
|
scopes?: string[];
|
|
17
17
|
flowTimeoutMs?: number;
|
|
18
|
+
clientId?: string;
|
|
18
19
|
};
|
|
19
20
|
declare class OAuthAuth implements AuthProvider {
|
|
20
21
|
private serverUrl;
|
|
@@ -23,6 +24,7 @@ declare class OAuthAuth implements AuthProvider {
|
|
|
23
24
|
private redirectPort;
|
|
24
25
|
private scopes?;
|
|
25
26
|
private flowTimeoutMs;
|
|
27
|
+
private clientId?;
|
|
26
28
|
private tokens?;
|
|
27
29
|
private loaded;
|
|
28
30
|
private metadata?;
|
package/mcp/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import { BearerAuth, OAuthAuth, type AuthProvider, type OAuthAuthOptions } from './auth';
|
|
1
2
|
import Grafana from './clients/grafana';
|
|
2
3
|
import Linear from './clients/linear';
|
|
3
4
|
import Tenderly from './clients/tenderly';
|
|
4
|
-
|
|
5
|
+
import { Mcp, type HttpTransportConfig, type McpTransportConfig, type StdioTransportConfig } from './core';
|
|
6
|
+
import { FileStorage, MemoryStorage, type OAuthStorage, type TokenSet } from './storage';
|
|
7
|
+
export { BearerAuth, FileStorage, Grafana, Linear, Mcp, MemoryStorage, OAuthAuth, Tenderly, type AuthProvider, type HttpTransportConfig, type McpTransportConfig, type OAuthAuthOptions, type OAuthStorage, type StdioTransportConfig, type TokenSet, };
|