ugcinc 2.91.0 → 2.93.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 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -39,7 +39,9 @@ export interface Account {
|
|
|
39
39
|
age_range: string | null;
|
|
40
40
|
sex: string | null;
|
|
41
41
|
status: 'pending' | 'initialized' | 'setup' | 'warming' | 'warmed' | 'needs_replacement' | 'error';
|
|
42
|
-
phone_type: 'physical_iphone' | 'physical_android' | 'emulated_android' | null;
|
|
42
|
+
phone_type: 'physical_iphone' | 'physical_android' | 'emulated_android' | 'social_api' | null;
|
|
43
|
+
oneup_social_network_id?: string | null;
|
|
44
|
+
oneup_category_id?: string | null;
|
|
43
45
|
metadata?: {
|
|
44
46
|
pending_info_change?: {
|
|
45
47
|
nick_name?: string;
|
|
@@ -982,6 +984,8 @@ export interface RecurrenceNodeConfig {
|
|
|
982
984
|
timezone: string;
|
|
983
985
|
/** Maximum number of runs before stopping (null = unlimited) */
|
|
984
986
|
maxRuns?: number | null;
|
|
987
|
+
/** End date for the recurrence in ISO format (YYYY-MM-DD) - if set, runs until this date */
|
|
988
|
+
endDate?: string;
|
|
985
989
|
/** Optional collection input for iterating over multiple elements */
|
|
986
990
|
collectionInput?: TriggerCollectionConfig;
|
|
987
991
|
}
|