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.
@@ -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;
@@ -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'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "4.12.0",
3
+ "version": "4.13.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",