ugcinc 4.12.0 → 4.13.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/accounts.d.ts +2 -0
- package/dist/tools/accounts.js +1 -0
- package/package.json +1 -1
package/dist/accounts.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ export interface EditProfileInfo {
|
|
|
96
96
|
}
|
|
97
97
|
export interface GetAccountsParams {
|
|
98
98
|
tag?: string;
|
|
99
|
+
/** Platform filter: only accounts of this type are returned. */
|
|
100
|
+
type?: 'tiktok' | 'instagram';
|
|
99
101
|
org_group?: string;
|
|
100
102
|
user_group?: string;
|
|
101
103
|
status?: AccountStatus;
|
package/dist/tools/accounts.js
CHANGED
|
@@ -8,6 +8,7 @@ exports.accountTools = [
|
|
|
8
8
|
description: 'List accounts with optional filters. Returns all accounts if no filters provided.',
|
|
9
9
|
schema: zod_1.z.object({
|
|
10
10
|
tag: zod_1.z.string().optional().describe('Filter by tag'),
|
|
11
|
+
type: zod_1.z.enum(['tiktok', 'instagram']).optional().describe('Filter by platform'),
|
|
11
12
|
org_group: zod_1.z.string().optional().describe('Filter by org group'),
|
|
12
13
|
user_group: zod_1.z.string().optional().describe('Filter by user group'),
|
|
13
14
|
status: zod_1.z.enum(['uninitialized', 'pending', 'initialized', 'setup', 'warming', 'warmed', 'needs_replacement', 'replacing', 'failed', 'deleted']).optional().describe('Filter by account status'),
|