@connectedxm/admin-sdk 6.33.1 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/.openapi-generator/FILES +6 -26
  2. package/AdminApi.ts +3 -9
  3. package/README.md +8 -39
  4. package/api.ts +146 -1789
  5. package/dist/AdminApi.d.ts +2 -4
  6. package/dist/AdminApi.js +1 -3
  7. package/dist/api.d.ts +93 -951
  8. package/dist/api.js +127 -1311
  9. package/dist/esm/AdminApi.d.ts +2 -4
  10. package/dist/esm/AdminApi.js +2 -4
  11. package/dist/esm/api.d.ts +93 -951
  12. package/dist/esm/api.js +98 -1273
  13. package/docs/BaseThread.md +0 -2
  14. package/docs/BaseThreadMessage.md +4 -2
  15. package/docs/EventsApi.md +0 -64
  16. package/docs/GroupsApi.md +0 -64
  17. package/docs/Thread.md +4 -2
  18. package/docs/{ThreadMember.md → ThreadAccount.md} +9 -5
  19. package/docs/{ThreadMemberUpdateInputs.md → ThreadAccountUpdateInputs.md} +5 -3
  20. package/docs/{ThreadCircleCreateInputs.md → ThreadAllOfCount.md} +5 -5
  21. package/docs/ThreadCreateInputs.md +2 -6
  22. package/docs/ThreadMessage.md +6 -2
  23. package/docs/{BaseThreadMember.md → ThreadMessageRead.md} +9 -11
  24. package/docs/{ThreadsMembersApi.md → ThreadsAccountsApi.md} +31 -40
  25. package/docs/ThreadsApi.md +0 -3
  26. package/docs/{UpdateThreadMember200Response.md → UpdateThreadAccount200Response.md} +4 -4
  27. package/package.json +1 -1
  28. package/docs/BaseThreadCircle.md +0 -28
  29. package/docs/BaseThreadCircleAccount.md +0 -24
  30. package/docs/CreateThreadCircle200Response.md +0 -24
  31. package/docs/CreateThreadCircleAccount200Response.md +0 -24
  32. package/docs/GetThreadCircleAccounts200Response.md +0 -26
  33. package/docs/GetThreadCircles200Response.md +0 -26
  34. package/docs/GetThreadMembers200Response.md +0 -26
  35. package/docs/ThreadCircle.md +0 -28
  36. package/docs/ThreadCircleAccount.md +0 -24
  37. package/docs/ThreadCircleAccountCreateInputs.md +0 -22
  38. package/docs/ThreadCircleAccountRole.md +0 -12
  39. package/docs/ThreadCircleAccountUpdateInputs.md +0 -20
  40. package/docs/ThreadCircleType.md +0 -10
  41. package/docs/ThreadCircleUpdateInputs.md +0 -20
  42. package/docs/ThreadInvitation.md +0 -42
  43. package/docs/ThreadInvitationStatus.md +0 -10
  44. package/docs/ThreadMemberRole.md +0 -10
  45. package/docs/ThreadType.md +0 -14
  46. package/docs/ThreadsCirclesAccountsApi.md +0 -299
  47. package/docs/ThreadsCirclesApi.md +0 -348
package/dist/esm/api.d.ts CHANGED
@@ -2348,39 +2348,19 @@ export interface BaseThread {
2348
2348
  'subject': string;
2349
2349
  'imageId': string | null;
2350
2350
  'image': BaseImage | null;
2351
- 'type': ThreadType;
2352
2351
  'lastMessageAt': string | null;
2353
2352
  'lastMessage': string | null;
2354
2353
  'createdAt': string;
2355
2354
  }
2356
- export interface BaseThreadCircle {
2357
- 'id': string;
2358
- 'name': string;
2359
- 'createdAt': string;
2360
- 'updatedAt': string;
2361
- 'type': ThreadCircleType;
2362
- }
2363
- export interface BaseThreadCircleAccount {
2364
- 'accountId': string;
2365
- 'role': ThreadCircleAccountRole;
2366
- 'account': BaseAccount;
2367
- }
2368
- export interface BaseThreadMember {
2369
- 'id': string;
2370
- 'accountId': string;
2371
- 'lastReadAt': string | null;
2372
- 'notifications': boolean;
2373
- 'account': BaseAccount;
2374
- 'blocked': boolean;
2375
- }
2376
2355
  export interface BaseThreadMessage {
2377
2356
  'id': string;
2378
2357
  'body': string;
2379
2358
  'accountId': string | null;
2380
- 'viewer': BaseThreadMember | null;
2359
+ 'threadAccount': ThreadAccount | null;
2381
2360
  'createdAt': string;
2382
2361
  'editedAt': string | null;
2383
2362
  'sentAt': string;
2363
+ 'deletedAt'?: string | null;
2384
2364
  }
2385
2365
  export interface BaseThreadMessageEntity {
2386
2366
  'type': string;
@@ -3998,22 +3978,6 @@ export interface CreateThread200Response {
3998
3978
  export declare enum CreateThread200ResponseStatusEnum {
3999
3979
  Ok = "ok"
4000
3980
  }
4001
- export interface CreateThreadCircle200Response {
4002
- 'status': CreateThreadCircle200ResponseStatusEnum;
4003
- 'message': string;
4004
- 'data': ThreadCircle;
4005
- }
4006
- export declare enum CreateThreadCircle200ResponseStatusEnum {
4007
- Ok = "ok"
4008
- }
4009
- export interface CreateThreadCircleAccount200Response {
4010
- 'status': CreateThreadCircleAccount200ResponseStatusEnum;
4011
- 'message': string;
4012
- 'data': ThreadCircleAccount;
4013
- }
4014
- export declare enum CreateThreadCircleAccount200ResponseStatusEnum {
4015
- Ok = "ok"
4016
- }
4017
3981
  export interface CreateThreadMessage200Response {
4018
3982
  'status': CreateThreadMessage200ResponseStatusEnum;
4019
3983
  'message': string;
@@ -8706,33 +8670,6 @@ export interface GetTaxLogs200Response {
8706
8670
  export declare enum GetTaxLogs200ResponseStatusEnum {
8707
8671
  Ok = "ok"
8708
8672
  }
8709
- export interface GetThreadCircleAccounts200Response {
8710
- 'status': GetThreadCircleAccounts200ResponseStatusEnum;
8711
- 'message': string;
8712
- 'data': Array<ThreadCircleAccount>;
8713
- 'count'?: number;
8714
- }
8715
- export declare enum GetThreadCircleAccounts200ResponseStatusEnum {
8716
- Ok = "ok"
8717
- }
8718
- export interface GetThreadCircles200Response {
8719
- 'status': GetThreadCircles200ResponseStatusEnum;
8720
- 'message': string;
8721
- 'data': Array<ThreadCircle>;
8722
- 'count'?: number;
8723
- }
8724
- export declare enum GetThreadCircles200ResponseStatusEnum {
8725
- Ok = "ok"
8726
- }
8727
- export interface GetThreadMembers200Response {
8728
- 'status': GetThreadMembers200ResponseStatusEnum;
8729
- 'message': string;
8730
- 'data': Array<ThreadMember>;
8731
- 'count'?: number;
8732
- }
8733
- export declare enum GetThreadMembers200ResponseStatusEnum {
8734
- Ok = "ok"
8735
- }
8736
8673
  export interface GetThreadMessageFiles200Response {
8737
8674
  'status': GetThreadMessageFiles200ResponseStatusEnum;
8738
8675
  'message': string;
@@ -12171,95 +12108,45 @@ export interface Thread {
12171
12108
  'subject': string;
12172
12109
  'imageId': string | null;
12173
12110
  'image': BaseImage | null;
12174
- 'type': ThreadType;
12175
12111
  'lastMessageAt': string | null;
12176
12112
  'lastMessage': string | null;
12177
12113
  'createdAt': string;
12114
+ 'accounts': Array<ThreadAccount>;
12115
+ '_count'?: ThreadAllOfCount;
12178
12116
  }
12179
- export interface ThreadCircle {
12180
- 'id': string;
12181
- 'name': string;
12182
- 'createdAt': string;
12183
- 'updatedAt': string;
12184
- 'type': ThreadCircleType;
12185
- }
12186
- export interface ThreadCircleAccount {
12187
- 'accountId': string;
12188
- 'role': ThreadCircleAccountRole;
12189
- 'account': BaseAccount;
12190
- }
12191
- export interface ThreadCircleAccountCreateInputs {
12192
- 'accountId': string;
12193
- 'role': ThreadCircleAccountRole;
12194
- }
12195
- export declare enum ThreadCircleAccountRole {
12196
- Member = "member",
12197
- Manager = "manager",
12198
- Invited = "invited"
12199
- }
12200
- export interface ThreadCircleAccountUpdateInputs {
12201
- 'role'?: ThreadCircleAccountRole | null;
12202
- }
12203
- export interface ThreadCircleCreateInputs {
12204
- 'name': string;
12205
- }
12206
- export declare enum ThreadCircleType {
12207
- Private = "private",
12208
- Direct = "direct"
12209
- }
12210
- export interface ThreadCircleUpdateInputs {
12211
- 'name'?: string | null;
12212
- }
12213
- export interface ThreadCreateInputs {
12214
- 'subject'?: string | null;
12215
- 'imageId'?: string | null;
12216
- 'groupId'?: string;
12217
- 'circleId'?: string;
12218
- 'eventId'?: string;
12219
- }
12220
- export interface ThreadInvitation {
12117
+ export interface ThreadAccount {
12221
12118
  'id': string;
12222
- 'organizationId': string;
12223
12119
  'threadId': string;
12224
- 'thread': BaseThread;
12225
- 'status': ThreadInvitationStatus;
12226
- 'role': ThreadMemberRole;
12227
- 'invitedById': string;
12228
- 'invitedBy': BaseAccount;
12229
- 'invitedId': string;
12230
- 'invited': BaseAccount;
12231
- 'createdAt': string;
12232
- 'updatedAt': string;
12233
- }
12234
- export declare enum ThreadInvitationStatus {
12235
- Invited = "invited",
12236
- Rejected = "rejected"
12237
- }
12238
- export interface ThreadMember {
12239
- 'id': string;
12240
12120
  'accountId': string;
12121
+ 'account': BaseAccount;
12241
12122
  'lastReadAt': string | null;
12123
+ 'typingAt': string | null;
12242
12124
  'notifications': boolean;
12243
- 'account': BaseAccount;
12244
12125
  'blocked': boolean;
12245
12126
  'createdAt': string;
12246
12127
  'updatedAt': string;
12247
12128
  }
12248
- export declare enum ThreadMemberRole {
12249
- Member = "member",
12250
- Moderator = "moderator"
12251
- }
12252
- export interface ThreadMemberUpdateInputs {
12129
+ export interface ThreadAccountUpdateInputs {
12130
+ 'notifications'?: boolean;
12253
12131
  'blocked'?: boolean;
12254
12132
  }
12133
+ export interface ThreadAllOfCount {
12134
+ 'messages'?: number;
12135
+ }
12136
+ export interface ThreadCreateInputs {
12137
+ 'accountIds': Array<string>;
12138
+ 'subject'?: string | null;
12139
+ 'imageId'?: string | null;
12140
+ }
12255
12141
  export interface ThreadMessage {
12256
12142
  'id': string;
12257
12143
  'body': string;
12258
12144
  'accountId': string | null;
12259
- 'viewer': BaseThreadMember | null;
12145
+ 'threadAccount': ThreadAccount | null;
12260
12146
  'createdAt': string;
12261
12147
  'editedAt': string | null;
12262
12148
  'sentAt': string;
12149
+ 'deletedAt'?: string | null;
12263
12150
  'type': ThreadMessageType;
12264
12151
  'reactions': Array<ThreadMessageReaction>;
12265
12152
  'entities': Array<ThreadMessageEntity>;
@@ -12268,6 +12155,7 @@ export interface ThreadMessage {
12268
12155
  'files': Array<BaseFile>;
12269
12156
  'images': Array<BaseImage>;
12270
12157
  'videos': Array<BaseVideo>;
12158
+ 'reads'?: Array<ThreadMessageRead>;
12271
12159
  }
12272
12160
  export interface ThreadMessageCreateInputs {
12273
12161
  'accountId': string;
@@ -12302,6 +12190,13 @@ export interface ThreadMessageReactionCreateInputs {
12302
12190
  export interface ThreadMessageReactionUpdateInputs {
12303
12191
  'emojiName'?: string;
12304
12192
  }
12193
+ export interface ThreadMessageRead {
12194
+ 'id': string;
12195
+ 'threadId': string;
12196
+ 'messageId': string;
12197
+ 'accountId': string;
12198
+ 'readAt': string;
12199
+ }
12305
12200
  export declare enum ThreadMessageType {
12306
12201
  User = "user",
12307
12202
  Bot = "bot",
@@ -12311,12 +12206,6 @@ export interface ThreadMessageUpdateInputs {
12311
12206
  'body': string;
12312
12207
  'entities': Array<object>;
12313
12208
  }
12314
- export declare enum ThreadType {
12315
- Circle = "circle",
12316
- Group = "group",
12317
- Event = "event",
12318
- Stream = "stream"
12319
- }
12320
12209
  export interface ThreadUpdateInputs {
12321
12210
  'subject'?: string | null;
12322
12211
  'imageId'?: string | null;
@@ -12508,12 +12397,12 @@ export interface UpdateSeriesQuestionTranslation200Response {
12508
12397
  export declare enum UpdateSeriesQuestionTranslation200ResponseStatusEnum {
12509
12398
  Ok = "ok"
12510
12399
  }
12511
- export interface UpdateThreadMember200Response {
12512
- 'status': UpdateThreadMember200ResponseStatusEnum;
12400
+ export interface UpdateThreadAccount200Response {
12401
+ 'status': UpdateThreadAccount200ResponseStatusEnum;
12513
12402
  'message': string;
12514
- 'data': ThreadMember;
12403
+ 'data': ThreadAccount;
12515
12404
  }
12516
- export declare enum UpdateThreadMember200ResponseStatusEnum {
12405
+ export declare enum UpdateThreadAccount200ResponseStatusEnum {
12517
12406
  Ok = "ok"
12518
12407
  }
12519
12408
  export interface UploadFile200Response {
@@ -24568,18 +24457,6 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
24568
24457
  * @throws {RequiredError}
24569
24458
  */
24570
24459
  getEventPayments: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24571
- /**
24572
- * Get Event Threads endpoint
24573
- * @summary Get Event Threads
24574
- * @param {string} eventId The event identifier
24575
- * @param {number} [page] Page number
24576
- * @param {number} [pageSize] Number of items per page
24577
- * @param {string} [orderBy] Field to order by
24578
- * @param {string} [search] Search query
24579
- * @param {*} [options] Override http request option.
24580
- * @throws {RequiredError}
24581
- */
24582
- getEventThreads: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24583
24460
  /**
24584
24461
  * Get Event Tiers endpoint
24585
24462
  * @summary Get Event Tiers
@@ -24690,18 +24567,6 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
24690
24567
  * @throws {RequiredError}
24691
24568
  */
24692
24569
  getEventPayments(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountPayments200Response>>;
24693
- /**
24694
- * Get Event Threads endpoint
24695
- * @summary Get Event Threads
24696
- * @param {string} eventId The event identifier
24697
- * @param {number} [page] Page number
24698
- * @param {number} [pageSize] Number of items per page
24699
- * @param {string} [orderBy] Field to order by
24700
- * @param {string} [search] Search query
24701
- * @param {*} [options] Override http request option.
24702
- * @throws {RequiredError}
24703
- */
24704
- getEventThreads(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
24705
24570
  /**
24706
24571
  * Get Event Tiers endpoint
24707
24572
  * @summary Get Event Tiers
@@ -24801,14 +24666,6 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
24801
24666
  * @throws {RequiredError}
24802
24667
  */
24803
24668
  getEventPayments(requestParameters: EventsApiGetEventPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountPayments200Response>;
24804
- /**
24805
- * Get Event Threads endpoint
24806
- * @summary Get Event Threads
24807
- * @param {EventsApiGetEventThreadsRequest} requestParameters Request parameters.
24808
- * @param {*} [options] Override http request option.
24809
- * @throws {RequiredError}
24810
- */
24811
- getEventThreads(requestParameters: EventsApiGetEventThreadsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountThreads200Response>;
24812
24669
  /**
24813
24670
  * Get Event Tiers endpoint
24814
24671
  * @summary Get Event Tiers
@@ -24944,31 +24801,6 @@ export interface EventsApiGetEventPaymentsRequest {
24944
24801
  */
24945
24802
  readonly search?: string;
24946
24803
  }
24947
- /**
24948
- * Request parameters for getEventThreads operation in EventsApi.
24949
- */
24950
- export interface EventsApiGetEventThreadsRequest {
24951
- /**
24952
- * The event identifier
24953
- */
24954
- readonly eventId: string;
24955
- /**
24956
- * Page number
24957
- */
24958
- readonly page?: number;
24959
- /**
24960
- * Number of items per page
24961
- */
24962
- readonly pageSize?: number;
24963
- /**
24964
- * Field to order by
24965
- */
24966
- readonly orderBy?: string;
24967
- /**
24968
- * Search query
24969
- */
24970
- readonly search?: string;
24971
- }
24972
24804
  /**
24973
24805
  * Request parameters for getEventTiers operation in EventsApi.
24974
24806
  */
@@ -25085,14 +24917,6 @@ export declare class EventsApi extends BaseAPI {
25085
24917
  * @throws {RequiredError}
25086
24918
  */
25087
24919
  getEventPayments(requestParameters: EventsApiGetEventPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountPayments200Response, any, {}>>;
25088
- /**
25089
- * Get Event Threads endpoint
25090
- * @summary Get Event Threads
25091
- * @param {EventsApiGetEventThreadsRequest} requestParameters Request parameters.
25092
- * @param {*} [options] Override http request option.
25093
- * @throws {RequiredError}
25094
- */
25095
- getEventThreads(requestParameters: EventsApiGetEventThreadsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountThreads200Response, any, {}>>;
25096
24920
  /**
25097
24921
  * Get Event Tiers endpoint
25098
24922
  * @summary Get Event Tiers
@@ -57356,18 +57180,6 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
57356
57180
  * @throws {RequiredError}
57357
57181
  */
57358
57182
  getGroupActivities: (groupId: string, featured?: object, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
57359
- /**
57360
- * Get Group Threads endpoint
57361
- * @summary Get Group Threads
57362
- * @param {string} groupId The group identifier
57363
- * @param {number} [page] Page number
57364
- * @param {number} [pageSize] Number of items per page
57365
- * @param {string} [orderBy] Field to order by
57366
- * @param {string} [search] Search query
57367
- * @param {*} [options] Override http request option.
57368
- * @throws {RequiredError}
57369
- */
57370
- getGroupThreads: (groupId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
57371
57183
  /**
57372
57184
  * Get Groups endpoint
57373
57185
  * @summary Get Groups
@@ -57433,18 +57245,6 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
57433
57245
  * @throws {RequiredError}
57434
57246
  */
57435
57247
  getGroupActivities(groupId: string, featured?: object, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountActivities200Response>>;
57436
- /**
57437
- * Get Group Threads endpoint
57438
- * @summary Get Group Threads
57439
- * @param {string} groupId The group identifier
57440
- * @param {number} [page] Page number
57441
- * @param {number} [pageSize] Number of items per page
57442
- * @param {string} [orderBy] Field to order by
57443
- * @param {string} [search] Search query
57444
- * @param {*} [options] Override http request option.
57445
- * @throws {RequiredError}
57446
- */
57447
- getGroupThreads(groupId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
57448
57248
  /**
57449
57249
  * Get Groups endpoint
57450
57250
  * @summary Get Groups
@@ -57504,14 +57304,6 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
57504
57304
  * @throws {RequiredError}
57505
57305
  */
57506
57306
  getGroupActivities(requestParameters: GroupsApiGetGroupActivitiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountActivities200Response>;
57507
- /**
57508
- * Get Group Threads endpoint
57509
- * @summary Get Group Threads
57510
- * @param {GroupsApiGetGroupThreadsRequest} requestParameters Request parameters.
57511
- * @param {*} [options] Override http request option.
57512
- * @throws {RequiredError}
57513
- */
57514
- getGroupThreads(requestParameters: GroupsApiGetGroupThreadsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountThreads200Response>;
57515
57307
  /**
57516
57308
  * Get Groups endpoint
57517
57309
  * @summary Get Groups
@@ -57586,31 +57378,6 @@ export interface GroupsApiGetGroupActivitiesRequest {
57586
57378
  */
57587
57379
  readonly search?: string;
57588
57380
  }
57589
- /**
57590
- * Request parameters for getGroupThreads operation in GroupsApi.
57591
- */
57592
- export interface GroupsApiGetGroupThreadsRequest {
57593
- /**
57594
- * The group identifier
57595
- */
57596
- readonly groupId: string;
57597
- /**
57598
- * Page number
57599
- */
57600
- readonly page?: number;
57601
- /**
57602
- * Number of items per page
57603
- */
57604
- readonly pageSize?: number;
57605
- /**
57606
- * Field to order by
57607
- */
57608
- readonly orderBy?: string;
57609
- /**
57610
- * Search query
57611
- */
57612
- readonly search?: string;
57613
- }
57614
57381
  /**
57615
57382
  * Request parameters for getGroups operation in GroupsApi.
57616
57383
  */
@@ -57686,14 +57453,6 @@ export declare class GroupsApi extends BaseAPI {
57686
57453
  * @throws {RequiredError}
57687
57454
  */
57688
57455
  getGroupActivities(requestParameters: GroupsApiGetGroupActivitiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountActivities200Response, any, {}>>;
57689
- /**
57690
- * Get Group Threads endpoint
57691
- * @summary Get Group Threads
57692
- * @param {GroupsApiGetGroupThreadsRequest} requestParameters Request parameters.
57693
- * @param {*} [options] Override http request option.
57694
- * @throws {RequiredError}
57695
- */
57696
- getGroupThreads(requestParameters: GroupsApiGetGroupThreadsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountThreads200Response, any, {}>>;
57697
57456
  /**
57698
57457
  * Get Groups endpoint
57699
57458
  * @summary Get Groups
@@ -79306,7 +79065,6 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
79306
79065
  /**
79307
79066
  * Get Threads endpoint
79308
79067
  * @summary Get Threads
79309
- * @param {ThreadType} [type] Filter by type
79310
79068
  * @param {number} [page] Page number
79311
79069
  * @param {number} [pageSize] Number of items per page
79312
79070
  * @param {string} [orderBy] Field to order by
@@ -79314,7 +79072,7 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
79314
79072
  * @param {*} [options] Override http request option.
79315
79073
  * @throws {RequiredError}
79316
79074
  */
79317
- getThreads: (type?: ThreadType, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79075
+ getThreads: (page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79318
79076
  /**
79319
79077
  * Update Thread endpoint
79320
79078
  * @summary Update Thread
@@ -79356,7 +79114,6 @@ export declare const ThreadsApiFp: (configuration?: Configuration) => {
79356
79114
  /**
79357
79115
  * Get Threads endpoint
79358
79116
  * @summary Get Threads
79359
- * @param {ThreadType} [type] Filter by type
79360
79117
  * @param {number} [page] Page number
79361
79118
  * @param {number} [pageSize] Number of items per page
79362
79119
  * @param {string} [orderBy] Field to order by
@@ -79364,7 +79121,7 @@ export declare const ThreadsApiFp: (configuration?: Configuration) => {
79364
79121
  * @param {*} [options] Override http request option.
79365
79122
  * @throws {RequiredError}
79366
79123
  */
79367
- getThreads(type?: ThreadType, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
79124
+ getThreads(page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
79368
79125
  /**
79369
79126
  * Update Thread endpoint
79370
79127
  * @summary Update Thread
@@ -79448,10 +79205,6 @@ export interface ThreadsApiGetThreadRequest {
79448
79205
  * Request parameters for getThreads operation in ThreadsApi.
79449
79206
  */
79450
79207
  export interface ThreadsApiGetThreadsRequest {
79451
- /**
79452
- * Filter by type
79453
- */
79454
- readonly type?: ThreadType;
79455
79208
  /**
79456
79209
  * Page number
79457
79210
  */
@@ -79525,602 +79278,18 @@ export declare class ThreadsApi extends BaseAPI {
79525
79278
  updateThread(requestParameters: ThreadsApiUpdateThreadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThread200Response, any, {}>>;
79526
79279
  }
79527
79280
  /**
79528
- * ThreadsCirclesApi - axios parameter creator
79529
- */
79530
- export declare const ThreadsCirclesApiAxiosParamCreator: (configuration?: Configuration) => {
79531
- /**
79532
- * Create Thread Circle endpoint
79533
- * @summary Create Thread Circle
79534
- * @param {ThreadCircleCreateInputs} threadCircleCreateInputs
79535
- * @param {*} [options] Override http request option.
79536
- * @throws {RequiredError}
79537
- */
79538
- createThreadCircle: (threadCircleCreateInputs: ThreadCircleCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79539
- /**
79540
- * Delete Thread Circle endpoint
79541
- * @summary Delete Thread Circle
79542
- * @param {string} circleId The circle identifier
79543
- * @param {*} [options] Override http request option.
79544
- * @throws {RequiredError}
79545
- */
79546
- deleteThreadCircle: (circleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79547
- /**
79548
- * Get Thread Circle endpoint
79549
- * @summary Get Thread Circle
79550
- * @param {string} circleId The circle identifier
79551
- * @param {*} [options] Override http request option.
79552
- * @throws {RequiredError}
79553
- */
79554
- getThreadCircle: (circleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79555
- /**
79556
- * Get Thread Circle Threads endpoint
79557
- * @summary Get Thread Circle Threads
79558
- * @param {string} circleId The circle identifier
79559
- * @param {number} [page] Page number
79560
- * @param {number} [pageSize] Number of items per page
79561
- * @param {string} [orderBy] Field to order by
79562
- * @param {string} [search] Search query
79563
- * @param {*} [options] Override http request option.
79564
- * @throws {RequiredError}
79565
- */
79566
- getThreadCircleThreads: (circleId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79567
- /**
79568
- * Get Thread Circles endpoint
79569
- * @summary Get Thread Circles
79570
- * @param {ThreadCircleType} type Filter by type
79571
- * @param {number} [page] Page number
79572
- * @param {number} [pageSize] Number of items per page
79573
- * @param {string} [orderBy] Field to order by
79574
- * @param {string} [search] Search query
79575
- * @param {*} [options] Override http request option.
79576
- * @throws {RequiredError}
79577
- */
79578
- getThreadCircles: (type: ThreadCircleType, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79579
- /**
79580
- * Update Thread Circle endpoint
79581
- * @summary Update Thread Circle
79582
- * @param {string} circleId The circle identifier
79583
- * @param {ThreadCircleUpdateInputs} threadCircleUpdateInputs
79584
- * @param {*} [options] Override http request option.
79585
- * @throws {RequiredError}
79586
- */
79587
- updateThreadCircle: (circleId: string, threadCircleUpdateInputs: ThreadCircleUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79588
- };
79589
- /**
79590
- * ThreadsCirclesApi - functional programming interface
79591
- */
79592
- export declare const ThreadsCirclesApiFp: (configuration?: Configuration) => {
79593
- /**
79594
- * Create Thread Circle endpoint
79595
- * @summary Create Thread Circle
79596
- * @param {ThreadCircleCreateInputs} threadCircleCreateInputs
79597
- * @param {*} [options] Override http request option.
79598
- * @throws {RequiredError}
79599
- */
79600
- createThreadCircle(threadCircleCreateInputs: ThreadCircleCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircle200Response>>;
79601
- /**
79602
- * Delete Thread Circle endpoint
79603
- * @summary Delete Thread Circle
79604
- * @param {string} circleId The circle identifier
79605
- * @param {*} [options] Override http request option.
79606
- * @throws {RequiredError}
79607
- */
79608
- deleteThreadCircle(circleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
79609
- /**
79610
- * Get Thread Circle endpoint
79611
- * @summary Get Thread Circle
79612
- * @param {string} circleId The circle identifier
79613
- * @param {*} [options] Override http request option.
79614
- * @throws {RequiredError}
79615
- */
79616
- getThreadCircle(circleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircle200Response>>;
79617
- /**
79618
- * Get Thread Circle Threads endpoint
79619
- * @summary Get Thread Circle Threads
79620
- * @param {string} circleId The circle identifier
79621
- * @param {number} [page] Page number
79622
- * @param {number} [pageSize] Number of items per page
79623
- * @param {string} [orderBy] Field to order by
79624
- * @param {string} [search] Search query
79625
- * @param {*} [options] Override http request option.
79626
- * @throws {RequiredError}
79627
- */
79628
- getThreadCircleThreads(circleId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
79629
- /**
79630
- * Get Thread Circles endpoint
79631
- * @summary Get Thread Circles
79632
- * @param {ThreadCircleType} type Filter by type
79633
- * @param {number} [page] Page number
79634
- * @param {number} [pageSize] Number of items per page
79635
- * @param {string} [orderBy] Field to order by
79636
- * @param {string} [search] Search query
79637
- * @param {*} [options] Override http request option.
79638
- * @throws {RequiredError}
79639
- */
79640
- getThreadCircles(type: ThreadCircleType, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadCircles200Response>>;
79641
- /**
79642
- * Update Thread Circle endpoint
79643
- * @summary Update Thread Circle
79644
- * @param {string} circleId The circle identifier
79645
- * @param {ThreadCircleUpdateInputs} threadCircleUpdateInputs
79646
- * @param {*} [options] Override http request option.
79647
- * @throws {RequiredError}
79648
- */
79649
- updateThreadCircle(circleId: string, threadCircleUpdateInputs: ThreadCircleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircle200Response>>;
79650
- };
79651
- /**
79652
- * ThreadsCirclesApi - factory interface
79281
+ * ThreadsAccountsApi - axios parameter creator
79653
79282
  */
79654
- export declare const ThreadsCirclesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
79655
- /**
79656
- * Create Thread Circle endpoint
79657
- * @summary Create Thread Circle
79658
- * @param {ThreadsCirclesApiCreateThreadCircleRequest} requestParameters Request parameters.
79659
- * @param {*} [options] Override http request option.
79660
- * @throws {RequiredError}
79661
- */
79662
- createThreadCircle(requestParameters: ThreadsCirclesApiCreateThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircle200Response>;
79663
- /**
79664
- * Delete Thread Circle endpoint
79665
- * @summary Delete Thread Circle
79666
- * @param {ThreadsCirclesApiDeleteThreadCircleRequest} requestParameters Request parameters.
79667
- * @param {*} [options] Override http request option.
79668
- * @throws {RequiredError}
79669
- */
79670
- deleteThreadCircle(requestParameters: ThreadsCirclesApiDeleteThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
79671
- /**
79672
- * Get Thread Circle endpoint
79673
- * @summary Get Thread Circle
79674
- * @param {ThreadsCirclesApiGetThreadCircleRequest} requestParameters Request parameters.
79675
- * @param {*} [options] Override http request option.
79676
- * @throws {RequiredError}
79677
- */
79678
- getThreadCircle(requestParameters: ThreadsCirclesApiGetThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircle200Response>;
79679
- /**
79680
- * Get Thread Circle Threads endpoint
79681
- * @summary Get Thread Circle Threads
79682
- * @param {ThreadsCirclesApiGetThreadCircleThreadsRequest} requestParameters Request parameters.
79683
- * @param {*} [options] Override http request option.
79684
- * @throws {RequiredError}
79685
- */
79686
- getThreadCircleThreads(requestParameters: ThreadsCirclesApiGetThreadCircleThreadsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountThreads200Response>;
79687
- /**
79688
- * Get Thread Circles endpoint
79689
- * @summary Get Thread Circles
79690
- * @param {ThreadsCirclesApiGetThreadCirclesRequest} requestParameters Request parameters.
79691
- * @param {*} [options] Override http request option.
79692
- * @throws {RequiredError}
79693
- */
79694
- getThreadCircles(requestParameters: ThreadsCirclesApiGetThreadCirclesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadCircles200Response>;
79283
+ export declare const ThreadsAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
79695
79284
  /**
79696
- * Update Thread Circle endpoint
79697
- * @summary Update Thread Circle
79698
- * @param {ThreadsCirclesApiUpdateThreadCircleRequest} requestParameters Request parameters.
79699
- * @param {*} [options] Override http request option.
79700
- * @throws {RequiredError}
79701
- */
79702
- updateThreadCircle(requestParameters: ThreadsCirclesApiUpdateThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircle200Response>;
79703
- };
79704
- /**
79705
- * Request parameters for createThreadCircle operation in ThreadsCirclesApi.
79706
- */
79707
- export interface ThreadsCirclesApiCreateThreadCircleRequest {
79708
- readonly threadCircleCreateInputs: ThreadCircleCreateInputs;
79709
- }
79710
- /**
79711
- * Request parameters for deleteThreadCircle operation in ThreadsCirclesApi.
79712
- */
79713
- export interface ThreadsCirclesApiDeleteThreadCircleRequest {
79714
- /**
79715
- * The circle identifier
79716
- */
79717
- readonly circleId: string;
79718
- }
79719
- /**
79720
- * Request parameters for getThreadCircle operation in ThreadsCirclesApi.
79721
- */
79722
- export interface ThreadsCirclesApiGetThreadCircleRequest {
79723
- /**
79724
- * The circle identifier
79725
- */
79726
- readonly circleId: string;
79727
- }
79728
- /**
79729
- * Request parameters for getThreadCircleThreads operation in ThreadsCirclesApi.
79730
- */
79731
- export interface ThreadsCirclesApiGetThreadCircleThreadsRequest {
79732
- /**
79733
- * The circle identifier
79734
- */
79735
- readonly circleId: string;
79736
- /**
79737
- * Page number
79738
- */
79739
- readonly page?: number;
79740
- /**
79741
- * Number of items per page
79742
- */
79743
- readonly pageSize?: number;
79744
- /**
79745
- * Field to order by
79746
- */
79747
- readonly orderBy?: string;
79748
- /**
79749
- * Search query
79750
- */
79751
- readonly search?: string;
79752
- }
79753
- /**
79754
- * Request parameters for getThreadCircles operation in ThreadsCirclesApi.
79755
- */
79756
- export interface ThreadsCirclesApiGetThreadCirclesRequest {
79757
- /**
79758
- * Filter by type
79759
- */
79760
- readonly type: ThreadCircleType;
79761
- /**
79762
- * Page number
79763
- */
79764
- readonly page?: number;
79765
- /**
79766
- * Number of items per page
79767
- */
79768
- readonly pageSize?: number;
79769
- /**
79770
- * Field to order by
79771
- */
79772
- readonly orderBy?: string;
79773
- /**
79774
- * Search query
79775
- */
79776
- readonly search?: string;
79777
- }
79778
- /**
79779
- * Request parameters for updateThreadCircle operation in ThreadsCirclesApi.
79780
- */
79781
- export interface ThreadsCirclesApiUpdateThreadCircleRequest {
79782
- /**
79783
- * The circle identifier
79784
- */
79785
- readonly circleId: string;
79786
- readonly threadCircleUpdateInputs: ThreadCircleUpdateInputs;
79787
- }
79788
- /**
79789
- * ThreadsCirclesApi - object-oriented interface
79790
- */
79791
- export declare class ThreadsCirclesApi extends BaseAPI {
79792
- /**
79793
- * Create Thread Circle endpoint
79794
- * @summary Create Thread Circle
79795
- * @param {ThreadsCirclesApiCreateThreadCircleRequest} requestParameters Request parameters.
79796
- * @param {*} [options] Override http request option.
79797
- * @throws {RequiredError}
79798
- */
79799
- createThreadCircle(requestParameters: ThreadsCirclesApiCreateThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircle200Response, any, {}>>;
79800
- /**
79801
- * Delete Thread Circle endpoint
79802
- * @summary Delete Thread Circle
79803
- * @param {ThreadsCirclesApiDeleteThreadCircleRequest} requestParameters Request parameters.
79804
- * @param {*} [options] Override http request option.
79805
- * @throws {RequiredError}
79806
- */
79807
- deleteThreadCircle(requestParameters: ThreadsCirclesApiDeleteThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
79808
- /**
79809
- * Get Thread Circle endpoint
79810
- * @summary Get Thread Circle
79811
- * @param {ThreadsCirclesApiGetThreadCircleRequest} requestParameters Request parameters.
79812
- * @param {*} [options] Override http request option.
79813
- * @throws {RequiredError}
79814
- */
79815
- getThreadCircle(requestParameters: ThreadsCirclesApiGetThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircle200Response, any, {}>>;
79816
- /**
79817
- * Get Thread Circle Threads endpoint
79818
- * @summary Get Thread Circle Threads
79819
- * @param {ThreadsCirclesApiGetThreadCircleThreadsRequest} requestParameters Request parameters.
79820
- * @param {*} [options] Override http request option.
79821
- * @throws {RequiredError}
79822
- */
79823
- getThreadCircleThreads(requestParameters: ThreadsCirclesApiGetThreadCircleThreadsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountThreads200Response, any, {}>>;
79824
- /**
79825
- * Get Thread Circles endpoint
79826
- * @summary Get Thread Circles
79827
- * @param {ThreadsCirclesApiGetThreadCirclesRequest} requestParameters Request parameters.
79828
- * @param {*} [options] Override http request option.
79829
- * @throws {RequiredError}
79830
- */
79831
- getThreadCircles(requestParameters: ThreadsCirclesApiGetThreadCirclesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadCircles200Response, any, {}>>;
79832
- /**
79833
- * Update Thread Circle endpoint
79834
- * @summary Update Thread Circle
79835
- * @param {ThreadsCirclesApiUpdateThreadCircleRequest} requestParameters Request parameters.
79836
- * @param {*} [options] Override http request option.
79837
- * @throws {RequiredError}
79838
- */
79839
- updateThreadCircle(requestParameters: ThreadsCirclesApiUpdateThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircle200Response, any, {}>>;
79840
- }
79841
- /**
79842
- * ThreadsCirclesAccountsApi - axios parameter creator
79843
- */
79844
- export declare const ThreadsCirclesAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
79845
- /**
79846
- * Create Thread Circle Account endpoint
79847
- * @summary Create Thread Circle Account
79848
- * @param {string} circleId The circle identifier
79849
- * @param {ThreadCircleAccountCreateInputs} threadCircleAccountCreateInputs
79850
- * @param {*} [options] Override http request option.
79851
- * @throws {RequiredError}
79852
- */
79853
- createThreadCircleAccount: (circleId: string, threadCircleAccountCreateInputs: ThreadCircleAccountCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79854
- /**
79855
- * Delete Thread Circle Account endpoint
79856
- * @summary Delete Thread Circle Account
79857
- * @param {string} circleId The circle identifier
79858
- * @param {string} accountId The account identifier
79859
- * @param {*} [options] Override http request option.
79860
- * @throws {RequiredError}
79861
- */
79862
- deleteThreadCircleAccount: (circleId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79863
- /**
79864
- * Get Thread Circle Account endpoint
79865
- * @summary Get Thread Circle Account
79866
- * @param {string} circleId The circle identifier
79867
- * @param {string} accountId The account identifier
79868
- * @param {*} [options] Override http request option.
79869
- * @throws {RequiredError}
79870
- */
79871
- getThreadCircleAccount: (circleId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79872
- /**
79873
- * Get Thread Circle Accounts endpoint
79874
- * @summary Get Thread Circle Accounts
79875
- * @param {string} circleId The circle identifier
79876
- * @param {ThreadCircleAccountRole} [role] Filter by role
79877
- * @param {number} [page] Page number
79878
- * @param {number} [pageSize] Number of items per page
79879
- * @param {string} [orderBy] Field to order by
79880
- * @param {string} [search] Search query
79881
- * @param {*} [options] Override http request option.
79882
- * @throws {RequiredError}
79883
- */
79884
- getThreadCircleAccounts: (circleId: string, role?: ThreadCircleAccountRole, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79885
- /**
79886
- * Update Thread Circle Account endpoint
79887
- * @summary Update Thread Circle Account
79888
- * @param {string} circleId The circle identifier
79889
- * @param {string} accountId The account identifier
79890
- * @param {ThreadCircleAccountUpdateInputs} threadCircleAccountUpdateInputs
79891
- * @param {*} [options] Override http request option.
79892
- * @throws {RequiredError}
79893
- */
79894
- updateThreadCircleAccount: (circleId: string, accountId: string, threadCircleAccountUpdateInputs: ThreadCircleAccountUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79895
- };
79896
- /**
79897
- * ThreadsCirclesAccountsApi - functional programming interface
79898
- */
79899
- export declare const ThreadsCirclesAccountsApiFp: (configuration?: Configuration) => {
79900
- /**
79901
- * Create Thread Circle Account endpoint
79902
- * @summary Create Thread Circle Account
79903
- * @param {string} circleId The circle identifier
79904
- * @param {ThreadCircleAccountCreateInputs} threadCircleAccountCreateInputs
79905
- * @param {*} [options] Override http request option.
79906
- * @throws {RequiredError}
79907
- */
79908
- createThreadCircleAccount(circleId: string, threadCircleAccountCreateInputs: ThreadCircleAccountCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircleAccount200Response>>;
79909
- /**
79910
- * Delete Thread Circle Account endpoint
79911
- * @summary Delete Thread Circle Account
79912
- * @param {string} circleId The circle identifier
79913
- * @param {string} accountId The account identifier
79914
- * @param {*} [options] Override http request option.
79915
- * @throws {RequiredError}
79916
- */
79917
- deleteThreadCircleAccount(circleId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
79918
- /**
79919
- * Get Thread Circle Account endpoint
79920
- * @summary Get Thread Circle Account
79921
- * @param {string} circleId The circle identifier
79922
- * @param {string} accountId The account identifier
79923
- * @param {*} [options] Override http request option.
79924
- * @throws {RequiredError}
79925
- */
79926
- getThreadCircleAccount(circleId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircleAccount200Response>>;
79927
- /**
79928
- * Get Thread Circle Accounts endpoint
79929
- * @summary Get Thread Circle Accounts
79930
- * @param {string} circleId The circle identifier
79931
- * @param {ThreadCircleAccountRole} [role] Filter by role
79932
- * @param {number} [page] Page number
79933
- * @param {number} [pageSize] Number of items per page
79934
- * @param {string} [orderBy] Field to order by
79935
- * @param {string} [search] Search query
79936
- * @param {*} [options] Override http request option.
79937
- * @throws {RequiredError}
79938
- */
79939
- getThreadCircleAccounts(circleId: string, role?: ThreadCircleAccountRole, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadCircleAccounts200Response>>;
79940
- /**
79941
- * Update Thread Circle Account endpoint
79942
- * @summary Update Thread Circle Account
79943
- * @param {string} circleId The circle identifier
79285
+ * Delete Thread Account endpoint
79286
+ * @summary Delete Thread Account
79287
+ * @param {string} threadId The thread identifier
79944
79288
  * @param {string} accountId The account identifier
79945
- * @param {ThreadCircleAccountUpdateInputs} threadCircleAccountUpdateInputs
79946
- * @param {*} [options] Override http request option.
79947
- * @throws {RequiredError}
79948
- */
79949
- updateThreadCircleAccount(circleId: string, accountId: string, threadCircleAccountUpdateInputs: ThreadCircleAccountUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircleAccount200Response>>;
79950
- };
79951
- /**
79952
- * ThreadsCirclesAccountsApi - factory interface
79953
- */
79954
- export declare const ThreadsCirclesAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
79955
- /**
79956
- * Create Thread Circle Account endpoint
79957
- * @summary Create Thread Circle Account
79958
- * @param {ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest} requestParameters Request parameters.
79959
- * @param {*} [options] Override http request option.
79960
- * @throws {RequiredError}
79961
- */
79962
- createThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircleAccount200Response>;
79963
- /**
79964
- * Delete Thread Circle Account endpoint
79965
- * @summary Delete Thread Circle Account
79966
- * @param {ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest} requestParameters Request parameters.
79967
- * @param {*} [options] Override http request option.
79968
- * @throws {RequiredError}
79969
- */
79970
- deleteThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
79971
- /**
79972
- * Get Thread Circle Account endpoint
79973
- * @summary Get Thread Circle Account
79974
- * @param {ThreadsCirclesAccountsApiGetThreadCircleAccountRequest} requestParameters Request parameters.
79975
- * @param {*} [options] Override http request option.
79976
- * @throws {RequiredError}
79977
- */
79978
- getThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircleAccount200Response>;
79979
- /**
79980
- * Get Thread Circle Accounts endpoint
79981
- * @summary Get Thread Circle Accounts
79982
- * @param {ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest} requestParameters Request parameters.
79983
- * @param {*} [options] Override http request option.
79984
- * @throws {RequiredError}
79985
- */
79986
- getThreadCircleAccounts(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadCircleAccounts200Response>;
79987
- /**
79988
- * Update Thread Circle Account endpoint
79989
- * @summary Update Thread Circle Account
79990
- * @param {ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest} requestParameters Request parameters.
79991
- * @param {*} [options] Override http request option.
79992
- * @throws {RequiredError}
79993
- */
79994
- updateThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircleAccount200Response>;
79995
- };
79996
- /**
79997
- * Request parameters for createThreadCircleAccount operation in ThreadsCirclesAccountsApi.
79998
- */
79999
- export interface ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest {
80000
- /**
80001
- * The circle identifier
80002
- */
80003
- readonly circleId: string;
80004
- readonly threadCircleAccountCreateInputs: ThreadCircleAccountCreateInputs;
80005
- }
80006
- /**
80007
- * Request parameters for deleteThreadCircleAccount operation in ThreadsCirclesAccountsApi.
80008
- */
80009
- export interface ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest {
80010
- /**
80011
- * The circle identifier
80012
- */
80013
- readonly circleId: string;
80014
- /**
80015
- * The account identifier
80016
- */
80017
- readonly accountId: string;
80018
- }
80019
- /**
80020
- * Request parameters for getThreadCircleAccount operation in ThreadsCirclesAccountsApi.
80021
- */
80022
- export interface ThreadsCirclesAccountsApiGetThreadCircleAccountRequest {
80023
- /**
80024
- * The circle identifier
80025
- */
80026
- readonly circleId: string;
80027
- /**
80028
- * The account identifier
80029
- */
80030
- readonly accountId: string;
80031
- }
80032
- /**
80033
- * Request parameters for getThreadCircleAccounts operation in ThreadsCirclesAccountsApi.
80034
- */
80035
- export interface ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest {
80036
- /**
80037
- * The circle identifier
80038
- */
80039
- readonly circleId: string;
80040
- /**
80041
- * Filter by role
80042
- */
80043
- readonly role?: ThreadCircleAccountRole;
80044
- /**
80045
- * Page number
80046
- */
80047
- readonly page?: number;
80048
- /**
80049
- * Number of items per page
80050
- */
80051
- readonly pageSize?: number;
80052
- /**
80053
- * Field to order by
80054
- */
80055
- readonly orderBy?: string;
80056
- /**
80057
- * Search query
80058
- */
80059
- readonly search?: string;
80060
- }
80061
- /**
80062
- * Request parameters for updateThreadCircleAccount operation in ThreadsCirclesAccountsApi.
80063
- */
80064
- export interface ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest {
80065
- /**
80066
- * The circle identifier
80067
- */
80068
- readonly circleId: string;
80069
- /**
80070
- * The account identifier
80071
- */
80072
- readonly accountId: string;
80073
- readonly threadCircleAccountUpdateInputs: ThreadCircleAccountUpdateInputs;
80074
- }
80075
- /**
80076
- * ThreadsCirclesAccountsApi - object-oriented interface
80077
- */
80078
- export declare class ThreadsCirclesAccountsApi extends BaseAPI {
80079
- /**
80080
- * Create Thread Circle Account endpoint
80081
- * @summary Create Thread Circle Account
80082
- * @param {ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest} requestParameters Request parameters.
80083
- * @param {*} [options] Override http request option.
80084
- * @throws {RequiredError}
80085
- */
80086
- createThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircleAccount200Response, any, {}>>;
80087
- /**
80088
- * Delete Thread Circle Account endpoint
80089
- * @summary Delete Thread Circle Account
80090
- * @param {ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest} requestParameters Request parameters.
80091
- * @param {*} [options] Override http request option.
80092
- * @throws {RequiredError}
80093
- */
80094
- deleteThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
80095
- /**
80096
- * Get Thread Circle Account endpoint
80097
- * @summary Get Thread Circle Account
80098
- * @param {ThreadsCirclesAccountsApiGetThreadCircleAccountRequest} requestParameters Request parameters.
80099
- * @param {*} [options] Override http request option.
80100
- * @throws {RequiredError}
80101
- */
80102
- getThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircleAccount200Response, any, {}>>;
80103
- /**
80104
- * Get Thread Circle Accounts endpoint
80105
- * @summary Get Thread Circle Accounts
80106
- * @param {ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest} requestParameters Request parameters.
80107
79289
  * @param {*} [options] Override http request option.
80108
79290
  * @throws {RequiredError}
80109
79291
  */
80110
- getThreadCircleAccounts(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadCircleAccounts200Response, any, {}>>;
80111
- /**
80112
- * Update Thread Circle Account endpoint
80113
- * @summary Update Thread Circle Account
80114
- * @param {ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest} requestParameters Request parameters.
80115
- * @param {*} [options] Override http request option.
80116
- * @throws {RequiredError}
80117
- */
80118
- updateThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircleAccount200Response, any, {}>>;
80119
- }
80120
- /**
80121
- * ThreadsMembersApi - axios parameter creator
80122
- */
80123
- export declare const ThreadsMembersApiAxiosParamCreator: (configuration?: Configuration) => {
79292
+ deleteThreadAccount: (threadId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80124
79293
  /**
80125
79294
  * Get Thread Accounts endpoint
80126
79295
  * @summary Get Thread Accounts
@@ -80134,47 +79303,32 @@ export declare const ThreadsMembersApiAxiosParamCreator: (configuration?: Config
80134
79303
  */
80135
79304
  getThreadAccounts: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80136
79305
  /**
80137
- * Get Thread Members endpoint
80138
- * @summary Get Thread Members
80139
- * @param {string} threadId The thread identifier
80140
- * @param {number} [page] Page number
80141
- * @param {number} [pageSize] Number of items per page
80142
- * @param {string} [orderBy] Field to order by
80143
- * @param {string} [search] Search query
80144
- * @param {*} [options] Override http request option.
80145
- * @throws {RequiredError}
80146
- */
80147
- getThreadMembers: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80148
- /**
80149
- * Update Thread Member endpoint
80150
- * @summary Update Thread Member
79306
+ * Update Thread Account endpoint
79307
+ * @summary Update Thread Account
80151
79308
  * @param {string} threadId The thread identifier
80152
79309
  * @param {string} accountId The account identifier
80153
- * @param {ThreadMemberUpdateInputs} threadMemberUpdateInputs
79310
+ * @param {ThreadAccountUpdateInputs} threadAccountUpdateInputs
80154
79311
  * @param {*} [options] Override http request option.
80155
79312
  * @throws {RequiredError}
80156
79313
  */
80157
- updateThreadMember: (threadId: string, accountId: string, threadMemberUpdateInputs: ThreadMemberUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79314
+ updateThreadAccount: (threadId: string, accountId: string, threadAccountUpdateInputs: ThreadAccountUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80158
79315
  };
80159
79316
  /**
80160
- * ThreadsMembersApi - functional programming interface
79317
+ * ThreadsAccountsApi - functional programming interface
80161
79318
  */
80162
- export declare const ThreadsMembersApiFp: (configuration?: Configuration) => {
79319
+ export declare const ThreadsAccountsApiFp: (configuration?: Configuration) => {
80163
79320
  /**
80164
- * Get Thread Accounts endpoint
80165
- * @summary Get Thread Accounts
79321
+ * Delete Thread Account endpoint
79322
+ * @summary Delete Thread Account
80166
79323
  * @param {string} threadId The thread identifier
80167
- * @param {number} [page] Page number
80168
- * @param {number} [pageSize] Number of items per page
80169
- * @param {string} [orderBy] Field to order by
80170
- * @param {string} [search] Search query
79324
+ * @param {string} accountId The account identifier
80171
79325
  * @param {*} [options] Override http request option.
80172
79326
  * @throws {RequiredError}
80173
79327
  */
80174
- getThreadAccounts(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccounts200Response>>;
79328
+ deleteThreadAccount(threadId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
80175
79329
  /**
80176
- * Get Thread Members endpoint
80177
- * @summary Get Thread Members
79330
+ * Get Thread Accounts endpoint
79331
+ * @summary Get Thread Accounts
80178
79332
  * @param {string} threadId The thread identifier
80179
79333
  * @param {number} [page] Page number
80180
79334
  * @param {number} [pageSize] Number of items per page
@@ -80183,76 +79337,64 @@ export declare const ThreadsMembersApiFp: (configuration?: Configuration) => {
80183
79337
  * @param {*} [options] Override http request option.
80184
79338
  * @throws {RequiredError}
80185
79339
  */
80186
- getThreadMembers(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadMembers200Response>>;
79340
+ getThreadAccounts(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccounts200Response>>;
80187
79341
  /**
80188
- * Update Thread Member endpoint
80189
- * @summary Update Thread Member
79342
+ * Update Thread Account endpoint
79343
+ * @summary Update Thread Account
80190
79344
  * @param {string} threadId The thread identifier
80191
79345
  * @param {string} accountId The account identifier
80192
- * @param {ThreadMemberUpdateInputs} threadMemberUpdateInputs
79346
+ * @param {ThreadAccountUpdateInputs} threadAccountUpdateInputs
80193
79347
  * @param {*} [options] Override http request option.
80194
79348
  * @throws {RequiredError}
80195
79349
  */
80196
- updateThreadMember(threadId: string, accountId: string, threadMemberUpdateInputs: ThreadMemberUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateThreadMember200Response>>;
79350
+ updateThreadAccount(threadId: string, accountId: string, threadAccountUpdateInputs: ThreadAccountUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateThreadAccount200Response>>;
80197
79351
  };
80198
79352
  /**
80199
- * ThreadsMembersApi - factory interface
79353
+ * ThreadsAccountsApi - factory interface
80200
79354
  */
80201
- export declare const ThreadsMembersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
79355
+ export declare const ThreadsAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
80202
79356
  /**
80203
- * Get Thread Accounts endpoint
80204
- * @summary Get Thread Accounts
80205
- * @param {ThreadsMembersApiGetThreadAccountsRequest} requestParameters Request parameters.
79357
+ * Delete Thread Account endpoint
79358
+ * @summary Delete Thread Account
79359
+ * @param {ThreadsAccountsApiDeleteThreadAccountRequest} requestParameters Request parameters.
80206
79360
  * @param {*} [options] Override http request option.
80207
79361
  * @throws {RequiredError}
80208
79362
  */
80209
- getThreadAccounts(requestParameters: ThreadsMembersApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccounts200Response>;
79363
+ deleteThreadAccount(requestParameters: ThreadsAccountsApiDeleteThreadAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
80210
79364
  /**
80211
- * Get Thread Members endpoint
80212
- * @summary Get Thread Members
80213
- * @param {ThreadsMembersApiGetThreadMembersRequest} requestParameters Request parameters.
79365
+ * Get Thread Accounts endpoint
79366
+ * @summary Get Thread Accounts
79367
+ * @param {ThreadsAccountsApiGetThreadAccountsRequest} requestParameters Request parameters.
80214
79368
  * @param {*} [options] Override http request option.
80215
79369
  * @throws {RequiredError}
80216
79370
  */
80217
- getThreadMembers(requestParameters: ThreadsMembersApiGetThreadMembersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadMembers200Response>;
79371
+ getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccounts200Response>;
80218
79372
  /**
80219
- * Update Thread Member endpoint
80220
- * @summary Update Thread Member
80221
- * @param {ThreadsMembersApiUpdateThreadMemberRequest} requestParameters Request parameters.
79373
+ * Update Thread Account endpoint
79374
+ * @summary Update Thread Account
79375
+ * @param {ThreadsAccountsApiUpdateThreadAccountRequest} requestParameters Request parameters.
80222
79376
  * @param {*} [options] Override http request option.
80223
79377
  * @throws {RequiredError}
80224
79378
  */
80225
- updateThreadMember(requestParameters: ThreadsMembersApiUpdateThreadMemberRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateThreadMember200Response>;
79379
+ updateThreadAccount(requestParameters: ThreadsAccountsApiUpdateThreadAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateThreadAccount200Response>;
80226
79380
  };
80227
79381
  /**
80228
- * Request parameters for getThreadAccounts operation in ThreadsMembersApi.
79382
+ * Request parameters for deleteThreadAccount operation in ThreadsAccountsApi.
80229
79383
  */
80230
- export interface ThreadsMembersApiGetThreadAccountsRequest {
79384
+ export interface ThreadsAccountsApiDeleteThreadAccountRequest {
80231
79385
  /**
80232
79386
  * The thread identifier
80233
79387
  */
80234
79388
  readonly threadId: string;
80235
79389
  /**
80236
- * Page number
80237
- */
80238
- readonly page?: number;
80239
- /**
80240
- * Number of items per page
80241
- */
80242
- readonly pageSize?: number;
80243
- /**
80244
- * Field to order by
80245
- */
80246
- readonly orderBy?: string;
80247
- /**
80248
- * Search query
79390
+ * The account identifier
80249
79391
  */
80250
- readonly search?: string;
79392
+ readonly accountId: string;
80251
79393
  }
80252
79394
  /**
80253
- * Request parameters for getThreadMembers operation in ThreadsMembersApi.
79395
+ * Request parameters for getThreadAccounts operation in ThreadsAccountsApi.
80254
79396
  */
80255
- export interface ThreadsMembersApiGetThreadMembersRequest {
79397
+ export interface ThreadsAccountsApiGetThreadAccountsRequest {
80256
79398
  /**
80257
79399
  * The thread identifier
80258
79400
  */
@@ -80275,9 +79417,9 @@ export interface ThreadsMembersApiGetThreadMembersRequest {
80275
79417
  readonly search?: string;
80276
79418
  }
80277
79419
  /**
80278
- * Request parameters for updateThreadMember operation in ThreadsMembersApi.
79420
+ * Request parameters for updateThreadAccount operation in ThreadsAccountsApi.
80279
79421
  */
80280
- export interface ThreadsMembersApiUpdateThreadMemberRequest {
79422
+ export interface ThreadsAccountsApiUpdateThreadAccountRequest {
80281
79423
  /**
80282
79424
  * The thread identifier
80283
79425
  */
@@ -80286,36 +79428,36 @@ export interface ThreadsMembersApiUpdateThreadMemberRequest {
80286
79428
  * The account identifier
80287
79429
  */
80288
79430
  readonly accountId: string;
80289
- readonly threadMemberUpdateInputs: ThreadMemberUpdateInputs;
79431
+ readonly threadAccountUpdateInputs: ThreadAccountUpdateInputs;
80290
79432
  }
80291
79433
  /**
80292
- * ThreadsMembersApi - object-oriented interface
79434
+ * ThreadsAccountsApi - object-oriented interface
80293
79435
  */
80294
- export declare class ThreadsMembersApi extends BaseAPI {
79436
+ export declare class ThreadsAccountsApi extends BaseAPI {
80295
79437
  /**
80296
- * Get Thread Accounts endpoint
80297
- * @summary Get Thread Accounts
80298
- * @param {ThreadsMembersApiGetThreadAccountsRequest} requestParameters Request parameters.
79438
+ * Delete Thread Account endpoint
79439
+ * @summary Delete Thread Account
79440
+ * @param {ThreadsAccountsApiDeleteThreadAccountRequest} requestParameters Request parameters.
80299
79441
  * @param {*} [options] Override http request option.
80300
79442
  * @throws {RequiredError}
80301
79443
  */
80302
- getThreadAccounts(requestParameters: ThreadsMembersApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccounts200Response, any, {}>>;
79444
+ deleteThreadAccount(requestParameters: ThreadsAccountsApiDeleteThreadAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
80303
79445
  /**
80304
- * Get Thread Members endpoint
80305
- * @summary Get Thread Members
80306
- * @param {ThreadsMembersApiGetThreadMembersRequest} requestParameters Request parameters.
79446
+ * Get Thread Accounts endpoint
79447
+ * @summary Get Thread Accounts
79448
+ * @param {ThreadsAccountsApiGetThreadAccountsRequest} requestParameters Request parameters.
80307
79449
  * @param {*} [options] Override http request option.
80308
79450
  * @throws {RequiredError}
80309
79451
  */
80310
- getThreadMembers(requestParameters: ThreadsMembersApiGetThreadMembersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadMembers200Response, any, {}>>;
79452
+ getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccounts200Response, any, {}>>;
80311
79453
  /**
80312
- * Update Thread Member endpoint
80313
- * @summary Update Thread Member
80314
- * @param {ThreadsMembersApiUpdateThreadMemberRequest} requestParameters Request parameters.
79454
+ * Update Thread Account endpoint
79455
+ * @summary Update Thread Account
79456
+ * @param {ThreadsAccountsApiUpdateThreadAccountRequest} requestParameters Request parameters.
80315
79457
  * @param {*} [options] Override http request option.
80316
79458
  * @throws {RequiredError}
80317
79459
  */
80318
- updateThreadMember(requestParameters: ThreadsMembersApiUpdateThreadMemberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateThreadMember200Response, any, {}>>;
79460
+ updateThreadAccount(requestParameters: ThreadsAccountsApiUpdateThreadAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateThreadAccount200Response, any, {}>>;
80319
79461
  }
80320
79462
  /**
80321
79463
  * ThreadsMessagesApi - axios parameter creator