@lobehub/market-sdk 0.23.8 → 0.23.9-beta.1

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
@@ -1246,6 +1246,8 @@ interface CodeInterpreterToolParams {
1246
1246
  * Extended metadata for user profile
1247
1247
  */
1248
1248
  interface AccountMeta {
1249
+ /** Any additional custom fields */
1250
+ [key: string]: any;
1249
1251
  /** User description/bio */
1250
1252
  description?: string;
1251
1253
  /** Social links */
@@ -1254,8 +1256,6 @@ interface AccountMeta {
1254
1256
  twitter?: string;
1255
1257
  website?: string;
1256
1258
  };
1257
- /** Any additional custom fields */
1258
- [key: string]: any;
1259
1259
  }
1260
1260
  /**
1261
1261
  * User Profile
@@ -1355,6 +1355,200 @@ interface UpdateUserInfoResponse {
1355
1355
  /** Updated user profile */
1356
1356
  user: UserProfile;
1357
1357
  }
1358
+ /**
1359
+ * Follow Request
1360
+ *
1361
+ * Request body for follow/unfollow operations
1362
+ */
1363
+ interface FollowRequest {
1364
+ /** The ID of the user to follow/unfollow */
1365
+ followingId: number;
1366
+ }
1367
+ /**
1368
+ * Check Follow Query
1369
+ *
1370
+ * Query parameters for checking follow status
1371
+ */
1372
+ interface CheckFollowQuery {
1373
+ /** The ID of the target user to check */
1374
+ targetUserId: number;
1375
+ }
1376
+ /**
1377
+ * Check Follow Response
1378
+ *
1379
+ * Response structure for check follow status endpoint
1380
+ */
1381
+ interface CheckFollowResponse {
1382
+ /** Whether the authenticated user is following the target user */
1383
+ isFollowing: boolean;
1384
+ /** Whether both users follow each other */
1385
+ isMutual: boolean;
1386
+ }
1387
+ /**
1388
+ * Follow List Item
1389
+ *
1390
+ * Represents a user in following/followers list
1391
+ */
1392
+ interface FollowListItem {
1393
+ /** User's avatar URL */
1394
+ avatarUrl: string | null;
1395
+ /** When the follow relationship was created */
1396
+ createdAt: string;
1397
+ /** User's display name */
1398
+ displayName: string | null;
1399
+ /** Account ID */
1400
+ id: number;
1401
+ /** Unique username */
1402
+ userName: string | null;
1403
+ }
1404
+ /**
1405
+ * Follow List Response
1406
+ *
1407
+ * Response structure for following/followers list endpoints
1408
+ */
1409
+ interface FollowListResponse {
1410
+ /** List of users */
1411
+ data: FollowListItem[];
1412
+ }
1413
+ /**
1414
+ * Target Type for favorites and likes
1415
+ */
1416
+ type InteractionTargetType = 'agent' | 'plugin';
1417
+ /**
1418
+ * Favorite Request
1419
+ *
1420
+ * Request body for add/remove favorite operations
1421
+ */
1422
+ interface FavoriteRequest {
1423
+ /** The ID of the target agent/plugin */
1424
+ targetId: number;
1425
+ /** The type of target */
1426
+ targetType: InteractionTargetType;
1427
+ }
1428
+ /**
1429
+ * Check Favorite Query
1430
+ *
1431
+ * Query parameters for checking favorite status
1432
+ */
1433
+ interface CheckFavoriteQuery {
1434
+ /** The ID of the target agent/plugin */
1435
+ targetId: number;
1436
+ /** The type of target */
1437
+ targetType: InteractionTargetType;
1438
+ }
1439
+ /**
1440
+ * Check Favorite Response
1441
+ *
1442
+ * Response structure for check favorite status endpoint
1443
+ */
1444
+ interface CheckFavoriteResponse {
1445
+ /** Whether the authenticated user has favorited the target */
1446
+ isFavorited: boolean;
1447
+ }
1448
+ /**
1449
+ * Favorite Query
1450
+ *
1451
+ * Query parameters for favorites list endpoints
1452
+ */
1453
+ interface FavoriteQuery {
1454
+ /** Maximum number of results to return */
1455
+ limit?: number;
1456
+ /** Number of results to skip */
1457
+ offset?: number;
1458
+ /** Filter by target type */
1459
+ type?: InteractionTargetType;
1460
+ }
1461
+ /**
1462
+ * Favorite List Response
1463
+ *
1464
+ * Response structure for favorites list endpoints
1465
+ */
1466
+ interface FavoriteListResponse {
1467
+ /** List of favorite items */
1468
+ data: any[];
1469
+ }
1470
+ /**
1471
+ * Like Request
1472
+ *
1473
+ * Request body for like/unlike operations
1474
+ */
1475
+ interface LikeRequest {
1476
+ /** The ID of the target agent/plugin */
1477
+ targetId: number;
1478
+ /** The type of target */
1479
+ targetType: InteractionTargetType;
1480
+ }
1481
+ /**
1482
+ * Check Like Query
1483
+ *
1484
+ * Query parameters for checking like status
1485
+ */
1486
+ interface CheckLikeQuery {
1487
+ /** The ID of the target agent/plugin */
1488
+ targetId: number;
1489
+ /** The type of target */
1490
+ targetType: InteractionTargetType;
1491
+ }
1492
+ /**
1493
+ * Check Like Response
1494
+ *
1495
+ * Response structure for check like status endpoint
1496
+ */
1497
+ interface CheckLikeResponse {
1498
+ /** Whether the authenticated user has liked the target */
1499
+ isLiked: boolean;
1500
+ }
1501
+ /**
1502
+ * Toggle Like Response
1503
+ *
1504
+ * Response structure for toggle like endpoint
1505
+ */
1506
+ interface ToggleLikeResponse {
1507
+ /** Whether the target is now liked */
1508
+ liked: boolean;
1509
+ }
1510
+ /**
1511
+ * Like Query
1512
+ *
1513
+ * Query parameters for likes list endpoints
1514
+ */
1515
+ interface LikeQuery {
1516
+ /** Maximum number of results to return */
1517
+ limit?: number;
1518
+ /** Number of results to skip */
1519
+ offset?: number;
1520
+ /** Filter by target type */
1521
+ type?: InteractionTargetType;
1522
+ }
1523
+ /**
1524
+ * Like List Response
1525
+ *
1526
+ * Response structure for likes list endpoints
1527
+ */
1528
+ interface LikeListResponse {
1529
+ /** List of liked items */
1530
+ data: any[];
1531
+ }
1532
+ /**
1533
+ * Success Response
1534
+ *
1535
+ * Common response structure for success operations
1536
+ */
1537
+ interface SuccessResponse {
1538
+ /** Whether the operation was successful */
1539
+ success: boolean;
1540
+ }
1541
+ /**
1542
+ * Pagination Query
1543
+ *
1544
+ * Common pagination parameters
1545
+ */
1546
+ interface PaginationQuery {
1547
+ /** Maximum number of results to return */
1548
+ limit?: number;
1549
+ /** Number of results to skip */
1550
+ offset?: number;
1551
+ }
1358
1552
 
1359
1553
  /**
1360
1554
  * Base SDK class
@@ -2945,6 +3139,274 @@ declare class UserService extends BaseSDK {
2945
3139
  updateUserInfo(data: UpdateUserInfoRequest, options?: globalThis.RequestInit): Promise<UpdateUserInfoResponse>;
2946
3140
  }
2947
3141
 
3142
+ /**
3143
+ * User Follow Service
3144
+ *
3145
+ * Provides access to user follow functionality in the LobeHub Marketplace.
3146
+ * This service handles following/unfollowing users and retrieving follow relationships.
3147
+ */
3148
+ declare class UserFollowService extends BaseSDK {
3149
+ /**
3150
+ * Follow a user
3151
+ *
3152
+ * Creates a follow relationship where the authenticated user follows the target user.
3153
+ * Requires authentication.
3154
+ *
3155
+ * @param followingId - The ID of the user to follow
3156
+ * @param options - Optional request options
3157
+ * @returns Promise resolving to success response
3158
+ * @throws Error if already following or cannot follow yourself
3159
+ */
3160
+ follow(followingId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3161
+ /**
3162
+ * Unfollow a user
3163
+ *
3164
+ * Removes the follow relationship where the authenticated user unfollows the target user.
3165
+ * Requires authentication.
3166
+ *
3167
+ * @param followingId - The ID of the user to unfollow
3168
+ * @param options - Optional request options
3169
+ * @returns Promise resolving to success response
3170
+ * @throws Error if follow relationship not found
3171
+ */
3172
+ unfollow(followingId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3173
+ /**
3174
+ * Check follow status
3175
+ *
3176
+ * Checks if the authenticated user is following the target user and if they follow each other.
3177
+ * Requires authentication.
3178
+ *
3179
+ * @param targetUserId - The ID of the user to check
3180
+ * @param options - Optional request options
3181
+ * @returns Promise resolving to follow status (isFollowing, isMutual)
3182
+ */
3183
+ checkFollowStatus(targetUserId: number, options?: globalThis.RequestInit): Promise<CheckFollowResponse>;
3184
+ /**
3185
+ * Get following list
3186
+ *
3187
+ * Retrieves the list of users that a user is following.
3188
+ * This is a public endpoint - no authentication required.
3189
+ *
3190
+ * @param userId - The ID of the user whose following list to retrieve
3191
+ * @param params - Pagination parameters
3192
+ * @param options - Optional request options
3193
+ * @returns Promise resolving to list of following users
3194
+ */
3195
+ getFollowing(userId: number, params?: PaginationQuery, options?: globalThis.RequestInit): Promise<FollowListResponse>;
3196
+ /**
3197
+ * Get followers list
3198
+ *
3199
+ * Retrieves the list of users who follow a user.
3200
+ * This is a public endpoint - no authentication required.
3201
+ *
3202
+ * @param userId - The ID of the user whose followers list to retrieve
3203
+ * @param params - Pagination parameters
3204
+ * @param options - Optional request options
3205
+ * @returns Promise resolving to list of followers
3206
+ */
3207
+ getFollowers(userId: number, params?: PaginationQuery, options?: globalThis.RequestInit): Promise<FollowListResponse>;
3208
+ }
3209
+
3210
+ /**
3211
+ * User Favorite Service
3212
+ *
3213
+ * Provides access to user favorite functionality in the LobeHub Marketplace.
3214
+ * This service handles adding/removing favorites and retrieving favorite lists.
3215
+ */
3216
+ declare class UserFavoriteService extends BaseSDK {
3217
+ /**
3218
+ * Add to favorites
3219
+ *
3220
+ * Adds an agent or plugin to the authenticated user's favorites.
3221
+ * Requires authentication.
3222
+ *
3223
+ * @param targetType - The type of target ('agent' or 'plugin')
3224
+ * @param targetId - The ID of the target agent/plugin
3225
+ * @param options - Optional request options
3226
+ * @returns Promise resolving to success response
3227
+ * @throws Error if already in favorites
3228
+ */
3229
+ addFavorite(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3230
+ /**
3231
+ * Remove from favorites
3232
+ *
3233
+ * Removes an agent or plugin from the authenticated user's favorites.
3234
+ * Requires authentication.
3235
+ *
3236
+ * @param targetType - The type of target ('agent' or 'plugin')
3237
+ * @param targetId - The ID of the target agent/plugin
3238
+ * @param options - Optional request options
3239
+ * @returns Promise resolving to success response
3240
+ * @throws Error if favorite not found
3241
+ */
3242
+ removeFavorite(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3243
+ /**
3244
+ * Check favorite status
3245
+ *
3246
+ * Checks if the authenticated user has favorited a specific agent or plugin.
3247
+ * Requires authentication.
3248
+ *
3249
+ * @param targetType - The type of target ('agent' or 'plugin')
3250
+ * @param targetId - The ID of the target agent/plugin
3251
+ * @param options - Optional request options
3252
+ * @returns Promise resolving to favorite status
3253
+ */
3254
+ checkFavorite(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<CheckFavoriteResponse>;
3255
+ /**
3256
+ * Get my favorites
3257
+ *
3258
+ * Retrieves the authenticated user's favorites.
3259
+ * Requires authentication.
3260
+ *
3261
+ * @param params - Query parameters for filtering and pagination
3262
+ * @param options - Optional request options
3263
+ * @returns Promise resolving to list of favorites
3264
+ */
3265
+ getMyFavorites(params?: FavoriteQuery, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3266
+ /**
3267
+ * Get user's favorites
3268
+ *
3269
+ * Retrieves a user's favorites.
3270
+ * This is a public endpoint - no authentication required.
3271
+ *
3272
+ * @param userId - The ID of the user whose favorites to retrieve
3273
+ * @param params - Query parameters for filtering and pagination
3274
+ * @param options - Optional request options
3275
+ * @returns Promise resolving to list of favorites
3276
+ */
3277
+ getUserFavorites(userId: number, params?: FavoriteQuery, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3278
+ /**
3279
+ * Get user's favorite agents with details
3280
+ *
3281
+ * Retrieves a user's favorite agents with full details.
3282
+ * This is a public endpoint - no authentication required.
3283
+ *
3284
+ * @param userId - The ID of the user whose favorite agents to retrieve
3285
+ * @param params - Pagination parameters
3286
+ * @param options - Optional request options
3287
+ * @returns Promise resolving to list of favorite agents
3288
+ */
3289
+ getUserFavoriteAgents(userId: number, params?: Pick<FavoriteQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3290
+ /**
3291
+ * Get user's favorite plugins with details
3292
+ *
3293
+ * Retrieves a user's favorite plugins with full details.
3294
+ * This is a public endpoint - no authentication required.
3295
+ *
3296
+ * @param userId - The ID of the user whose favorite plugins to retrieve
3297
+ * @param params - Pagination parameters
3298
+ * @param options - Optional request options
3299
+ * @returns Promise resolving to list of favorite plugins
3300
+ */
3301
+ getUserFavoritePlugins(userId: number, params?: Pick<FavoriteQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<FavoriteListResponse>;
3302
+ }
3303
+
3304
+ /**
3305
+ * User Like Service
3306
+ *
3307
+ * Provides access to user like functionality in the LobeHub Marketplace.
3308
+ * This service handles liking/unliking content and retrieving like lists.
3309
+ */
3310
+ declare class UserLikeService extends BaseSDK {
3311
+ /**
3312
+ * Like content
3313
+ *
3314
+ * Likes an agent or plugin for the authenticated user.
3315
+ * Requires authentication.
3316
+ *
3317
+ * @param targetType - The type of target ('agent' or 'plugin')
3318
+ * @param targetId - The ID of the target agent/plugin
3319
+ * @param options - Optional request options
3320
+ * @returns Promise resolving to success response
3321
+ * @throws Error if already liked
3322
+ */
3323
+ like(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3324
+ /**
3325
+ * Unlike content
3326
+ *
3327
+ * Unlikes an agent or plugin for the authenticated user.
3328
+ * Requires authentication.
3329
+ *
3330
+ * @param targetType - The type of target ('agent' or 'plugin')
3331
+ * @param targetId - The ID of the target agent/plugin
3332
+ * @param options - Optional request options
3333
+ * @returns Promise resolving to success response
3334
+ * @throws Error if like not found
3335
+ */
3336
+ unlike(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<SuccessResponse>;
3337
+ /**
3338
+ * Toggle like status
3339
+ *
3340
+ * Toggles the like status - likes if not liked, unlikes if already liked.
3341
+ * Requires authentication.
3342
+ *
3343
+ * @param targetType - The type of target ('agent' or 'plugin')
3344
+ * @param targetId - The ID of the target agent/plugin
3345
+ * @param options - Optional request options
3346
+ * @returns Promise resolving to toggle response with new like status
3347
+ */
3348
+ toggleLike(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<ToggleLikeResponse>;
3349
+ /**
3350
+ * Check like status
3351
+ *
3352
+ * Checks if the authenticated user has liked a specific agent or plugin.
3353
+ * Requires authentication.
3354
+ *
3355
+ * @param targetType - The type of target ('agent' or 'plugin')
3356
+ * @param targetId - The ID of the target agent/plugin
3357
+ * @param options - Optional request options
3358
+ * @returns Promise resolving to like status
3359
+ */
3360
+ checkLike(targetType: InteractionTargetType, targetId: number, options?: globalThis.RequestInit): Promise<CheckLikeResponse>;
3361
+ /**
3362
+ * Get my likes
3363
+ *
3364
+ * Retrieves the authenticated user's likes.
3365
+ * Requires authentication.
3366
+ *
3367
+ * @param params - Query parameters for filtering and pagination
3368
+ * @param options - Optional request options
3369
+ * @returns Promise resolving to list of likes
3370
+ */
3371
+ getMyLikes(params?: LikeQuery, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3372
+ /**
3373
+ * Get user's likes
3374
+ *
3375
+ * Retrieves a user's likes.
3376
+ * This is a public endpoint - no authentication required.
3377
+ *
3378
+ * @param userId - The ID of the user whose likes to retrieve
3379
+ * @param params - Query parameters for filtering and pagination
3380
+ * @param options - Optional request options
3381
+ * @returns Promise resolving to list of likes
3382
+ */
3383
+ getUserLikes(userId: number, params?: LikeQuery, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3384
+ /**
3385
+ * Get user's liked agents with details
3386
+ *
3387
+ * Retrieves a user's liked agents with full details.
3388
+ * This is a public endpoint - no authentication required.
3389
+ *
3390
+ * @param userId - The ID of the user whose liked agents to retrieve
3391
+ * @param params - Pagination parameters
3392
+ * @param options - Optional request options
3393
+ * @returns Promise resolving to list of liked agents
3394
+ */
3395
+ getUserLikedAgents(userId: number, params?: Pick<LikeQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3396
+ /**
3397
+ * Get user's liked plugins with details
3398
+ *
3399
+ * Retrieves a user's liked plugins with full details.
3400
+ * This is a public endpoint - no authentication required.
3401
+ *
3402
+ * @param userId - The ID of the user whose liked plugins to retrieve
3403
+ * @param params - Pagination parameters
3404
+ * @param options - Optional request options
3405
+ * @returns Promise resolving to list of liked plugins
3406
+ */
3407
+ getUserLikedPlugins(userId: number, params?: Pick<LikeQuery, 'limit' | 'offset'>, options?: globalThis.RequestInit): Promise<LikeListResponse>;
3408
+ }
3409
+
2948
3410
  /**
2949
3411
  * LobeHub Market SDK Client
2950
3412
  *
@@ -2974,6 +3436,21 @@ declare class MarketSDK extends BaseSDK {
2974
3436
  * Provides methods to retrieve user profiles and their published agents
2975
3437
  */
2976
3438
  readonly user: UserService;
3439
+ /**
3440
+ * User follow service for follow operations
3441
+ * Provides methods to follow/unfollow users and retrieve follow relationships
3442
+ */
3443
+ readonly follows: UserFollowService;
3444
+ /**
3445
+ * User favorite service for favorite operations
3446
+ * Provides methods to add/remove favorites and retrieve favorite lists
3447
+ */
3448
+ readonly favorites: UserFavoriteService;
3449
+ /**
3450
+ * User like service for like operations
3451
+ * Provides methods to like/unlike content and retrieve like lists
3452
+ */
3453
+ readonly likes: UserLikeService;
2977
3454
  /**
2978
3455
  * Discovery service for retrieving API service information
2979
3456
  * Used to get information about available endpoints and services
@@ -3009,4 +3486,4 @@ declare class MarketSDK extends BaseSDK {
3009
3486
  registerClient(request: ClientRegistrationRequest): Promise<ClientRegistrationResponse>;
3010
3487
  }
3011
3488
 
3012
- 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 ExecuteCodeParams, type ExportFileParams, 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 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 UnclaimedPluginItem, type UpdateUserInfoRequest, type UpdateUserInfoResponse, type UserAgentItem, type UserInfoQuery, type UserInfoResponse, type UserProfile, VisibilityEnumSchema, type WriteLocalFileParams };
3489
+ 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 };