File tree 3 files changed +5
-9
lines changed
botframework-connector/src/connectorApi/models
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -162,12 +162,7 @@ export const ChannelAccount: CompositeMapper = {
162
162
properties : {
163
163
serializedName : "properties" ,
164
164
type : {
165
- name : "Dictionary" ,
166
- value : {
167
- type : {
168
- name : "any"
169
- }
170
- }
165
+ name : "Object"
171
166
}
172
167
}
173
168
}
Original file line number Diff line number Diff line change @@ -579,6 +579,7 @@ export interface ChannelAccount {
579
579
aadObjectId? : string ;
580
580
id: string ;
581
581
name: string ;
582
+ properties? : any ;
582
583
role? : RoleTypes | string ;
583
584
}
584
585
Original file line number Diff line number Diff line change @@ -157,9 +157,9 @@ export interface ChannelAccount {
157
157
role ?: RoleTypes | string ;
158
158
159
159
/**
160
- * Properties not represented in a defined type
160
+ * Custom properties object (optional)
161
161
*/
162
- properties : { [ key : string ] : any } ;
162
+ properties ?: any ; // eslint-disable-line @typescript-eslint/no-explicit- any
163
163
}
164
164
165
165
const channelAccount = z . object ( {
@@ -2461,7 +2461,7 @@ export interface SearchInvokeOptions {
2461
2461
* Name of 'application/search'.
2462
2462
*/
2463
2463
// eslint-disable-next-line @typescript-eslint/no-empty-interface
2464
- export interface SearchInvokeResponse extends AdaptiveCardInvokeResponse { }
2464
+ export interface SearchInvokeResponse extends AdaptiveCardInvokeResponse { }
2465
2465
2466
2466
/**
2467
2467
* Represents a response returned by a bot when it receives an `invoke` activity.
You can’t perform that action at this time.
0 commit comments