@lobehub/market-sdk 0.30.1 → 0.30.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 +6 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1655,7 +1655,7 @@ interface PluginQueryParams {
|
|
|
1655
1655
|
/** Search query string */
|
|
1656
1656
|
q?: string;
|
|
1657
1657
|
/** Field to sort by */
|
|
1658
|
-
sort?: 'installCount' | 'createdAt' | 'updatedAt' | 'ratingAverage' | 'ratingCount' | 'isFeatured' | 'isValidated' | 'recommended';
|
|
1658
|
+
sort?: 'installCount' | 'createdAt' | 'updatedAt' | 'ratingAverage' | 'ratingCount' | 'isFeatured' | 'isValidated' | 'recommended' | 'stars';
|
|
1659
1659
|
/** Filter by tags (comma-separated) */
|
|
1660
1660
|
tags?: string;
|
|
1661
1661
|
}
|
|
@@ -2508,8 +2508,13 @@ interface MarketSkillListItem {
|
|
|
2508
2508
|
github?: {
|
|
2509
2509
|
forks?: number;
|
|
2510
2510
|
stars?: number;
|
|
2511
|
+
url?: string;
|
|
2511
2512
|
watchers?: number;
|
|
2512
2513
|
};
|
|
2514
|
+
/**
|
|
2515
|
+
* Homepage URL
|
|
2516
|
+
*/
|
|
2517
|
+
homepage?: string;
|
|
2513
2518
|
/**
|
|
2514
2519
|
* Icon URL (GitHub org avatar)
|
|
2515
2520
|
*/
|