ugcinc 2.77.0 → 2.79.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/types.d.ts +5 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export interface Account {
|
|
|
29
29
|
pfp_url: string | null;
|
|
30
30
|
bio: string | null;
|
|
31
31
|
warmup_enabled: boolean | null;
|
|
32
|
-
warmup_version: 'original' | 'v1_smart' | null;
|
|
32
|
+
warmup_version: 'original' | 'v1_smart' | 'v2_smart' | null;
|
|
33
33
|
post_version: 'original' | 'v1_custom' | null;
|
|
34
34
|
description: string | null;
|
|
35
35
|
keywords: string | null;
|
|
@@ -37,7 +37,8 @@ export interface Account {
|
|
|
37
37
|
niches: string | null;
|
|
38
38
|
age_range: string | null;
|
|
39
39
|
sex: string | null;
|
|
40
|
-
status: 'pending' | 'initialized' | 'setup' | 'error';
|
|
40
|
+
status: 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'error';
|
|
41
|
+
phone_type: 'physical_iphone' | 'physical_android' | 'emulated_android' | null;
|
|
41
42
|
}
|
|
42
43
|
export interface AccountStat {
|
|
43
44
|
id: string;
|
|
@@ -111,7 +112,7 @@ export interface GetAccountsParams {
|
|
|
111
112
|
tag?: string;
|
|
112
113
|
org_group?: string;
|
|
113
114
|
user_group?: string;
|
|
114
|
-
status?: 'pending' | 'initialized' | 'setup' | 'error';
|
|
115
|
+
status?: 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'error';
|
|
115
116
|
}
|
|
116
117
|
export interface GetAccountStatsParams {
|
|
117
118
|
accountIds?: string[];
|
|
@@ -136,7 +137,7 @@ export interface AccountInfoUpdate {
|
|
|
136
137
|
keywords?: string;
|
|
137
138
|
profiles?: string;
|
|
138
139
|
description?: string;
|
|
139
|
-
warmupVersion?: 'original' | 'v1_smart';
|
|
140
|
+
warmupVersion?: 'original' | 'v1_smart' | 'v2_smart';
|
|
140
141
|
postVersion?: 'original' | 'v1_custom';
|
|
141
142
|
}
|
|
142
143
|
/**
|