@lobehub/market-sdk 0.31.9 → 0.31.11-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
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
- import { AgentItem, MarketItemBase, PluginConnectionType, InstallFailureAnalysisQuery, InstallFailureAnalysis, RangeQuery, RangeStats, TopPluginsQuery, TopPlugin, PluginManifest, AdminPluginItem, AdminPluginItemDetail, PluginVersion, PluginVersionLocalization, AdminDeploymentOption, InstallationDetails, SystemDependency, IncompleteI18nPlugin, AgentEventRequest, CategoryListQuery, CategoryItem, PluginItemDetail, InstallReportRequest, InstallReportResponse, CallReportRequest, CallReportResponse, PluginEventRequest, CloudGatewayRequest, CloudGatewayResponse } from '@lobehub/market-types';
2
+ import { AgentItem, UserCredSummary, MarketItemBase, PluginConnectionType, InstallFailureAnalysisQuery, InstallFailureAnalysis, RangeQuery, RangeStats, TopPluginsQuery, TopPlugin, PluginManifest, AdminPluginItem, AdminPluginItemDetail, PluginVersion, PluginVersionLocalization, AdminDeploymentOption, InstallationDetails, SystemDependency, IncompleteI18nPlugin, BatchUpsertSkillCollectionLocalizationsRequest, SkillCollectionLocalizationBatchResponse, SkillCollectionLocalization, UpsertSkillCollectionLocalizationRequest, AgentEventRequest, SkillCredStatus, InjectCredsRequest, InjectCredsResponse, CategoryListQuery, CategoryItem, PluginItemDetail, InstallReportRequest, InstallReportResponse, CallReportRequest, CallReportResponse, PluginEventRequest, CloudGatewayRequest, CloudGatewayResponse } from '@lobehub/market-types';
3
3
  export * from '@lobehub/market-types';
4
- export { CategoryItem, CategoryListQuery, CategoryListResponse } from '@lobehub/market-types';
4
+ export { CategoryItem, CategoryListQuery, CategoryListResponse, CredType, InjectCredsRequest, InjectCredsResponse, SkillCredStatus, UserCredSummary } from '@lobehub/market-types';
5
5
  import { JSONSchema7 } from 'json-schema';
6
6
 
7
7
  /**
@@ -1602,6 +1602,93 @@ interface SharedTokenState {
1602
1602
  tokenPromise?: Promise<string>;
1603
1603
  }
1604
1604
 
1605
+ /**
1606
+ * Creds SDK Types
1607
+ *
1608
+ * Type definitions for user credential management operations.
1609
+ */
1610
+
1611
+ /**
1612
+ * Request for creating a KV credential (kv-env or kv-header)
1613
+ */
1614
+ interface CreateKVCredRequest {
1615
+ /** Optional description of the credential */
1616
+ description?: string;
1617
+ /** Unique key identifying this credential */
1618
+ key: string;
1619
+ /** Display name for the credential */
1620
+ name: string;
1621
+ /** Credential type: 'kv-env' or 'kv-header' */
1622
+ type: 'kv-env' | 'kv-header';
1623
+ /** Key-value pairs to store */
1624
+ values: Record<string, string>;
1625
+ }
1626
+ /**
1627
+ * Request for creating an OAuth credential
1628
+ */
1629
+ interface CreateOAuthCredRequest {
1630
+ /** Optional description of the credential */
1631
+ description?: string;
1632
+ /** Unique key identifying this credential */
1633
+ key: string;
1634
+ /** Display name for the credential */
1635
+ name: string;
1636
+ /** ID of the existing OAuth connection to link */
1637
+ oauthConnectionId: number;
1638
+ }
1639
+ /**
1640
+ * Request for creating a file credential
1641
+ */
1642
+ interface CreateFileCredRequest {
1643
+ /** Optional description of the credential */
1644
+ description?: string;
1645
+ /** Hash ID of the uploaded file */
1646
+ fileHashId: string;
1647
+ /** Original file name */
1648
+ fileName: string;
1649
+ /** Unique key identifying this credential */
1650
+ key: string;
1651
+ /** Display name for the credential */
1652
+ name: string;
1653
+ }
1654
+ /**
1655
+ * Request for updating a credential
1656
+ */
1657
+ interface UpdateCredRequest {
1658
+ /** Updated description */
1659
+ description?: string;
1660
+ /** Updated display name */
1661
+ name?: string;
1662
+ /** Updated key-value pairs (KV types only) */
1663
+ values?: Record<string, string>;
1664
+ }
1665
+ /**
1666
+ * Options for getting a credential
1667
+ */
1668
+ interface GetCredOptions {
1669
+ /** Set to true to include decrypted plaintext values (KV types only) */
1670
+ decrypt?: boolean;
1671
+ }
1672
+ /**
1673
+ * Response containing a list of credentials
1674
+ */
1675
+ interface ListCredsResponse {
1676
+ data: UserCredSummary[];
1677
+ }
1678
+ /**
1679
+ * Response for successful deletion
1680
+ */
1681
+ interface DeleteCredResponse {
1682
+ success: boolean;
1683
+ }
1684
+ /**
1685
+ * Extended credential summary with optional plaintext values
1686
+ */
1687
+ interface CredWithPlaintext extends UserCredSummary {
1688
+ /** Decrypted plaintext values (KV types only, when decrypt=true) */
1689
+ plaintext?: Record<string, string>;
1690
+ }
1691
+
1605
1692
  interface ClientRegistrationRequest {
1606
1693
  /** Client name (required) */
1607
1694
  clientName: string;
@@ -2612,7 +2699,7 @@ interface MarketSkillListQuery {
2612
2699
  */
2613
2700
  isOfficial?: 'false' | 'true';
2614
2701
  /**
2615
- * Locale for localized content (e.g., 'en-US', 'zh-CN')
2702
+ * Locale for localized content such as description and summary; title remains canonical
2616
2703
  */
2617
2704
  locale?: string;
2618
2705
  /**
@@ -2645,7 +2732,7 @@ interface MarketSkillListQuery {
2645
2732
  */
2646
2733
  interface MarketSkillDetailQuery {
2647
2734
  /**
2648
- * Locale for localized content
2735
+ * Locale for localized content such as description and summary; title remains canonical
2649
2736
  */
2650
2737
  locale?: string;
2651
2738
  /**
@@ -2781,7 +2868,7 @@ interface MarketSkillListItem {
2781
2868
  */
2782
2869
  logo?: string;
2783
2870
  /**
2784
- * Skill display name
2871
+ * Canonical skill title from the current version; locale does not affect this field
2785
2872
  */
2786
2873
  name: string;
2787
2874
  /**
@@ -3015,7 +3102,7 @@ interface MarketSkillDetail {
3015
3102
  */
3016
3103
  manifest: MarketSkillManifest;
3017
3104
  /**
3018
- * Skill display name
3105
+ * Canonical skill title from the current version; locale does not affect this field
3019
3106
  */
3020
3107
  name: string;
3021
3108
  /**
@@ -3275,8 +3362,7 @@ interface SkillRatingDistribution {
3275
3362
  totalCount: number;
3276
3363
  }
3277
3364
 
3278
- type MarketSkillCollectionItemSort = 'createdAt' | 'installCount' | 'name' | 'position' | 'ratingAverage' | 'updatedAt';
3279
- type MarketSkillCollectionMatchType = 'manual' | 'repository';
3365
+ type MarketSkillCollectionItemSort = 'createdAt' | 'installCount' | 'name' | 'ratingAverage' | 'updatedAt';
3280
3366
  interface MarketSkillCollectionListQuery {
3281
3367
  locale?: string;
3282
3368
  }
@@ -3286,9 +3372,7 @@ interface MarketSkillCollectionListItem {
3286
3372
  icon: string;
3287
3373
  id: number;
3288
3374
  itemCount: number;
3289
- matchType: MarketSkillCollectionMatchType;
3290
3375
  position: number;
3291
- repository?: string;
3292
3376
  slug: string;
3293
3377
  title: string;
3294
3378
  updatedAt: string;
@@ -4907,6 +4991,17 @@ declare class ReviewService extends BaseSDK {
4907
4991
  }>;
4908
4992
  }
4909
4993
 
4994
+ declare class SkillCollectionService extends BaseSDK {
4995
+ batchUpsertLocalizations(collectionId: number, data: BatchUpsertSkillCollectionLocalizationsRequest): Promise<SkillCollectionLocalizationBatchResponse>;
4996
+ deleteLocalization(collectionId: number, locale: string): Promise<{
4997
+ message: string;
4998
+ success: boolean;
4999
+ }>;
5000
+ getLocalization(collectionId: number, locale: string): Promise<SkillCollectionLocalization>;
5001
+ getLocalizations(collectionId: number): Promise<SkillCollectionLocalization[]>;
5002
+ upsertLocalization(collectionId: number, locale: string, data: UpsertSkillCollectionLocalizationRequest): Promise<SkillCollectionLocalization>;
5003
+ }
5004
+
4910
5005
  type AdminPluginEnvListQuery = any;
4911
5006
  type PluginEnv = any;
4912
5007
  interface AdminPluginEnvCreateParams {
@@ -5011,6 +5106,11 @@ declare class MarketAdmin extends BaseSDK {
5011
5106
  * Provides methods for configuring marketplace settings
5012
5107
  */
5013
5108
  readonly settings: SettingsService;
5109
+ /**
5110
+ * Skill collection management service
5111
+ * Provides methods for managing curated skill collection localizations
5112
+ */
5113
+ readonly skillCollections: SkillCollectionService;
5014
5114
  /**
5015
5115
  * System dependency management service
5016
5116
  * Provides methods for managing system dependencies required by plugins
@@ -5778,6 +5878,182 @@ declare class ConnectService extends BaseSDK {
5778
5878
  revoke(provider: string, options?: globalThis.RequestInit): Promise<RevokeConnectionResponse>;
5779
5879
  }
5780
5880
 
5881
+ /**
5882
+ * Cred Service
5883
+ *
5884
+ * Provides user credential management functionality.
5885
+ * This service allows:
5886
+ * - Creating KV, OAuth, and file credentials
5887
+ * - Listing and retrieving credentials
5888
+ * - Updating and deleting credentials
5889
+ * - Checking credential status for skills
5890
+ * - Injecting credentials into sandbox environments
5891
+ *
5892
+ * @example
5893
+ * ```typescript
5894
+ * const sdk = new MarketSDK({ accessToken: 'user-token' });
5895
+ *
5896
+ * // Create a KV credential
5897
+ * const cred = await sdk.creds.createKV({
5898
+ * key: 'openai',
5899
+ * name: 'OpenAI API Key',
5900
+ * type: 'kv-env',
5901
+ * values: { OPENAI_API_KEY: 'sk-xxx' }
5902
+ * });
5903
+ *
5904
+ * // List all credentials
5905
+ * const { data } = await sdk.creds.list();
5906
+ *
5907
+ * // Inject credentials for a skill
5908
+ * const result = await sdk.creds.inject({
5909
+ * skillIdentifier: 'my-skill',
5910
+ * sandbox: true
5911
+ * });
5912
+ * ```
5913
+ */
5914
+ declare class CredService extends BaseSDK {
5915
+ /**
5916
+ * Lists all credentials for the authenticated user
5917
+ *
5918
+ * Returns credential summaries with masked values.
5919
+ * Requires authentication.
5920
+ *
5921
+ * @param options - Optional request options
5922
+ * @returns Promise resolving to the list of credentials
5923
+ */
5924
+ list(options?: globalThis.RequestInit): Promise<ListCredsResponse>;
5925
+ /**
5926
+ * Gets a specific credential by ID
5927
+ *
5928
+ * Optionally returns decrypted plaintext values for KV types.
5929
+ * Requires authentication.
5930
+ *
5931
+ * @param id - The credential ID
5932
+ * @param getOptions - Options for getting the credential
5933
+ * @param options - Optional request options
5934
+ * @returns Promise resolving to the credential details
5935
+ */
5936
+ get(id: number, getOptions?: GetCredOptions, options?: globalThis.RequestInit): Promise<CredWithPlaintext>;
5937
+ /**
5938
+ * Creates a new KV credential (kv-env or kv-header)
5939
+ *
5940
+ * Use `kv-env` for environment variables (supported in sandbox).
5941
+ * Use `kv-header` for HTTP headers (not supported in sandbox).
5942
+ *
5943
+ * Requires authentication.
5944
+ *
5945
+ * @param data - The credential data to create
5946
+ * @param options - Optional request options
5947
+ * @returns Promise resolving to the created credential
5948
+ */
5949
+ createKV(data: CreateKVCredRequest, options?: globalThis.RequestInit): Promise<UserCredSummary>;
5950
+ /**
5951
+ * Creates a new OAuth credential by linking to an existing OAuth connection
5952
+ *
5953
+ * The OAuth connection must already exist (use ConnectService to establish connections).
5954
+ * Requires authentication.
5955
+ *
5956
+ * @param data - The credential data to create
5957
+ * @param options - Optional request options
5958
+ * @returns Promise resolving to the created credential
5959
+ */
5960
+ createOAuth(data: CreateOAuthCredRequest, options?: globalThis.RequestInit): Promise<UserCredSummary>;
5961
+ /**
5962
+ * Creates a new file credential
5963
+ *
5964
+ * The file must be uploaded first and the fileHashId obtained.
5965
+ * Requires authentication.
5966
+ *
5967
+ * @param data - The credential data to create
5968
+ * @param options - Optional request options
5969
+ * @returns Promise resolving to the created credential
5970
+ */
5971
+ createFile(data: CreateFileCredRequest, options?: globalThis.RequestInit): Promise<UserCredSummary>;
5972
+ /**
5973
+ * Updates an existing credential
5974
+ *
5975
+ * Can update name, description, and values (for KV types).
5976
+ * Requires authentication.
5977
+ *
5978
+ * @param id - The credential ID to update
5979
+ * @param data - The data to update
5980
+ * @param options - Optional request options
5981
+ * @returns Promise resolving to the updated credential
5982
+ */
5983
+ update(id: number, data: UpdateCredRequest, options?: globalThis.RequestInit): Promise<UserCredSummary>;
5984
+ /**
5985
+ * Deletes a credential by ID
5986
+ *
5987
+ * Requires authentication.
5988
+ *
5989
+ * @param id - The credential ID to delete
5990
+ * @param options - Optional request options
5991
+ * @returns Promise resolving to the delete result
5992
+ */
5993
+ delete(id: number, options?: globalThis.RequestInit): Promise<DeleteCredResponse>;
5994
+ /**
5995
+ * Deletes a credential by key
5996
+ *
5997
+ * Useful when you know the credential key but not the ID.
5998
+ * Requires authentication.
5999
+ *
6000
+ * @param key - The credential key to delete
6001
+ * @param options - Optional request options
6002
+ * @returns Promise resolving to the delete result
6003
+ */
6004
+ deleteByKey(key: string, options?: globalThis.RequestInit): Promise<DeleteCredResponse>;
6005
+ /**
6006
+ * Gets the credential status for a skill
6007
+ *
6008
+ * Returns which credentials are required by the skill and
6009
+ * whether the user has provided them.
6010
+ *
6011
+ * Requires authentication.
6012
+ *
6013
+ * @param skillIdentifier - The skill identifier
6014
+ * @param options - Optional request options
6015
+ * @returns Promise resolving to the credential status list
6016
+ */
6017
+ getSkillCredStatus(skillIdentifier: string, options?: globalThis.RequestInit): Promise<SkillCredStatus[]>;
6018
+ /**
6019
+ * Injects credentials for a skill into a sandbox environment
6020
+ *
6021
+ * Returns decrypted credentials that can be used to set environment
6022
+ * variables and write files in the sandbox.
6023
+ *
6024
+ * Note: `kv-header` type credentials are not supported in sandbox mode.
6025
+ *
6026
+ * Requires authentication.
6027
+ *
6028
+ * @param request - The injection request
6029
+ * @param options - Optional request options
6030
+ * @returns Promise resolving to the injection result
6031
+ *
6032
+ * @example
6033
+ * ```typescript
6034
+ * const result = await sdk.creds.inject({
6035
+ * skillIdentifier: 'my-skill',
6036
+ * sandbox: true
6037
+ * });
6038
+ *
6039
+ * if (result.success) {
6040
+ * // Set environment variables
6041
+ * for (const [key, value] of Object.entries(result.credentials.env)) {
6042
+ * process.env[key] = value;
6043
+ * }
6044
+ *
6045
+ * // Write files
6046
+ * for (const file of result.credentials.files) {
6047
+ * fs.writeFileSync(file.fileName, Buffer.from(file.content, 'base64'));
6048
+ * }
6049
+ * } else {
6050
+ * console.log('Missing credentials:', result.missing);
6051
+ * }
6052
+ * ```
6053
+ */
6054
+ inject(request: InjectCredsRequest, options?: globalThis.RequestInit): Promise<InjectCredsResponse>;
6055
+ }
6056
+
5781
6057
  /**
5782
6058
  * Feedback Service
5783
6059
  *
@@ -6285,7 +6561,8 @@ declare class MarketSkillService extends BaseSDK {
6285
6561
  * Retrieves a list of skills from the marketplace
6286
6562
  *
6287
6563
  * Supports filtering, pagination, search, and various sorting options
6288
- * including GitHub stats (stars, forks, watchers).
6564
+ * including GitHub stats (stars, forks, watchers). Locale localizes
6565
+ * descriptions and summaries, but the returned skill name stays canonical.
6289
6566
  *
6290
6567
  * @param params - Query parameters for filtering and pagination
6291
6568
  * @param options - Optional request options
@@ -6312,7 +6589,8 @@ declare class MarketSkillService extends BaseSDK {
6312
6589
  * Retrieves detailed information about a specific skill
6313
6590
  *
6314
6591
  * Returns complete skill information including manifest, content,
6315
- * resources, and version history.
6592
+ * resources, and version history. Locale localizes descriptions and
6593
+ * summaries, but the returned skill name stays canonical.
6316
6594
  *
6317
6595
  * @param identifier - Unique skill identifier (e.g., 'github.owner.repo.path')
6318
6596
  * @param params - Query parameters for locale and version
@@ -6952,6 +7230,11 @@ declare class MarketSDK extends BaseSDK {
6952
7230
  * Provides methods to list providers, initiate OAuth flows, and manage connections
6953
7231
  */
6954
7232
  readonly connect: ConnectService;
7233
+ /**
7234
+ * Creds service for user credential management
7235
+ * Provides methods to create, list, update, delete credentials, and inject into sandboxes
7236
+ */
7237
+ readonly creds: CredService;
6955
7238
  /**
6956
7239
  * Plugins service for accessing plugin-related functionality
6957
7240
  * Provides methods to list, search, retrieve plugin information, and report installation attempts
@@ -7139,4 +7422,4 @@ declare function buildTrustedClientPayload(params: {
7139
7422
  userId: string;
7140
7423
  }): TrustedClientPayload;
7141
7424
 
7142
- export { type AccountMeta, type AdminListQueryParams, type AdminListResponse, type AdminPluginParams, type AgentCreateRequest, type AgentCreateResponse, type AgentDetailQuery, type AgentExtension, type AgentForkItem, type AgentForkRequest, type AgentForkResponse, type AgentForkSourceResponse, type AgentForksResponse, type AgentGroupCreateRequest, type AgentGroupCreateResponse, type AgentGroupDetail, type AgentGroupDetailQuery, type AgentGroupForkItem, type AgentGroupForkRequest, type AgentGroupForkResponse, type AgentGroupForkSourceResponse, type AgentGroupForksResponse, type AgentGroupItem, type AgentGroupListQuery, type AgentGroupListResponse, type AgentGroupModifyRequest, type AgentGroupModifyResponse, type AgentGroupStatus, type AgentGroupStatusChangeResponse, type AgentGroupVersionCreateRequest, type AgentGroupVersionCreateResponse, type AgentInstallCountRequest, type AgentInstallCountResponse, type AgentInterface, type AgentItemDetail, type AgentListQuery, type AgentListResponse, type AgentModifyRequest, type AgentModifyResponse, type AgentProfileEntity, type AgentProfileResponse, 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 AuthorizeParams, type AuthorizeResponse, type CallSkillToolResponse, type CheckFavoriteQuery, type CheckFavoriteResponse, type CheckFollowQuery, type CheckFollowResponse, type CheckLikeQuery, type CheckLikeResponse, type ClientRegistrationError, type ClientRegistrationRequest, type ClientRegistrationResponse, type CodeInterpreterToolName, type CodeInterpreterToolParams, type ConnectProvider, type ConnectProviderDetail, type ConnectProviderScopes, type ConnectionHealth, type ConnectionStats, type CreateMemberAgent, type DiscoveryDocument, type EditLocalFileParams, type ExecuteCodeParams, type ExportFileParams, type FavoriteListResponse, type FavoriteQuery, type FavoriteRequest, type FeedbackClientInfo, type FollowListItem, type FollowListResponse, type FollowRequest, type GetAllConnectionsHealthResponse, type GetAuthorizeUrlParams, type GetCommandOutputParams, type GetConnectProviderResponse, type GetConnectionHealthResponse, type GetConnectionStatsResponse, type GetConnectionStatusResponse, type GetSkillStatusResponse, type GetSkillToolResponse, type GlobLocalFilesParams, type GrepContentParams, type InteractionTargetType, type KillCommandParams, type LikeListResponse, type LikeQuery, type LikeRequest, type ListConnectProvidersResponse, type ListConnectionsResponse, type ListLocalFilesParams, type ListSkillProvidersResponse, type ListSkillToolsResponse, MarketAPIError, MarketAdmin, type MarketReportGitHubSkillParams, type MarketReportGitHubSkillResponse, type MarketReportSkillInstallParams, type MarketReportSkillInstallResponse, MarketSDK, type MarketSDKOptions, type MarketSkillAuthor, type MarketSkillCategory, type MarketSkillCategoryQuery, type MarketSkillCollectionDetail, type MarketSkillCollectionDetailQuery, type MarketSkillCollectionItemSort, type MarketSkillCollectionListItem, type MarketSkillCollectionListQuery, type MarketSkillCollectionListResponse, type MarketSkillCollectionMatchType, type MarketSkillDetail, type MarketSkillDetailQuery, type MarketSkillGitHubMeta, type MarketSkillListItem, type MarketSkillListQuery, type MarketSkillListResponse, type MarketSkillManifest, type MarketSkillResource, type MarketSkillVersionSummary, type MarketSkillVersionsResponse, type MemberAgent, type MoveLocalFilesParams, type MoveOperation, type OAuthConnection, type OAuthTokenResponse, type OwnAgentGroupListQuery, type OwnAgentListQuery, type PaginationQuery, type PluginCommentAuthor, type PluginCommentCreateItem, type PluginCommentCreateResponse, type PluginCommentDeleteResponse, type PluginCommentItem, type PluginCommentListQuery, type PluginCommentListResponse, type PluginCommentRating, type PluginCommentReactionResponse, type PluginI18nImportParams, type PluginI18nImportResponse, type PluginItem, type PluginLatestOwnComment, type PluginListResponse, type PluginLocalization, type PluginQueryParams, type PluginRatingDistribution, type PluginUpdateParams, type PluginVersionCreateParams, type PluginVersionUpdateParams, type ProgrammingLanguage, type ReadLocalFileParams, type RefreshConnectionResponse, type RefreshTokenRequest, type RegisterUserRequest, type RegisterUserResponse, type RegisteredUserProfile, type RenameLocalFileParams, type ReviewStatus, ReviewStatusEnumSchema, type RevokeConnectionResponse, type RunBuildInToolsError, type RunBuildInToolsRequest, type RunBuildInToolsResponse, type RunBuildInToolsSuccessData, type RunCommandParams, SDK_USER_AGENT, SDK_VERSION, type SearchLocalFilesParams, type SharedTokenState, type SkillCallParams, type SkillCommentAuthor, type SkillCommentCreateItem, type SkillCommentCreateResponse, type SkillCommentDeleteResponse, type SkillCommentItem, type SkillCommentListItem, type SkillCommentListQuery, type SkillCommentListResponse, type SkillCommentRating, type SkillErrorResponse, type SkillLatestOwnComment, type SkillProviderInfo, type SkillProviderStatus, type SkillRatingDistribution, type SkillTool, StatusEnumSchema, type SubmitFeedbackRequest, type SubmitFeedbackResponse, type SuccessResponse, type ToggleLikeResponse, type TrustedClientPayload, type UnclaimedPluginItem, type UpdateAgentProfileRequest, type UpdateAgentProfileResponse, type UpdateMemberAgent, type UpdateUserInfoRequest, type UpdateUserInfoResponse, type UserAgentGroupItem, type UserAgentItem, type UserInfoQuery, type UserInfoResponse, type UserProfile, VisibilityEnumSchema, type WriteLocalFileParams, buildTrustedClientPayload, createTrustedClientToken, generateNonce };
7425
+ export { type AccountMeta, type AdminListQueryParams, type AdminListResponse, type AdminPluginParams, type AgentCreateRequest, type AgentCreateResponse, type AgentDetailQuery, type AgentExtension, type AgentForkItem, type AgentForkRequest, type AgentForkResponse, type AgentForkSourceResponse, type AgentForksResponse, type AgentGroupCreateRequest, type AgentGroupCreateResponse, type AgentGroupDetail, type AgentGroupDetailQuery, type AgentGroupForkItem, type AgentGroupForkRequest, type AgentGroupForkResponse, type AgentGroupForkSourceResponse, type AgentGroupForksResponse, type AgentGroupItem, type AgentGroupListQuery, type AgentGroupListResponse, type AgentGroupModifyRequest, type AgentGroupModifyResponse, type AgentGroupStatus, type AgentGroupStatusChangeResponse, type AgentGroupVersionCreateRequest, type AgentGroupVersionCreateResponse, type AgentInstallCountRequest, type AgentInstallCountResponse, type AgentInterface, type AgentItemDetail, type AgentListQuery, type AgentListResponse, type AgentModifyRequest, type AgentModifyResponse, type AgentProfileEntity, type AgentProfileResponse, 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 AuthorizeParams, type AuthorizeResponse, type CallSkillToolResponse, type CheckFavoriteQuery, type CheckFavoriteResponse, type CheckFollowQuery, type CheckFollowResponse, type CheckLikeQuery, type CheckLikeResponse, type ClientRegistrationError, type ClientRegistrationRequest, type ClientRegistrationResponse, type CodeInterpreterToolName, type CodeInterpreterToolParams, type ConnectProvider, type ConnectProviderDetail, type ConnectProviderScopes, type ConnectionHealth, type ConnectionStats, type CreateFileCredRequest, type CreateKVCredRequest, type CreateMemberAgent, type CreateOAuthCredRequest, type CredWithPlaintext, type DeleteCredResponse, type DiscoveryDocument, type EditLocalFileParams, type ExecuteCodeParams, type ExportFileParams, type FavoriteListResponse, type FavoriteQuery, type FavoriteRequest, type FeedbackClientInfo, type FollowListItem, type FollowListResponse, type FollowRequest, type GetAllConnectionsHealthResponse, type GetAuthorizeUrlParams, type GetCommandOutputParams, type GetConnectProviderResponse, type GetConnectionHealthResponse, type GetConnectionStatsResponse, type GetConnectionStatusResponse, type GetCredOptions, type GetSkillStatusResponse, type GetSkillToolResponse, type GlobLocalFilesParams, type GrepContentParams, type InteractionTargetType, type KillCommandParams, type LikeListResponse, type LikeQuery, type LikeRequest, type ListConnectProvidersResponse, type ListConnectionsResponse, type ListCredsResponse, type ListLocalFilesParams, type ListSkillProvidersResponse, type ListSkillToolsResponse, MarketAPIError, MarketAdmin, type MarketReportGitHubSkillParams, type MarketReportGitHubSkillResponse, type MarketReportSkillInstallParams, type MarketReportSkillInstallResponse, MarketSDK, type MarketSDKOptions, type MarketSkillAuthor, type MarketSkillCategory, type MarketSkillCategoryQuery, type MarketSkillCollectionDetail, type MarketSkillCollectionDetailQuery, type MarketSkillCollectionItemSort, type MarketSkillCollectionListItem, type MarketSkillCollectionListQuery, type MarketSkillCollectionListResponse, type MarketSkillDetail, type MarketSkillDetailQuery, type MarketSkillGitHubMeta, type MarketSkillListItem, type MarketSkillListQuery, type MarketSkillListResponse, type MarketSkillManifest, type MarketSkillResource, type MarketSkillVersionSummary, type MarketSkillVersionsResponse, type MemberAgent, type MoveLocalFilesParams, type MoveOperation, type OAuthConnection, type OAuthTokenResponse, type OwnAgentGroupListQuery, type OwnAgentListQuery, type PaginationQuery, type PluginCommentAuthor, type PluginCommentCreateItem, type PluginCommentCreateResponse, type PluginCommentDeleteResponse, type PluginCommentItem, type PluginCommentListQuery, type PluginCommentListResponse, type PluginCommentRating, type PluginCommentReactionResponse, type PluginI18nImportParams, type PluginI18nImportResponse, type PluginItem, type PluginLatestOwnComment, type PluginListResponse, type PluginLocalization, type PluginQueryParams, type PluginRatingDistribution, type PluginUpdateParams, type PluginVersionCreateParams, type PluginVersionUpdateParams, type ProgrammingLanguage, type ReadLocalFileParams, type RefreshConnectionResponse, type RefreshTokenRequest, type RegisterUserRequest, type RegisterUserResponse, type RegisteredUserProfile, type RenameLocalFileParams, type ReviewStatus, ReviewStatusEnumSchema, type RevokeConnectionResponse, type RunBuildInToolsError, type RunBuildInToolsRequest, type RunBuildInToolsResponse, type RunBuildInToolsSuccessData, type RunCommandParams, SDK_USER_AGENT, SDK_VERSION, type SearchLocalFilesParams, type SharedTokenState, type SkillCallParams, type SkillCommentAuthor, type SkillCommentCreateItem, type SkillCommentCreateResponse, type SkillCommentDeleteResponse, type SkillCommentItem, type SkillCommentListItem, type SkillCommentListQuery, type SkillCommentListResponse, type SkillCommentRating, type SkillErrorResponse, type SkillLatestOwnComment, type SkillProviderInfo, type SkillProviderStatus, type SkillRatingDistribution, type SkillTool, StatusEnumSchema, type SubmitFeedbackRequest, type SubmitFeedbackResponse, type SuccessResponse, type ToggleLikeResponse, type TrustedClientPayload, type UnclaimedPluginItem, type UpdateAgentProfileRequest, type UpdateAgentProfileResponse, type UpdateCredRequest, type UpdateMemberAgent, type UpdateUserInfoRequest, type UpdateUserInfoResponse, type UserAgentGroupItem, type UserAgentItem, type UserInfoQuery, type UserInfoResponse, type UserProfile, VisibilityEnumSchema, type WriteLocalFileParams, buildTrustedClientPayload, createTrustedClientToken, generateNonce };