@aiwerk/mcp-bridge 2.8.18 → 2.8.19
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/src/mcp-router.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ export type RouterDispatchResponse = {
|
|
|
87
87
|
maturity?: string;
|
|
88
88
|
sideEffects?: string;
|
|
89
89
|
pricing?: string;
|
|
90
|
+
signed?: boolean;
|
|
90
91
|
}>;
|
|
91
92
|
} | {
|
|
92
93
|
action: "catalog";
|
|
@@ -100,6 +101,7 @@ export type RouterDispatchResponse = {
|
|
|
100
101
|
maturity?: string;
|
|
101
102
|
sideEffects?: string;
|
|
102
103
|
pricing?: string;
|
|
104
|
+
signed?: boolean;
|
|
103
105
|
}>;
|
|
104
106
|
} | {
|
|
105
107
|
action: "install";
|
package/dist/src/mcp-router.js
CHANGED
|
@@ -124,6 +124,7 @@ export class McpRouter {
|
|
|
124
124
|
maturity: r.maturity,
|
|
125
125
|
sideEffects: r.sideEffects,
|
|
126
126
|
pricing: r.pricing,
|
|
127
|
+
signed: Array.isArray(r.badges) ? r.badges.includes("signed") : false,
|
|
127
128
|
}))
|
|
128
129
|
};
|
|
129
130
|
}
|
|
@@ -150,6 +151,7 @@ export class McpRouter {
|
|
|
150
151
|
maturity: r.maturity,
|
|
151
152
|
sideEffects: r.sideEffects,
|
|
152
153
|
pricing: r.pricing,
|
|
154
|
+
signed: Array.isArray(r.badges) ? r.badges.includes("signed") : false,
|
|
153
155
|
}))
|
|
154
156
|
};
|
|
155
157
|
}
|