@zuplo/runtime 6.51.47 → 6.51.49
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/out/types/index.d.ts +9 -1
- package/package.json +1 -1
package/out/types/index.d.ts
CHANGED
|
@@ -3270,7 +3270,15 @@ declare type LokiTransportVersion = 1 | 2;
|
|
|
3270
3270
|
|
|
3271
3271
|
/* Excluded from this release type: LookupResult */
|
|
3272
3272
|
|
|
3273
|
-
|
|
3273
|
+
/**
|
|
3274
|
+
* An MCP Server handler for Zuplo
|
|
3275
|
+
*
|
|
3276
|
+
* @beta
|
|
3277
|
+
* @param request - The ZuploRequest
|
|
3278
|
+
* @param context - The ZuploContext
|
|
3279
|
+
* @returns ZuploResponse
|
|
3280
|
+
*/
|
|
3281
|
+
export declare function mcpServerHandler(request: ZuploRequest, context: ZuploContext): Promise<Response>;
|
|
3274
3282
|
|
|
3275
3283
|
export declare class MemoryZoneReadThroughCache<T = unknown> {
|
|
3276
3284
|
#private;
|