ugcinc 3.38.0 → 3.39.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 +2 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -755,7 +755,7 @@ export type MediaType = 'video' | 'image' | 'audio' | 'text' | 'account' | 'date
|
|
|
755
755
|
/**
|
|
756
756
|
* Array types for collections
|
|
757
757
|
*/
|
|
758
|
-
export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]';
|
|
758
|
+
export type ArrayType = 'image[]' | 'video[]' | 'audio[]' | 'text[]' | 'object[]' | 'account[]' | 'social_audio[]';
|
|
759
759
|
/**
|
|
760
760
|
* Extended port types (includes non-media types for special nodes)
|
|
761
761
|
*/
|
|
@@ -980,6 +980,7 @@ export interface OutputNodeConfig {
|
|
|
980
980
|
export interface ManualTriggerOutput {
|
|
981
981
|
id: string;
|
|
982
982
|
type: 'image' | 'video' | 'audio' | 'text' | 'social_audio' | 'account';
|
|
983
|
+
isArray?: boolean;
|
|
983
984
|
}
|
|
984
985
|
/**
|
|
985
986
|
* Iteration mode for trigger nodes with account iteration
|