File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 3030 "@julep/sdk" : " file:../../dist/" ,
3131 "@modelcontextprotocol/sdk" : " ^1.11.5" ,
3232 "express" : " ^5.1.0" ,
33- "jq-web" : " https://github.com/stainless-api/jq-web/releases/download/v0.8.2 /jq-web.tar.gz" ,
33+ "jq-web" : " https://github.com/stainless-api/jq-web/releases/download/v0.8.6 /jq-web.tar.gz" ,
3434 "yargs" : " ^17.7.2" ,
3535 "@cloudflare/cabidela" : " ^0.2.4" ,
3636 "zod" : " ^3.25.20" ,
Original file line number Diff line number Diff line change 11// @ts -nocheck
22import initJq from 'jq-web' ;
33
4- export async function maybeFilter ( args : Record < string , unknown > | undefined , response : any ) : Promise < any > {
5- const jqFilter = args ?. [ 'jq_filter' ] ;
4+ export async function maybeFilter ( jqFilter : unknown | undefined , response : any ) : Promise < any > {
65 if ( jqFilter && typeof jqFilter === 'string' ) {
76 return await jq ( response , jqFilter ) ;
87 } else {
You can’t perform that action at this time.
0 commit comments