Skip to content

Commit 7bdf730

Browse files
committed
change object to better type
1 parent d67fb2f commit 7bdf730

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}
@@ -1921,7 +1921,7 @@ export interface ConnectUserDetailsRequest {
19211921
* @type {object}
19221922
* @memberof ConnectUserDetailsRequest
19231923
*/
1924-
custom?: object;
1924+
custom?: { [key: string]: any };
19251925
/**
19261926
*
19271927
* @type {string}
@@ -2879,7 +2879,7 @@ export interface MemberRequest {
28792879
* @type {object}
28802880
* @memberof MemberRequest
28812881
*/
2882-
custom?: object;
2882+
custom?: { [key: string]: any };
28832883
/**
28842884
*
28852885
* @type {string}
@@ -2910,7 +2910,7 @@ export interface MemberResponse {
29102910
* @type {object}
29112911
* @memberof MemberResponse
29122912
*/
2913-
custom: object;
2913+
custom: { [key: string]: any };
29142914
/**
29152915
* Date/time of deletion
29162916
* @type {string}
@@ -3048,7 +3048,7 @@ export interface OwnUserResponse {
30483048
* @type {object}
30493049
* @memberof OwnUserResponse
30503050
*/
3051-
custom: object;
3051+
custom: { [key: string]: any };
30523052
/**
30533053
*
30543054
* @type {string}
@@ -3185,7 +3185,7 @@ export interface QueryCallsRequest {
31853185
* @type {object}
31863186
* @memberof QueryCallsRequest
31873187
*/
3188-
filter_conditions?: object;
3188+
filter_conditions?: { [key: string]: any };
31893189
/**
31903190
*
31913191
* @type {number}
@@ -3259,7 +3259,7 @@ export interface QueryMembersRequest {
32593259
* @type {object}
32603260
* @memberof QueryMembersRequest
32613261
*/
3262-
filter_conditions?: object;
3262+
filter_conditions?: { [key: string]: any };
32633263
/**
32643264
*
32653265
* @type {string}
@@ -3352,7 +3352,7 @@ export interface ReactionResponse {
33523352
* @type {object}
33533353
* @memberof ReactionResponse
33543354
*/
3355-
custom?: object;
3355+
custom?: { [key: string]: any };
33563356
/**
33573357
*
33583358
* @type {string}
@@ -3642,7 +3642,7 @@ export interface SendEventRequest {
36423642
* @type {object}
36433643
* @memberof SendEventRequest
36443644
*/
3645-
custom?: object;
3645+
custom?: { [key: string]: any };
36463646
}
36473647
/**
36483648
*
@@ -3668,7 +3668,7 @@ export interface SendReactionRequest {
36683668
* @type {object}
36693669
* @memberof SendReactionRequest
36703670
*/
3671-
custom?: object;
3671+
custom?: { [key: string]: any };
36723672
/**
36733673
*
36743674
* @type {string}
@@ -4152,7 +4152,7 @@ export interface UpdateCallRequest {
41524152
* @type {object}
41534153
* @memberof UpdateCallRequest
41544154
*/
4155-
custom?: object;
4155+
custom?: { [key: string]: any };
41564156
/**
41574157
*
41584158
* @type {CallSettingsRequest}
@@ -4289,7 +4289,7 @@ export interface UserInfoResponse {
42894289
* @type {object}
42904290
* @memberof UserInfoResponse
42914291
*/
4292-
custom: object;
4292+
custom: { [key: string]: any };
42934293
/**
42944294
*
42954295
* @type {string}
@@ -4314,7 +4314,7 @@ export interface UserRequest {
43144314
* @type {object}
43154315
* @memberof UserRequest
43164316
*/
4317-
custom?: object;
4317+
custom?: { [key: string]: any };
43184318
/**
43194319
* User ID
43204320
* @type {string}
@@ -4357,7 +4357,7 @@ export interface UserResponse {
43574357
* @type {object}
43584358
* @memberof UserResponse
43594359
*/
4360-
custom: object;
4360+
custom: { [key: string]: any };
43614361
/**
43624362
* Date/time of deletion
43634363
* @type {string}

0 commit comments

Comments
 (0)