@lobehub/market-types 1.11.0 → 1.11.2
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/index.d.mts +3 -10
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -16,20 +16,11 @@ type PluginMethodType = 'tool' | 'prompt' | 'resource';
|
|
|
16
16
|
* Custom plugin information for non-marketplace plugins
|
|
17
17
|
*/
|
|
18
18
|
interface CustomPluginInfo {
|
|
19
|
-
|
|
20
|
-
author?: string;
|
|
19
|
+
avatar?: string;
|
|
21
20
|
/** Plugin description */
|
|
22
21
|
description?: string;
|
|
23
|
-
/** Plugin license */
|
|
24
|
-
license?: string;
|
|
25
|
-
/** Additional custom metadata */
|
|
26
|
-
metadata?: Record<string, any>;
|
|
27
22
|
/** Plugin name/title */
|
|
28
23
|
name?: string;
|
|
29
|
-
/** Plugin repository URL or path */
|
|
30
|
-
repository?: string;
|
|
31
|
-
/** Plugin source/origin (e.g., 'local', 'github', 'npm') */
|
|
32
|
-
source?: string;
|
|
33
24
|
}
|
|
34
25
|
/**
|
|
35
26
|
* Call report request data
|
|
@@ -1015,6 +1006,8 @@ interface InstallReportResponse {
|
|
|
1015
1006
|
manifestUpdated?: boolean;
|
|
1016
1007
|
/** Message about the processing result */
|
|
1017
1008
|
message: string;
|
|
1009
|
+
/** Whether a new version was created based on the report */
|
|
1010
|
+
newVersionCreated?: boolean;
|
|
1018
1011
|
/** Whether the report was successfully recorded */
|
|
1019
1012
|
success: boolean;
|
|
1020
1013
|
}
|