@waniwani/sdk 0.8.2-alpha.5 → 0.8.3
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/chat/index.js +1 -1
- package/dist/{chunk-HVAT4SNH.js → chunk-5JBHQYU5.js} +2 -2
- package/dist/chunk-5JBHQYU5.js.map +1 -0
- package/dist/{code-block-37QAKDTI-M2QCKVTI.js → code-block-37QAKDTI-IIYKFI5S.js} +2 -2
- package/dist/mcp/index.d.ts +6 -23
- package/dist/mcp/index.js +4 -4
- package/dist/mcp/index.js.map +1 -1
- package/dist/mermaid-4DMBBIKO-PAA57QRQ.js +3 -0
- package/package.json +14 -11
- package/dist/chunk-HVAT4SNH.js.map +0 -1
- package/dist/mermaid-4DMBBIKO-NR6M3PLG.js +0 -3
- /package/dist/{code-block-37QAKDTI-M2QCKVTI.js.map → code-block-37QAKDTI-IIYKFI5S.js.map} +0 -0
- /package/dist/{mermaid-4DMBBIKO-NR6M3PLG.js.map → mermaid-4DMBBIKO-PAA57QRQ.js.map} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use client";import{q as g,r as u,s as b,t as h}from"./chunk-
|
|
2
|
+
"use client";import{q as g,r as u,s as b,t as h}from"./chunk-5JBHQYU5.js";import"./chunk-V3ZDECK5.js";import{memo as x,useMemo as f,useContext as N,useState as v,useEffect as y}from"react";import{jsx as r,jsxs as k}from"react/jsx-runtime";var w=g("block","before:content-[counter(line)]","before:inline-block","before:[counter-increment:line]","before:w-6","before:mr-4","before:text-[13px]","before:text-right","before:text-muted-foreground/50","before:font-mono","before:select-none"),C=x(({children:a,result:e,language:o,className:s,...m})=>{let i=f(()=>({backgroundColor:e.bg,color:e.fg}),[e.bg,e.fg]);return r("pre",{className:g(s,"p-4 text-sm dark:bg-(--shiki-dark-bg)!"),"data-language":o,"data-streamdown":"code-block-body",style:i,...m,children:r("code",{className:"[counter-increment:line_0] [counter-reset:line]",children:e.tokens.map((c,l)=>r("span",{className:w,children:c.map((t,n)=>r("span",{className:"dark:bg-(--shiki-dark-bg)! dark:text-(--shiki-dark)!",style:{color:t.color,backgroundColor:t.bgColor,...t.htmlStyle},...t.htmlAttrs,children:t.content},n))},l))})})},(a,e)=>a.result===e.result&&a.language===e.language&&a.className===e.className),S=({className:a,language:e,style:o,...s})=>r("div",{className:g("my-4 w-full overflow-hidden rounded-xl border border-border",a),"data-language":e,"data-streamdown":"code-block",style:{contentVisibility:"auto",containIntrinsicSize:"auto 200px",...o},...s}),j=({language:a,children:e})=>k("div",{className:"flex items-center justify-between bg-muted/80 p-3 text-muted-foreground text-xs","data-language":a,"data-streamdown":"code-block-header",children:[r("span",{className:"ml-1 font-mono lowercase",children:a}),r("div",{className:"flex items-center gap-2",children:e})]}),E=({code:a,language:e,className:o,children:s,...m})=>{let{shikiTheme:i}=N(h),c=b(),l=f(()=>({bg:"transparent",fg:"inherit",tokens:a.split(`
|
|
3
3
|
`).map(d=>[{content:d,color:"inherit",bgColor:"transparent",htmlStyle:{},offset:0}])}),[a]),[t,n]=v(l);return y(()=>{if(!c){n(l);return}let d=c.highlight({code:a,language:e,themes:i},p=>{n(p)});if(d){n(d);return}n(l)},[a,e,i,c,l]),r(u.Provider,{value:{code:a},children:k(S,{language:e,children:[r(j,{language:e,children:s}),r(C,{className:o,language:e,result:t,...m})]})})};export{E as CodeBlock};
|
|
4
|
-
//# sourceMappingURL=code-block-37QAKDTI-
|
|
4
|
+
//# sourceMappingURL=code-block-37QAKDTI-IIYKFI5S.js.map
|
package/dist/mcp/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ContentBlock, CallToolResult } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
import { McpServer, ToolCallback } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
3
4
|
export { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
4
|
-
import { z } from 'zod';
|
|
5
5
|
import { ZodRawShapeCompat, ShapeOutput } from '@modelcontextprotocol/sdk/server/zod-compat.js';
|
|
6
6
|
export { ZodRawShapeCompat } from '@modelcontextprotocol/sdk/server/zod-compat.js';
|
|
7
7
|
|
|
@@ -581,8 +581,8 @@ type RegisteredTool = {
|
|
|
581
581
|
id: string;
|
|
582
582
|
title: string;
|
|
583
583
|
description: string;
|
|
584
|
-
/** Register the tool on the server
|
|
585
|
-
register
|
|
584
|
+
/** Register the tool on the server */
|
|
585
|
+
register: (server: McpServer) => Promise<void>;
|
|
586
586
|
};
|
|
587
587
|
|
|
588
588
|
/**
|
|
@@ -802,28 +802,11 @@ type InferFlowState<T extends Record<string, z.ZodType>> = {
|
|
|
802
802
|
};
|
|
803
803
|
/**
|
|
804
804
|
* A compiled flow — can be registered on an McpServer.
|
|
805
|
-
*
|
|
806
|
-
* Exposes MCP-compatible `name`, `config`, and `handler` so it can be
|
|
807
|
-
* registered directly: `server.registerTool(flow.name, flow.config, flow.handler)`
|
|
808
805
|
*/
|
|
809
806
|
type RegisteredFlow = {
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
config: {
|
|
814
|
-
title: string;
|
|
815
|
-
description: string;
|
|
816
|
-
inputSchema: Record<string, unknown>;
|
|
817
|
-
annotations?: {
|
|
818
|
-
readOnlyHint?: boolean;
|
|
819
|
-
idempotentHint?: boolean;
|
|
820
|
-
openWorldHint?: boolean;
|
|
821
|
-
destructiveHint?: boolean;
|
|
822
|
-
};
|
|
823
|
-
};
|
|
824
|
-
/** Tool callback — pass to `server.registerTool(flow.name, flow.config, flow.handler)`. */
|
|
825
|
-
handler: ToolCallback;
|
|
826
|
-
/** Register this flow on an MCP server. Shorthand for `server.registerTool(flow.name, flow.config, flow.handler)`. */
|
|
807
|
+
id: string;
|
|
808
|
+
title: string;
|
|
809
|
+
description: string;
|
|
827
810
|
register: (server: McpServer) => Promise<void>;
|
|
828
811
|
/** Returns a Mermaid `flowchart TD` diagram of the flow graph. */
|
|
829
812
|
graph: () => string;
|
package/dist/mcp/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
function X(){return typeof window<"u"&&"openai"in window?"openai":"mcp-apps"}function
|
|
1
|
+
function X(){return typeof window<"u"&&"openai"in window?"openai":"mcp-apps"}function ze(){return X()==="openai"}function He(){return X()==="mcp-apps"}var I="__start__",b="__end__",pe=Symbol.for("waniwani.flow.interrupt"),le=Symbol.for("waniwani.flow.widget");function fe(e,t){let n=t?.context,r=[];for(let[o,s]of Object.entries(e))if(typeof s=="object"&&s!==null&&"question"in s){let a=s;r.push({question:a.question,field:o,suggestions:a.suggestions,context:a.context,validate:a.validate})}return{__type:pe,questions:r,context:n}}function ge(e,t){return{__type:le,tool:e,...t}}function me(e){return typeof e=="object"&&e!==null&&"__type"in e&&e.__type===pe}function we(e){return typeof e=="object"&&e!==null&&"__type"in e&&e.__type===le}import{z as K}from"zod";var G="waniwani/client";function $(e){if(typeof e=="object"&&e!==null)return e[G]}function he(e,t,n){return{track(r){return e.track({...r,meta:{...t,...r.meta}})},identify(r,o){return e.identify(r,o,t)},kb:e.kb,_config:n}}function D(e,t){for(let n of t){let r=e[n];if(typeof r=="string"&&r.length>0)return r}}var Ye=["waniwani/sessionId","openai/sessionId","openai/session","sessionId","conversationId","anthropic/sessionId"],Je=["waniwani/requestId","openai/requestId","requestId","mcp/requestId"],Xe=["waniwani/traceId","openai/traceId","traceId","mcp/traceId","openai/requestId","requestId"],Ge=["waniwani/userId","openai/userId","externalUserId","userId","actorId"],Ze=["correlationId","openai/requestId"];function _(e){return e?D(e,Ye):void 0}function ye(e){return e?D(e,Je):void 0}function Te(e){return e?D(e,Xe):void 0}function ke(e){return e?D(e,Ge):void 0}function Se(e){return e?D(e,Ze):void 0}var Qe=[{key:"waniwani/sessionId",source:"chatbar"},{key:"openai/sessionId",source:"chatgpt"},{key:"openai/session",source:"chatgpt"},{key:"anthropic/sessionId",source:"claude"}];function M(e){if(!e)return;let t=e["waniwani/source"];if(typeof t=="string"&&t.length>0)return t;for(let{key:n,source:r}of Qe){let o=e[n];if(typeof o=="string"&&o.length>0)return r}}function ve(e){let t=e._zod?.def;return t?.type==="object"&&t.shape?t.shape:null}function U(e,t){let n=t.split("."),r=e;for(let o of n){if(r==null||typeof r!="object")return;r=r[o]}return r}function et(e,t,n){let r=t.split("."),o=r.pop();if(!o)return;let s=e;for(let a of r)(s[a]==null||typeof s[a]!="object"||Array.isArray(s[a]))&&(s[a]={}),s=s[a];s[o]=n}function xe(e,t){let n=t.split("."),r=n.pop();if(!r)return;let o=e;for(let s of n){if(o==null||typeof o!="object")return;o=o[s]}o!=null&&typeof o=="object"&&delete o[r]}function Z(e){let t={};for(let[n,r]of Object.entries(e))n.includes(".")?et(t,n,r):t[n]=r;return t}function W(e,t){let n={...e};for(let[r,o]of Object.entries(t))o!==null&&typeof o=="object"&&!Array.isArray(o)&&n[r]!==null&&typeof n[r]=="object"&&!Array.isArray(n[r])?n[r]=W(n[r],o):n[r]=o;return n}function Q(e){return e!=null&&e!==""}async function F(e,t){return e.type==="direct"?e.to:e.condition(t)}function Re(e,t,n,r){if(e.every(c=>Q(U(r,c.field))))return null;let o=e.filter(c=>!Q(U(r,c.field))),s=o.length===1,a=o[0];return{content:s&&a?{status:"interrupt",question:a.question,field:a.field,...a.suggestions?{suggestions:a.suggestions}:{},...a.context||t?{context:a.context??t}:{}}:{status:"interrupt",questions:o,...t?{context:t}:{}},flowTokenContent:{step:n,state:r,...s&&a?{field:a.field}:{}}}}async function B(e,t,n,r,o,s,a){let i=e,c={...t},d=50,l=0;for(;l++<d;){if(i===b)return{content:{status:"complete"},flowTokenContent:{state:c}};let f=n.get(i);if(!f)return{content:{status:"error",error:`Unknown node: "${i}"`}};try{let p=await f({state:c,meta:s,interrupt:fe,showWidget:ge,waniwani:a});if(me(p)){for(let T of p.questions)T.validate&&o.set(`${i}:${T.field}`,T.validate);let y=Re(p.questions,p.context,i,c);if(y)return y;for(let T of p.questions){let k=o.get(`${i}:${T.field}`);if(k)try{let R=U(c,T.field),E=await k(R);E&&typeof E=="object"&&(c=W(c,E))}catch(R){let E=R instanceof Error?R.message:String(R);xe(c,T.field);let S=p.questions.map(C=>C.field===T.field?{...C,context:C.context?`ERROR: ${E}
|
|
2
2
|
|
|
3
|
-
${C.context}`:`ERROR: ${
|
|
3
|
+
${C.context}`:`ERROR: ${E}`}:C),P=Re(S,p.context,i,c);if(P)return P;break}}let u=r.get(i);if(!u)return{content:{status:"error",error:`No outgoing edge from node "${i}"`}};i=await F(u,c);continue}if(we(p)){let y=p.field;if(y&&Q(U(c,y))){let u=r.get(i);if(!u)return{content:{status:"error",error:`No outgoing edge from node "${i}"`}};i=await F(u,c);continue}return{content:{status:"widget",tool:p.tool.id,data:p.data,description:p.description,interactive:p.interactive!==!1},flowTokenContent:{step:i,state:c,field:y,widgetId:p.tool.id}}}c=W(c,p);let h=r.get(i);if(!h)return{content:{status:"error",error:`No outgoing edge from node "${i}"`}};i=await F(h,c)}catch(g){return{content:{status:"error",error:g instanceof Error?g.message:String(g)},flowTokenContent:{step:i,state:c}}}}return{content:{status:"error",error:"Flow exceeded maximum iterations (possible infinite loop)"}}}var tt="@waniwani/sdk",nt="https://app.waniwani.ai",A=class{get baseUrl(){return(process.env.WANIWANI_API_URL??nt).replace(/\/$/,"")}get apiKey(){return process.env.WANIWANI_API_KEY}async get(t){if(!this.apiKey)throw new Error("[WaniWani KV] No API key configured. Set WANIWANI_API_KEY env var.");return await this.request("/api/mcp/redis/get",{key:t})??null}async set(t,n){if(!this.apiKey)throw new Error("[WaniWani KV] No API key configured. Set WANIWANI_API_KEY env var.");await this.request("/api/mcp/redis/set",{key:t,value:n})}async delete(t){if(this.apiKey)try{await this.request("/api/mcp/redis/delete",{key:t})}catch(n){console.error("[WaniWani KV] delete failed for key:",t,n)}}async request(t,n){let r=`${this.baseUrl}${t}`,o=await fetch(r,{method:"POST",headers:{Authorization:`Bearer ${this.apiKey}`,"Content-Type":"application/json","X-WaniWani-SDK":tt},body:JSON.stringify(n)});if(!o.ok){let a=await o.text().catch(()=>"");throw new Error(a||`KV store API error: HTTP ${o.status}`)}return(await o.json()).data}};var O=class{store=new A;get(t){return this.store.get(t)}set(t,n){return this.store.set(t,n)}delete(t){return this.store.delete(t)}};function Ee(e){let t=e.description??"",n=e._zod?.def;if(n?.type==="enum"&&n.entries){let r=Object.keys(n.entries).map(o=>`"${o}"`).join(" | ");return t?`${r} \u2014 ${t}`:r}return t}function Ie(e){let t=["","## FLOW EXECUTION PROTOCOL","","This tool implements a multi-step conversational flow. Follow this protocol exactly:","",'1. Call with `action: "start"` to begin and include `intent`.'," `intent` must be a brief summary of the user's goal for this flow,"," including relevant prior context that led to triggering it, if available."," Do NOT invent missing context."," If the user's message already contains answers to likely questions,"," extract them into `stateUpdates` as `{ field: value }` pairs."," The engine will auto-skip steps whose fields are already filled."," Only extract values the user explicitly stated \u2014 do NOT guess or invent values."];if(e.state){let n=[];for(let[r,o]of Object.entries(e.state)){let s=ve(o);if(s){let a=o.description??"",i=Object.entries(s).map(([c,d])=>{let l=Ee(d);return l?`\`${r}.${c}\` (${l})`:`\`${r}.${c}\``}).join(", ");n.push(a?`\`${r}\` (${a}): ${i}`:`\`${r}\`: ${i}`)}else{let a=Ee(o);n.push(a?`\`${r}\` (${a})`:`\`${r}\``)}}t.push(` Known fields: ${n.join(", ")}.`)}return t.push(" For grouped fields (shown as `group.subfield`), use dot-notation keys in `stateUpdates`:",' e.g. `{ "driver.name": "John", "driver.license": "ABC123" }`.',"2. The response JSON `status` field tells you what to do next:",' - `"interrupt"`: Pause and ask the user. Two forms:'," a. Single question: `{ question, field, context? }` \u2014 ask `question`, store answer in `field`."," b. Multi-question: `{ questions: [{question, field}, ...], context? }` \u2014 ask ALL questions"," in one conversational message, collect all answers."," `context` (if present) is hidden AI instructions \u2014 use to shape your response, do NOT show verbatim."," Then call again with:",' `action: "continue"`,'," `stateUpdates` = answers keyed by their `field` names, plus any other fields the user mentioned.",' - `"widget"`: The flow wants to show a UI widget. Call the tool named in the `tool`'," field, passing the `data` object as the tool's input."," Check the `interactive` field in the response:"," \u2022 `interactive: true` \u2014 The widget requires user interaction. After calling the display tool,"," STOP and WAIT for the user to interact with the widget. Do NOT call this flow tool again"," until the user has responded. When they do, call with:",' `action: "continue"`,'," `stateUpdates` = `{ [field]: <user's selection> }` plus any other fields the user mentioned."," \u2022 `interactive: false` \u2014 The widget is display-only. Call the display tool, then immediately",' call THIS flow tool again with `action: "continue"`. Do NOT wait for user interaction.',' - `"complete"`: The flow is done. Present the result to the user.',' - `"error"`: Something went wrong. Show the `error` message.',"","3. Do NOT invent state values. Only use `stateUpdates` for information the user explicitly provided.","4. Include only the fields the user actually answered in `stateUpdates` \u2014 do NOT guess missing ones."," If the user did not answer all pending questions, the engine will re-prompt for the remaining ones."," If the user mentioned values for other known fields, include those too \u2014"," they will be applied immediately and those steps will be auto-skipped."),t.join(`
|
|
4
4
|
`)}var rt={action:K.enum(["start","continue"]).describe('"start" to begin the flow, "continue" to resume after a pause (interrupt or widget)'),intent:K.string().optional().describe(`Required when action is "start". Provide a brief summary of the user's goal for this flow, including relevant prior context that led to triggering it, if available. Do not invent missing context.`),stateUpdates:K.record(K.string(),K.unknown()).optional().describe("State field values to set before processing the next node. Use this to pass the user's answer (keyed by the field name from the response) and any other values the user mentioned.")};function Ce(e){let{config:t,nodes:n,edges:r}=e,o=Ie(t),s=`${t.description}
|
|
5
|
-
${o}`,a=e.store??new O,i=new Map;async function c(
|
|
6
|
-
`)}var N=class{nodes=new Map;edges=new Map;config;constructor(t){this.config=t}addNode(t,n){if(t===I||t===b)throw new Error(`"${t}" is a reserved name and cannot be used as a node name`);if(this.nodes.has(t))throw new Error(`Node "${t}" already exists`);return this.nodes.set(t,n),this}addEdge(t,n){if(this.edges.has(t))throw new Error(`Node "${t}" already has an outgoing edge. Use addConditionalEdge for branching.`);return this.edges.set(t,{type:"direct",to:n}),this}addConditionalEdge(t,n){if(this.edges.has(t))throw new Error(`Node "${t}" already has an outgoing edge.`);return this.edges.set(t,{type:"conditional",condition:n}),this}graph(){return be(this.nodes,this.edges)}compile(t){this.validate();let n=new Map(this.nodes),r=new Map(this.edges);return Ce({config:this.config,nodes:n,edges:r,store:t?.store,graph:()=>be(n,r)})}validate(){if(!this.edges.has(I))throw new Error('Flow must have an entry point. Add an edge from START: .addEdge(START, "first_node")');let t=this.edges.get(I);if(t?.type==="direct"&&t.to!==b&&!this.nodes.has(t.to))throw new Error(`START edge references non-existent node: "${t.to}"`);for(let[n,r]of this.edges){if(n!==I&&!this.nodes.has(n))throw new Error(`Edge from non-existent node: "${n}"`);if(r.type==="direct"&&r.to!==b&&!this.nodes.has(r.to))throw new Error(`Edge from "${n}" references non-existent node: "${r.to}"`)}for(let[n]of this.nodes)if(!this.edges.has(n))throw new Error(`Node "${n}" has no outgoing edge. Add one with .addEdge("${n}", ...) or .addConditionalEdge("${n}", ...)`)}};function _e(e){return new N(e)}function Pe(e){let t=e.content;return JSON.parse(t[0]?.text??"")}async function Me(e,t){let n=t?.stateStore,r=[],o=`test-session-${Math.random().toString(36).slice(2,10)}`,s={registerTool:(...d)=>{r.push(d)}};await e.register(s);let a=r[0]?.[2];if(!a)throw new Error(`Flow "${e.name}" did not register a handler`);let i={_meta:{sessionId:o}};async function c(d){return{...d,decodedState:n?await n.get(o):null}}return{async start(d,l){let u=await a({action:"start",intent:d,...l?{stateUpdates:l}:{}},i);return c(Pe(u))},async continueWith(d){let l=await a({action:"continue",...d?{stateUpdates:d}:{}},i);return c(Pe(l))},async lastState(){return n?n.get(o):null}}}var q="text/html+skybridge",L="text/html;profile=mcp-app",We=async(e,t)=>{let n=e.endsWith("/")?e.slice(0,-1):e;return await(await fetch(`${n}${t}`)).text()};function Fe(e){return{"openai/widgetDescription":e.description,"openai/widgetPrefersBorder":e.prefersBorder,"openai/widgetDomain":e.widgetDomain,...e.widgetCSP&&{"openai/widgetCSP":e.widgetCSP}}}function Ae(e){let t=e.widgetCSP?{connectDomains:e.widgetCSP.connect_domains,resourceDomains:e.widgetCSP.resource_domains,frameDomains:e.widgetCSP.frame_domains,redirectDomains:e.widgetCSP.redirect_domains}:void 0;return{ui:{...t&&{csp:t},...e.widgetDomain&&{domain:e.widgetDomain},...e.prefersBorder!==void 0&&{prefersBorder:e.prefersBorder}}}}function ee(e){return{...e.openaiTemplateUri&&{"openai/outputTemplate":e.openaiTemplateUri},"openai/toolInvocation/invoking":e.invoking,"openai/toolInvocation/invoked":e.invoked,"openai/widgetAccessible":!0,"openai/resultCanProduceWidget":!0,...e.mcpTemplateUri&&{ui:{resourceUri:e.mcpTemplateUri,...e.autoHeight&&{autoHeight:!0}}},...e.mcpTemplateUri&&{"ui/resourceUri":e.mcpTemplateUri}}}function Ne(e){let{id:t,title:n,description:r,baseUrl:o,htmlPath:s,widgetDomain:a,prefersBorder:i=!0,autoHeight:c=!0}=e,d=e.widgetCSP??{connect_domains:[o],resource_domains:[o]};if(process.env.NODE_ENV==="development")try{let{hostname:p}=new URL(o);(p==="localhost"||p==="127.0.0.1")&&(d={...d,connect_domains:[...d.connect_domains||[],`ws://${p}:*`,`wss://${p}:*`],resource_domains:[...d.resource_domains||[],`http://${p}:*`]})}catch{}let l=`ui://widgets/apps-sdk/${t}.html`,u=`ui://widgets/ext-apps/${t}.html`,g=null,m=()=>(g||(g=We(o,s)),g),T=r;async function f(p){let y=await m();p.registerResource(`${t}-openai-widget`,l,{title:n,description:T,mimeType:q,_meta:{"openai/widgetDescription":T,"openai/widgetPrefersBorder":i}},async v=>({contents:[{uri:v.href,mimeType:q,text:y,_meta:Fe({description:T,prefersBorder:i,widgetDomain:a,widgetCSP:d})}]})),p.registerResource(`${t}-mcp-widget`,u,{title:n,description:T,mimeType:L,_meta:{ui:{prefersBorder:i}}},async v=>({contents:[{uri:v.href,mimeType:L,text:y,_meta:Ae({description:T,prefersBorder:i,widgetDomain:a,widgetCSP:d})}]}))}return{id:t,title:n,description:r,openaiUri:l,mcpUri:u,autoHeight:c,register:f}}function ot(e,t){let{resource:n,description:r,inputSchema:o,annotations:s,autoInjectResultText:a=!0}=e,i=e.id??n?.id,c=e.title??n?.title;if(!i)throw new Error("createTool: `id` is required when no resource is provided");if(!c)throw new Error("createTool: `title` is required when no resource is provided");let d=n?ee({openaiTemplateUri:n.openaiUri,mcpTemplateUri:n.mcpUri,invoking:e.invoking??"Loading...",invoked:e.invoked??"Loaded",autoHeight:n.autoHeight}):void 0;return{id:i,title:c,description:r,async register(l){l.registerTool(i,{title:c,description:r,inputSchema:o,annotations:s,...d&&{_meta:d}},(async(u,g)=>{let m=g,T=m._meta??{},f=$(m),p=await t(u,{extra:{_meta:T},waniwani:f});return n&&p.data?{content:[{type:"text",text:p.text}],structuredContent:p.data,_meta:{...d,...T,...a===!1?{"waniwani/autoInjectResultText":!1}:{}}}:{content:[{type:"text",text:p.text}],...p.data?{structuredContent:p.data}:{},...a===!1?{_meta:{"waniwani/autoInjectResultText":!1}}:{}}}))}}}async function it(e,t){await Promise.all(t.map(n=>n.register?.(e)))}var V=class extends Error{constructor(n,r){super(n);this.status=r;this.name="WaniWaniError"}};var st="@waniwani/sdk";function De(e){let{apiUrl:t,apiKey:n}=e;function r(){if(!n)throw new Error("WANIWANI_API_KEY is not set");return n}async function o(s,a,i){let c=r(),d=`${t.replace(/\/$/,"")}${a}`,l={Authorization:`Bearer ${c}`,"X-WaniWani-SDK":st},u={method:s,headers:l};i!==void 0&&(l["Content-Type"]="application/json",u.body=JSON.stringify(i));let g=await fetch(d,u);if(!g.ok){let T=await g.text().catch(()=>"");throw new V(T||`KB API error: HTTP ${g.status}`,g.status)}return(await g.json()).data}return{async ingest(s){return o("POST","/api/mcp/kb/ingest",{files:s})},async search(s,a){return o("POST","/api/mcp/kb/search",{query:s,...a})},async sources(){return o("GET","/api/mcp/kb/sources")}}}var at="@waniwani/sdk";function z(e,t={}){let n=t.now??(()=>new Date),r=t.generateId??Ue,o=ut(e),s=H(e.meta),a=H(e.metadata),i=pt(e,s),c=E(e.eventId)??r(),d=lt(e.timestamp,n),l=E(e.source)??M(s)??t.source??at,u=te(e)?{...e}:void 0,g={...a};return Object.keys(s).length>0&&(g.meta=s),u&&(g.rawLegacy=u),{id:c,type:"mcp.event",name:o,source:l,timestamp:d,correlation:i,properties:ct(e,o),metadata:g,rawLegacy:u}}function Ue(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?`evt_${crypto.randomUUID()}`:`evt_${Math.random().toString(36).slice(2,10)}_${Date.now().toString(36)}`}function ct(e,t){if(!te(e))return H(e.properties);let n=dt(e,t),r=H(e.properties);return{...n,...r}}function dt(e,t){switch(t){case"tool.called":{let n={};return E(e.toolName)&&(n.name=e.toolName),E(e.toolType)&&(n.type=e.toolType),n}case"quote.succeeded":{let n={};return typeof e.quoteAmount=="number"&&(n.amount=e.quoteAmount),E(e.quoteCurrency)&&(n.currency=e.quoteCurrency),n}case"link.clicked":{let n={};return E(e.linkUrl)&&(n.url=e.linkUrl),n}case"purchase.completed":{let n={};return typeof e.purchaseAmount=="number"&&(n.amount=e.purchaseAmount),E(e.purchaseCurrency)&&(n.currency=e.purchaseCurrency),n}default:return{}}}function ut(e){return te(e)?e.eventType:e.event}function pt(e,t){let n=E(e.requestId)??ye(t),r=E(e.sessionId)??_(t),o=E(e.traceId)??Te(t),s=E(e.externalUserId)??ke(t),a=E(e.correlationId)??Se(t)??n,i={};return r&&(i.sessionId=r),o&&(i.traceId=o),n&&(i.requestId=n),a&&(i.correlationId=a),s&&(i.externalUserId=s),i}function lt(e,t){if(e instanceof Date)return e.toISOString();if(typeof e=="string"){let n=new Date(e);if(!Number.isNaN(n.getTime()))return n.toISOString()}return t().toISOString()}function H(e){return!e||typeof e!="object"||Array.isArray(e)?{}:e}function E(e){if(typeof e=="string"&&e.trim().length!==0)return e}function te(e){return"eventType"in e}var ft="/api/mcp/events/v2/batch";var Oe="@waniwani/sdk",gt=new Set([401,403]),mt=new Set([408,425,429,500,502,503,504]);function Ke(e){return new ne(e)}var ne=class{endpointUrl;flushIntervalMs;maxBatchSize;maxBufferSize;maxRetries;retryBaseDelayMs;retryMaxDelayMs;shutdownTimeoutMs;sdkVersion;fetchFn;logger;now;sleep;apiKey;buffer=[];flushTimer;flushScheduled=!1;flushScheduledTimer;flushInFlight;inFlightCount=0;isStopped=!1;isShuttingDown=!1;constructor(t){this.endpointUrl=yt(t.apiUrl,t.endpointPath??ft),this.flushIntervalMs=t.flushIntervalMs??1e3,this.maxBatchSize=t.maxBatchSize??20,this.maxBufferSize=t.maxBufferSize??1e3,this.maxRetries=t.maxRetries??3,this.retryBaseDelayMs=t.retryBaseDelayMs??200,this.retryMaxDelayMs=t.retryMaxDelayMs??2e3,this.shutdownTimeoutMs=t.shutdownTimeoutMs??2e3,this.fetchFn=t.fetchFn??fetch,this.logger=t.logger??console,this.now=t.now??(()=>new Date),this.sleep=t.sleep??(n=>new Promise(r=>setTimeout(r,n))),this.apiKey=t.apiKey,this.sdkVersion=t.sdkVersion,this.flushIntervalMs>0&&(this.flushTimer=setInterval(()=>{this.flush()},this.flushIntervalMs))}enqueue(t){if(this.isStopped||this.isShuttingDown){this.logger.warn("[WaniWani] Tracking transport is stopped, dropping event %s",t.id);return}if(this.buffer.length>=this.maxBufferSize){let n=this.buffer.length-this.maxBufferSize+1;this.buffer.splice(0,n),this.logger.warn("[WaniWani] Tracking buffer overflow, dropped %d oldest event(s)",n)}if(this.buffer.push(t),this.buffer.length>=this.maxBatchSize){this.flush();return}this.scheduleMicroFlush()}pendingEvents(){return this.buffer.length+this.inFlightCount}async flush(){return this.flushInFlight?this.flushInFlight:(this.flushInFlight=this.flushLoop().finally(()=>{this.flushInFlight=void 0}),this.flushInFlight)}async shutdown(t){this.isShuttingDown=!0,this.flushTimer&&(clearInterval(this.flushTimer),this.flushTimer=void 0),this.flushScheduledTimer&&(clearTimeout(this.flushScheduledTimer),this.flushScheduledTimer=void 0,this.flushScheduled=!1);let n=t?.timeoutMs??this.shutdownTimeoutMs,r=this.flush();if(!Number.isFinite(n)||n<=0)return await r,this.isStopped=!0,{timedOut:!1,pendingEvents:this.pendingEvents()};let o=Symbol("shutdown-timeout");return await Promise.race([r.then(()=>"flushed"),this.sleep(n).then(()=>o)])===o?(this.isStopped=!0,{timedOut:!0,pendingEvents:this.pendingEvents()}):(this.isStopped=!0,{timedOut:!1,pendingEvents:this.pendingEvents()})}scheduleMicroFlush(){this.flushScheduled||(this.flushScheduled=!0,this.flushScheduledTimer=setTimeout(()=>{this.flushScheduledTimer=void 0,this.flushScheduled=!1,this.flush()},0))}async flushLoop(){for(;this.buffer.length>0&&!this.isStopped;){let t=this.buffer.splice(0,this.maxBatchSize);await this.sendBatchWithRetry(t)}}async sendBatchWithRetry(t){let n=0,r=t;for(;r.length>0&&!this.isStopped;){this.inFlightCount=r.length;let o=await this.sendBatchOnce(r);switch(this.inFlightCount=0,o.kind){case"success":return;case"auth":this.stopTransportForAuthFailure(o.status,r.length);return;case"permanent":this.logger.error("[WaniWani] Dropping %d event(s) after permanent failure: %s",r.length,o.reason);return;case"retryable":if(n>=this.maxRetries){this.logger.error("[WaniWani] Dropping %d event(s) after retry exhaustion: %s",r.length,o.reason);return}await this.sleep(this.backoffDelayMs(n)),n+=1;continue;case"partial":if(o.permanent.length>0&&this.logger.error("[WaniWani] Dropping %d event(s) rejected as permanent",o.permanent.length),o.retryable.length===0)return;if(n>=this.maxRetries){this.logger.error("[WaniWani] Dropping %d retryable event(s) after retry exhaustion",o.retryable.length);return}r=o.retryable,await this.sleep(this.backoffDelayMs(n)),n+=1;continue}}}async sendBatchOnce(t){let n;try{n=await this.fetchFn(this.endpointUrl,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.apiKey}`,"X-WaniWani-SDK":Oe},body:JSON.stringify(this.makeBatchRequest(t))})}catch(s){return{kind:"retryable",reason:Tt(s)}}if(gt.has(n.status))return{kind:"auth",status:n.status};if(mt.has(n.status))return{kind:"retryable",reason:`HTTP ${n.status}`};if(!n.ok)return{kind:"permanent",reason:`HTTP ${n.status}`};let r=await ht(n);if(!r?.rejected||r.rejected.length===0)return{kind:"success"};let o=this.classifyRejectedEvents(t,r.rejected);return o.retryable.length===0&&o.permanent.length===0?{kind:"success"}:{kind:"partial",retryable:o.retryable,permanent:o.permanent}}makeBatchRequest(t){return{sentAt:this.now().toISOString(),source:{sdk:Oe,version:this.sdkVersion??"0.0.0"},events:t}}classifyRejectedEvents(t,n){let r=new Map(t.map(a=>[a.id,a])),o=[],s=[];for(let a of n){let i=r.get(a.eventId);if(i){if(wt(a)){o.push(i);continue}s.push(i)}}return{retryable:o,permanent:s}}backoffDelayMs(t){let n=this.retryBaseDelayMs*2**t;return Math.min(n,this.retryMaxDelayMs)}stopTransportForAuthFailure(t,n){this.isStopped=!0;let r=this.buffer.length;this.buffer.splice(0,r),this.logger.error("[WaniWani] Auth failure (HTTP %d). Stopping tracking transport and dropping %d queued event(s)",t,n+r)}};function wt(e){if(e.retryable===!0)return!0;let t=e.code.toLowerCase();return t.includes("timeout")||t.includes("temporary")||t.includes("unavailable")||t.includes("rate_limit")||t.includes("transient")||t.includes("server")}async function ht(e){let t=await e.text();if(t)try{return JSON.parse(t)}catch{return}}function yt(e,t){let n=e.endsWith("/")?e:`${e}/`,r=t.startsWith("/")?t.slice(1):t;return`${n}${r}`}function Tt(e){return e instanceof Error?e.message:String(e)}function je(e){let{apiUrl:t,apiKey:n,tracking:r}=e;function o(){if(!n)throw new Error("WANIWANI_API_KEY is not set");return n}let s=n?Ke({apiUrl:t,apiKey:n,endpointPath:r.endpointPath,flushIntervalMs:r.flushIntervalMs,maxBatchSize:r.maxBatchSize,maxBufferSize:r.maxBufferSize,maxRetries:r.maxRetries,retryBaseDelayMs:r.retryBaseDelayMs,retryMaxDelayMs:r.retryMaxDelayMs,shutdownTimeoutMs:r.shutdownTimeoutMs}):void 0,a={async identify(i,c,d){o();let l=z({event:"user.identified",externalUserId:i,properties:c,meta:d});return s?.enqueue(l),{eventId:l.id}},async track(i){o();let c=z(i);return s?.enqueue(c),{eventId:c.id}},async flush(){o(),await s?.flush()},async shutdown(i){return o(),await s?.shutdown({timeoutMs:i?.timeoutMs??r.shutdownTimeoutMs})??{timedOut:!1,pendingEvents:0}}};return s&&kt(a,r.shutdownTimeoutMs),a}function kt(e,t){if(typeof process>"u"||typeof process.once!="function"||typeof process.on!="function")return;let n=()=>{e.shutdown({timeoutMs:t})};process.once("beforeExit",n),process.once("SIGINT",n),process.once("SIGTERM",n)}function Y(e){let t=e,n=t?.apiUrl??"https://app.waniwani.ai",r=t?.apiKey??process.env.WANIWANI_API_KEY,o={endpointPath:t?.tracking?.endpointPath??"/api/mcp/events/v2/batch",flushIntervalMs:t?.tracking?.flushIntervalMs??1e3,maxBatchSize:t?.tracking?.maxBatchSize??20,maxBufferSize:t?.tracking?.maxBufferSize??1e3,maxRetries:t?.tracking?.maxRetries??3,retryBaseDelayMs:t?.tracking?.retryBaseDelayMs??200,retryMaxDelayMs:t?.tracking?.retryMaxDelayMs??2e3,shutdownTimeoutMs:t?.tracking?.shutdownTimeoutMs??2e3},s={apiUrl:n,apiKey:r,tracking:o},a=je(s),i=De(s);return{...a,kb:i,_config:s}}function St(e){let t=e.event_type??"widget_click",r=t.startsWith("widget_")?t:`widget_${t}`,o={...e.metadata??{}};return e.event_name&&(o.event_name=e.event_name),{event:r,properties:o,sessionId:e.session_id,traceId:e.trace_id,externalUserId:e.user_id,eventId:e.event_id,timestamp:e.timestamp,source:e.source??"widget"}}function vt(e){let t={apiKey:e?.apiKey,apiUrl:e?.apiUrl},n;function r(){return n||(n=Y(t)),n}return async function(s){let a;try{a=await s.json()}catch{return new Response(JSON.stringify({error:"Invalid JSON"}),{status:400,headers:{"Content-Type":"application/json"}})}if(!Array.isArray(a.events)||a.events.length===0)return new Response(JSON.stringify({error:"Missing or empty events array"}),{status:400,headers:{"Content-Type":"application/json"}});try{let i=r(),c=[];for(let d of a.events){let l=St(d),u=await i.track(l);c.push(u.eventId)}return await i.flush(),new Response(JSON.stringify({ok:!0,accepted:c.length}),{status:200,headers:{"Content-Type":"application/json"}})}catch(i){let c=i instanceof Error?i.message:"Unknown error";return new Response(JSON.stringify({error:c}),{status:500,headers:{"Content-Type":"application/json"}})}}}var J=class{cached=null;pending=null;config;constructor(t){this.config=t}async getToken(t,n){return this.cached&&Date.now()<this.cached.expiresAt-12e4?this.cached.token:this.pending?this.pending:(this.pending=this.mint(t,n).finally(()=>{this.pending=null}),this.pending)}async mint(t,n){let r=xt(this.config.apiUrl,"/api/mcp/widget-tokens"),o={};t&&(o.sessionId=t),n&&(o.traceId=n);try{let s=await fetch(r,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.apiKey}`},body:JSON.stringify(o)});if(!s.ok)return null;let a=await s.json(),i=a.data&&typeof a.data=="object"?a.data:a,c=new Date(i.expiresAt).getTime();return!i.token||Number.isNaN(c)?null:(this.cached={token:i.token,expiresAt:c},i.token)}catch{return null}}};function xt(e,t){return`${e.endsWith("/")?e.slice(0,-1):e}${t}`}var $e="waniwani/sessionId",re="waniwani/geoLocation",oe="waniwani/userLocation";function R(e){return!!e&&typeof e=="object"&&!Array.isArray(e)}function j(e){if(!R(e))return;let t=e._meta;return R(t)?t:void 0}function ie(e){if(!R(e))return;let t=e.content;return Array.isArray(t)?t.find(r=>R(r)&&r.type==="text"&&typeof r.text=="string")?.text:void 0}function Rt(e,t){return typeof t=="function"?t(e)??"other":t??"other"}function se(e,t,n,r,o,s){let a=Rt(e,n.toolType),i=j(t);return console.log("[waniwani:debug] buildTrackInput meta:",JSON.stringify(i),"-> source:",M(i)),{event:"tool.called",properties:{name:e,type:a,...r??{},...s?.input!==void 0&&{input:s.input},...s?.output!==void 0&&{output:s.output}},meta:i,source:M(i),metadata:{...n.metadata??{},...o&&{clientInfo:o}}}}async function ae(e,t,n){try{await e.track(t)}catch(r){n?.(de(r))}}async function ce(e,t){try{await e.flush()}catch(n){t?.(de(n))}}async function Be(e,t,n,r,o){if(!R(e))return;R(e._meta)||(e._meta={});let s=e._meta,a=R(s.waniwani)?s.waniwani:void 0,i={...a??{},endpoint:a?.endpoint??`${n.replace(/\/$/,"")}/api/mcp/events/v2/batch`};if(t)try{let u=await t.getToken();u&&(i.token=u)}catch(u){o?.(de(u))}let c=_(s);c&&(i.sessionId||(i.sessionId=c));let d=Le(s);d!==void 0&&(i.geoLocation||(i.geoLocation=d));let l=M(j(r));l&&!i.source&&(i.source=l),s.waniwani=i}function qe(e,t){let n=j(t);if(!n||!R(e))return;R(e._meta)||(e._meta={});let r=e._meta,o=_(n);o&&!r[$e]&&(r[$e]=o);let s=Le(n);s&&(r[re]||(r[re]=s),r[oe]||(r[oe]=s))}function Le(e){if(!e)return;let t=e[re]??e[oe];if(R(t)||typeof t=="string")return t}function de(e){return e instanceof Error?e:new Error(String(e))}var Ve="https://app.waniwani.ai";function Et(e,t){let n=e;if(n.__waniwaniWrapped)return n;n.__waniwaniWrapped=!0;let r=t??{},o=r.client??Y(),s=r.injectWidgetToken!==!1,a=o._config.apiKey?new J({apiUrl:o._config.apiUrl??Ve,apiKey:o._config.apiKey}):null,i=e.registerTool.bind(e);return n.registerTool=((...c)=>{let[d,l,u]=c,g=typeof d=="string"&&d.trim().length>0?d:"unknown";if(typeof u!="function")return i(...c);let m=u,T=async(f,p)=>{let y=j(p)??{},v=he(o,y,{apiUrl:o._config.apiUrl,apiKey:o._config.apiKey});R(p)&&(p[G]=v);let k=performance.now(),x=e.server?.getClientVersion?.();try{let S=await m(f,p),P=Math.round(performance.now()-k),C=R(S)&&S.isError===!0;if(C){let ue=ie(S);console.error(`[waniwani] Tool "${g}" returned error${ue?`: ${ue}`:""}`)}return await ae(o,se(g,p,r,{durationMs:P,status:C?"error":"ok",...C&&{errorMessage:ie(S)??"Unknown tool error"}},x,{input:f,output:S}),r.onError),r.flushAfterToolCall&&await ce(o,r.onError),qe(S,p),s&&await Be(S,a,o._config.apiUrl??Ve,p,r.onError),S}catch(S){let P=Math.round(performance.now()-k);throw await ae(o,se(g,p,r,{durationMs:P,status:"error",errorMessage:S instanceof Error?S.message:String(S)},x,{input:f}),r.onError),r.flushAfterToolCall&&await ce(o,r.onError),S}};if(R(l)&&R(l._meta)){let f=l._meta;f["openai/outputTemplate"]&&!f["openai/resultCanProduceWidget"]&&(f["openai/resultCanProduceWidget"]=!0,f["openai/widgetAccessible"]=!0)}return i(d,l,T)}),n}export{b as END,I as START,N as StateGraph,A as WaniwaniKvStore,_e as createFlow,Me as createFlowTestHarness,Ne as createResource,ot as createTool,vt as createTrackingRoute,X as detectPlatform,ze as isMCPApps,He as isOpenAI,it as registerTools,Et as withWaniwani};
|
|
5
|
+
${o}`,a=e.store??new O,i=new Map;async function c(d,l,f,g){if(d.action==="start"){let p=typeof d.intent=="string"?d.intent.trim():void 0;if(!p)return{content:{status:"error",error:`Missing required "intent" for action "start". Include a brief summary of the user's goal for this flow and any relevant prior context that led to triggering it, if available.`}};d.intent=p;let h=r.get(I);if(!h)return{content:{status:"error",error:"No start edge"}};let y=Z(d.stateUpdates??{}),u=await F(h,y);return B(u,y,n,r,i,f,g)}if(d.action==="continue"){if(!l)return{content:{status:"error",error:"No session ID available for continue action."}};let p;try{p=await a.get(l)}catch(T){let k=T instanceof Error?T.message:String(T);return{content:{status:"error",error:`Failed to load flow state (session "${l}"): ${k}`}}}if(!p)return{content:{status:"error",error:`Flow state not found for session "${l}". The flow may have expired.`}};let h=p.state,y=p.step;if(!y)return{content:{status:"error",error:'This flow has already completed. Use action "start" to begin a new flow.'}};let u=W(h,Z(d.stateUpdates??{}));if(p.widgetId){let T=r.get(y);if(!T)return{content:{status:"error",error:`No edge from step "${y}"`}};let k=await F(T,u);return B(k,u,n,r,i,f,g)}return B(y,u,n,r,i,f,g)}return{content:{status:"error",error:`Unknown action: "${d.action}"`}}}return{id:t.id,title:t.title,description:s,graph:e.graph,async register(d){d.registerTool(t.id,{title:t.title,description:s,inputSchema:rt,annotations:t.annotations},(async(l,f)=>{let g=f,p=g._meta??{},h=_(p),y=$(g),u=await c(l,h,p,y);if(h)if(u.flowTokenContent&&u.content.status!=="complete")try{await a.set(h,u.flowTokenContent)}catch(k){let R=k instanceof Error?k.message:String(k);return{content:[{type:"text",text:JSON.stringify({status:"error",error:`Flow state failed to persist (session "${h}"): ${R}`},null,2)}],_meta:p,isError:!0}}else u.content.status==="complete"&&await a.delete(h);return{content:[{type:"text",text:JSON.stringify(u.content,null,2)}],_meta:p,...u.content.status==="error"?{isError:!0}:{}}}))}}}function be(e,t){let n=["flowchart TD"];n.push(` ${I}((Start))`);for(let[r]of e)n.push(` ${r}[${r}]`);n.push(` ${b}((End))`);for(let[r,o]of t)o.type==="direct"?n.push(` ${r} --> ${o.to}`):n.push(` ${r} -.-> ${r}_branch([?])`);return n.join(`
|
|
6
|
+
`)}var N=class{nodes=new Map;edges=new Map;config;constructor(t){this.config=t}addNode(t,n){if(t===I||t===b)throw new Error(`"${t}" is a reserved name and cannot be used as a node name`);if(this.nodes.has(t))throw new Error(`Node "${t}" already exists`);return this.nodes.set(t,n),this}addEdge(t,n){if(this.edges.has(t))throw new Error(`Node "${t}" already has an outgoing edge. Use addConditionalEdge for branching.`);return this.edges.set(t,{type:"direct",to:n}),this}addConditionalEdge(t,n){if(this.edges.has(t))throw new Error(`Node "${t}" already has an outgoing edge.`);return this.edges.set(t,{type:"conditional",condition:n}),this}graph(){return be(this.nodes,this.edges)}compile(t){this.validate();let n=new Map(this.nodes),r=new Map(this.edges);return Ce({config:this.config,nodes:n,edges:r,store:t?.store,graph:()=>be(n,r)})}validate(){if(!this.edges.has(I))throw new Error('Flow must have an entry point. Add an edge from START: .addEdge(START, "first_node")');let t=this.edges.get(I);if(t?.type==="direct"&&t.to!==b&&!this.nodes.has(t.to))throw new Error(`START edge references non-existent node: "${t.to}"`);for(let[n,r]of this.edges){if(n!==I&&!this.nodes.has(n))throw new Error(`Edge from non-existent node: "${n}"`);if(r.type==="direct"&&r.to!==b&&!this.nodes.has(r.to))throw new Error(`Edge from "${n}" references non-existent node: "${r.to}"`)}for(let[n]of this.nodes)if(!this.edges.has(n))throw new Error(`Node "${n}" has no outgoing edge. Add one with .addEdge("${n}", ...) or .addConditionalEdge("${n}", ...)`)}};function _e(e){return new N(e)}function Pe(e){let t=e.content;return JSON.parse(t[0]?.text??"")}async function Me(e,t){let n=t?.stateStore,r=[],o=`test-session-${Math.random().toString(36).slice(2,10)}`,s={registerTool:(...d)=>{r.push(d)}};await e.register(s);let a=r[0]?.[2];if(!a)throw new Error(`Flow "${e.id}" did not register a handler`);let i={_meta:{sessionId:o}};async function c(d){return{...d,decodedState:n?await n.get(o):null}}return{async start(d,l){let f=await a({action:"start",intent:d,...l?{stateUpdates:l}:{}},i);return c(Pe(f))},async continueWith(d){let l=await a({action:"continue",...d?{stateUpdates:d}:{}},i);return c(Pe(l))},async lastState(){return n?n.get(o):null}}}var q="text/html+skybridge",L="text/html;profile=mcp-app",We=async(e,t)=>{let n=e.endsWith("/")?e.slice(0,-1):e;return await(await fetch(`${n}${t}`)).text()};function Fe(e){return{"openai/widgetDescription":e.description,"openai/widgetPrefersBorder":e.prefersBorder,"openai/widgetDomain":e.widgetDomain,...e.widgetCSP&&{"openai/widgetCSP":e.widgetCSP}}}function Ae(e){let t=e.widgetCSP?{connectDomains:e.widgetCSP.connect_domains,resourceDomains:e.widgetCSP.resource_domains,frameDomains:e.widgetCSP.frame_domains,redirectDomains:e.widgetCSP.redirect_domains}:void 0;return{ui:{...t&&{csp:t},...e.widgetDomain&&{domain:e.widgetDomain},...e.prefersBorder!==void 0&&{prefersBorder:e.prefersBorder}}}}function ee(e){return{...e.openaiTemplateUri&&{"openai/outputTemplate":e.openaiTemplateUri},"openai/toolInvocation/invoking":e.invoking,"openai/toolInvocation/invoked":e.invoked,"openai/widgetAccessible":!0,"openai/resultCanProduceWidget":!0,...e.mcpTemplateUri&&{ui:{resourceUri:e.mcpTemplateUri,...e.autoHeight&&{autoHeight:!0}}},...e.mcpTemplateUri&&{"ui/resourceUri":e.mcpTemplateUri}}}function Ne(e){let{id:t,title:n,description:r,baseUrl:o,htmlPath:s,widgetDomain:a,prefersBorder:i=!0,autoHeight:c=!0}=e,d=e.widgetCSP??{connect_domains:[o],resource_domains:[o]};if(process.env.NODE_ENV==="development")try{let{hostname:u}=new URL(o);(u==="localhost"||u==="127.0.0.1")&&(d={...d,connect_domains:[...d.connect_domains||[],`ws://${u}:*`,`wss://${u}:*`],resource_domains:[...d.resource_domains||[],`http://${u}:*`]})}catch{}let l=`ui://widgets/apps-sdk/${t}.html`,f=`ui://widgets/ext-apps/${t}.html`,g=null,p=()=>(g||(g=We(o,s)),g),h=r;async function y(u){let T=await p();u.registerResource(`${t}-openai-widget`,l,{title:n,description:h,mimeType:q,_meta:{"openai/widgetDescription":h,"openai/widgetPrefersBorder":i}},async k=>({contents:[{uri:k.href,mimeType:q,text:T,_meta:Fe({description:h,prefersBorder:i,widgetDomain:a,widgetCSP:d})}]})),u.registerResource(`${t}-mcp-widget`,f,{title:n,description:h,mimeType:L,_meta:{ui:{prefersBorder:i}}},async k=>({contents:[{uri:k.href,mimeType:L,text:T,_meta:Ae({description:h,prefersBorder:i,widgetDomain:a,widgetCSP:d})}]}))}return{id:t,title:n,description:r,openaiUri:l,mcpUri:f,autoHeight:c,register:y}}function ot(e,t){let{resource:n,description:r,inputSchema:o,annotations:s,autoInjectResultText:a=!0}=e,i=e.id??n?.id,c=e.title??n?.title;if(!i)throw new Error("createTool: `id` is required when no resource is provided");if(!c)throw new Error("createTool: `title` is required when no resource is provided");let d=n?ee({openaiTemplateUri:n.openaiUri,mcpTemplateUri:n.mcpUri,invoking:e.invoking??"Loading...",invoked:e.invoked??"Loaded",autoHeight:n.autoHeight}):void 0;return{id:i,title:c,description:r,async register(l){l.registerTool(i,{title:c,description:r,inputSchema:o,annotations:s,...d&&{_meta:d}},(async(f,g)=>{let p=g,h=p._meta??{},y=$(p),u=await t(f,{extra:{_meta:h},waniwani:y});return n&&u.data?{content:[{type:"text",text:u.text}],structuredContent:u.data,_meta:{...d,...h,...a===!1?{"waniwani/autoInjectResultText":!1}:{}}}:{content:[{type:"text",text:u.text}],...u.data?{structuredContent:u.data}:{},...a===!1?{_meta:{"waniwani/autoInjectResultText":!1}}:{}}}))}}}async function it(e,t){await Promise.all(t.map(n=>n.register(e)))}var V=class extends Error{constructor(n,r){super(n);this.status=r;this.name="WaniWaniError"}};var st="@waniwani/sdk";function De(e){let{apiUrl:t,apiKey:n}=e;function r(){if(!n)throw new Error("WANIWANI_API_KEY is not set");return n}async function o(s,a,i){let c=r(),d=`${t.replace(/\/$/,"")}${a}`,l={Authorization:`Bearer ${c}`,"X-WaniWani-SDK":st},f={method:s,headers:l};i!==void 0&&(l["Content-Type"]="application/json",f.body=JSON.stringify(i));let g=await fetch(d,f);if(!g.ok){let h=await g.text().catch(()=>"");throw new V(h||`KB API error: HTTP ${g.status}`,g.status)}return(await g.json()).data}return{async ingest(s){return o("POST","/api/mcp/kb/ingest",{files:s})},async search(s,a){return o("POST","/api/mcp/kb/search",{query:s,...a})},async sources(){return o("GET","/api/mcp/kb/sources")}}}var at="@waniwani/sdk";function H(e,t={}){let n=t.now??(()=>new Date),r=t.generateId??Ue,o=ut(e),s=z(e.meta),a=z(e.metadata),i=pt(e,s),c=x(e.eventId)??r(),d=lt(e.timestamp,n),l=x(e.source)??M(s)??t.source??at,f=te(e)?{...e}:void 0,g={...a};return Object.keys(s).length>0&&(g.meta=s),f&&(g.rawLegacy=f),{id:c,type:"mcp.event",name:o,source:l,timestamp:d,correlation:i,properties:ct(e,o),metadata:g,rawLegacy:f}}function Ue(){return typeof crypto<"u"&&typeof crypto.randomUUID=="function"?`evt_${crypto.randomUUID()}`:`evt_${Math.random().toString(36).slice(2,10)}_${Date.now().toString(36)}`}function ct(e,t){if(!te(e))return z(e.properties);let n=dt(e,t),r=z(e.properties);return{...n,...r}}function dt(e,t){switch(t){case"tool.called":{let n={};return x(e.toolName)&&(n.name=e.toolName),x(e.toolType)&&(n.type=e.toolType),n}case"quote.succeeded":{let n={};return typeof e.quoteAmount=="number"&&(n.amount=e.quoteAmount),x(e.quoteCurrency)&&(n.currency=e.quoteCurrency),n}case"link.clicked":{let n={};return x(e.linkUrl)&&(n.url=e.linkUrl),n}case"purchase.completed":{let n={};return typeof e.purchaseAmount=="number"&&(n.amount=e.purchaseAmount),x(e.purchaseCurrency)&&(n.currency=e.purchaseCurrency),n}default:return{}}}function ut(e){return te(e)?e.eventType:e.event}function pt(e,t){let n=x(e.requestId)??ye(t),r=x(e.sessionId)??_(t),o=x(e.traceId)??Te(t),s=x(e.externalUserId)??ke(t),a=x(e.correlationId)??Se(t)??n,i={};return r&&(i.sessionId=r),o&&(i.traceId=o),n&&(i.requestId=n),a&&(i.correlationId=a),s&&(i.externalUserId=s),i}function lt(e,t){if(e instanceof Date)return e.toISOString();if(typeof e=="string"){let n=new Date(e);if(!Number.isNaN(n.getTime()))return n.toISOString()}return t().toISOString()}function z(e){return!e||typeof e!="object"||Array.isArray(e)?{}:e}function x(e){if(typeof e=="string"&&e.trim().length!==0)return e}function te(e){return"eventType"in e}var ft="/api/mcp/events/v2/batch";var Oe="@waniwani/sdk",gt=new Set([401,403]),mt=new Set([408,425,429,500,502,503,504]);function Ke(e){return new ne(e)}var ne=class{endpointUrl;flushIntervalMs;maxBatchSize;maxBufferSize;maxRetries;retryBaseDelayMs;retryMaxDelayMs;shutdownTimeoutMs;sdkVersion;fetchFn;logger;now;sleep;apiKey;buffer=[];flushTimer;flushScheduled=!1;flushScheduledTimer;flushInFlight;inFlightCount=0;isStopped=!1;isShuttingDown=!1;constructor(t){this.endpointUrl=yt(t.apiUrl,t.endpointPath??ft),this.flushIntervalMs=t.flushIntervalMs??1e3,this.maxBatchSize=t.maxBatchSize??20,this.maxBufferSize=t.maxBufferSize??1e3,this.maxRetries=t.maxRetries??3,this.retryBaseDelayMs=t.retryBaseDelayMs??200,this.retryMaxDelayMs=t.retryMaxDelayMs??2e3,this.shutdownTimeoutMs=t.shutdownTimeoutMs??2e3,this.fetchFn=t.fetchFn??fetch,this.logger=t.logger??console,this.now=t.now??(()=>new Date),this.sleep=t.sleep??(n=>new Promise(r=>setTimeout(r,n))),this.apiKey=t.apiKey,this.sdkVersion=t.sdkVersion,this.flushIntervalMs>0&&(this.flushTimer=setInterval(()=>{this.flush()},this.flushIntervalMs))}enqueue(t){if(this.isStopped||this.isShuttingDown){this.logger.warn("[WaniWani] Tracking transport is stopped, dropping event %s",t.id);return}if(this.buffer.length>=this.maxBufferSize){let n=this.buffer.length-this.maxBufferSize+1;this.buffer.splice(0,n),this.logger.warn("[WaniWani] Tracking buffer overflow, dropped %d oldest event(s)",n)}if(this.buffer.push(t),this.buffer.length>=this.maxBatchSize){this.flush();return}this.scheduleMicroFlush()}pendingEvents(){return this.buffer.length+this.inFlightCount}async flush(){return this.flushInFlight?this.flushInFlight:(this.flushInFlight=this.flushLoop().finally(()=>{this.flushInFlight=void 0}),this.flushInFlight)}async shutdown(t){this.isShuttingDown=!0,this.flushTimer&&(clearInterval(this.flushTimer),this.flushTimer=void 0),this.flushScheduledTimer&&(clearTimeout(this.flushScheduledTimer),this.flushScheduledTimer=void 0,this.flushScheduled=!1);let n=t?.timeoutMs??this.shutdownTimeoutMs,r=this.flush();if(!Number.isFinite(n)||n<=0)return await r,this.isStopped=!0,{timedOut:!1,pendingEvents:this.pendingEvents()};let o=Symbol("shutdown-timeout");return await Promise.race([r.then(()=>"flushed"),this.sleep(n).then(()=>o)])===o?(this.isStopped=!0,{timedOut:!0,pendingEvents:this.pendingEvents()}):(this.isStopped=!0,{timedOut:!1,pendingEvents:this.pendingEvents()})}scheduleMicroFlush(){this.flushScheduled||(this.flushScheduled=!0,this.flushScheduledTimer=setTimeout(()=>{this.flushScheduledTimer=void 0,this.flushScheduled=!1,this.flush()},0))}async flushLoop(){for(;this.buffer.length>0&&!this.isStopped;){let t=this.buffer.splice(0,this.maxBatchSize);await this.sendBatchWithRetry(t)}}async sendBatchWithRetry(t){let n=0,r=t;for(;r.length>0&&!this.isStopped;){this.inFlightCount=r.length;let o=await this.sendBatchOnce(r);switch(this.inFlightCount=0,o.kind){case"success":return;case"auth":this.stopTransportForAuthFailure(o.status,r.length);return;case"permanent":this.logger.error("[WaniWani] Dropping %d event(s) after permanent failure: %s",r.length,o.reason);return;case"retryable":if(n>=this.maxRetries){this.logger.error("[WaniWani] Dropping %d event(s) after retry exhaustion: %s",r.length,o.reason);return}await this.sleep(this.backoffDelayMs(n)),n+=1;continue;case"partial":if(o.permanent.length>0&&this.logger.error("[WaniWani] Dropping %d event(s) rejected as permanent",o.permanent.length),o.retryable.length===0)return;if(n>=this.maxRetries){this.logger.error("[WaniWani] Dropping %d retryable event(s) after retry exhaustion",o.retryable.length);return}r=o.retryable,await this.sleep(this.backoffDelayMs(n)),n+=1;continue}}}async sendBatchOnce(t){let n;try{n=await this.fetchFn(this.endpointUrl,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.apiKey}`,"X-WaniWani-SDK":Oe},body:JSON.stringify(this.makeBatchRequest(t))})}catch(s){return{kind:"retryable",reason:Tt(s)}}if(gt.has(n.status))return{kind:"auth",status:n.status};if(mt.has(n.status))return{kind:"retryable",reason:`HTTP ${n.status}`};if(!n.ok)return{kind:"permanent",reason:`HTTP ${n.status}`};let r=await ht(n);if(!r?.rejected||r.rejected.length===0)return{kind:"success"};let o=this.classifyRejectedEvents(t,r.rejected);return o.retryable.length===0&&o.permanent.length===0?{kind:"success"}:{kind:"partial",retryable:o.retryable,permanent:o.permanent}}makeBatchRequest(t){return{sentAt:this.now().toISOString(),source:{sdk:Oe,version:this.sdkVersion??"0.0.0"},events:t}}classifyRejectedEvents(t,n){let r=new Map(t.map(a=>[a.id,a])),o=[],s=[];for(let a of n){let i=r.get(a.eventId);if(i){if(wt(a)){o.push(i);continue}s.push(i)}}return{retryable:o,permanent:s}}backoffDelayMs(t){let n=this.retryBaseDelayMs*2**t;return Math.min(n,this.retryMaxDelayMs)}stopTransportForAuthFailure(t,n){this.isStopped=!0;let r=this.buffer.length;this.buffer.splice(0,r),this.logger.error("[WaniWani] Auth failure (HTTP %d). Stopping tracking transport and dropping %d queued event(s)",t,n+r)}};function wt(e){if(e.retryable===!0)return!0;let t=e.code.toLowerCase();return t.includes("timeout")||t.includes("temporary")||t.includes("unavailable")||t.includes("rate_limit")||t.includes("transient")||t.includes("server")}async function ht(e){let t=await e.text();if(t)try{return JSON.parse(t)}catch{return}}function yt(e,t){let n=e.endsWith("/")?e:`${e}/`,r=t.startsWith("/")?t.slice(1):t;return`${n}${r}`}function Tt(e){return e instanceof Error?e.message:String(e)}function je(e){let{apiUrl:t,apiKey:n,tracking:r}=e;function o(){if(!n)throw new Error("WANIWANI_API_KEY is not set");return n}let s=n?Ke({apiUrl:t,apiKey:n,endpointPath:r.endpointPath,flushIntervalMs:r.flushIntervalMs,maxBatchSize:r.maxBatchSize,maxBufferSize:r.maxBufferSize,maxRetries:r.maxRetries,retryBaseDelayMs:r.retryBaseDelayMs,retryMaxDelayMs:r.retryMaxDelayMs,shutdownTimeoutMs:r.shutdownTimeoutMs}):void 0,a={async identify(i,c,d){o();let l=H({event:"user.identified",externalUserId:i,properties:c,meta:d});return s?.enqueue(l),{eventId:l.id}},async track(i){o();let c=H(i);return s?.enqueue(c),{eventId:c.id}},async flush(){o(),await s?.flush()},async shutdown(i){return o(),await s?.shutdown({timeoutMs:i?.timeoutMs??r.shutdownTimeoutMs})??{timedOut:!1,pendingEvents:0}}};return s&&kt(a,r.shutdownTimeoutMs),a}function kt(e,t){if(typeof process>"u"||typeof process.once!="function"||typeof process.on!="function")return;let n=()=>{e.shutdown({timeoutMs:t})};process.once("beforeExit",n),process.once("SIGINT",n),process.once("SIGTERM",n)}function Y(e){let t=e,n=t?.apiUrl??"https://app.waniwani.ai",r=t?.apiKey??process.env.WANIWANI_API_KEY,o={endpointPath:t?.tracking?.endpointPath??"/api/mcp/events/v2/batch",flushIntervalMs:t?.tracking?.flushIntervalMs??1e3,maxBatchSize:t?.tracking?.maxBatchSize??20,maxBufferSize:t?.tracking?.maxBufferSize??1e3,maxRetries:t?.tracking?.maxRetries??3,retryBaseDelayMs:t?.tracking?.retryBaseDelayMs??200,retryMaxDelayMs:t?.tracking?.retryMaxDelayMs??2e3,shutdownTimeoutMs:t?.tracking?.shutdownTimeoutMs??2e3},s={apiUrl:n,apiKey:r,tracking:o},a=je(s),i=De(s);return{...a,kb:i,_config:s}}function St(e){let t=e.event_type??"widget_click",r=t.startsWith("widget_")?t:`widget_${t}`,o={...e.metadata??{}};return e.event_name&&(o.event_name=e.event_name),{event:r,properties:o,sessionId:e.session_id,traceId:e.trace_id,externalUserId:e.user_id,eventId:e.event_id,timestamp:e.timestamp,source:e.source??"widget"}}function vt(e){let t={apiKey:e?.apiKey,apiUrl:e?.apiUrl},n;function r(){return n||(n=Y(t)),n}return async function(s){let a;try{a=await s.json()}catch{return new Response(JSON.stringify({error:"Invalid JSON"}),{status:400,headers:{"Content-Type":"application/json"}})}if(!Array.isArray(a.events)||a.events.length===0)return new Response(JSON.stringify({error:"Missing or empty events array"}),{status:400,headers:{"Content-Type":"application/json"}});try{let i=r(),c=[];for(let d of a.events){let l=St(d),f=await i.track(l);c.push(f.eventId)}return await i.flush(),new Response(JSON.stringify({ok:!0,accepted:c.length}),{status:200,headers:{"Content-Type":"application/json"}})}catch(i){let c=i instanceof Error?i.message:"Unknown error";return new Response(JSON.stringify({error:c}),{status:500,headers:{"Content-Type":"application/json"}})}}}var J=class{cached=null;pending=null;config;constructor(t){this.config=t}async getToken(t,n){return this.cached&&Date.now()<this.cached.expiresAt-12e4?this.cached.token:this.pending?this.pending:(this.pending=this.mint(t,n).finally(()=>{this.pending=null}),this.pending)}async mint(t,n){let r=xt(this.config.apiUrl,"/api/mcp/widget-tokens"),o={};t&&(o.sessionId=t),n&&(o.traceId=n);try{let s=await fetch(r,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.apiKey}`},body:JSON.stringify(o)});if(!s.ok)return null;let a=await s.json(),i=a.data&&typeof a.data=="object"?a.data:a,c=new Date(i.expiresAt).getTime();return!i.token||Number.isNaN(c)?null:(this.cached={token:i.token,expiresAt:c},i.token)}catch{return null}}};function xt(e,t){return`${e.endsWith("/")?e.slice(0,-1):e}${t}`}var $e="waniwani/sessionId",re="waniwani/geoLocation",oe="waniwani/userLocation";function v(e){return!!e&&typeof e=="object"&&!Array.isArray(e)}function j(e){if(!v(e))return;let t=e._meta;return v(t)?t:void 0}function ie(e){if(!v(e))return;let t=e.content;return Array.isArray(t)?t.find(r=>v(r)&&r.type==="text"&&typeof r.text=="string")?.text:void 0}function Rt(e,t){return typeof t=="function"?t(e)??"other":t??"other"}function se(e,t,n,r,o,s){let a=Rt(e,n.toolType),i=j(t);return console.log("[waniwani:debug] buildTrackInput meta:",JSON.stringify(i),"-> source:",M(i)),{event:"tool.called",properties:{name:e,type:a,...r??{},...s?.input!==void 0&&{input:s.input},...s?.output!==void 0&&{output:s.output}},meta:i,source:M(i),metadata:{...n.metadata??{},...o&&{clientInfo:o}}}}async function ae(e,t,n){try{await e.track(t)}catch(r){n?.(de(r))}}async function ce(e,t){try{await e.flush()}catch(n){t?.(de(n))}}async function Be(e,t,n,r,o){if(!v(e))return;v(e._meta)||(e._meta={});let s=e._meta,a=v(s.waniwani)?s.waniwani:void 0,i={...a??{},endpoint:a?.endpoint??`${n.replace(/\/$/,"")}/api/mcp/events/v2/batch`};if(t)try{let f=await t.getToken();f&&(i.token=f)}catch(f){o?.(de(f))}let c=_(s);c&&(i.sessionId||(i.sessionId=c));let d=Le(s);d!==void 0&&(i.geoLocation||(i.geoLocation=d));let l=M(j(r));l&&!i.source&&(i.source=l),s.waniwani=i}function qe(e,t){let n=j(t);if(!n||!v(e))return;v(e._meta)||(e._meta={});let r=e._meta,o=_(n);o&&!r[$e]&&(r[$e]=o);let s=Le(n);s&&(r[re]||(r[re]=s),r[oe]||(r[oe]=s))}function Le(e){if(!e)return;let t=e[re]??e[oe];if(v(t)||typeof t=="string")return t}function de(e){return e instanceof Error?e:new Error(String(e))}var Ve="https://app.waniwani.ai";function Et(e,t){let n=e;if(n.__waniwaniWrapped)return n;n.__waniwaniWrapped=!0;let r=t??{},o=r.client??Y(),s=r.injectWidgetToken!==!1,a=o._config.apiKey?new J({apiUrl:o._config.apiUrl??Ve,apiKey:o._config.apiKey}):null,i=e.registerTool.bind(e);return n.registerTool=((...c)=>{let[d,l,f]=c,g=typeof d=="string"&&d.trim().length>0?d:"unknown";if(typeof f!="function")return i(...c);let p=f;return i(d,l,async(y,u)=>{let T=j(u)??{},k=he(o,T,{apiUrl:o._config.apiUrl,apiKey:o._config.apiKey});v(u)&&(u[G]=k);let R=performance.now(),E=e.server?.getClientVersion?.();try{let S=await p(y,u),P=Math.round(performance.now()-R),C=v(S)&&S.isError===!0;if(C){let ue=ie(S);console.error(`[waniwani] Tool "${g}" returned error${ue?`: ${ue}`:""}`)}return await ae(o,se(g,u,r,{durationMs:P,status:C?"error":"ok",...C&&{errorMessage:ie(S)??"Unknown tool error"}},E,{input:y,output:S}),r.onError),r.flushAfterToolCall&&await ce(o,r.onError),qe(S,u),s&&await Be(S,a,o._config.apiUrl??Ve,u,r.onError),S}catch(S){let P=Math.round(performance.now()-R);throw await ae(o,se(g,u,r,{durationMs:P,status:"error",errorMessage:S instanceof Error?S.message:String(S)},E,{input:y}),r.onError),r.flushAfterToolCall&&await ce(o,r.onError),S}})}),n}export{b as END,I as START,N as StateGraph,A as WaniwaniKvStore,_e as createFlow,Me as createFlowTestHarness,Ne as createResource,ot as createTool,vt as createTrackingRoute,X as detectPlatform,He as isMCPApps,ze as isOpenAI,it as registerTools,Et as withWaniwani};
|
|
7
7
|
//# sourceMappingURL=index.js.map
|