Skip to content

Commit be303ca

Browse files
committed
change object to better type
1 parent cec676e commit be303ca

File tree

1 file changed

+15
-15
lines changed
  • packages/client/src/gen/coordinator

1 file changed

+15
-15
lines changed

packages/client/src/gen/coordinator/index.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ export interface CallRequest {
10771077
* @type {object}
10781078
* @memberof CallRequest
10791079
*/
1080-
custom?: object;
1080+
custom?: { [key: string]: any };
10811081
/**
10821082
*
10831083
* @type {Array<MemberRequest>}
@@ -1150,7 +1150,7 @@ export interface CallResponse {
11501150
* @type {object}
11511151
* @memberof CallResponse
11521152
*/
1153-
custom: object;
1153+
custom: { [key: string]: any };
11541154
/**
11551155
*
11561156
* @type {EgressResponse}
@@ -2095,7 +2095,7 @@ export interface ConnectUserDetailsRequest {
20952095
* @type {object}
20962096
* @memberof ConnectUserDetailsRequest
20972097
*/
2098-
custom?: object;
2098+
custom?: { [key: string]: any };
20992099
/**
21002100
*
21012101
* @type {string}
@@ -3072,7 +3072,7 @@ export interface MemberRequest {
30723072
* @type {object}
30733073
* @memberof MemberRequest
30743074
*/
3075-
custom?: object;
3075+
custom?: { [key: string]: any };
30763076
/**
30773077
*
30783078
* @type {string}
@@ -3103,7 +3103,7 @@ export interface MemberResponse {
31033103
* @type {object}
31043104
* @memberof MemberResponse
31053105
*/
3106-
custom: object;
3106+
custom: { [key: string]: any };
31073107
/**
31083108
* Date/time of deletion
31093109
* @type {string}
@@ -3241,7 +3241,7 @@ export interface OwnUserResponse {
32413241
* @type {object}
32423242
* @memberof OwnUserResponse
32433243
*/
3244-
custom: object;
3244+
custom: { [key: string]: any };
32453245
/**
32463246
*
32473247
* @type {string}
@@ -3446,7 +3446,7 @@ export interface QueryCallsRequest {
34463446
* @type {object}
34473447
* @memberof QueryCallsRequest
34483448
*/
3449-
filter_conditions?: object;
3449+
filter_conditions?: { [key: string]: any };
34503450
/**
34513451
*
34523452
* @type {number}
@@ -3520,7 +3520,7 @@ export interface QueryMembersRequest {
35203520
* @type {object}
35213521
* @memberof QueryMembersRequest
35223522
*/
3523-
filter_conditions?: object;
3523+
filter_conditions?: { [key: string]: any };
35243524
/**
35253525
*
35263526
* @type {string}
@@ -3613,7 +3613,7 @@ export interface ReactionResponse {
36133613
* @type {object}
36143614
* @memberof ReactionResponse
36153615
*/
3616-
custom?: object;
3616+
custom?: { [key: string]: any };
36173617
/**
36183618
*
36193619
* @type {string}
@@ -3903,7 +3903,7 @@ export interface SendEventRequest {
39033903
* @type {object}
39043904
* @memberof SendEventRequest
39053905
*/
3906-
custom?: object;
3906+
custom?: { [key: string]: any };
39073907
}
39083908
/**
39093909
*
@@ -3929,7 +3929,7 @@ export interface SendReactionRequest {
39293929
* @type {object}
39303930
* @memberof SendReactionRequest
39313931
*/
3932-
custom?: object;
3932+
custom?: { [key: string]: any };
39333933
/**
39343934
*
39353935
* @type {string}
@@ -4444,7 +4444,7 @@ export interface UpdateCallRequest {
44444444
* @type {object}
44454445
* @memberof UpdateCallRequest
44464446
*/
4447-
custom?: object;
4447+
custom?: { [key: string]: any };
44484448
/**
44494449
*
44504450
* @type {CallSettingsRequest}
@@ -4581,7 +4581,7 @@ export interface UserInfoResponse {
45814581
* @type {object}
45824582
* @memberof UserInfoResponse
45834583
*/
4584-
custom: object;
4584+
custom: { [key: string]: any };
45854585
/**
45864586
*
45874587
* @type {string}
@@ -4612,7 +4612,7 @@ export interface UserRequest {
46124612
* @type {object}
46134613
* @memberof UserRequest
46144614
*/
4615-
custom?: object;
4615+
custom?: { [key: string]: any };
46164616
/**
46174617
* User ID
46184618
* @type {string}
@@ -4655,7 +4655,7 @@ export interface UserResponse {
46554655
* @type {object}
46564656
* @memberof UserResponse
46574657
*/
4658-
custom: object;
4658+
custom: { [key: string]: any };
46594659
/**
46604660
* Date/time of deletion
46614661
* @type {string}

0 commit comments

Comments
 (0)