Skip to content

Commit fd7966a

Browse files
authored
add memberCount and channelCount to TeamDetails (#1858)
1 parent 4c1d757 commit fd7966a

File tree

1 file changed

+10
-0
lines changed
  • libraries/botframework-schema/src/teams

1 file changed

+10
-0
lines changed

libraries/botframework-schema/src/teams/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77
// The Teams schemas was manually added to botframework-schema. This file has been updated import from the botframework-schema and the extension folder.
8+
// The ChannelCount and MemberCount fields were manually added to the TeamDetails definition.
89
import * as teams from './extension';
910
import { Activity, Attachment, CardAction, ChannelAccount } from '../';
1011
export * from './extension';
@@ -59,6 +60,15 @@ export interface TeamDetails {
5960
* the team.
6061
*/
6162
aadGroupId?: string;
63+
/**
64+
* @member {number} [channelCount] Count of channels in the team.
65+
*/
66+
channelCount?: number;
67+
/**
68+
* @member {number} [memberCount] Count of members in the team.
69+
* the team.
70+
*/
71+
memberCount?: number;
6272
}
6373

6474
/**

0 commit comments

Comments
 (0)