Skip to content

Commit 12fff5a

Browse files
authored
feat: Add id_around for getComments and getCommentReplies (#268)
1 parent 439b5cd commit 12fff5a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/gen/feeds/FeedsApi.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -998,6 +998,7 @@ export class FeedsApi {
998998
depth?: number;
999999
sort?: string;
10001000
replies_limit?: number;
1001+
id_around?: string;
10011002
user_id?: string;
10021003
limit?: number;
10031004
prev?: string;
@@ -1009,6 +1010,7 @@ export class FeedsApi {
10091010
depth: request?.depth,
10101011
sort: request?.sort,
10111012
replies_limit: request?.replies_limit,
1013+
id_around: request?.id_around,
10121014
user_id: request?.user_id,
10131015
limit: request?.limit,
10141016
prev: request?.prev,
@@ -1283,6 +1285,7 @@ export class FeedsApi {
12831285
depth?: number;
12841286
sort?: string;
12851287
replies_limit?: number;
1288+
id_around?: string;
12861289
user_id?: string;
12871290
limit?: number;
12881291
prev?: string;
@@ -1292,6 +1295,7 @@ export class FeedsApi {
12921295
depth: request?.depth,
12931296
sort: request?.sort,
12941297
replies_limit: request?.replies_limit,
1298+
id_around: request?.id_around,
12951299
user_id: request?.user_id,
12961300
limit: request?.limit,
12971301
prev: request?.prev,

0 commit comments

Comments
 (0)