Skip to content

Commit f039b00

Browse files
chore: update OpenAPI specs to v226.0.0 (#1806)
Co-authored-by: GH Action CI Stream <ci@stream.io>
1 parent 7b0eea1 commit f039b00

58 files changed

Lines changed: 1662 additions & 66 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

openapi/chat-openapi-clientside.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

openapi/chat-openapi-clientside.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15536,7 +15536,7 @@ components:
1553615536
type: apiKey
1553715537
info:
1553815538
title: Stream API
15539-
version: v225.26.0
15539+
version: v226.0.0
1554015540
openapi: 3.0.3
1554115541
paths:
1554215542
/app:

openapi/chat-openapi.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

openapi/chat-openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ components:
597597
type: string
598598
x-stream-index: "002.001"
599599
type:
600-
default: export.users.error
600+
default: export.channels.error
601601
type: string
602602
x-stream-index: "003.002"
603603
required:
@@ -20820,7 +20820,7 @@ components:
2082020820
type: apiKey
2082120821
info:
2082220822
title: Stream API
20823-
version: v225.26.0
20823+
version: v226.0.0
2082420824
openapi: 3.0.3
2082520825
paths:
2082620826
/app:

openapi/clientside-api.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

openapi/clientside-api.yaml

Lines changed: 187 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6645,6 +6645,39 @@ components:
66456645
- call_status
66466646
- call_duration_seconds
66476647
type: object
6648+
CallStatsSessionResponse:
6649+
properties:
6650+
call_ended_at:
6651+
format: date-time
6652+
type: number
6653+
x-stream-index: "005"
6654+
call_id:
6655+
type: string
6656+
x-stream-index: "002"
6657+
call_session_id:
6658+
type: string
6659+
x-stream-index: "003"
6660+
call_started_at:
6661+
format: date-time
6662+
type: number
6663+
x-stream-index: "004"
6664+
call_type:
6665+
type: string
6666+
x-stream-index: "001"
6667+
counts:
6668+
$ref: '#/components/schemas/CallStatsParticipantCounts'
6669+
x-stream-index: "007"
6670+
generated_at:
6671+
format: date-time
6672+
type: number
6673+
x-stream-index: "006"
6674+
required:
6675+
- call_type
6676+
- call_id
6677+
- call_session_id
6678+
- generated_at
6679+
- counts
6680+
type: object
66486681
CallTranscription:
66496682
description: CallTranscription represents a transcription of a call.
66506683
properties:
@@ -23395,6 +23428,126 @@ components:
2339523428
- events
2339623429
title: Response
2339723430
type: object
23431+
QueryCallSessionStatsRequest:
23432+
nullable: true
23433+
properties:
23434+
filter_conditions:
23435+
additionalProperties: {}
23436+
description: Filter conditions to apply to the query
23437+
title: Filter
23438+
type: object
23439+
x-stream-filter-fields:
23440+
call_cid:
23441+
operators:
23442+
- $eq
23443+
type: string
23444+
call_session_id:
23445+
operators:
23446+
- $eq
23447+
type: string
23448+
counts.cq_score:
23449+
operators:
23450+
- $eq
23451+
- $gt
23452+
- $gte
23453+
- $lt
23454+
- $lte
23455+
- $ne
23456+
type: number
23457+
generated_at:
23458+
operators:
23459+
- $eq
23460+
- $gt
23461+
- $gte
23462+
- $lt
23463+
- $lte
23464+
type: date
23465+
session_ended_at:
23466+
operators:
23467+
- $eq
23468+
- $gt
23469+
- $gte
23470+
- $lt
23471+
- $lte
23472+
type: date
23473+
session_started_at:
23474+
operators:
23475+
- $eq
23476+
- $gt
23477+
- $gte
23478+
- $lt
23479+
- $lte
23480+
type: date
23481+
updated_at:
23482+
operators:
23483+
- $eq
23484+
- $gt
23485+
- $gte
23486+
- $lt
23487+
- $lte
23488+
type: date
23489+
x-stream-index: "001"
23490+
limit:
23491+
format: int32
23492+
maximum: 100
23493+
minimum: 0
23494+
type: integer
23495+
x-stream-index: "004.001"
23496+
next:
23497+
type: string
23498+
x-stream-index: "004.002"
23499+
prev:
23500+
type: string
23501+
x-stream-index: "004.003"
23502+
sort:
23503+
description: Array of sort parameters
23504+
items:
23505+
$ref: '#/components/schemas/SortParamRequest'
23506+
maxItems: 2
23507+
title: Sort
23508+
type: array
23509+
x-stream-index: "002"
23510+
x-stream-sort-combinations:
23511+
- - generated_at
23512+
- call_cid
23513+
- - updated_at
23514+
- call_cid
23515+
- - session_started_at
23516+
- call_cid
23517+
- - session_ended_at
23518+
- call_cid
23519+
x-stream-sort-fields:
23520+
- call_cid
23521+
- generated_at
23522+
- session_ended_at
23523+
- session_started_at
23524+
- updated_at
23525+
type: object
23526+
QueryCallSessionStatsResponse:
23527+
description: Basic response information
23528+
nullable: true
23529+
properties:
23530+
call_stats:
23531+
items:
23532+
$ref: '#/components/schemas/CallStatsSessionResponse'
23533+
type: array
23534+
x-stream-index: "001"
23535+
duration:
23536+
description: Duration of the request in milliseconds
23537+
title: Duration
23538+
type: string
23539+
x-stream-index: "002.001"
23540+
next:
23541+
type: string
23542+
x-stream-index: "003.001"
23543+
prev:
23544+
type: string
23545+
x-stream-index: "003.002"
23546+
required:
23547+
- call_stats
23548+
- duration
23549+
title: Response
23550+
type: object
2339823551
QueryCallStatsMapResponse:
2339923552
description: Basic response information
2340023553
nullable: true
@@ -35927,7 +36080,7 @@ components:
3592736080
type: apiKey
3592836081
info:
3592936082
title: Stream API
35930-
version: v225.26.0
36083+
version: v226.0.0
3593136084
openapi: 3.0.3
3593236085
paths:
3593336086
/api/v2/app:
@@ -46413,6 +46566,39 @@ paths:
4641346566
summary: Query Call Stats
4641446567
tags:
4641546568
- product:video
46569+
/api/v2/video/call_stats:
46570+
post:
46571+
description: |2+
46572+
46573+
operationId: QueryCallSessionStats
46574+
requestBody:
46575+
content:
46576+
application/json:
46577+
schema:
46578+
$ref: '#/components/schemas/QueryCallSessionStatsRequest'
46579+
required: true
46580+
responses:
46581+
"201":
46582+
content:
46583+
application/json:
46584+
schema:
46585+
$ref: '#/components/schemas/QueryCallSessionStatsResponse'
46586+
description: Response
46587+
"400":
46588+
content:
46589+
application/json:
46590+
schema:
46591+
$ref: '#/components/schemas/APIError'
46592+
description: Bad request
46593+
"429":
46594+
content:
46595+
application/json:
46596+
schema:
46597+
$ref: '#/components/schemas/APIError'
46598+
description: Too many requests
46599+
summary: Query call session stats
46600+
tags:
46601+
- product:video
4641646602
/api/v2/video/call_stats/{call_type}/{call_id}/{session}/map:
4641746603
get:
4641846604
description: |2+

openapi/moderation-clientside-api.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

openapi/moderation-clientside-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6516,7 +6516,7 @@ components:
65166516
type: apiKey
65176517
info:
65186518
title: Stream API
6519-
version: v225.26.0
6519+
version: v226.0.0
65206520
openapi: 3.0.3
65216521
paths:
65226522
/api/v2/moderation/appeal:

openapi/moderation-openapi.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

openapi/moderation-openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ components:
400400
type: string
401401
x-stream-index: "002.001"
402402
type:
403-
default: export.moderation_logs.error
403+
default: export.bulk_image_moderation.error
404404
type: string
405405
x-stream-index: "003.002"
406406
required:
@@ -4758,7 +4758,7 @@ components:
47584758
type: apiKey
47594759
info:
47604760
title: Stream API
4761-
version: v225.26.0
4761+
version: v226.0.0
47624762
openapi: 3.0.3
47634763
paths:
47644764
/api/v1/moderation/chat_message_tasks:

0 commit comments

Comments
 (0)