@lobehub/market-sdk 0.34.0-beta.1 → 0.34.0-beta.4

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
@@ -1159,6 +1159,7 @@ interface AgentGroupDetail {
1159
1159
  author?: {
1160
1160
  avatar?: string;
1161
1161
  name?: string;
1162
+ type?: string;
1162
1163
  userName?: string;
1163
1164
  };
1164
1165
  group: {
@@ -3831,6 +3832,8 @@ interface FollowListItem {
3831
3832
  interface FollowListResponse {
3832
3833
  /** List of users */
3833
3834
  data: FollowListItem[];
3835
+ /** Total number of users in the full list (not just the current page) */
3836
+ totalCount: number;
3834
3837
  }
3835
3838
  /**
3836
3839
  * Target Type for favorites and likes
@@ -5338,6 +5341,8 @@ interface AdminOrganizationItem {
5338
5341
  source: AdminOrganizationSource;
5339
5342
  updatedAt: string | null;
5340
5343
  websiteUrl: string | null;
5344
+ /** Associated cloud workspace id, derived from clerkId for workspace-source orgs */
5345
+ workspaceId: string | null;
5341
5346
  }
5342
5347
  /**
5343
5348
  * Organization member in admin context
@@ -5354,9 +5359,10 @@ interface AdminOrganizationMember {
5354
5359
  /**
5355
5360
  * Organization detail in admin context (profile + members + published content)
5356
5361
  */
5357
- interface AdminOrganizationDetail extends AdminOrganizationItem {
5362
+ interface AdminOrganizationDetail extends Omit<AdminOrganizationItem, 'memberCount' | 'workspaceId'> {
5358
5363
  agentGroups?: unknown[];
5359
5364
  agents?: unknown[];
5365
+ clerkId?: string | null;
5360
5366
  members: AdminOrganizationMember[];
5361
5367
  plugins?: unknown[];
5362
5368
  skills?: unknown[];