@lobehub/market-sdk 0.24.0-beta.1 → 0.24.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 CHANGED
@@ -1046,7 +1046,7 @@ interface PluginQueryParams {
1046
1046
  * internally by the server - sessions are automatically created when needed and
1047
1047
  * recreated if expired.
1048
1048
  */
1049
- type CodeInterpreterToolName = 'editLocalFile' | 'getCommandOutput' | 'globLocalFiles' | 'grepContent' | 'killCommand' | 'listLocalFiles' | 'moveLocalFiles' | 'readLocalFile' | 'renameLocalFile' | 'runCommand' | 'searchLocalFiles' | 'writeLocalFile';
1049
+ type CodeInterpreterToolName = 'editLocalFile' | 'executeCode' | 'exportFile' | 'getCommandOutput' | 'globLocalFiles' | 'grepContent' | 'killCommand' | 'listLocalFiles' | 'moveLocalFiles' | 'readLocalFile' | 'renameLocalFile' | 'runCommand' | 'searchLocalFiles' | 'writeLocalFile';
1050
1050
  /**
1051
1051
  * Request for RunBuildInTools API
1052
1052
  */
@@ -1093,6 +1093,17 @@ interface RunBuildInToolsResponse {
1093
1093
  /** Whether the operation succeeded */
1094
1094
  success: boolean;
1095
1095
  }
1096
+ /**
1097
+ * Supported programming languages for code execution
1098
+ */
1099
+ type ProgrammingLanguage = 'javascript' | 'python' | 'typescript';
1100
+ /** Parameters for executeCode tool */
1101
+ interface ExecuteCodeParams {
1102
+ /** Code to execute */
1103
+ code: string;
1104
+ /** Programming language (default: python) */
1105
+ language?: ProgrammingLanguage;
1106
+ }
1096
1107
  /** Parameters for runCommand tool */
1097
1108
  interface RunCommandParams {
1098
1109
  /** Whether to run in background */
@@ -1196,11 +1207,20 @@ interface RenameLocalFileParams {
1196
1207
  /** Original file/directory path */
1197
1208
  oldPath: string;
1198
1209
  }
1210
+ /** Parameters for exportFile tool */
1211
+ interface ExportFileParams {
1212
+ /** File path in sandbox to export */
1213
+ path: string;
1214
+ /** Pre-signed upload URL to upload the file to */
1215
+ uploadUrl: string;
1216
+ }
1199
1217
  /**
1200
1218
  * Map of tool names to their parameter types
1201
1219
  */
1202
1220
  interface CodeInterpreterToolParams {
1203
1221
  editLocalFile: EditLocalFileParams;
1222
+ executeCode: ExecuteCodeParams;
1223
+ exportFile: ExportFileParams;
1204
1224
  getCommandOutput: GetCommandOutputParams;
1205
1225
  globLocalFiles: GlobLocalFilesParams;
1206
1226
  grepContent: GrepContentParams;
@@ -1226,6 +1246,8 @@ interface CodeInterpreterToolParams {
1226
1246
  * Extended metadata for user profile
1227
1247
  */
1228
1248
  interface AccountMeta {
1249
+ /** Any additional custom fields */
1250
+ [key: string]: any;
1229
1251
  /** User description/bio */
1230
1252
  description?: string;
1231
1253
  /** Social links */
@@ -1234,8 +1256,6 @@ interface AccountMeta {
1234
1256
  twitter?: string;
1235
1257
  website?: string;
1236
1258
  };
1237
- /** Any additional custom fields */
1238
- [key: string]: any;
1239
1259
  }
1240
1260
  /**
1241
1261
  * User Profile
@@ -1249,6 +1269,10 @@ interface UserProfile {
1249
1269
  createdAt: string;
1250
1270
  /** User's display name */
1251
1271
  displayName: string | null;
1272
+ /** Number of followers */
1273
+ followerCount: number;
1274
+ /** Number of users this user is following */
1275
+ followingCount: number;
1252
1276
  /** Account ID (primary key) */
1253
1277
  id: number;
1254
1278
  /** Extended metadata for user profile */
@@ -1335,6 +1359,200 @@ interface UpdateUserInfoResponse {
1335
1359
  /** Updated user profile */
1336
1360
  user: UserProfile;
1337
1361
  }
1362
+ /**
1363
+ * Follow Request
1364
+ *
1365
+ * Request body for follow/unfollow operations
1366
+ */
1367
+ interface FollowRequest {
1368
+ /** The ID of the user to follow/unfollow */
1369
+ followingId: number;
1370
+ }
1371
+ /**
1372
+ * Check Follow Query
1373
+ *
1374
+ * Query parameters for checking follow status
1375
+ */
1376
+ interface CheckFollowQuery {
1377
+ /** The ID of the target user to check */
1378
+ targetUserId: number;
1379
+ }
1380
+ /**
1381
+ * Check Follow Response
1382
+ *
1383
+ * Response structure for check follow status endpoint
1384
+ */
1385
+ interface CheckFollowResponse {
1386
+ /** Whether the authenticated user is following the target user */
1387
+ isFollowing: boolean;
1388
+ /** Whether both users follow each other */
1389
+ isMutual: boolean;
1390
+ }
1391
+ /**
1392
+ * Follow List Item
1393
+ *
1394
+ * Represents a user in following/followers list
1395
+ */
1396
+ interface FollowListItem {
1397
+ /** User's avatar URL */
1398
+ avatarUrl: string | null;
1399
+ /** When the follow relationship was created */
1400
+ createdAt: string;
1401
+ /** User's display name */
1402
+ displayName: string | null;
1403
+ /** Account ID */
1404
+ id: number;
1405
+ /** Unique username */
1406
+ userName: string | null;
1407
+ }
1408
+ /**
1409
+ * Follow List Response
1410
+ *
1411
+ * Response structure for following/followers list endpoints
1412
+ */
1413
+ interface FollowListResponse {
1414
+ /** List of users */
1415
+ data: FollowListItem[];
1416
+ }
1417
+ /**
1418
+ * Target Type for favorites and likes
1419
+ */
1420
+ type InteractionTargetType = 'agent' | 'plugin';
1421
+ /**
1422
+ * Favorite Request
1423
+ *
1424
+ * Request body for add/remove favorite operations
1425
+ */
1426
+ interface FavoriteRequest {
1427
+ /** The identifier of the target agent/plugin */
1428
+ targetId: string;
1429
+ /** The type of target */
1430
+ targetType: InteractionTargetType;
1431
+ }
1432
+ /**
1433
+ * Check Favorite Query
1434
+ *
1435
+ * Query parameters for checking favorite status
1436
+ */
1437
+ interface CheckFavoriteQuery {
1438
+ /** The identifier of the target agent/plugin */
1439
+ targetId: string;
1440
+ /** The type of target */
1441
+ targetType: InteractionTargetType;
1442
+ }
1443
+ /**
1444
+ * Check Favorite Response
1445
+ *
1446
+ * Response structure for check favorite status endpoint
1447
+ */
1448
+ interface CheckFavoriteResponse {
1449
+ /** Whether the authenticated user has favorited the target */
1450
+ isFavorited: boolean;
1451
+ }
1452
+ /**
1453
+ * Favorite Query
1454
+ *
1455
+ * Query parameters for favorites list endpoints
1456
+ */
1457
+ interface FavoriteQuery {
1458
+ /** Maximum number of results to return */
1459
+ limit?: number;
1460
+ /** Number of results to skip */
1461
+ offset?: number;
1462
+ /** Filter by target type */
1463
+ type?: InteractionTargetType;
1464
+ }
1465
+ /**
1466
+ * Favorite List Response
1467
+ *
1468
+ * Response structure for favorites list endpoints
1469
+ */
1470
+ interface FavoriteListResponse {
1471
+ /** List of favorite items */
1472
+ data: any[];
1473
+ }
1474
+ /**
1475
+ * Like Request
1476
+ *
1477
+ * Request body for like/unlike operations
1478
+ */
1479
+ interface LikeRequest {
1480
+ /** The identifier of the target agent/plugin */
1481
+ targetId: string;
1482
+ /** The type of target */
1483
+ targetType: InteractionTargetType;
1484
+ }
1485
+ /**
1486
+ * Check Like Query
1487
+ *
1488
+ * Query parameters for checking like status
1489
+ */
1490
+ interface CheckLikeQuery {
1491
+ /** The identifier of the target agent/plugin */
1492
+ targetId: string;
1493
+ /** The type of target */
1494
+ targetType: InteractionTargetType;
1495
+ }
1496
+ /**
1497
+ * Check Like Response
1498
+ *
1499
+ * Response structure for check like status endpoint
1500
+ */
1501
+ interface CheckLikeResponse {
1502
+ /** Whether the authenticated user has liked the target */
1503
+ isLiked: boolean;
1504
+ }
1505
+ /**
1506
+ * Toggle Like Response
1507
+ *
1508
+ * Response structure for toggle like endpoint
1509
+ */
1510
+ interface ToggleLikeResponse {
1511
+ /** Whether the target is now liked */
1512
+ liked: boolean;
1513
+ }
1514
+ /**
1515
+ * Like Query
1516
+ *
1517
+ * Query parameters for likes list endpoints
1518
+ */
1519
+ interface LikeQuery {
1520
+ /** Maximum number of results to return */
1521
+ limit?: number;
1522
+ /** Number of results to skip */
1523
+ offset?: number;
1524
+ /** Filter by target type */
1525
+ type?: InteractionTargetType;
1526
+ }
1527
+ /**
1528
+ * Like List Response
1529
+ *
1530
+ * Response structure for likes list endpoints
1531
+ */
1532
+ interface LikeListResponse {
1533
+ /** List of liked items */
1534
+ data: any[];
1535
+ }
1536
+ /**
1537
+ * Success Response
1538
+ *
1539
+ * Common response structure for success operations
1540
+ */
1541
+ interface SuccessResponse {
1542
+ /** Whether the operation was successful */
1543
+ success: boolean;
1544
+ }
1545
+ /**
1546
+ * Pagination Query
1547
+ *
1548
+ * Common pagination parameters
1549
+ */
1550
+ interface PaginationQuery {
1551
+ /** Maximum number of results to return */
1552
+ limit?: number;
1553
+ /** Number of results to skip */
1554
+ offset?: number;
1555
+ }
1338
1556
 
1339
1557
  /**
1340
1558
  * Base SDK class
@@ -2861,6 +3079,35 @@ declare class PluginsService extends BaseSDK {
2861
3079
  filePattern?: string;
2862
3080
  recursive?: boolean;
2863
3081
  }): Promise<RunBuildInToolsResponse>;
3082
+ /**
3083
+ * Export a file from the Code Interpreter sandbox to a pre-signed URL
3084
+ *
3085
+ * This method uploads a file from the sandbox to an external storage location
3086
+ * via a pre-signed URL (e.g., S3 pre-signed URL). The upload is performed
3087
+ * using Python code execution within the sandbox.
3088
+ *
3089
+ * @param path - File path in sandbox to export
3090
+ * @param uploadUrl - Pre-signed URL to upload the file to
3091
+ * @param context - User and topic context
3092
+ * @returns Promise resolving to export result with success status and file info
3093
+ *
3094
+ * @example
3095
+ * ```typescript
3096
+ * const result = await sdk.plugins.exportFile(
3097
+ * './output/result.csv',
3098
+ * 'https://s3.amazonaws.com/bucket/key?X-Amz-Signature=...',
3099
+ * { userId: 'user-123', topicId: 'topic-456' }
3100
+ * );
3101
+ *
3102
+ * if (result.success && result.data?.result.success) {
3103
+ * console.log('File exported:', result.data.result.size, 'bytes');
3104
+ * }
3105
+ * ```
3106
+ */
3107
+ exportFile(path: string, uploadUrl: string, context: {
3108
+ topicId: string;
3109
+ userId: string;
3110
+ }): Promise<RunBuildInToolsResponse>;
2864
3111
  }
2865
3112
 
2866
3113
  /**
@@ -2896,6 +3143,274 @@ declare class UserService extends BaseSDK {
2896
3143
  updateUserInfo(data: UpdateUserInfoRequest, options?: globalThis.RequestInit): Promise<UpdateUserInfoResponse>;
2897
3144
  }
2898
3145
 
3146
+ /**
3147
+ * User Follow Service
3148
+ *
3149
+ * Provides access to user follow functionality in the LobeHub Marketplace.
3150
+ * This service handles following/unfollowing users and retrieving follow relationships.
3151
+ */
3152
+ declare class UserFollowService extends BaseSDK {
3153
+ /**
3154
+ * Follow a user
3155
+ *
3156
+ * Creates a follow relationship where the authenticated user follows the target user.
3157
+ * Requires authentication.
3158
+ *
3159
+ * @param followingId - The ID of the user to follow
3160
+ * @param options - Optional request options
3161
+ * @returns Promise resolving to success response
3162
+ * @throws Error if already following or cannot follow yourself
3163
+ */
3164
+ follow(followingId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3165
+ /**
3166
+ * Unfollow a user
3167
+ *
3168
+ * Removes the follow relationship where the authenticated user unfollows the target user.
3169
+ * Requires authentication.
3170
+ *
3171
+ * @param followingId - The ID of the user to unfollow
3172
+ * @param options - Optional request options
3173
+ * @returns Promise resolving to success response
3174
+ * @throws Error if follow relationship not found
3175
+ */
3176
+ unfollow(followingId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3177
+ /**
3178
+ * Check follow status
3179
+ *
3180
+ * Checks if the authenticated user is following the target user and if they follow each other.
3181
+ * Requires authentication.
3182
+ *
3183
+ * @param targetUserId - The ID of the user to check
3184
+ * @param options - Optional request options
3185
+ * @returns Promise resolving to follow status (isFollowing, isMutual)
3186
+ */
3187
+ checkFollowStatus(targetUserId: number, options?: globalThis.RequestInit): Promise<CheckFollowResponse>;
3188
+ /**
3189
+ * Get following list
3190
+ *
3191
+ * Retrieves the list of users that a user is following.
3192
+ * This is a public endpoint - no authentication required.
3193
+ *
3194
+ * @param userId - The ID of the user whose following list to retrieve
3195
+ * @param params - Pagination parameters
3196
+ * @param options - Optional request options
3197
+ * @returns Promise resolving to list of following users
3198
+ */
3199
+ getFollowing(userId: number, params?: PaginationQuery, options?: globalThis.RequestInit): Promise<FollowListResponse>;
3200
+ /**
3201
+ * Get followers list
3202
+ *
3203
+ * Retrieves the list of users who follow a user.
3204
+ * This is a public endpoint - no authentication required.
3205
+ *
3206
+ * @param userId - The ID of the user whose followers list to retrieve
3207
+ * @param params - Pagination parameters
3208
+ * @param options - Optional request options
3209
+ * @returns Promise resolving to list of followers
3210
+ */
3211
+ getFollowers(userId: number, params?: PaginationQuery, options?: globalThis.RequestInit): Promise<FollowListResponse>;
3212
+ }
3213
+
3214
+ /**
3215
+ * User Favorite Service
3216
+ *
3217
+ * Provides access to user favorite functionality in the LobeHub Marketplace.
3218
+ * This service handles adding/removing favorites and retrieving favorite lists.
3219
+ */
3220
+ declare class UserFavoriteService extends BaseSDK {
3221
+ /**
3222
+ * Add to favorites
3223
+ *
3224
+ * Adds an agent or plugin to the authenticated user's favorites.
3225
+ * Requires authentication.
3226
+ *
3227
+ * @param targetType - The type of target ('agent' or 'plugin')
3228
+ * @param targetId - The ID of the target agent/plugin
3229
+ * @param options - Optional request options
3230
+ * @returns Promise resolving to success response
3231
+ * @throws Error if already in favorites
3232
+ */
3233
+ addFavorite(targetType: InteractionTargetType, targetId: string, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3234
+ /**
3235
+ * Remove from favorites
3236
+ *
3237
+ * Removes an agent or plugin from the authenticated user's favorites.
3238
+ * Requires authentication.
3239
+ *
3240
+ * @param targetType - The type of target ('agent' or 'plugin')
3241
+ * @param targetId - The ID of the target agent/plugin
3242
+ * @param options - Optional request options
3243
+ * @returns Promise resolving to success response
3244
+ * @throws Error if favorite not found
3245
+ */
3246
+ removeFavorite(targetType: InteractionTargetType, targetId: string, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3247
+ /**
3248
+ * Check favorite status
3249
+ *
3250
+ * Checks if the authenticated user has favorited a specific agent or plugin.
3251
+ * Requires authentication.
3252
+ *
3253
+ * @param targetType - The type of target ('agent' or 'plugin')
3254
+ * @param targetId - The ID of the target agent/plugin
3255
+ * @param options - Optional request options
3256
+ * @returns Promise resolving to favorite status
3257
+ */
3258
+ checkFavorite(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<CheckFavoriteResponse>;
3259
+ /**
3260
+ * Get my favorites
3261
+ *
3262
+ * Retrieves the authenticated user's favorites.
3263
+ * Requires authentication.
3264
+ *
3265
+ * @param params - Query parameters for filtering and pagination
3266
+ * @param options - Optional request options
3267
+ * @returns Promise resolving to list of favorites
3268
+ */
3269
+ getMyFavorites(params?: FavoriteQuery, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3270
+ /**
3271
+ * Get user's favorites
3272
+ *
3273
+ * Retrieves a user's favorites.
3274
+ * This is a public endpoint - no authentication required.
3275
+ *
3276
+ * @param userId - The ID of the user whose favorites to retrieve
3277
+ * @param params - Query parameters for filtering and pagination
3278
+ * @param options - Optional request options
3279
+ * @returns Promise resolving to list of favorites
3280
+ */
3281
+ getUserFavorites(userId: number, params?: FavoriteQuery, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3282
+ /**
3283
+ * Get user's favorite agents with details
3284
+ *
3285
+ * Retrieves a user's favorite agents with full details.
3286
+ * This is a public endpoint - no authentication required.
3287
+ *
3288
+ * @param userId - The ID of the user whose favorite agents to retrieve
3289
+ * @param params - Pagination parameters
3290
+ * @param options - Optional request options
3291
+ * @returns Promise resolving to list of favorite agents
3292
+ */
3293
+ getUserFavoriteAgents(userId: number, params?: Pick<FavoriteQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3294
+ /**
3295
+ * Get user's favorite plugins with details
3296
+ *
3297
+ * Retrieves a user's favorite plugins with full details.
3298
+ * This is a public endpoint - no authentication required.
3299
+ *
3300
+ * @param userId - The ID of the user whose favorite plugins to retrieve
3301
+ * @param params - Pagination parameters
3302
+ * @param options - Optional request options
3303
+ * @returns Promise resolving to list of favorite plugins
3304
+ */
3305
+ getUserFavoritePlugins(userId: number, params?: Pick<FavoriteQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3306
+ }
3307
+
3308
+ /**
3309
+ * User Like Service
3310
+ *
3311
+ * Provides access to user like functionality in the LobeHub Marketplace.
3312
+ * This service handles liking/unliking content and retrieving like lists.
3313
+ */
3314
+ declare class UserLikeService extends BaseSDK {
3315
+ /**
3316
+ * Like content
3317
+ *
3318
+ * Likes an agent or plugin for the authenticated user.
3319
+ * Requires authentication.
3320
+ *
3321
+ * @param targetType - The type of target ('agent' or 'plugin')
3322
+ * @param targetId - The ID of the target agent/plugin
3323
+ * @param options - Optional request options
3324
+ * @returns Promise resolving to success response
3325
+ * @throws Error if already liked
3326
+ */
3327
+ like(targetType: InteractionTargetType, targetId: string, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3328
+ /**
3329
+ * Unlike content
3330
+ *
3331
+ * Unlikes an agent or plugin for the authenticated user.
3332
+ * Requires authentication.
3333
+ *
3334
+ * @param targetType - The type of target ('agent' or 'plugin')
3335
+ * @param targetId - The ID of the target agent/plugin
3336
+ * @param options - Optional request options
3337
+ * @returns Promise resolving to success response
3338
+ * @throws Error if like not found
3339
+ */
3340
+ unlike(targetType: InteractionTargetType, targetId: string, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3341
+ /**
3342
+ * Toggle like status
3343
+ *
3344
+ * Toggles the like status - likes if not liked, unlikes if already liked.
3345
+ * Requires authentication.
3346
+ *
3347
+ * @param targetType - The type of target ('agent' or 'plugin')
3348
+ * @param targetId - The ID of the target agent/plugin
3349
+ * @param options - Optional request options
3350
+ * @returns Promise resolving to toggle response with new like status
3351
+ */
3352
+ toggleLike(targetType: InteractionTargetType, targetId: string, options?: globalThis.RequestInit): Promise<ToggleLikeResponse>;
3353
+ /**
3354
+ * Check like status
3355
+ *
3356
+ * Checks if the authenticated user has liked a specific agent or plugin.
3357
+ * Requires authentication.
3358
+ *
3359
+ * @param targetType - The type of target ('agent' or 'plugin')
3360
+ * @param targetId - The ID of the target agent/plugin
3361
+ * @param options - Optional request options
3362
+ * @returns Promise resolving to like status
3363
+ */
3364
+ checkLike(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<CheckLikeResponse>;
3365
+ /**
3366
+ * Get my likes
3367
+ *
3368
+ * Retrieves the authenticated user's likes.
3369
+ * Requires authentication.
3370
+ *
3371
+ * @param params - Query parameters for filtering and pagination
3372
+ * @param options - Optional request options
3373
+ * @returns Promise resolving to list of likes
3374
+ */
3375
+ getMyLikes(params?: LikeQuery, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3376
+ /**
3377
+ * Get user's likes
3378
+ *
3379
+ * Retrieves a user's likes.
3380
+ * This is a public endpoint - no authentication required.
3381
+ *
3382
+ * @param userId - The ID of the user whose likes to retrieve
3383
+ * @param params - Query parameters for filtering and pagination
3384
+ * @param options - Optional request options
3385
+ * @returns Promise resolving to list of likes
3386
+ */
3387
+ getUserLikes(userId: number, params?: LikeQuery, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3388
+ /**
3389
+ * Get user's liked agents with details
3390
+ *
3391
+ * Retrieves a user's liked agents with full details.
3392
+ * This is a public endpoint - no authentication required.
3393
+ *
3394
+ * @param userId - The ID of the user whose liked agents to retrieve
3395
+ * @param params - Pagination parameters
3396
+ * @param options - Optional request options
3397
+ * @returns Promise resolving to list of liked agents
3398
+ */
3399
+ getUserLikedAgents(userId: number, params?: Pick<LikeQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3400
+ /**
3401
+ * Get user's liked plugins with details
3402
+ *
3403
+ * Retrieves a user's liked plugins with full details.
3404
+ * This is a public endpoint - no authentication required.
3405
+ *
3406
+ * @param userId - The ID of the user whose liked plugins to retrieve
3407
+ * @param params - Pagination parameters
3408
+ * @param options - Optional request options
3409
+ * @returns Promise resolving to list of liked plugins
3410
+ */
3411
+ getUserLikedPlugins(userId: number, params?: Pick<LikeQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3412
+ }
3413
+
2899
3414
  /**
2900
3415
  * LobeHub Market SDK Client
2901
3416
  *
@@ -2925,6 +3440,21 @@ declare class MarketSDK extends BaseSDK {
2925
3440
  * Provides methods to retrieve user profiles and their published agents
2926
3441
  */
2927
3442
  readonly user: UserService;
3443
+ /**
3444
+ * User follow service for follow operations
3445
+ * Provides methods to follow/unfollow users and retrieve follow relationships
3446
+ */
3447
+ readonly follows: UserFollowService;
3448
+ /**
3449
+ * User favorite service for favorite operations
3450
+ * Provides methods to add/remove favorites and retrieve favorite lists
3451
+ */
3452
+ readonly favorites: UserFavoriteService;
3453
+ /**
3454
+ * User like service for like operations
3455
+ * Provides methods to like/unlike content and retrieve like lists
3456
+ */
3457
+ readonly likes: UserLikeService;
2928
3458
  /**
2929
3459
  * Discovery service for retrieving API service information
2930
3460
  * Used to get information about available endpoints and services
@@ -2960,4 +3490,4 @@ declare class MarketSDK extends BaseSDK {
2960
3490
  registerClient(request: ClientRegistrationRequest): Promise<ClientRegistrationResponse>;
2961
3491
  }
2962
3492
 
2963
- export { type AccountMeta, type AdminListQueryParams, type AdminListResponse, type AdminPluginParams, type AgentCreateRequest, type AgentCreateResponse, type AgentDetailQuery, type AgentExtension, type AgentInstallCountRequest, type AgentInstallCountResponse, type AgentInterface, type AgentItemDetail, type AgentListQuery, type AgentListResponse, type AgentModifyRequest, type AgentModifyResponse, type AgentSecurityRequirement, type AgentSecurityScheme, type AgentSkill, type AgentStatus, type AgentStatusChangeResponse, type AgentUploadRequest, type AgentUploadResponse, type AgentUploadVersion, type AgentVersionCreateRequest, type AgentVersionCreateResponse, type AgentVersionLocalization, type AgentVersionModifyRequest, type AgentVersionModifyResponse, type AuthorizationCodeTokenRequest, type ClientRegistrationError, type ClientRegistrationRequest, type ClientRegistrationResponse, type CodeInterpreterToolName, type CodeInterpreterToolParams, type DiscoveryDocument, type EditLocalFileParams, type GetCommandOutputParams, type GlobLocalFilesParams, type GrepContentParams, type KillCommandParams, type ListLocalFilesParams, MarketAdmin, MarketSDK, type MarketSDKOptions, type MoveLocalFilesParams, type MoveOperation, type OAuthTokenResponse, type OwnAgentListQuery, type PluginI18nImportParams, type PluginI18nImportResponse, type PluginItem, type PluginListResponse, type PluginLocalization, type PluginQueryParams, type PluginUpdateParams, type PluginVersionCreateParams, type PluginVersionUpdateParams, type ReadLocalFileParams, type RefreshTokenRequest, type RenameLocalFileParams, type ReviewStatus, ReviewStatusEnumSchema, type RunBuildInToolsError, type RunBuildInToolsRequest, type RunBuildInToolsResponse, type RunBuildInToolsSuccessData, type RunCommandParams, type SearchLocalFilesParams, type SharedTokenState, StatusEnumSchema, type UnclaimedPluginItem, type UpdateUserInfoRequest, type UpdateUserInfoResponse, type UserAgentItem, type UserInfoQuery, type UserInfoResponse, type UserProfile, VisibilityEnumSchema, type WriteLocalFileParams };
3493
+ export { type AccountMeta, type AdminListQueryParams, type AdminListResponse, type AdminPluginParams, type AgentCreateRequest, type AgentCreateResponse, type AgentDetailQuery, type AgentExtension, type AgentInstallCountRequest, type AgentInstallCountResponse, type AgentInterface, type AgentItemDetail, type AgentListQuery, type AgentListResponse, type AgentModifyRequest, type AgentModifyResponse, type AgentSecurityRequirement, type AgentSecurityScheme, type AgentSkill, type AgentStatus, type AgentStatusChangeResponse, type AgentUploadRequest, type AgentUploadResponse, type AgentUploadVersion, type AgentVersionCreateRequest, type AgentVersionCreateResponse, type AgentVersionLocalization, type AgentVersionModifyRequest, type AgentVersionModifyResponse, type AuthorizationCodeTokenRequest, type CheckFavoriteQuery, type CheckFavoriteResponse, type CheckFollowQuery, type CheckFollowResponse, type CheckLikeQuery, type CheckLikeResponse, type ClientRegistrationError, type ClientRegistrationRequest, type ClientRegistrationResponse, type CodeInterpreterToolName, type CodeInterpreterToolParams, type DiscoveryDocument, type EditLocalFileParams, type ExecuteCodeParams, type ExportFileParams, type FavoriteListResponse, type FavoriteQuery, type FavoriteRequest, type FollowListItem, type FollowListResponse, type FollowRequest, type GetCommandOutputParams, type GlobLocalFilesParams, type GrepContentParams, type InteractionTargetType, type KillCommandParams, type LikeListResponse, type LikeQuery, type LikeRequest, type ListLocalFilesParams, MarketAdmin, MarketSDK, type MarketSDKOptions, type MoveLocalFilesParams, type MoveOperation, type OAuthTokenResponse, type OwnAgentListQuery, type PaginationQuery, type PluginI18nImportParams, type PluginI18nImportResponse, type PluginItem, type PluginListResponse, type PluginLocalization, type PluginQueryParams, type PluginUpdateParams, type PluginVersionCreateParams, type PluginVersionUpdateParams, type ProgrammingLanguage, type ReadLocalFileParams, type RefreshTokenRequest, type RenameLocalFileParams, type ReviewStatus, ReviewStatusEnumSchema, type RunBuildInToolsError, type RunBuildInToolsRequest, type RunBuildInToolsResponse, type RunBuildInToolsSuccessData, type RunCommandParams, type SearchLocalFilesParams, type SharedTokenState, StatusEnumSchema, type SuccessResponse, type ToggleLikeResponse, type UnclaimedPluginItem, type UpdateUserInfoRequest, type UpdateUserInfoResponse, type UserAgentItem, type UserInfoQuery, type UserInfoResponse, type UserProfile, VisibilityEnumSchema, type WriteLocalFileParams };