ugcinc 3.15.0 → 3.16.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.
Files changed (2) hide show
  1. package/dist/types.d.ts +0 -19
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -985,10 +985,6 @@ export type CollectionSelectionMode = 'specific' | 'by-tag';
985
985
  export interface TriggerCollectionConfig {
986
986
  /** Whether account iteration is enabled */
987
987
  enabled: boolean;
988
- /** How to iterate over the accounts */
989
- iterationMode: TriggerIterationMode;
990
- /** What to do when sequential iteration exhausts all accounts */
991
- exhaustionBehavior?: IterationExhaustionBehavior;
992
988
  /** Selection mode: 'specific' uses accountIds, 'by-tag' queries at runtime */
993
989
  selectionMode?: CollectionSelectionMode;
994
990
  /** Account IDs to iterate over (used when selectionMode is 'specific' or undefined) */
@@ -1028,21 +1024,6 @@ export interface RecurrenceMediaConfig {
1028
1024
  };
1029
1025
  /** Tag to query media by at runtime (used when selectionMode is 'by-tag') */
1030
1026
  mediaTag?: string;
1031
- /** How to pick from the pool for each type */
1032
- selectionConfig?: {
1033
- image?: {
1034
- mode: 'random' | 'sequential';
1035
- };
1036
- video?: {
1037
- mode: 'random' | 'sequential';
1038
- };
1039
- audio?: {
1040
- mode: 'random' | 'sequential';
1041
- };
1042
- text?: {
1043
- mode: 'random' | 'sequential';
1044
- };
1045
- };
1046
1027
  }
1047
1028
  /**
1048
1029
  * Recurrence node configuration - defines when the automation runs on a schedule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.15.0",
3
+ "version": "3.16.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",