There was an error while loading. Please reload this page.
1 parent da4ab7e commit 2ccd3c6Copy full SHA for 2ccd3c6
3 files changed
openapi/openapi.json
@@ -2629,8 +2629,7 @@
2629
"Channel": {
2630
"type": "object",
2631
"required": [
2632
- "channelName",
2633
- "channelId"
+ "channelName"
2634
],
2635
"properties": {
2636
"channelName": {
openapi/openapi.yaml
@@ -1641,7 +1641,6 @@ components:
1641
type: object
1642
required:
1643
- channelName
1644
- - channelId
1645
properties:
1646
channelName:
1647
type: string
typespec/main.tsp
@@ -713,7 +713,7 @@ model Channel {
713
channelName: string;
714
715
@doc("Unique numeric identifier of the channel")
716
- channelId: int64;
+ channelId?: int64;
717
}
718
719
model AddBots {
0 commit comments