@lobehub/market-sdk 0.34.0-beta.1 → 0.34.0-beta.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 +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3831,6 +3831,8 @@ interface FollowListItem {
|
|
|
3831
3831
|
interface FollowListResponse {
|
|
3832
3832
|
/** List of users */
|
|
3833
3833
|
data: FollowListItem[];
|
|
3834
|
+
/** Total number of users in the full list (not just the current page) */
|
|
3835
|
+
totalCount: number;
|
|
3834
3836
|
}
|
|
3835
3837
|
/**
|
|
3836
3838
|
* Target Type for favorites and likes
|
|
@@ -5338,6 +5340,8 @@ interface AdminOrganizationItem {
|
|
|
5338
5340
|
source: AdminOrganizationSource;
|
|
5339
5341
|
updatedAt: string | null;
|
|
5340
5342
|
websiteUrl: string | null;
|
|
5343
|
+
/** Associated cloud workspace id, derived from clerkId for workspace-source orgs */
|
|
5344
|
+
workspaceId: string | null;
|
|
5341
5345
|
}
|
|
5342
5346
|
/**
|
|
5343
5347
|
* Organization member in admin context
|
|
@@ -5354,9 +5358,10 @@ interface AdminOrganizationMember {
|
|
|
5354
5358
|
/**
|
|
5355
5359
|
* Organization detail in admin context (profile + members + published content)
|
|
5356
5360
|
*/
|
|
5357
|
-
interface AdminOrganizationDetail extends AdminOrganizationItem {
|
|
5361
|
+
interface AdminOrganizationDetail extends Omit<AdminOrganizationItem, 'memberCount' | 'workspaceId'> {
|
|
5358
5362
|
agentGroups?: unknown[];
|
|
5359
5363
|
agents?: unknown[];
|
|
5364
|
+
clerkId?: string | null;
|
|
5360
5365
|
members: AdminOrganizationMember[];
|
|
5361
5366
|
plugins?: unknown[];
|
|
5362
5367
|
skills?: unknown[];
|