Skip to content

Commit 80f0126

Browse files
authored
feat: add request field run_activity_processors to enable customer setting this when changing activity text/images (#250)
1 parent 76fdafa commit 80f0126

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,7 @@ export class FeedsApi {
581581
};
582582
const body = {
583583
handle_mention_notifications: request?.handle_mention_notifications,
584+
run_activity_processors: request?.run_activity_processors,
584585
user_id: request?.user_id,
585586
unset: request?.unset,
586587
set: request?.set,
@@ -614,6 +615,7 @@ export class FeedsApi {
614615
handle_mention_notifications: request?.handle_mention_notifications,
615616
poll_id: request?.poll_id,
616617
restrict_replies: request?.restrict_replies,
618+
run_activity_processors: request?.run_activity_processors,
617619
skip_enrich_url: request?.skip_enrich_url,
618620
text: request?.text,
619621
user_id: request?.user_id,

src/gen/models/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13428,6 +13428,8 @@ export interface UnreadCountsThread {
1342813428
export interface UpdateActivityPartialRequest {
1342913429
handle_mention_notifications?: boolean;
1343013430

13431+
run_activity_processors?: boolean;
13432+
1343113433
user_id?: string;
1343213434

1343313435
unset?: string[];
@@ -13452,6 +13454,8 @@ export interface UpdateActivityRequest {
1345213454

1345313455
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
1345413456

13457+
run_activity_processors?: boolean;
13458+
1345513459
skip_enrich_url?: boolean;
1345613460

1345713461
text?: string;

0 commit comments

Comments
 (0)