@lobehub/market-sdk 0.31.4 → 0.31.6
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 +5 -4
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -350,7 +350,7 @@ interface AgentListQuery {
|
|
|
350
350
|
/** Search query string */
|
|
351
351
|
q?: string;
|
|
352
352
|
/** Sort field */
|
|
353
|
-
sort?: 'createdAt' | '
|
|
353
|
+
sort?: 'createdAt' | 'knowledgeCount' | 'mostUsage' | 'name' | 'pluginCount' | 'recommended' | 'relevance' | 'tokenUsage' | 'updatedAt';
|
|
354
354
|
/** Publication status filter */
|
|
355
355
|
status?: 'published' | 'unpublished' | 'archived' | 'deprecated' | 'all';
|
|
356
356
|
/** Visibility filter */
|
|
@@ -892,7 +892,7 @@ interface OwnAgentListQuery {
|
|
|
892
892
|
/** Search query string */
|
|
893
893
|
q?: string;
|
|
894
894
|
/** Sort field */
|
|
895
|
-
sort?: 'createdAt' | '
|
|
895
|
+
sort?: 'createdAt' | 'knowledgeCount' | 'mostUsage' | 'name' | 'pluginCount' | 'tokenUsage' | 'updatedAt';
|
|
896
896
|
/** Filter by specific status, if not provided returns all statuses */
|
|
897
897
|
status?: AgentStatus;
|
|
898
898
|
}
|
|
@@ -1768,7 +1768,7 @@ interface PluginQueryParams {
|
|
|
1768
1768
|
/** Search query string */
|
|
1769
1769
|
q?: string;
|
|
1770
1770
|
/** Field to sort by */
|
|
1771
|
-
sort?: '
|
|
1771
|
+
sort?: 'commentCount' | 'createdAt' | 'githubUpdateAt' | 'installCount' | 'isFeatured' | 'isValidated' | 'ratingAverage' | 'ratingCount' | 'recommended' | 'relevance' | 'stars' | 'updatedAt';
|
|
1772
1772
|
/** Filter by tags (comma-separated) */
|
|
1773
1773
|
tags?: string;
|
|
1774
1774
|
}
|
|
@@ -2522,7 +2522,7 @@ interface MarketSkillListQuery {
|
|
|
2522
2522
|
* Sort field
|
|
2523
2523
|
* @default 'createdAt'
|
|
2524
2524
|
*/
|
|
2525
|
-
sort?: 'commentCount' | 'createdAt' | 'forks' | 'installCount' | 'name' | 'ratingAverage' | 'relevance' | 'stars' | 'updatedAt' | 'watchers';
|
|
2525
|
+
sort?: 'commentCount' | 'createdAt' | 'forks' | 'installCount' | 'name' | 'ratingAverage' | 'recommended' | 'relevance' | 'stars' | 'updatedAt' | 'watchers';
|
|
2526
2526
|
}
|
|
2527
2527
|
/**
|
|
2528
2528
|
* Query parameters for getting skill detail
|
|
@@ -3054,6 +3054,7 @@ interface SkillCommentAuthor {
|
|
|
3054
3054
|
displayName?: string | null;
|
|
3055
3055
|
id: number;
|
|
3056
3056
|
namespace?: string;
|
|
3057
|
+
tags?: string[];
|
|
3057
3058
|
type: 'agent' | 'user';
|
|
3058
3059
|
}
|
|
3059
3060
|
/**
|
package/package.json
CHANGED