Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions src/gen/feeds/FeedsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ export class FeedsApi {
const body = {
type: request?.type,
feeds: request?.feeds,
copy_custom_to_notification: request?.copy_custom_to_notification,
create_notification_activity: request?.create_notification_activity,
expires_at: request?.expires_at,
id: request?.id,
Expand Down Expand Up @@ -452,6 +453,7 @@ export class FeedsApi {
};
const body = {
type: request?.type,
copy_custom_to_notification: request?.copy_custom_to_notification,
create_notification_activity: request?.create_notification_activity,
enforce_unique: request?.enforce_unique,
skip_push: request?.skip_push,
Expand Down Expand Up @@ -580,6 +582,7 @@ export class FeedsApi {
id: request?.id,
};
const body = {
copy_custom_to_notification: request?.copy_custom_to_notification,
handle_mention_notifications: request?.handle_mention_notifications,
run_activity_processors: request?.run_activity_processors,
user_id: request?.user_id,
Expand Down Expand Up @@ -611,6 +614,7 @@ export class FeedsApi {
id: request?.id,
};
const body = {
copy_custom_to_notification: request?.copy_custom_to_notification,
expires_at: request?.expires_at,
handle_mention_notifications: request?.handle_mention_notifications,
poll_id: request?.poll_id,
Expand Down Expand Up @@ -923,6 +927,7 @@ export class FeedsApi {
): Promise<StreamResponse<AddCommentResponse>> {
const body = {
comment: request?.comment,
copy_custom_to_notification: request?.copy_custom_to_notification,
create_notification_activity: request?.create_notification_activity,
id: request?.id,
object_id: request?.object_id,
Expand Down Expand Up @@ -1049,6 +1054,7 @@ export class FeedsApi {
};
const body = {
comment: request?.comment,
copy_custom_to_notification: request?.copy_custom_to_notification,
handle_mention_notifications: request?.handle_mention_notifications,
skip_enrich_url: request?.skip_enrich_url,
skip_push: request?.skip_push,
Expand Down Expand Up @@ -1083,6 +1089,7 @@ export class FeedsApi {
};
const body = {
type: request?.type,
copy_custom_to_notification: request?.copy_custom_to_notification,
create_notification_activity: request?.create_notification_activity,
enforce_unique: request?.enforce_unique,
skip_push: request?.skip_push,
Expand Down Expand Up @@ -2016,6 +2023,7 @@ export class FeedsApi {
const body = {
source: request?.source,
target: request?.target,
copy_custom_to_notification: request?.copy_custom_to_notification,
create_notification_activity: request?.create_notification_activity,
follower_role: request?.follower_role,
push_preference: request?.push_preference,
Expand Down Expand Up @@ -2046,6 +2054,7 @@ export class FeedsApi {
const body = {
source: request?.source,
target: request?.target,
copy_custom_to_notification: request?.copy_custom_to_notification,
create_notification_activity: request?.create_notification_activity,
push_preference: request?.push_preference,
skip_push: request?.skip_push,
Expand Down
20 changes: 20 additions & 0 deletions src/gen/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,8 @@ export interface ActivityRequest {

feeds: string[];

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

expires_at?: string;
Expand Down Expand Up @@ -716,6 +718,8 @@ export interface AddActivityRequest {

feeds: string[];

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

expires_at?: string;
Expand Down Expand Up @@ -786,6 +790,8 @@ export interface AddBookmarkResponse {
export interface AddCommentReactionRequest {
type: string;

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

enforce_unique?: boolean;
Expand All @@ -812,6 +818,8 @@ export interface AddCommentReactionResponse {
export interface AddCommentRequest {
comment?: string;

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

id?: string;
Expand Down Expand Up @@ -866,6 +874,8 @@ export interface AddFolderRequest {
export interface AddReactionRequest {
type: string;

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

enforce_unique?: boolean;
Expand Down Expand Up @@ -6351,6 +6361,8 @@ export interface FollowRequest {

target: string;

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

push_preference?: 'all' | 'none';
Expand Down Expand Up @@ -13440,6 +13452,8 @@ export interface UnreadCountsThread {
}

export interface UpdateActivityPartialRequest {
copy_custom_to_notification?: boolean;

handle_mention_notifications?: boolean;

run_activity_processors?: boolean;
Expand All @@ -13460,6 +13474,8 @@ export interface UpdateActivityPartialResponse {
}

export interface UpdateActivityRequest {
copy_custom_to_notification?: boolean;

expires_at?: Date;

handle_mention_notifications?: boolean;
Expand Down Expand Up @@ -13960,6 +13976,8 @@ export interface UpdateCommandResponse {
export interface UpdateCommentRequest {
comment?: string;

copy_custom_to_notification?: boolean;

handle_mention_notifications?: boolean;

skip_enrich_url?: boolean;
Expand Down Expand Up @@ -14109,6 +14127,8 @@ export interface UpdateFollowRequest {

target: string;

copy_custom_to_notification?: boolean;

create_notification_activity?: boolean;

follower_role?: string;
Expand Down
Loading