Add MindSpace page live edit, chat skills, and H5 deploy tooling.
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>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user