ugcinc 4.5.78 → 4.5.80
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 -2
- package/dist/posts.d.ts +2 -0
- package/dist/tools/accounts.js +1 -1
- package/dist/tools/posts.js +2 -0
- package/package.json +1 -1
package/dist/accounts.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface Account {
|
|
|
22
22
|
age_range: string | null;
|
|
23
23
|
sex: string | null;
|
|
24
24
|
status: 'uninitialized' | 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'replacing' | 'failed' | 'deleted' | 'reclaimed';
|
|
25
|
-
phone_type: 'physical_iphone' | 'physical_android' | 'emulated_android' | 'social_api' | 'custom_provider' | 'tracking' | null;
|
|
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
28
|
oneup_social_network_id?: string | null;
|
|
@@ -106,7 +106,7 @@ export interface AccountInfoUpdate {
|
|
|
106
106
|
description?: string;
|
|
107
107
|
warmupVersion?: 'original' | 'v1_smart' | 'v2_smart';
|
|
108
108
|
postVersion?: 'original' | 'v1_custom';
|
|
109
|
-
phoneType?: 'physical_iphone' | 'physical_android' | 'emulated_android' | 'social_api' | 'custom_provider' | 'tracking';
|
|
109
|
+
phoneType?: 'physical_iphone' | 'manual_iphone' | 'physical_android' | 'emulated_android' | 'social_api' | 'custom_provider' | 'tracking';
|
|
110
110
|
approved?: boolean;
|
|
111
111
|
}
|
|
112
112
|
export interface UpdateAccountInfoParams {
|
package/dist/posts.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface CreateSlideshowParams {
|
|
|
40
40
|
postTime?: string;
|
|
41
41
|
imageUrls: string[];
|
|
42
42
|
strict?: boolean;
|
|
43
|
+
mustPostBy?: string;
|
|
43
44
|
tag?: string;
|
|
44
45
|
user_group?: string;
|
|
45
46
|
org_group?: string;
|
|
@@ -59,6 +60,7 @@ export interface CreateVideoParams {
|
|
|
59
60
|
postTime?: string;
|
|
60
61
|
videoUrl: string;
|
|
61
62
|
strict?: boolean;
|
|
63
|
+
mustPostBy?: string;
|
|
62
64
|
tag?: string;
|
|
63
65
|
user_group?: string;
|
|
64
66
|
org_group?: string;
|
package/dist/tools/accounts.js
CHANGED
|
@@ -41,7 +41,7 @@ exports.accountTools = [
|
|
|
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
43
|
postVersion: zod_1.z.enum(['original', 'v1_custom']).optional().describe('Post algorithm version'),
|
|
44
|
-
phoneType: zod_1.z.enum(['physical_iphone', 'physical_android', 'emulated_android', 'social_api', 'tracking']).optional().describe('Phone type'),
|
|
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'),
|
|
47
47
|
}),
|
package/dist/tools/posts.js
CHANGED
|
@@ -26,6 +26,7 @@ exports.postTools = [
|
|
|
26
26
|
socialAudioId: zod_1.z.string().optional().describe('Social audio ID to use'),
|
|
27
27
|
postTime: zod_1.z.string().optional().describe('Scheduled time (ISO 8601). Omit for next available slot.'),
|
|
28
28
|
strict: zod_1.z.boolean().optional().describe('If true with auto-selection, must post at exact time or error'),
|
|
29
|
+
mustPostBy: zod_1.z.string().optional().describe('Latest allowed scheduled time (ISO 8601). Errors if no slot is available before this deadline.'),
|
|
29
30
|
tag: zod_1.z.string().optional().describe('Filter accounts by tag (for auto-selection)'),
|
|
30
31
|
user_group: zod_1.z.string().optional().describe('Filter accounts by user group (for auto-selection)'),
|
|
31
32
|
org_group: zod_1.z.string().optional().describe('Filter accounts by org group (for auto-selection)'),
|
|
@@ -45,6 +46,7 @@ exports.postTools = [
|
|
|
45
46
|
socialAudioId: zod_1.z.string().optional().describe('Social audio ID to use'),
|
|
46
47
|
postTime: zod_1.z.string().optional().describe('Scheduled time (ISO 8601)'),
|
|
47
48
|
strict: zod_1.z.boolean().optional().describe('If true with auto-selection, must post at exact time or error'),
|
|
49
|
+
mustPostBy: zod_1.z.string().optional().describe('Latest allowed scheduled time (ISO 8601). Errors if no slot is available before this deadline.'),
|
|
48
50
|
tag: zod_1.z.string().optional().describe('Filter accounts by tag (for auto-selection)'),
|
|
49
51
|
user_group: zod_1.z.string().optional().describe('Filter accounts by user group (for auto-selection)'),
|
|
50
52
|
org_group: zod_1.z.string().optional().describe('Filter accounts by org group (for auto-selection)'),
|