Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/gen/models/index.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -595,6 +595,16 @@ export interface ActivityProcessorConfig {
* Type of activity processor (required)
*/
type: string;

/**
* Minimum number of characters the activity text must have before this processor runs. 0 (the default) disables the check. Only applies to text_interest_tags.
*/
min_text_length?: number;

/**
* Minimum number of words the activity text must have before this processor runs. 0 (the default) disables the check. Only applies to text_interest_tags.
*/
min_word_count?: number;
}

export interface ActivityReactionAddedEvent {
Expand Down