@lobehub/market-sdk 0.30.2 → 0.30.3

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 CHANGED
@@ -255,7 +255,7 @@ interface AgentListQuery {
255
255
  /** Search query string */
256
256
  q?: string;
257
257
  /** Sort field */
258
- sort?: 'createdAt' | 'updatedAt' | 'name' | 'tokenUsage' | 'knowledgeCount' | 'pluginCount' | 'recommended';
258
+ sort?: 'createdAt' | 'updatedAt' | 'name' | 'tokenUsage' | 'knowledgeCount' | 'pluginCount' | 'recommended' | 'relevance';
259
259
  /** Publication status filter */
260
260
  status?: 'published' | 'unpublished' | 'archived' | 'deprecated' | 'all';
261
261
  /** Visibility filter */
@@ -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' | 'stars';
1658
+ sort?: 'installCount' | 'createdAt' | 'updatedAt' | 'ratingAverage' | 'ratingCount' | 'isFeatured' | 'isValidated' | 'recommended' | 'relevance' | 'stars';
1659
1659
  /** Filter by tags (comma-separated) */
1660
1660
  tags?: string;
1661
1661
  }
@@ -2404,12 +2404,12 @@ interface MarketSkillListQuery {
2404
2404
  /**
2405
2405
  * Search query string (searches name, description, and summary)
2406
2406
  */
2407
- search?: string;
2407
+ q?: string;
2408
2408
  /**
2409
2409
  * Sort field
2410
2410
  * @default 'createdAt'
2411
2411
  */
2412
- sort?: 'createdAt' | 'forks' | 'installCount' | 'name' | 'stars' | 'updatedAt' | 'watchers';
2412
+ sort?: 'createdAt' | 'forks' | 'installCount' | 'name' | 'relevance' | 'stars' | 'updatedAt' | 'watchers';
2413
2413
  }
2414
2414
  /**
2415
2415
  * Query parameters for getting skill detail
@@ -5763,7 +5763,7 @@ declare class MarketSkillService extends BaseSDK {
5763
5763
  *
5764
5764
  * // Search for skills
5765
5765
  * const result = await sdk.marketSkills.getSkillList({
5766
- * search: 'code review',
5766
+ * q: 'code review',
5767
5767
  * category: 'development'
5768
5768
  * });
5769
5769
  * ```
package/dist/index.mjs CHANGED
@@ -3498,7 +3498,7 @@ var MarketSkillService = class extends BaseSDK {
3498
3498
  *
3499
3499
  * // Search for skills
3500
3500
  * const result = await sdk.marketSkills.getSkillList({
3501
- * search: 'code review',
3501
+ * q: 'code review',
3502
3502
  * category: 'development'
3503
3503
  * });
3504
3504
  * ```