MCPcopy Create free account
hub / github.com/dwgx/WindsurfAPI / parseStartCascadeResponse

Function parseStartCascadeResponse

src/windsurf.js:972–976  ·  view source on GitHub ↗
(buf)

Source from the content-addressed store, hash-verified

970
971/** Parse StartCascadeResponse → cascade_id (field 1). */
972export function parseStartCascadeResponse(buf) {
973 const fields = parseFields(buf);
974 const f1 = getField(fields, 1, 2);
975 return f1 ? f1.value.toString('utf8') : '';
976}
977
978/** Parse GetCascadeTrajectoryResponse → status (field 2). */
979export function parseTrajectoryStatus(buf) {

Callers 2

openCascadeMethod · 0.90
cascadeChatMethod · 0.90

Calls 2

parseFieldsFunction · 0.90
getFieldFunction · 0.90

Tested by

no test coverage detected