ugcinc 4.6.0 → 4.6.2
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 +4 -3
- package/dist/tools/accounts.js +1 -1
- package/package.json +1 -1
package/dist/accounts.d.ts
CHANGED
|
@@ -14,17 +14,18 @@ export interface Account {
|
|
|
14
14
|
bio: string | null;
|
|
15
15
|
warmup_enabled: boolean | null;
|
|
16
16
|
warmup_version: 'original' | 'v1_smart' | 'v2_smart' | null;
|
|
17
|
-
post_version: 'original' | 'v1_custom' | null;
|
|
17
|
+
post_version: 'original' | 'v1_custom' | 'manual_posting' | null;
|
|
18
18
|
description: string | null;
|
|
19
19
|
keywords: string | null;
|
|
20
20
|
profiles: string | null;
|
|
21
21
|
niches: string | null;
|
|
22
22
|
age_range: string | null;
|
|
23
23
|
sex: string | null;
|
|
24
|
-
status: 'uninitialized' | 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'replacing' | 'failed' | 'deleted' | 'reclaimed';
|
|
24
|
+
status: 'uninitialized' | 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'replacing' | 'pending_cancellation' | 'failed' | 'deleted' | 'reclaimed';
|
|
25
25
|
phone_type: 'physical_iphone' | 'manual_iphone' | 'physical_android' | 'emulated_android' | 'social_api' | 'custom_provider' | 'tracking' | null;
|
|
26
26
|
approved: boolean;
|
|
27
27
|
replacement_count: number;
|
|
28
|
+
cancel_at: string | null;
|
|
28
29
|
oneup_social_network_id?: string | null;
|
|
29
30
|
oneup_category_id?: string | null;
|
|
30
31
|
metadata?: {
|
|
@@ -105,7 +106,7 @@ export interface AccountInfoUpdate {
|
|
|
105
106
|
profiles?: string;
|
|
106
107
|
description?: string;
|
|
107
108
|
warmupVersion?: 'original' | 'v1_smart' | 'v2_smart';
|
|
108
|
-
postVersion?: 'original' | 'v1_custom';
|
|
109
|
+
postVersion?: 'original' | 'v1_custom' | 'manual_posting';
|
|
109
110
|
phoneType?: 'physical_iphone' | 'manual_iphone' | 'physical_android' | 'emulated_android' | 'social_api' | 'custom_provider' | 'tracking';
|
|
110
111
|
approved?: boolean;
|
|
111
112
|
}
|
package/dist/tools/accounts.js
CHANGED
|
@@ -40,7 +40,7 @@ exports.accountTools = [
|
|
|
40
40
|
profiles: zod_1.z.string().optional().describe('Comma-separated profile URLs for warmup'),
|
|
41
41
|
description: zod_1.z.string().optional().describe('Account description/niche'),
|
|
42
42
|
warmupVersion: zod_1.z.enum(['original', 'v1_smart', 'v2_smart']).optional().describe('Warmup algorithm version'),
|
|
43
|
-
postVersion: zod_1.z.enum(['original', 'v1_custom']).optional().describe('Post algorithm version'),
|
|
43
|
+
postVersion: zod_1.z.enum(['original', 'v1_custom', 'manual_posting']).optional().describe('Post algorithm version. Set to manual_posting to skip automated posting and surface posts on the VA workflow page.'),
|
|
44
44
|
phoneType: zod_1.z.enum(['physical_iphone', 'manual_iphone', 'physical_android', 'emulated_android', 'social_api', 'tracking']).optional().describe('Phone type'),
|
|
45
45
|
approved: zod_1.z.boolean().optional().describe('Whether the account follows best practices'),
|
|
46
46
|
})).describe('Array of account updates'),
|