6ee6fd64dd
Introduce page edit sessions with draft preview and patch API, chat skill picker, user memory profile, h5ApiBase resolution, voice WAV transport, and scripts for 105/g2 deployment and Plaza local dev. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
export type MindSpacePagePatch = {
|
|
title?: string;
|
|
summary?: string;
|
|
content?: string;
|
|
};
|
|
|
|
export {
|
|
extractMindSpacePagePatch,
|
|
mergeMindSpacePagePatch,
|
|
} from '../../mindspace-page-patch.mjs';
|
|
|
|
export function patchKey(patch: MindSpacePagePatch): string {
|
|
return JSON.stringify(patch);
|
|
}
|