ugcinc 3.13.0 → 3.14.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 +6 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1024,6 +1024,7 @@ export interface RecurrenceMediaConfig {
|
|
|
1024
1024
|
image?: string[];
|
|
1025
1025
|
video?: string[];
|
|
1026
1026
|
audio?: string[];
|
|
1027
|
+
text?: string[];
|
|
1027
1028
|
};
|
|
1028
1029
|
/** Tag to query media by at runtime (used when selectionMode is 'by-tag') */
|
|
1029
1030
|
mediaTag?: string;
|
|
@@ -1038,6 +1039,9 @@ export interface RecurrenceMediaConfig {
|
|
|
1038
1039
|
audio?: {
|
|
1039
1040
|
mode: 'random' | 'sequential';
|
|
1040
1041
|
};
|
|
1042
|
+
text?: {
|
|
1043
|
+
mode: 'random' | 'sequential';
|
|
1044
|
+
};
|
|
1041
1045
|
};
|
|
1042
1046
|
}
|
|
1043
1047
|
/**
|
|
@@ -1074,9 +1078,9 @@ export interface AccountNodeConfig {
|
|
|
1074
1078
|
};
|
|
1075
1079
|
}
|
|
1076
1080
|
/**
|
|
1077
|
-
* Media node enabled type (image, video, or
|
|
1081
|
+
* Media node enabled type (image, video, audio, or text)
|
|
1078
1082
|
*/
|
|
1079
|
-
export type MediaNodeEnabledType = 'image' | 'video' | 'audio';
|
|
1083
|
+
export type MediaNodeEnabledType = 'image' | 'video' | 'audio' | 'text';
|
|
1080
1084
|
/**
|
|
1081
1085
|
* Media node configuration - consolidated source node for image, video, and audio
|
|
1082
1086
|
*/
|