@connectedxm/admin-sdk 6.33.1 → 7.0.1
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.
- package/.openapi-generator/FILES +7 -26
- package/AdminApi.ts +3 -9
- package/README.md +9 -39
- package/api.ts +150 -1782
- package/dist/AdminApi.d.ts +2 -4
- package/dist/AdminApi.js +1 -3
- package/dist/api.d.ts +97 -946
- package/dist/api.js +131 -1311
- package/dist/esm/AdminApi.d.ts +2 -4
- package/dist/esm/AdminApi.js +2 -4
- package/dist/esm/api.d.ts +97 -946
- package/dist/esm/api.js +102 -1273
- package/docs/BaseThread.md +0 -2
- package/docs/BaseThreadMessage.md +4 -2
- package/docs/EventsApi.md +0 -64
- package/docs/{GetThreadCircles200Response.md → GetThreadAccounts200Response.md} +4 -4
- package/docs/GroupsApi.md +0 -64
- package/docs/Thread.md +4 -2
- package/docs/{ThreadMember.md → ThreadAccount.md} +9 -5
- package/docs/{ThreadMemberUpdateInputs.md → ThreadAccountUpdateInputs.md} +5 -3
- package/docs/{ThreadCircleCreateInputs.md → ThreadAllOfCount.md} +5 -5
- package/docs/ThreadCreateInputs.md +2 -6
- package/docs/ThreadMessage.md +6 -2
- package/docs/{BaseThreadMember.md → ThreadMessageRead.md} +9 -11
- package/docs/{ThreadsMembersApi.md → ThreadsAccountsApi.md} +31 -40
- package/docs/ThreadsApi.md +0 -3
- package/docs/{UpdateThreadMember200Response.md → UpdateThreadAccount200Response.md} +4 -4
- package/package.json +1 -1
- package/docs/BaseThreadCircle.md +0 -28
- package/docs/BaseThreadCircleAccount.md +0 -24
- package/docs/CreateThreadCircle200Response.md +0 -24
- package/docs/CreateThreadCircleAccount200Response.md +0 -24
- package/docs/GetThreadCircleAccounts200Response.md +0 -26
- package/docs/GetThreadMembers200Response.md +0 -26
- package/docs/ThreadCircle.md +0 -28
- package/docs/ThreadCircleAccount.md +0 -24
- package/docs/ThreadCircleAccountCreateInputs.md +0 -22
- package/docs/ThreadCircleAccountRole.md +0 -12
- package/docs/ThreadCircleAccountUpdateInputs.md +0 -20
- package/docs/ThreadCircleType.md +0 -10
- package/docs/ThreadCircleUpdateInputs.md +0 -20
- package/docs/ThreadInvitation.md +0 -42
- package/docs/ThreadInvitationStatus.md +0 -10
- package/docs/ThreadMemberRole.md +0 -10
- package/docs/ThreadType.md +0 -14
- package/docs/ThreadsCirclesAccountsApi.md +0 -299
- 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
|
-
'
|
|
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,31 +8670,13 @@ export interface GetTaxLogs200Response {
|
|
|
8706
8670
|
export declare enum GetTaxLogs200ResponseStatusEnum {
|
|
8707
8671
|
Ok = "ok"
|
|
8708
8672
|
}
|
|
8709
|
-
export interface
|
|
8710
|
-
'status':
|
|
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;
|
|
8673
|
+
export interface GetThreadAccounts200Response {
|
|
8674
|
+
'status': GetThreadAccounts200ResponseStatusEnum;
|
|
8720
8675
|
'message': string;
|
|
8721
|
-
'data': Array<
|
|
8676
|
+
'data': Array<ThreadAccount>;
|
|
8722
8677
|
'count'?: number;
|
|
8723
8678
|
}
|
|
8724
|
-
export declare enum
|
|
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 {
|
|
8679
|
+
export declare enum GetThreadAccounts200ResponseStatusEnum {
|
|
8734
8680
|
Ok = "ok"
|
|
8735
8681
|
}
|
|
8736
8682
|
export interface GetThreadMessageFiles200Response {
|
|
@@ -12171,95 +12117,45 @@ export interface Thread {
|
|
|
12171
12117
|
'subject': string;
|
|
12172
12118
|
'imageId': string | null;
|
|
12173
12119
|
'image': BaseImage | null;
|
|
12174
|
-
'type': ThreadType;
|
|
12175
12120
|
'lastMessageAt': string | null;
|
|
12176
12121
|
'lastMessage': string | null;
|
|
12177
12122
|
'createdAt': string;
|
|
12123
|
+
'accounts': Array<ThreadAccount>;
|
|
12124
|
+
'_count'?: ThreadAllOfCount;
|
|
12178
12125
|
}
|
|
12179
|
-
export interface
|
|
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 {
|
|
12126
|
+
export interface ThreadAccount {
|
|
12221
12127
|
'id': string;
|
|
12222
|
-
'organizationId': string;
|
|
12223
12128
|
'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
12129
|
'accountId': string;
|
|
12130
|
+
'account': BaseAccount;
|
|
12241
12131
|
'lastReadAt': string | null;
|
|
12132
|
+
'typingAt': string | null;
|
|
12242
12133
|
'notifications': boolean;
|
|
12243
|
-
'account': BaseAccount;
|
|
12244
12134
|
'blocked': boolean;
|
|
12245
12135
|
'createdAt': string;
|
|
12246
12136
|
'updatedAt': string;
|
|
12247
12137
|
}
|
|
12248
|
-
export
|
|
12249
|
-
|
|
12250
|
-
Moderator = "moderator"
|
|
12251
|
-
}
|
|
12252
|
-
export interface ThreadMemberUpdateInputs {
|
|
12138
|
+
export interface ThreadAccountUpdateInputs {
|
|
12139
|
+
'notifications'?: boolean;
|
|
12253
12140
|
'blocked'?: boolean;
|
|
12254
12141
|
}
|
|
12142
|
+
export interface ThreadAllOfCount {
|
|
12143
|
+
'messages'?: number;
|
|
12144
|
+
}
|
|
12145
|
+
export interface ThreadCreateInputs {
|
|
12146
|
+
'accountIds': Array<string>;
|
|
12147
|
+
'subject'?: string | null;
|
|
12148
|
+
'imageId'?: string | null;
|
|
12149
|
+
}
|
|
12255
12150
|
export interface ThreadMessage {
|
|
12256
12151
|
'id': string;
|
|
12257
12152
|
'body': string;
|
|
12258
12153
|
'accountId': string | null;
|
|
12259
|
-
'
|
|
12154
|
+
'threadAccount': ThreadAccount | null;
|
|
12260
12155
|
'createdAt': string;
|
|
12261
12156
|
'editedAt': string | null;
|
|
12262
12157
|
'sentAt': string;
|
|
12158
|
+
'deletedAt'?: string | null;
|
|
12263
12159
|
'type': ThreadMessageType;
|
|
12264
12160
|
'reactions': Array<ThreadMessageReaction>;
|
|
12265
12161
|
'entities': Array<ThreadMessageEntity>;
|
|
@@ -12268,6 +12164,7 @@ export interface ThreadMessage {
|
|
|
12268
12164
|
'files': Array<BaseFile>;
|
|
12269
12165
|
'images': Array<BaseImage>;
|
|
12270
12166
|
'videos': Array<BaseVideo>;
|
|
12167
|
+
'reads'?: Array<ThreadMessageRead>;
|
|
12271
12168
|
}
|
|
12272
12169
|
export interface ThreadMessageCreateInputs {
|
|
12273
12170
|
'accountId': string;
|
|
@@ -12302,6 +12199,13 @@ export interface ThreadMessageReactionCreateInputs {
|
|
|
12302
12199
|
export interface ThreadMessageReactionUpdateInputs {
|
|
12303
12200
|
'emojiName'?: string;
|
|
12304
12201
|
}
|
|
12202
|
+
export interface ThreadMessageRead {
|
|
12203
|
+
'id': string;
|
|
12204
|
+
'threadId': string;
|
|
12205
|
+
'messageId': string;
|
|
12206
|
+
'accountId': string;
|
|
12207
|
+
'readAt': string;
|
|
12208
|
+
}
|
|
12305
12209
|
export declare enum ThreadMessageType {
|
|
12306
12210
|
User = "user",
|
|
12307
12211
|
Bot = "bot",
|
|
@@ -12311,12 +12215,6 @@ export interface ThreadMessageUpdateInputs {
|
|
|
12311
12215
|
'body': string;
|
|
12312
12216
|
'entities': Array<object>;
|
|
12313
12217
|
}
|
|
12314
|
-
export declare enum ThreadType {
|
|
12315
|
-
Circle = "circle",
|
|
12316
|
-
Group = "group",
|
|
12317
|
-
Event = "event",
|
|
12318
|
-
Stream = "stream"
|
|
12319
|
-
}
|
|
12320
12218
|
export interface ThreadUpdateInputs {
|
|
12321
12219
|
'subject'?: string | null;
|
|
12322
12220
|
'imageId'?: string | null;
|
|
@@ -12508,12 +12406,12 @@ export interface UpdateSeriesQuestionTranslation200Response {
|
|
|
12508
12406
|
export declare enum UpdateSeriesQuestionTranslation200ResponseStatusEnum {
|
|
12509
12407
|
Ok = "ok"
|
|
12510
12408
|
}
|
|
12511
|
-
export interface
|
|
12512
|
-
'status':
|
|
12409
|
+
export interface UpdateThreadAccount200Response {
|
|
12410
|
+
'status': UpdateThreadAccount200ResponseStatusEnum;
|
|
12513
12411
|
'message': string;
|
|
12514
|
-
'data':
|
|
12412
|
+
'data': ThreadAccount;
|
|
12515
12413
|
}
|
|
12516
|
-
export declare enum
|
|
12414
|
+
export declare enum UpdateThreadAccount200ResponseStatusEnum {
|
|
12517
12415
|
Ok = "ok"
|
|
12518
12416
|
}
|
|
12519
12417
|
export interface UploadFile200Response {
|
|
@@ -24568,18 +24466,6 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24568
24466
|
* @throws {RequiredError}
|
|
24569
24467
|
*/
|
|
24570
24468
|
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
24469
|
/**
|
|
24584
24470
|
* Get Event Tiers endpoint
|
|
24585
24471
|
* @summary Get Event Tiers
|
|
@@ -24690,18 +24576,6 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24690
24576
|
* @throws {RequiredError}
|
|
24691
24577
|
*/
|
|
24692
24578
|
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
24579
|
/**
|
|
24706
24580
|
* Get Event Tiers endpoint
|
|
24707
24581
|
* @summary Get Event Tiers
|
|
@@ -24801,14 +24675,6 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24801
24675
|
* @throws {RequiredError}
|
|
24802
24676
|
*/
|
|
24803
24677
|
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
24678
|
/**
|
|
24813
24679
|
* Get Event Tiers endpoint
|
|
24814
24680
|
* @summary Get Event Tiers
|
|
@@ -24944,31 +24810,6 @@ export interface EventsApiGetEventPaymentsRequest {
|
|
|
24944
24810
|
*/
|
|
24945
24811
|
readonly search?: string;
|
|
24946
24812
|
}
|
|
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
24813
|
/**
|
|
24973
24814
|
* Request parameters for getEventTiers operation in EventsApi.
|
|
24974
24815
|
*/
|
|
@@ -25085,14 +24926,6 @@ export declare class EventsApi extends BaseAPI {
|
|
|
25085
24926
|
* @throws {RequiredError}
|
|
25086
24927
|
*/
|
|
25087
24928
|
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
24929
|
/**
|
|
25097
24930
|
* Get Event Tiers endpoint
|
|
25098
24931
|
* @summary Get Event Tiers
|
|
@@ -57356,18 +57189,6 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
57356
57189
|
* @throws {RequiredError}
|
|
57357
57190
|
*/
|
|
57358
57191
|
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
57192
|
/**
|
|
57372
57193
|
* Get Groups endpoint
|
|
57373
57194
|
* @summary Get Groups
|
|
@@ -57433,18 +57254,6 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
57433
57254
|
* @throws {RequiredError}
|
|
57434
57255
|
*/
|
|
57435
57256
|
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
57257
|
/**
|
|
57449
57258
|
* Get Groups endpoint
|
|
57450
57259
|
* @summary Get Groups
|
|
@@ -57504,14 +57313,6 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
57504
57313
|
* @throws {RequiredError}
|
|
57505
57314
|
*/
|
|
57506
57315
|
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
57316
|
/**
|
|
57516
57317
|
* Get Groups endpoint
|
|
57517
57318
|
* @summary Get Groups
|
|
@@ -57586,31 +57387,6 @@ export interface GroupsApiGetGroupActivitiesRequest {
|
|
|
57586
57387
|
*/
|
|
57587
57388
|
readonly search?: string;
|
|
57588
57389
|
}
|
|
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
57390
|
/**
|
|
57615
57391
|
* Request parameters for getGroups operation in GroupsApi.
|
|
57616
57392
|
*/
|
|
@@ -57686,14 +57462,6 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
57686
57462
|
* @throws {RequiredError}
|
|
57687
57463
|
*/
|
|
57688
57464
|
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
57465
|
/**
|
|
57698
57466
|
* Get Groups endpoint
|
|
57699
57467
|
* @summary Get Groups
|
|
@@ -79306,7 +79074,6 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
79306
79074
|
/**
|
|
79307
79075
|
* Get Threads endpoint
|
|
79308
79076
|
* @summary Get Threads
|
|
79309
|
-
* @param {ThreadType} [type] Filter by type
|
|
79310
79077
|
* @param {number} [page] Page number
|
|
79311
79078
|
* @param {number} [pageSize] Number of items per page
|
|
79312
79079
|
* @param {string} [orderBy] Field to order by
|
|
@@ -79314,7 +79081,7 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
79314
79081
|
* @param {*} [options] Override http request option.
|
|
79315
79082
|
* @throws {RequiredError}
|
|
79316
79083
|
*/
|
|
79317
|
-
getThreads: (
|
|
79084
|
+
getThreads: (page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79318
79085
|
/**
|
|
79319
79086
|
* Update Thread endpoint
|
|
79320
79087
|
* @summary Update Thread
|
|
@@ -79356,7 +79123,6 @@ export declare const ThreadsApiFp: (configuration?: Configuration) => {
|
|
|
79356
79123
|
/**
|
|
79357
79124
|
* Get Threads endpoint
|
|
79358
79125
|
* @summary Get Threads
|
|
79359
|
-
* @param {ThreadType} [type] Filter by type
|
|
79360
79126
|
* @param {number} [page] Page number
|
|
79361
79127
|
* @param {number} [pageSize] Number of items per page
|
|
79362
79128
|
* @param {string} [orderBy] Field to order by
|
|
@@ -79364,7 +79130,7 @@ export declare const ThreadsApiFp: (configuration?: Configuration) => {
|
|
|
79364
79130
|
* @param {*} [options] Override http request option.
|
|
79365
79131
|
* @throws {RequiredError}
|
|
79366
79132
|
*/
|
|
79367
|
-
getThreads(
|
|
79133
|
+
getThreads(page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
|
|
79368
79134
|
/**
|
|
79369
79135
|
* Update Thread endpoint
|
|
79370
79136
|
* @summary Update Thread
|
|
@@ -79448,10 +79214,6 @@ export interface ThreadsApiGetThreadRequest {
|
|
|
79448
79214
|
* Request parameters for getThreads operation in ThreadsApi.
|
|
79449
79215
|
*/
|
|
79450
79216
|
export interface ThreadsApiGetThreadsRequest {
|
|
79451
|
-
/**
|
|
79452
|
-
* Filter by type
|
|
79453
|
-
*/
|
|
79454
|
-
readonly type?: ThreadType;
|
|
79455
79217
|
/**
|
|
79456
79218
|
* Page number
|
|
79457
79219
|
*/
|
|
@@ -79525,602 +79287,18 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
79525
79287
|
updateThread(requestParameters: ThreadsApiUpdateThreadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThread200Response, any, {}>>;
|
|
79526
79288
|
}
|
|
79527
79289
|
/**
|
|
79528
|
-
*
|
|
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
|
|
79653
|
-
*/
|
|
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>;
|
|
79695
|
-
/**
|
|
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.
|
|
79290
|
+
* ThreadsAccountsApi - axios parameter creator
|
|
79780
79291
|
*/
|
|
79781
|
-
export
|
|
79292
|
+
export declare const ThreadsAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79782
79293
|
/**
|
|
79783
|
-
*
|
|
79784
|
-
|
|
79785
|
-
|
|
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
|
|
79294
|
+
* Delete Thread Account endpoint
|
|
79295
|
+
* @summary Delete Thread Account
|
|
79296
|
+
* @param {string} threadId The thread identifier
|
|
79944
79297
|
* @param {string} accountId The account identifier
|
|
79945
|
-
* @param {ThreadCircleAccountUpdateInputs} threadCircleAccountUpdateInputs
|
|
79946
79298
|
* @param {*} [options] Override http request option.
|
|
79947
79299
|
* @throws {RequiredError}
|
|
79948
79300
|
*/
|
|
79949
|
-
|
|
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
|
-
* @param {*} [options] Override http request option.
|
|
80108
|
-
* @throws {RequiredError}
|
|
80109
|
-
*/
|
|
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) => {
|
|
79301
|
+
deleteThreadAccount: (threadId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80124
79302
|
/**
|
|
80125
79303
|
* Get Thread Accounts endpoint
|
|
80126
79304
|
* @summary Get Thread Accounts
|
|
@@ -80134,47 +79312,32 @@ export declare const ThreadsMembersApiAxiosParamCreator: (configuration?: Config
|
|
|
80134
79312
|
*/
|
|
80135
79313
|
getThreadAccounts: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80136
79314
|
/**
|
|
80137
|
-
*
|
|
80138
|
-
* @summary
|
|
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
|
|
79315
|
+
* Update Thread Account endpoint
|
|
79316
|
+
* @summary Update Thread Account
|
|
80151
79317
|
* @param {string} threadId The thread identifier
|
|
80152
79318
|
* @param {string} accountId The account identifier
|
|
80153
|
-
* @param {
|
|
79319
|
+
* @param {ThreadAccountUpdateInputs} threadAccountUpdateInputs
|
|
80154
79320
|
* @param {*} [options] Override http request option.
|
|
80155
79321
|
* @throws {RequiredError}
|
|
80156
79322
|
*/
|
|
80157
|
-
|
|
79323
|
+
updateThreadAccount: (threadId: string, accountId: string, threadAccountUpdateInputs: ThreadAccountUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80158
79324
|
};
|
|
80159
79325
|
/**
|
|
80160
|
-
*
|
|
79326
|
+
* ThreadsAccountsApi - functional programming interface
|
|
80161
79327
|
*/
|
|
80162
|
-
export declare const
|
|
79328
|
+
export declare const ThreadsAccountsApiFp: (configuration?: Configuration) => {
|
|
80163
79329
|
/**
|
|
80164
|
-
*
|
|
80165
|
-
* @summary
|
|
79330
|
+
* Delete Thread Account endpoint
|
|
79331
|
+
* @summary Delete Thread Account
|
|
80166
79332
|
* @param {string} threadId The thread identifier
|
|
80167
|
-
* @param {
|
|
80168
|
-
* @param {number} [pageSize] Number of items per page
|
|
80169
|
-
* @param {string} [orderBy] Field to order by
|
|
80170
|
-
* @param {string} [search] Search query
|
|
79333
|
+
* @param {string} accountId The account identifier
|
|
80171
79334
|
* @param {*} [options] Override http request option.
|
|
80172
79335
|
* @throws {RequiredError}
|
|
80173
79336
|
*/
|
|
80174
|
-
|
|
79337
|
+
deleteThreadAccount(threadId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
80175
79338
|
/**
|
|
80176
|
-
* Get Thread
|
|
80177
|
-
* @summary Get Thread
|
|
79339
|
+
* Get Thread Accounts endpoint
|
|
79340
|
+
* @summary Get Thread Accounts
|
|
80178
79341
|
* @param {string} threadId The thread identifier
|
|
80179
79342
|
* @param {number} [page] Page number
|
|
80180
79343
|
* @param {number} [pageSize] Number of items per page
|
|
@@ -80183,76 +79346,64 @@ export declare const ThreadsMembersApiFp: (configuration?: Configuration) => {
|
|
|
80183
79346
|
* @param {*} [options] Override http request option.
|
|
80184
79347
|
* @throws {RequiredError}
|
|
80185
79348
|
*/
|
|
80186
|
-
|
|
79349
|
+
getThreadAccounts(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadAccounts200Response>>;
|
|
80187
79350
|
/**
|
|
80188
|
-
* Update Thread
|
|
80189
|
-
* @summary Update Thread
|
|
79351
|
+
* Update Thread Account endpoint
|
|
79352
|
+
* @summary Update Thread Account
|
|
80190
79353
|
* @param {string} threadId The thread identifier
|
|
80191
79354
|
* @param {string} accountId The account identifier
|
|
80192
|
-
* @param {
|
|
79355
|
+
* @param {ThreadAccountUpdateInputs} threadAccountUpdateInputs
|
|
80193
79356
|
* @param {*} [options] Override http request option.
|
|
80194
79357
|
* @throws {RequiredError}
|
|
80195
79358
|
*/
|
|
80196
|
-
|
|
79359
|
+
updateThreadAccount(threadId: string, accountId: string, threadAccountUpdateInputs: ThreadAccountUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateThreadAccount200Response>>;
|
|
80197
79360
|
};
|
|
80198
79361
|
/**
|
|
80199
|
-
*
|
|
79362
|
+
* ThreadsAccountsApi - factory interface
|
|
80200
79363
|
*/
|
|
80201
|
-
export declare const
|
|
79364
|
+
export declare const ThreadsAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
80202
79365
|
/**
|
|
80203
|
-
*
|
|
80204
|
-
* @summary
|
|
80205
|
-
* @param {
|
|
79366
|
+
* Delete Thread Account endpoint
|
|
79367
|
+
* @summary Delete Thread Account
|
|
79368
|
+
* @param {ThreadsAccountsApiDeleteThreadAccountRequest} requestParameters Request parameters.
|
|
80206
79369
|
* @param {*} [options] Override http request option.
|
|
80207
79370
|
* @throws {RequiredError}
|
|
80208
79371
|
*/
|
|
80209
|
-
|
|
79372
|
+
deleteThreadAccount(requestParameters: ThreadsAccountsApiDeleteThreadAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
80210
79373
|
/**
|
|
80211
|
-
* Get Thread
|
|
80212
|
-
* @summary Get Thread
|
|
80213
|
-
* @param {
|
|
79374
|
+
* Get Thread Accounts endpoint
|
|
79375
|
+
* @summary Get Thread Accounts
|
|
79376
|
+
* @param {ThreadsAccountsApiGetThreadAccountsRequest} requestParameters Request parameters.
|
|
80214
79377
|
* @param {*} [options] Override http request option.
|
|
80215
79378
|
* @throws {RequiredError}
|
|
80216
79379
|
*/
|
|
80217
|
-
|
|
79380
|
+
getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadAccounts200Response>;
|
|
80218
79381
|
/**
|
|
80219
|
-
* Update Thread
|
|
80220
|
-
* @summary Update Thread
|
|
80221
|
-
* @param {
|
|
79382
|
+
* Update Thread Account endpoint
|
|
79383
|
+
* @summary Update Thread Account
|
|
79384
|
+
* @param {ThreadsAccountsApiUpdateThreadAccountRequest} requestParameters Request parameters.
|
|
80222
79385
|
* @param {*} [options] Override http request option.
|
|
80223
79386
|
* @throws {RequiredError}
|
|
80224
79387
|
*/
|
|
80225
|
-
|
|
79388
|
+
updateThreadAccount(requestParameters: ThreadsAccountsApiUpdateThreadAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateThreadAccount200Response>;
|
|
80226
79389
|
};
|
|
80227
79390
|
/**
|
|
80228
|
-
* Request parameters for
|
|
79391
|
+
* Request parameters for deleteThreadAccount operation in ThreadsAccountsApi.
|
|
80229
79392
|
*/
|
|
80230
|
-
export interface
|
|
79393
|
+
export interface ThreadsAccountsApiDeleteThreadAccountRequest {
|
|
80231
79394
|
/**
|
|
80232
79395
|
* The thread identifier
|
|
80233
79396
|
*/
|
|
80234
79397
|
readonly threadId: string;
|
|
80235
79398
|
/**
|
|
80236
|
-
*
|
|
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
|
|
79399
|
+
* The account identifier
|
|
80249
79400
|
*/
|
|
80250
|
-
readonly
|
|
79401
|
+
readonly accountId: string;
|
|
80251
79402
|
}
|
|
80252
79403
|
/**
|
|
80253
|
-
* Request parameters for
|
|
79404
|
+
* Request parameters for getThreadAccounts operation in ThreadsAccountsApi.
|
|
80254
79405
|
*/
|
|
80255
|
-
export interface
|
|
79406
|
+
export interface ThreadsAccountsApiGetThreadAccountsRequest {
|
|
80256
79407
|
/**
|
|
80257
79408
|
* The thread identifier
|
|
80258
79409
|
*/
|
|
@@ -80275,9 +79426,9 @@ export interface ThreadsMembersApiGetThreadMembersRequest {
|
|
|
80275
79426
|
readonly search?: string;
|
|
80276
79427
|
}
|
|
80277
79428
|
/**
|
|
80278
|
-
* Request parameters for
|
|
79429
|
+
* Request parameters for updateThreadAccount operation in ThreadsAccountsApi.
|
|
80279
79430
|
*/
|
|
80280
|
-
export interface
|
|
79431
|
+
export interface ThreadsAccountsApiUpdateThreadAccountRequest {
|
|
80281
79432
|
/**
|
|
80282
79433
|
* The thread identifier
|
|
80283
79434
|
*/
|
|
@@ -80286,36 +79437,36 @@ export interface ThreadsMembersApiUpdateThreadMemberRequest {
|
|
|
80286
79437
|
* The account identifier
|
|
80287
79438
|
*/
|
|
80288
79439
|
readonly accountId: string;
|
|
80289
|
-
readonly
|
|
79440
|
+
readonly threadAccountUpdateInputs: ThreadAccountUpdateInputs;
|
|
80290
79441
|
}
|
|
80291
79442
|
/**
|
|
80292
|
-
*
|
|
79443
|
+
* ThreadsAccountsApi - object-oriented interface
|
|
80293
79444
|
*/
|
|
80294
|
-
export declare class
|
|
79445
|
+
export declare class ThreadsAccountsApi extends BaseAPI {
|
|
80295
79446
|
/**
|
|
80296
|
-
*
|
|
80297
|
-
* @summary
|
|
80298
|
-
* @param {
|
|
79447
|
+
* Delete Thread Account endpoint
|
|
79448
|
+
* @summary Delete Thread Account
|
|
79449
|
+
* @param {ThreadsAccountsApiDeleteThreadAccountRequest} requestParameters Request parameters.
|
|
80299
79450
|
* @param {*} [options] Override http request option.
|
|
80300
79451
|
* @throws {RequiredError}
|
|
80301
79452
|
*/
|
|
80302
|
-
|
|
79453
|
+
deleteThreadAccount(requestParameters: ThreadsAccountsApiDeleteThreadAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
80303
79454
|
/**
|
|
80304
|
-
* Get Thread
|
|
80305
|
-
* @summary Get Thread
|
|
80306
|
-
* @param {
|
|
79455
|
+
* Get Thread Accounts endpoint
|
|
79456
|
+
* @summary Get Thread Accounts
|
|
79457
|
+
* @param {ThreadsAccountsApiGetThreadAccountsRequest} requestParameters Request parameters.
|
|
80307
79458
|
* @param {*} [options] Override http request option.
|
|
80308
79459
|
* @throws {RequiredError}
|
|
80309
79460
|
*/
|
|
80310
|
-
|
|
79461
|
+
getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadAccounts200Response, any, {}>>;
|
|
80311
79462
|
/**
|
|
80312
|
-
* Update Thread
|
|
80313
|
-
* @summary Update Thread
|
|
80314
|
-
* @param {
|
|
79463
|
+
* Update Thread Account endpoint
|
|
79464
|
+
* @summary Update Thread Account
|
|
79465
|
+
* @param {ThreadsAccountsApiUpdateThreadAccountRequest} requestParameters Request parameters.
|
|
80315
79466
|
* @param {*} [options] Override http request option.
|
|
80316
79467
|
* @throws {RequiredError}
|
|
80317
79468
|
*/
|
|
80318
|
-
|
|
79469
|
+
updateThreadAccount(requestParameters: ThreadsAccountsApiUpdateThreadAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateThreadAccount200Response, any, {}>>;
|
|
80319
79470
|
}
|
|
80320
79471
|
/**
|
|
80321
79472
|
* ThreadsMessagesApi - axios parameter creator
|