Skip to content
Merged
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
2 changes: 1 addition & 1 deletion openapi/chat-openapi-clientside.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions openapi/chat-openapi-clientside.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4657,7 +4657,7 @@ components:
type: array
x-stream-index: "001.002"
type:
default: notification.thread_message_new
default: message.new
type: string
x-stream-index: "004.001"
user:
Expand Down Expand Up @@ -12092,7 +12092,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/chat-openapi.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions openapi/chat-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ components:
type: string
x-stream-index: "002.001"
type:
default: export.bulk_image_moderation.error
default: export.channels.error
type: string
x-stream-index: "003.002"
required:
Expand Down Expand Up @@ -16728,7 +16728,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/clientside-api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi/clientside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26848,7 +26848,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/moderation-clientside-api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi/moderation-clientside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6196,7 +6196,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/moderation/ban:
Expand Down
2 changes: 1 addition & 1 deletion openapi/moderation-serverside-api.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions openapi/moderation-serverside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ components:
type: string
x-stream-index: "002.001"
type:
default: export.moderation_logs.error
default: export.bulk_image_moderation.error
type: string
x-stream-index: "003.002"
required:
Expand Down Expand Up @@ -7448,7 +7448,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/moderation/ban:
Expand Down
2 changes: 1 addition & 1 deletion openapi/serverside-api.json

Large diffs are not rendered by default.

113 changes: 111 additions & 2 deletions openapi/serverside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2588,7 +2588,7 @@ components:
type: string
x-stream-index: "002.001"
type:
default: export.channels.error
default: export.users.error
type: string
x-stream-index: "003.002"
required:
Expand Down Expand Up @@ -15373,6 +15373,45 @@ components:
- duration
title: Get Feed Visibility Response
type: object
GetFeedsRateLimitsResponse:
nullable: true
properties:
android:
additionalProperties:
$ref: '#/components/schemas/LimitInfo'
description: Rate limits for Android platform (endpoint name -> limit info)
title: Android
type: object
x-stream-index: "002"
duration:
type: string
x-stream-index: "001.001"
ios:
additionalProperties:
$ref: '#/components/schemas/LimitInfo'
description: Rate limits for iOS platform (endpoint name -> limit info)
title: iOS
type: object
x-stream-index: "003"
server_side:
additionalProperties:
$ref: '#/components/schemas/LimitInfo'
description: Rate limits for server-side platform (endpoint name -> limit
info)
title: Server Side
type: object
x-stream-index: "005"
web:
additionalProperties:
$ref: '#/components/schemas/LimitInfo'
description: Rate limits for Web platform (endpoint name -> limit info)
title: Web
type: object
x-stream-index: "004"
required:
- duration
title: Get Feeds Rate Limits Response
type: object
GetFollowSuggestionsResponse:
nullable: true
properties:
Expand Down Expand Up @@ -33799,7 +33838,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/app:
Expand Down Expand Up @@ -40658,6 +40697,76 @@ paths:
summary: Query feeds
tags:
- product:feeds
/api/v2/feeds/feeds/rate_limits:
get:
description: |
Retrieve current rate limit status for feeds operations.
Returns information about limits, usage, and remaining quota for various feed operations.
operationId: GetFeedsRateLimits
parameters:
- in: query
name: endpoints
schema:
description: Comma-separated list of endpoint names to filter (optional,
returns all if empty)
title: Endpoints
type: string
writeOnly: true
x-stream-index: "001"
- in: query
name: android
schema:
description: Include Android platform limits
title: Android
type: boolean
writeOnly: true
x-stream-index: "002"
- in: query
name: ios
schema:
description: Include iOS platform limits
title: iOS
type: boolean
writeOnly: true
x-stream-index: "003"
- in: query
name: web
schema:
description: Include Web platform limits
title: Web
type: boolean
writeOnly: true
x-stream-index: "004"
- in: query
name: server_side
schema:
description: Include server-side platform limits
title: Server Side
type: boolean
writeOnly: true
x-stream-index: "005"
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/GetFeedsRateLimitsResponse'
description: Get Feeds Rate Limits Response
"400":
content:
application/json:
schema:
$ref: '#/components/schemas/APIError'
description: Bad request
"429":
content:
application/json:
schema:
$ref: '#/components/schemas/APIError'
description: Too many requests
summary: Get Feeds Rate Limits
tags:
- product:feeds
/api/v2/feeds/follows:
patch:
description: |
Expand Down
2 changes: 1 addition & 1 deletion openapi/v2/chat-clientside-api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi/v2/chat-clientside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15079,7 +15079,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/v2/chat-serverside-api.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions openapi/v2/chat-serverside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ components:
type: string
x-stream-index: "002.001"
type:
default: export.channels.error
default: export.users.error
type: string
x-stream-index: "003.002"
required:
Expand Down Expand Up @@ -9724,7 +9724,7 @@ components:
type: array
x-stream-index: "001.002"
type:
default: message.new
default: notification.thread_message_new
type: string
x-stream-index: "004.001"
user:
Expand Down Expand Up @@ -20665,7 +20665,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/v2/clientside-api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi/v2/clientside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26848,7 +26848,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/v2/feeds-clientside-api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openapi/v2/feeds-clientside-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14825,7 +14825,7 @@ components:
type: apiKey
info:
title: Stream API
version: v198.26.0
version: v198.27.0
openapi: 3.0.3
paths:
/api/v2/app:
Expand Down
2 changes: 1 addition & 1 deletion openapi/v2/feeds-serverside-api.json

Large diffs are not rendered by default.

Loading