Skip to content

Commit f915663

Browse files
committed
Update to latest open api spec
1 parent ed4dc6f commit f915663

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export class FeedsApi {
115115
): Promise<StreamResponse<AddActivityResponse>> {
116116
const body = {
117117
type: request?.type,
118-
fids: request?.fids,
118+
feed_ids: request?.feed_ids,
119119
expires_at: request?.expires_at,
120120
id: request?.id,
121121
parent_id: request?.parent_id,

src/gen/models/index.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ export interface ActivityRemovedFromFeedEvent {
399399
export interface ActivityRequest {
400400
type: string;
401401

402-
fids: string[];
402+
feed_ids: string[];
403403

404404
expires_at?: string;
405405

@@ -457,7 +457,7 @@ export interface ActivityResponse {
457457

458458
comments: CommentResponse[];
459459

460-
feeds: string[];
460+
feed_ids: string[];
461461

462462
filter_tags: string[];
463463

@@ -547,7 +547,7 @@ export interface ActivityUpdatedEvent {
547547
export interface AddActivityRequest {
548548
type: string;
549549

550-
fids: string[];
550+
feed_ids: string[];
551551

552552
expires_at?: string;
553553

@@ -5138,7 +5138,7 @@ export interface FeedResponse {
51385138

51395139
description: string;
51405140

5141-
fid: string;
5141+
feed_id: string;
51425142

51435143
follower_count: number;
51445144

@@ -7690,7 +7690,7 @@ export interface PinActivityResponse {
76907690

76917691
duration: string;
76927692

7693-
fid: string;
7693+
feed_id: string;
76947694

76957695
user_id: string;
76967696

@@ -10843,7 +10843,7 @@ export interface UnmuteResponse {
1084310843
export interface UnpinActivityResponse {
1084410844
duration: string;
1084510845

10846-
fid: string;
10846+
feed_id: string;
1084710847

1084810848
user_id: string;
1084910849

0 commit comments

Comments
 (0)