ugcinc 2.77.0 → 2.78.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 +4 -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,7 @@ 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
41
|
}
|
|
42
42
|
export interface AccountStat {
|
|
43
43
|
id: string;
|
|
@@ -111,7 +111,7 @@ export interface GetAccountsParams {
|
|
|
111
111
|
tag?: string;
|
|
112
112
|
org_group?: string;
|
|
113
113
|
user_group?: string;
|
|
114
|
-
status?: 'pending' | 'initialized' | 'setup' | 'error';
|
|
114
|
+
status?: 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'error';
|
|
115
115
|
}
|
|
116
116
|
export interface GetAccountStatsParams {
|
|
117
117
|
accountIds?: string[];
|
|
@@ -136,7 +136,7 @@ export interface AccountInfoUpdate {
|
|
|
136
136
|
keywords?: string;
|
|
137
137
|
profiles?: string;
|
|
138
138
|
description?: string;
|
|
139
|
-
warmupVersion?: 'original' | 'v1_smart';
|
|
139
|
+
warmupVersion?: 'original' | 'v1_smart' | 'v2_smart';
|
|
140
140
|
postVersion?: 'original' | 'v1_custom';
|
|
141
141
|
}
|
|
142
142
|
/**
|