@lobehub/market-sdk 0.22.11-beta.0 → 0.22.13-beta.0
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 +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -287,11 +287,11 @@ interface AgentItemDetail extends AgentItem {
|
|
|
287
287
|
/** Author (may come from marketplace base but ensure presence) */
|
|
288
288
|
author?: string;
|
|
289
289
|
/** Avatar URL for the agent, can be a emoji */
|
|
290
|
-
avatar
|
|
290
|
+
avatar?: string;
|
|
291
291
|
/** Total comment count */
|
|
292
292
|
commentCount?: number;
|
|
293
293
|
/** Agent configuration JSON */
|
|
294
|
-
config
|
|
294
|
+
config?: any;
|
|
295
295
|
/** Current version id */
|
|
296
296
|
currentVersionId?: number;
|
|
297
297
|
/** URL to human-readable documentation */
|
|
@@ -343,11 +343,11 @@ interface AgentItemDetail extends AgentItem {
|
|
|
343
343
|
/** Token usage */
|
|
344
344
|
tokenUsage?: number;
|
|
345
345
|
/** Agent or A2A implementation version string */
|
|
346
|
-
version
|
|
346
|
+
version?: string;
|
|
347
347
|
/** Version display name */
|
|
348
348
|
versionName?: string;
|
|
349
349
|
/** Incremental version number */
|
|
350
|
-
versionNumber
|
|
350
|
+
versionNumber?: number;
|
|
351
351
|
/** Version list summary */
|
|
352
352
|
versions?: Array<{
|
|
353
353
|
isLatest: boolean;
|