@neovate/code 0.22.8 → 0.22.10
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/cli.mjs +596 -569
- package/dist/index.d.ts +19 -0
- package/dist/index.mjs +595 -568
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -633,6 +633,10 @@ declare type HandlerMap = {
|
|
|
633
633
|
input: SessionMessagesListInput;
|
|
634
634
|
output: SessionMessagesListOutput;
|
|
635
635
|
};
|
|
636
|
+
'session.export': {
|
|
637
|
+
input: SessionExportSessionMarkdownInput;
|
|
638
|
+
output: SessionExportSessionMarkdownOutput;
|
|
639
|
+
};
|
|
636
640
|
'session.getModel': {
|
|
637
641
|
input: SessionGetModelInput;
|
|
638
642
|
output: SessionGetModelOutput;
|
|
@@ -1635,6 +1639,21 @@ declare type SessionConfigSetSummaryInput = {
|
|
|
1635
1639
|
summary: string;
|
|
1636
1640
|
};
|
|
1637
1641
|
|
|
1642
|
+
declare type SessionExportSessionMarkdownInput = {
|
|
1643
|
+
cwd: string;
|
|
1644
|
+
sessionId: string | undefined;
|
|
1645
|
+
};
|
|
1646
|
+
|
|
1647
|
+
declare type SessionExportSessionMarkdownOutput = {
|
|
1648
|
+
success: true;
|
|
1649
|
+
data: {
|
|
1650
|
+
filePath: string;
|
|
1651
|
+
};
|
|
1652
|
+
} | {
|
|
1653
|
+
success: false;
|
|
1654
|
+
error: string;
|
|
1655
|
+
};
|
|
1656
|
+
|
|
1638
1657
|
declare type SessionGetModelInput = {
|
|
1639
1658
|
cwd: string;
|
|
1640
1659
|
sessionId: string;
|