@connectedxm/admin-sdk 6.33.0 → 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.
- package/.openapi-generator/FILES +7 -26
- package/AdminApi.ts +3 -9
- package/README.md +10 -39
- package/api.ts +239 -1777
- package/dist/AdminApi.d.ts +2 -4
- package/dist/AdminApi.js +1 -3
- package/dist/api.d.ts +148 -951
- package/dist/api.js +204 -1308
- package/dist/esm/AdminApi.d.ts +2 -4
- package/dist/esm/AdminApi.js +2 -4
- package/dist/esm/api.d.ts +148 -951
- package/dist/esm/api.js +175 -1270
- package/docs/BaseEventActivation.md +2 -0
- package/docs/BaseThread.md +0 -2
- package/docs/BaseThreadMessage.md +4 -2
- package/docs/EventActivation.md +2 -0
- package/docs/EventActivationCreateInputs.md +2 -0
- package/docs/{ThreadCircleType.md → EventActivationRewardType.md} +3 -3
- package/docs/EventActivationUpdateInputs.md +2 -0
- package/docs/EventsActivationsSessionsApi.md +55 -0
- package/docs/EventsApi.md +0 -64
- 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/GetThreadCircles200Response.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/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
|
@@ -1138,6 +1138,7 @@ export interface BaseEventActivation {
|
|
|
1138
1138
|
'maxPoints': number;
|
|
1139
1139
|
'startAfter': string | null;
|
|
1140
1140
|
'type': EventActivationType;
|
|
1141
|
+
'rewardType': EventActivationRewardType;
|
|
1141
1142
|
'accessLevel': PassTypeAccessLevel;
|
|
1142
1143
|
'sortOrder': number;
|
|
1143
1144
|
'survey': BaseSurvey | null;
|
|
@@ -2347,39 +2348,19 @@ export interface BaseThread {
|
|
|
2347
2348
|
'subject': string;
|
|
2348
2349
|
'imageId': string | null;
|
|
2349
2350
|
'image': BaseImage | null;
|
|
2350
|
-
'type': ThreadType;
|
|
2351
2351
|
'lastMessageAt': string | null;
|
|
2352
2352
|
'lastMessage': string | null;
|
|
2353
2353
|
'createdAt': string;
|
|
2354
2354
|
}
|
|
2355
|
-
export interface BaseThreadCircle {
|
|
2356
|
-
'id': string;
|
|
2357
|
-
'name': string;
|
|
2358
|
-
'createdAt': string;
|
|
2359
|
-
'updatedAt': string;
|
|
2360
|
-
'type': ThreadCircleType;
|
|
2361
|
-
}
|
|
2362
|
-
export interface BaseThreadCircleAccount {
|
|
2363
|
-
'accountId': string;
|
|
2364
|
-
'role': ThreadCircleAccountRole;
|
|
2365
|
-
'account': BaseAccount;
|
|
2366
|
-
}
|
|
2367
|
-
export interface BaseThreadMember {
|
|
2368
|
-
'id': string;
|
|
2369
|
-
'accountId': string;
|
|
2370
|
-
'lastReadAt': string | null;
|
|
2371
|
-
'notifications': boolean;
|
|
2372
|
-
'account': BaseAccount;
|
|
2373
|
-
'blocked': boolean;
|
|
2374
|
-
}
|
|
2375
2355
|
export interface BaseThreadMessage {
|
|
2376
2356
|
'id': string;
|
|
2377
2357
|
'body': string;
|
|
2378
2358
|
'accountId': string | null;
|
|
2379
|
-
'
|
|
2359
|
+
'threadAccount': ThreadAccount | null;
|
|
2380
2360
|
'createdAt': string;
|
|
2381
2361
|
'editedAt': string | null;
|
|
2382
2362
|
'sentAt': string;
|
|
2363
|
+
'deletedAt'?: string | null;
|
|
2383
2364
|
}
|
|
2384
2365
|
export interface BaseThreadMessageEntity {
|
|
2385
2366
|
'type': string;
|
|
@@ -3997,22 +3978,6 @@ export interface CreateThread200Response {
|
|
|
3997
3978
|
export declare enum CreateThread200ResponseStatusEnum {
|
|
3998
3979
|
Ok = "ok"
|
|
3999
3980
|
}
|
|
4000
|
-
export interface CreateThreadCircle200Response {
|
|
4001
|
-
'status': CreateThreadCircle200ResponseStatusEnum;
|
|
4002
|
-
'message': string;
|
|
4003
|
-
'data': ThreadCircle;
|
|
4004
|
-
}
|
|
4005
|
-
export declare enum CreateThreadCircle200ResponseStatusEnum {
|
|
4006
|
-
Ok = "ok"
|
|
4007
|
-
}
|
|
4008
|
-
export interface CreateThreadCircleAccount200Response {
|
|
4009
|
-
'status': CreateThreadCircleAccount200ResponseStatusEnum;
|
|
4010
|
-
'message': string;
|
|
4011
|
-
'data': ThreadCircleAccount;
|
|
4012
|
-
}
|
|
4013
|
-
export declare enum CreateThreadCircleAccount200ResponseStatusEnum {
|
|
4014
|
-
Ok = "ok"
|
|
4015
|
-
}
|
|
4016
3981
|
export interface CreateThreadMessage200Response {
|
|
4017
3982
|
'status': CreateThreadMessage200ResponseStatusEnum;
|
|
4018
3983
|
'message': string;
|
|
@@ -4324,6 +4289,7 @@ export interface EventActivation {
|
|
|
4324
4289
|
'maxPoints': number;
|
|
4325
4290
|
'startAfter': string | null;
|
|
4326
4291
|
'type': EventActivationType;
|
|
4292
|
+
'rewardType': EventActivationRewardType;
|
|
4327
4293
|
'accessLevel': PassTypeAccessLevel;
|
|
4328
4294
|
'sortOrder': number;
|
|
4329
4295
|
'survey': BaseSurvey | null;
|
|
@@ -4357,6 +4323,7 @@ export interface EventActivationCreateInputs {
|
|
|
4357
4323
|
'maxPoints'?: AdvertisementCreateInputsWeight | null;
|
|
4358
4324
|
'startAfter'?: string | null;
|
|
4359
4325
|
'type'?: EventActivationType;
|
|
4326
|
+
'rewardType'?: EventActivationRewardType;
|
|
4360
4327
|
'protectionCode'?: AdvertisementCreateInputsWeight | null;
|
|
4361
4328
|
'email'?: boolean;
|
|
4362
4329
|
'push'?: boolean;
|
|
@@ -4366,6 +4333,10 @@ export interface EventActivationCreateInputs {
|
|
|
4366
4333
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4367
4334
|
'imageUpload'?: boolean;
|
|
4368
4335
|
}
|
|
4336
|
+
export declare enum EventActivationRewardType {
|
|
4337
|
+
Max = "max",
|
|
4338
|
+
Input = "input"
|
|
4339
|
+
}
|
|
4369
4340
|
export interface EventActivationTranslation {
|
|
4370
4341
|
'locale': string;
|
|
4371
4342
|
'name': string;
|
|
@@ -4392,6 +4363,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4392
4363
|
'maxPoints'?: AdvertisementCreateInputsWeight | null;
|
|
4393
4364
|
'startAfter'?: string | null;
|
|
4394
4365
|
'type'?: EventActivationType;
|
|
4366
|
+
'rewardType'?: EventActivationRewardType;
|
|
4395
4367
|
'protectionCode'?: AdvertisementCreateInputsWeight | null;
|
|
4396
4368
|
'accessLevel'?: PassTypeAccessLevel;
|
|
4397
4369
|
'continuousScanning'?: boolean;
|
|
@@ -8698,33 +8670,6 @@ export interface GetTaxLogs200Response {
|
|
|
8698
8670
|
export declare enum GetTaxLogs200ResponseStatusEnum {
|
|
8699
8671
|
Ok = "ok"
|
|
8700
8672
|
}
|
|
8701
|
-
export interface GetThreadCircleAccounts200Response {
|
|
8702
|
-
'status': GetThreadCircleAccounts200ResponseStatusEnum;
|
|
8703
|
-
'message': string;
|
|
8704
|
-
'data': Array<ThreadCircleAccount>;
|
|
8705
|
-
'count'?: number;
|
|
8706
|
-
}
|
|
8707
|
-
export declare enum GetThreadCircleAccounts200ResponseStatusEnum {
|
|
8708
|
-
Ok = "ok"
|
|
8709
|
-
}
|
|
8710
|
-
export interface GetThreadCircles200Response {
|
|
8711
|
-
'status': GetThreadCircles200ResponseStatusEnum;
|
|
8712
|
-
'message': string;
|
|
8713
|
-
'data': Array<ThreadCircle>;
|
|
8714
|
-
'count'?: number;
|
|
8715
|
-
}
|
|
8716
|
-
export declare enum GetThreadCircles200ResponseStatusEnum {
|
|
8717
|
-
Ok = "ok"
|
|
8718
|
-
}
|
|
8719
|
-
export interface GetThreadMembers200Response {
|
|
8720
|
-
'status': GetThreadMembers200ResponseStatusEnum;
|
|
8721
|
-
'message': string;
|
|
8722
|
-
'data': Array<ThreadMember>;
|
|
8723
|
-
'count'?: number;
|
|
8724
|
-
}
|
|
8725
|
-
export declare enum GetThreadMembers200ResponseStatusEnum {
|
|
8726
|
-
Ok = "ok"
|
|
8727
|
-
}
|
|
8728
8673
|
export interface GetThreadMessageFiles200Response {
|
|
8729
8674
|
'status': GetThreadMessageFiles200ResponseStatusEnum;
|
|
8730
8675
|
'message': string;
|
|
@@ -12163,95 +12108,45 @@ export interface Thread {
|
|
|
12163
12108
|
'subject': string;
|
|
12164
12109
|
'imageId': string | null;
|
|
12165
12110
|
'image': BaseImage | null;
|
|
12166
|
-
'type': ThreadType;
|
|
12167
12111
|
'lastMessageAt': string | null;
|
|
12168
12112
|
'lastMessage': string | null;
|
|
12169
12113
|
'createdAt': string;
|
|
12114
|
+
'accounts': Array<ThreadAccount>;
|
|
12115
|
+
'_count'?: ThreadAllOfCount;
|
|
12170
12116
|
}
|
|
12171
|
-
export interface
|
|
12117
|
+
export interface ThreadAccount {
|
|
12172
12118
|
'id': string;
|
|
12173
|
-
'name': string;
|
|
12174
|
-
'createdAt': string;
|
|
12175
|
-
'updatedAt': string;
|
|
12176
|
-
'type': ThreadCircleType;
|
|
12177
|
-
}
|
|
12178
|
-
export interface ThreadCircleAccount {
|
|
12179
|
-
'accountId': string;
|
|
12180
|
-
'role': ThreadCircleAccountRole;
|
|
12181
|
-
'account': BaseAccount;
|
|
12182
|
-
}
|
|
12183
|
-
export interface ThreadCircleAccountCreateInputs {
|
|
12184
|
-
'accountId': string;
|
|
12185
|
-
'role': ThreadCircleAccountRole;
|
|
12186
|
-
}
|
|
12187
|
-
export declare enum ThreadCircleAccountRole {
|
|
12188
|
-
Member = "member",
|
|
12189
|
-
Manager = "manager",
|
|
12190
|
-
Invited = "invited"
|
|
12191
|
-
}
|
|
12192
|
-
export interface ThreadCircleAccountUpdateInputs {
|
|
12193
|
-
'role'?: ThreadCircleAccountRole | null;
|
|
12194
|
-
}
|
|
12195
|
-
export interface ThreadCircleCreateInputs {
|
|
12196
|
-
'name': string;
|
|
12197
|
-
}
|
|
12198
|
-
export declare enum ThreadCircleType {
|
|
12199
|
-
Private = "private",
|
|
12200
|
-
Direct = "direct"
|
|
12201
|
-
}
|
|
12202
|
-
export interface ThreadCircleUpdateInputs {
|
|
12203
|
-
'name'?: string | null;
|
|
12204
|
-
}
|
|
12205
|
-
export interface ThreadCreateInputs {
|
|
12206
|
-
'subject'?: string | null;
|
|
12207
|
-
'imageId'?: string | null;
|
|
12208
|
-
'groupId'?: string;
|
|
12209
|
-
'circleId'?: string;
|
|
12210
|
-
'eventId'?: string;
|
|
12211
|
-
}
|
|
12212
|
-
export interface ThreadInvitation {
|
|
12213
|
-
'id': string;
|
|
12214
|
-
'organizationId': string;
|
|
12215
12119
|
'threadId': string;
|
|
12216
|
-
'thread': BaseThread;
|
|
12217
|
-
'status': ThreadInvitationStatus;
|
|
12218
|
-
'role': ThreadMemberRole;
|
|
12219
|
-
'invitedById': string;
|
|
12220
|
-
'invitedBy': BaseAccount;
|
|
12221
|
-
'invitedId': string;
|
|
12222
|
-
'invited': BaseAccount;
|
|
12223
|
-
'createdAt': string;
|
|
12224
|
-
'updatedAt': string;
|
|
12225
|
-
}
|
|
12226
|
-
export declare enum ThreadInvitationStatus {
|
|
12227
|
-
Invited = "invited",
|
|
12228
|
-
Rejected = "rejected"
|
|
12229
|
-
}
|
|
12230
|
-
export interface ThreadMember {
|
|
12231
|
-
'id': string;
|
|
12232
12120
|
'accountId': string;
|
|
12121
|
+
'account': BaseAccount;
|
|
12233
12122
|
'lastReadAt': string | null;
|
|
12123
|
+
'typingAt': string | null;
|
|
12234
12124
|
'notifications': boolean;
|
|
12235
|
-
'account': BaseAccount;
|
|
12236
12125
|
'blocked': boolean;
|
|
12237
12126
|
'createdAt': string;
|
|
12238
12127
|
'updatedAt': string;
|
|
12239
12128
|
}
|
|
12240
|
-
export
|
|
12241
|
-
|
|
12242
|
-
Moderator = "moderator"
|
|
12243
|
-
}
|
|
12244
|
-
export interface ThreadMemberUpdateInputs {
|
|
12129
|
+
export interface ThreadAccountUpdateInputs {
|
|
12130
|
+
'notifications'?: boolean;
|
|
12245
12131
|
'blocked'?: boolean;
|
|
12246
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
|
+
}
|
|
12247
12141
|
export interface ThreadMessage {
|
|
12248
12142
|
'id': string;
|
|
12249
12143
|
'body': string;
|
|
12250
12144
|
'accountId': string | null;
|
|
12251
|
-
'
|
|
12145
|
+
'threadAccount': ThreadAccount | null;
|
|
12252
12146
|
'createdAt': string;
|
|
12253
12147
|
'editedAt': string | null;
|
|
12254
12148
|
'sentAt': string;
|
|
12149
|
+
'deletedAt'?: string | null;
|
|
12255
12150
|
'type': ThreadMessageType;
|
|
12256
12151
|
'reactions': Array<ThreadMessageReaction>;
|
|
12257
12152
|
'entities': Array<ThreadMessageEntity>;
|
|
@@ -12260,6 +12155,7 @@ export interface ThreadMessage {
|
|
|
12260
12155
|
'files': Array<BaseFile>;
|
|
12261
12156
|
'images': Array<BaseImage>;
|
|
12262
12157
|
'videos': Array<BaseVideo>;
|
|
12158
|
+
'reads'?: Array<ThreadMessageRead>;
|
|
12263
12159
|
}
|
|
12264
12160
|
export interface ThreadMessageCreateInputs {
|
|
12265
12161
|
'accountId': string;
|
|
@@ -12294,6 +12190,13 @@ export interface ThreadMessageReactionCreateInputs {
|
|
|
12294
12190
|
export interface ThreadMessageReactionUpdateInputs {
|
|
12295
12191
|
'emojiName'?: string;
|
|
12296
12192
|
}
|
|
12193
|
+
export interface ThreadMessageRead {
|
|
12194
|
+
'id': string;
|
|
12195
|
+
'threadId': string;
|
|
12196
|
+
'messageId': string;
|
|
12197
|
+
'accountId': string;
|
|
12198
|
+
'readAt': string;
|
|
12199
|
+
}
|
|
12297
12200
|
export declare enum ThreadMessageType {
|
|
12298
12201
|
User = "user",
|
|
12299
12202
|
Bot = "bot",
|
|
@@ -12303,12 +12206,6 @@ export interface ThreadMessageUpdateInputs {
|
|
|
12303
12206
|
'body': string;
|
|
12304
12207
|
'entities': Array<object>;
|
|
12305
12208
|
}
|
|
12306
|
-
export declare enum ThreadType {
|
|
12307
|
-
Circle = "circle",
|
|
12308
|
-
Group = "group",
|
|
12309
|
-
Event = "event",
|
|
12310
|
-
Stream = "stream"
|
|
12311
|
-
}
|
|
12312
12209
|
export interface ThreadUpdateInputs {
|
|
12313
12210
|
'subject'?: string | null;
|
|
12314
12211
|
'imageId'?: string | null;
|
|
@@ -12500,12 +12397,12 @@ export interface UpdateSeriesQuestionTranslation200Response {
|
|
|
12500
12397
|
export declare enum UpdateSeriesQuestionTranslation200ResponseStatusEnum {
|
|
12501
12398
|
Ok = "ok"
|
|
12502
12399
|
}
|
|
12503
|
-
export interface
|
|
12504
|
-
'status':
|
|
12400
|
+
export interface UpdateThreadAccount200Response {
|
|
12401
|
+
'status': UpdateThreadAccount200ResponseStatusEnum;
|
|
12505
12402
|
'message': string;
|
|
12506
|
-
'data':
|
|
12403
|
+
'data': ThreadAccount;
|
|
12507
12404
|
}
|
|
12508
|
-
export declare enum
|
|
12405
|
+
export declare enum UpdateThreadAccount200ResponseStatusEnum {
|
|
12509
12406
|
Ok = "ok"
|
|
12510
12407
|
}
|
|
12511
12408
|
export interface UploadFile200Response {
|
|
@@ -24560,18 +24457,6 @@ export declare const EventsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24560
24457
|
* @throws {RequiredError}
|
|
24561
24458
|
*/
|
|
24562
24459
|
getEventPayments: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24563
|
-
/**
|
|
24564
|
-
* Get Event Threads endpoint
|
|
24565
|
-
* @summary Get Event Threads
|
|
24566
|
-
* @param {string} eventId The event identifier
|
|
24567
|
-
* @param {number} [page] Page number
|
|
24568
|
-
* @param {number} [pageSize] Number of items per page
|
|
24569
|
-
* @param {string} [orderBy] Field to order by
|
|
24570
|
-
* @param {string} [search] Search query
|
|
24571
|
-
* @param {*} [options] Override http request option.
|
|
24572
|
-
* @throws {RequiredError}
|
|
24573
|
-
*/
|
|
24574
|
-
getEventThreads: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24575
24460
|
/**
|
|
24576
24461
|
* Get Event Tiers endpoint
|
|
24577
24462
|
* @summary Get Event Tiers
|
|
@@ -24682,18 +24567,6 @@ export declare const EventsApiFp: (configuration?: Configuration) => {
|
|
|
24682
24567
|
* @throws {RequiredError}
|
|
24683
24568
|
*/
|
|
24684
24569
|
getEventPayments(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountPayments200Response>>;
|
|
24685
|
-
/**
|
|
24686
|
-
* Get Event Threads endpoint
|
|
24687
|
-
* @summary Get Event Threads
|
|
24688
|
-
* @param {string} eventId The event identifier
|
|
24689
|
-
* @param {number} [page] Page number
|
|
24690
|
-
* @param {number} [pageSize] Number of items per page
|
|
24691
|
-
* @param {string} [orderBy] Field to order by
|
|
24692
|
-
* @param {string} [search] Search query
|
|
24693
|
-
* @param {*} [options] Override http request option.
|
|
24694
|
-
* @throws {RequiredError}
|
|
24695
|
-
*/
|
|
24696
|
-
getEventThreads(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
|
|
24697
24570
|
/**
|
|
24698
24571
|
* Get Event Tiers endpoint
|
|
24699
24572
|
* @summary Get Event Tiers
|
|
@@ -24793,14 +24666,6 @@ export declare const EventsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24793
24666
|
* @throws {RequiredError}
|
|
24794
24667
|
*/
|
|
24795
24668
|
getEventPayments(requestParameters: EventsApiGetEventPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountPayments200Response>;
|
|
24796
|
-
/**
|
|
24797
|
-
* Get Event Threads endpoint
|
|
24798
|
-
* @summary Get Event Threads
|
|
24799
|
-
* @param {EventsApiGetEventThreadsRequest} requestParameters Request parameters.
|
|
24800
|
-
* @param {*} [options] Override http request option.
|
|
24801
|
-
* @throws {RequiredError}
|
|
24802
|
-
*/
|
|
24803
|
-
getEventThreads(requestParameters: EventsApiGetEventThreadsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountThreads200Response>;
|
|
24804
24669
|
/**
|
|
24805
24670
|
* Get Event Tiers endpoint
|
|
24806
24671
|
* @summary Get Event Tiers
|
|
@@ -24936,31 +24801,6 @@ export interface EventsApiGetEventPaymentsRequest {
|
|
|
24936
24801
|
*/
|
|
24937
24802
|
readonly search?: string;
|
|
24938
24803
|
}
|
|
24939
|
-
/**
|
|
24940
|
-
* Request parameters for getEventThreads operation in EventsApi.
|
|
24941
|
-
*/
|
|
24942
|
-
export interface EventsApiGetEventThreadsRequest {
|
|
24943
|
-
/**
|
|
24944
|
-
* The event identifier
|
|
24945
|
-
*/
|
|
24946
|
-
readonly eventId: string;
|
|
24947
|
-
/**
|
|
24948
|
-
* Page number
|
|
24949
|
-
*/
|
|
24950
|
-
readonly page?: number;
|
|
24951
|
-
/**
|
|
24952
|
-
* Number of items per page
|
|
24953
|
-
*/
|
|
24954
|
-
readonly pageSize?: number;
|
|
24955
|
-
/**
|
|
24956
|
-
* Field to order by
|
|
24957
|
-
*/
|
|
24958
|
-
readonly orderBy?: string;
|
|
24959
|
-
/**
|
|
24960
|
-
* Search query
|
|
24961
|
-
*/
|
|
24962
|
-
readonly search?: string;
|
|
24963
|
-
}
|
|
24964
24804
|
/**
|
|
24965
24805
|
* Request parameters for getEventTiers operation in EventsApi.
|
|
24966
24806
|
*/
|
|
@@ -25077,14 +24917,6 @@ export declare class EventsApi extends BaseAPI {
|
|
|
25077
24917
|
* @throws {RequiredError}
|
|
25078
24918
|
*/
|
|
25079
24919
|
getEventPayments(requestParameters: EventsApiGetEventPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountPayments200Response, any, {}>>;
|
|
25080
|
-
/**
|
|
25081
|
-
* Get Event Threads endpoint
|
|
25082
|
-
* @summary Get Event Threads
|
|
25083
|
-
* @param {EventsApiGetEventThreadsRequest} requestParameters Request parameters.
|
|
25084
|
-
* @param {*} [options] Override http request option.
|
|
25085
|
-
* @throws {RequiredError}
|
|
25086
|
-
*/
|
|
25087
|
-
getEventThreads(requestParameters: EventsApiGetEventThreadsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountThreads200Response, any, {}>>;
|
|
25088
24920
|
/**
|
|
25089
24921
|
* Get Event Tiers endpoint
|
|
25090
24922
|
* @summary Get Event Tiers
|
|
@@ -25940,6 +25772,15 @@ export declare const EventsActivationsSessionsApiAxiosParamCreator: (configurati
|
|
|
25940
25772
|
* @throws {RequiredError}
|
|
25941
25773
|
*/
|
|
25942
25774
|
removeEventActivationSession: (eventId: string, activationId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25775
|
+
/**
|
|
25776
|
+
* Remove Event Activation Sessions endpoint
|
|
25777
|
+
* @summary Remove Event Activation Sessions
|
|
25778
|
+
* @param {string} eventId The event identifier
|
|
25779
|
+
* @param {string} activationId The activation identifier
|
|
25780
|
+
* @param {*} [options] Override http request option.
|
|
25781
|
+
* @throws {RequiredError}
|
|
25782
|
+
*/
|
|
25783
|
+
removeEventActivationSessions: (eventId: string, activationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25943
25784
|
};
|
|
25944
25785
|
/**
|
|
25945
25786
|
* EventsActivationsSessionsApi - functional programming interface
|
|
@@ -25965,6 +25806,15 @@ export declare const EventsActivationsSessionsApiFp: (configuration?: Configurat
|
|
|
25965
25806
|
* @throws {RequiredError}
|
|
25966
25807
|
*/
|
|
25967
25808
|
removeEventActivationSession(eventId: string, activationId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventActivation200Response>>;
|
|
25809
|
+
/**
|
|
25810
|
+
* Remove Event Activation Sessions endpoint
|
|
25811
|
+
* @summary Remove Event Activation Sessions
|
|
25812
|
+
* @param {string} eventId The event identifier
|
|
25813
|
+
* @param {string} activationId The activation identifier
|
|
25814
|
+
* @param {*} [options] Override http request option.
|
|
25815
|
+
* @throws {RequiredError}
|
|
25816
|
+
*/
|
|
25817
|
+
removeEventActivationSessions(eventId: string, activationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventActivation200Response>>;
|
|
25968
25818
|
};
|
|
25969
25819
|
/**
|
|
25970
25820
|
* EventsActivationsSessionsApi - factory interface
|
|
@@ -25986,6 +25836,14 @@ export declare const EventsActivationsSessionsApiFactory: (configuration?: Confi
|
|
|
25986
25836
|
* @throws {RequiredError}
|
|
25987
25837
|
*/
|
|
25988
25838
|
removeEventActivationSession(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventActivation200Response>;
|
|
25839
|
+
/**
|
|
25840
|
+
* Remove Event Activation Sessions endpoint
|
|
25841
|
+
* @summary Remove Event Activation Sessions
|
|
25842
|
+
* @param {EventsActivationsSessionsApiRemoveEventActivationSessionsRequest} requestParameters Request parameters.
|
|
25843
|
+
* @param {*} [options] Override http request option.
|
|
25844
|
+
* @throws {RequiredError}
|
|
25845
|
+
*/
|
|
25846
|
+
removeEventActivationSessions(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventActivation200Response>;
|
|
25989
25847
|
};
|
|
25990
25848
|
/**
|
|
25991
25849
|
* Request parameters for addEventActivationSession operation in EventsActivationsSessionsApi.
|
|
@@ -26021,6 +25879,19 @@ export interface EventsActivationsSessionsApiRemoveEventActivationSessionRequest
|
|
|
26021
25879
|
*/
|
|
26022
25880
|
readonly sessionId: string;
|
|
26023
25881
|
}
|
|
25882
|
+
/**
|
|
25883
|
+
* Request parameters for removeEventActivationSessions operation in EventsActivationsSessionsApi.
|
|
25884
|
+
*/
|
|
25885
|
+
export interface EventsActivationsSessionsApiRemoveEventActivationSessionsRequest {
|
|
25886
|
+
/**
|
|
25887
|
+
* The event identifier
|
|
25888
|
+
*/
|
|
25889
|
+
readonly eventId: string;
|
|
25890
|
+
/**
|
|
25891
|
+
* The activation identifier
|
|
25892
|
+
*/
|
|
25893
|
+
readonly activationId: string;
|
|
25894
|
+
}
|
|
26024
25895
|
/**
|
|
26025
25896
|
* EventsActivationsSessionsApi - object-oriented interface
|
|
26026
25897
|
*/
|
|
@@ -26041,6 +25912,14 @@ export declare class EventsActivationsSessionsApi extends BaseAPI {
|
|
|
26041
25912
|
* @throws {RequiredError}
|
|
26042
25913
|
*/
|
|
26043
25914
|
removeEventActivationSession(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventActivation200Response, any, {}>>;
|
|
25915
|
+
/**
|
|
25916
|
+
* Remove Event Activation Sessions endpoint
|
|
25917
|
+
* @summary Remove Event Activation Sessions
|
|
25918
|
+
* @param {EventsActivationsSessionsApiRemoveEventActivationSessionsRequest} requestParameters Request parameters.
|
|
25919
|
+
* @param {*} [options] Override http request option.
|
|
25920
|
+
* @throws {RequiredError}
|
|
25921
|
+
*/
|
|
25922
|
+
removeEventActivationSessions(requestParameters: EventsActivationsSessionsApiRemoveEventActivationSessionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventActivation200Response, any, {}>>;
|
|
26044
25923
|
}
|
|
26045
25924
|
/**
|
|
26046
25925
|
* EventsActivationsTranslationsApi - axios parameter creator
|
|
@@ -57301,18 +57180,6 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
57301
57180
|
* @throws {RequiredError}
|
|
57302
57181
|
*/
|
|
57303
57182
|
getGroupActivities: (groupId: string, featured?: object, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57304
|
-
/**
|
|
57305
|
-
* Get Group Threads endpoint
|
|
57306
|
-
* @summary Get Group Threads
|
|
57307
|
-
* @param {string} groupId The group identifier
|
|
57308
|
-
* @param {number} [page] Page number
|
|
57309
|
-
* @param {number} [pageSize] Number of items per page
|
|
57310
|
-
* @param {string} [orderBy] Field to order by
|
|
57311
|
-
* @param {string} [search] Search query
|
|
57312
|
-
* @param {*} [options] Override http request option.
|
|
57313
|
-
* @throws {RequiredError}
|
|
57314
|
-
*/
|
|
57315
|
-
getGroupThreads: (groupId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57316
57183
|
/**
|
|
57317
57184
|
* Get Groups endpoint
|
|
57318
57185
|
* @summary Get Groups
|
|
@@ -57378,18 +57245,6 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
57378
57245
|
* @throws {RequiredError}
|
|
57379
57246
|
*/
|
|
57380
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>>;
|
|
57381
|
-
/**
|
|
57382
|
-
* Get Group Threads endpoint
|
|
57383
|
-
* @summary Get Group Threads
|
|
57384
|
-
* @param {string} groupId The group identifier
|
|
57385
|
-
* @param {number} [page] Page number
|
|
57386
|
-
* @param {number} [pageSize] Number of items per page
|
|
57387
|
-
* @param {string} [orderBy] Field to order by
|
|
57388
|
-
* @param {string} [search] Search query
|
|
57389
|
-
* @param {*} [options] Override http request option.
|
|
57390
|
-
* @throws {RequiredError}
|
|
57391
|
-
*/
|
|
57392
|
-
getGroupThreads(groupId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
|
|
57393
57248
|
/**
|
|
57394
57249
|
* Get Groups endpoint
|
|
57395
57250
|
* @summary Get Groups
|
|
@@ -57449,14 +57304,6 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
57449
57304
|
* @throws {RequiredError}
|
|
57450
57305
|
*/
|
|
57451
57306
|
getGroupActivities(requestParameters: GroupsApiGetGroupActivitiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountActivities200Response>;
|
|
57452
|
-
/**
|
|
57453
|
-
* Get Group Threads endpoint
|
|
57454
|
-
* @summary Get Group Threads
|
|
57455
|
-
* @param {GroupsApiGetGroupThreadsRequest} requestParameters Request parameters.
|
|
57456
|
-
* @param {*} [options] Override http request option.
|
|
57457
|
-
* @throws {RequiredError}
|
|
57458
|
-
*/
|
|
57459
|
-
getGroupThreads(requestParameters: GroupsApiGetGroupThreadsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountThreads200Response>;
|
|
57460
57307
|
/**
|
|
57461
57308
|
* Get Groups endpoint
|
|
57462
57309
|
* @summary Get Groups
|
|
@@ -57531,31 +57378,6 @@ export interface GroupsApiGetGroupActivitiesRequest {
|
|
|
57531
57378
|
*/
|
|
57532
57379
|
readonly search?: string;
|
|
57533
57380
|
}
|
|
57534
|
-
/**
|
|
57535
|
-
* Request parameters for getGroupThreads operation in GroupsApi.
|
|
57536
|
-
*/
|
|
57537
|
-
export interface GroupsApiGetGroupThreadsRequest {
|
|
57538
|
-
/**
|
|
57539
|
-
* The group identifier
|
|
57540
|
-
*/
|
|
57541
|
-
readonly groupId: string;
|
|
57542
|
-
/**
|
|
57543
|
-
* Page number
|
|
57544
|
-
*/
|
|
57545
|
-
readonly page?: number;
|
|
57546
|
-
/**
|
|
57547
|
-
* Number of items per page
|
|
57548
|
-
*/
|
|
57549
|
-
readonly pageSize?: number;
|
|
57550
|
-
/**
|
|
57551
|
-
* Field to order by
|
|
57552
|
-
*/
|
|
57553
|
-
readonly orderBy?: string;
|
|
57554
|
-
/**
|
|
57555
|
-
* Search query
|
|
57556
|
-
*/
|
|
57557
|
-
readonly search?: string;
|
|
57558
|
-
}
|
|
57559
57381
|
/**
|
|
57560
57382
|
* Request parameters for getGroups operation in GroupsApi.
|
|
57561
57383
|
*/
|
|
@@ -57631,14 +57453,6 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
57631
57453
|
* @throws {RequiredError}
|
|
57632
57454
|
*/
|
|
57633
57455
|
getGroupActivities(requestParameters: GroupsApiGetGroupActivitiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountActivities200Response, any, {}>>;
|
|
57634
|
-
/**
|
|
57635
|
-
* Get Group Threads endpoint
|
|
57636
|
-
* @summary Get Group Threads
|
|
57637
|
-
* @param {GroupsApiGetGroupThreadsRequest} requestParameters Request parameters.
|
|
57638
|
-
* @param {*} [options] Override http request option.
|
|
57639
|
-
* @throws {RequiredError}
|
|
57640
|
-
*/
|
|
57641
|
-
getGroupThreads(requestParameters: GroupsApiGetGroupThreadsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountThreads200Response, any, {}>>;
|
|
57642
57456
|
/**
|
|
57643
57457
|
* Get Groups endpoint
|
|
57644
57458
|
* @summary Get Groups
|
|
@@ -79251,7 +79065,6 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
79251
79065
|
/**
|
|
79252
79066
|
* Get Threads endpoint
|
|
79253
79067
|
* @summary Get Threads
|
|
79254
|
-
* @param {ThreadType} [type] Filter by type
|
|
79255
79068
|
* @param {number} [page] Page number
|
|
79256
79069
|
* @param {number} [pageSize] Number of items per page
|
|
79257
79070
|
* @param {string} [orderBy] Field to order by
|
|
@@ -79259,7 +79072,7 @@ export declare const ThreadsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
79259
79072
|
* @param {*} [options] Override http request option.
|
|
79260
79073
|
* @throws {RequiredError}
|
|
79261
79074
|
*/
|
|
79262
|
-
getThreads: (
|
|
79075
|
+
getThreads: (page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79263
79076
|
/**
|
|
79264
79077
|
* Update Thread endpoint
|
|
79265
79078
|
* @summary Update Thread
|
|
@@ -79301,7 +79114,6 @@ export declare const ThreadsApiFp: (configuration?: Configuration) => {
|
|
|
79301
79114
|
/**
|
|
79302
79115
|
* Get Threads endpoint
|
|
79303
79116
|
* @summary Get Threads
|
|
79304
|
-
* @param {ThreadType} [type] Filter by type
|
|
79305
79117
|
* @param {number} [page] Page number
|
|
79306
79118
|
* @param {number} [pageSize] Number of items per page
|
|
79307
79119
|
* @param {string} [orderBy] Field to order by
|
|
@@ -79309,7 +79121,7 @@ export declare const ThreadsApiFp: (configuration?: Configuration) => {
|
|
|
79309
79121
|
* @param {*} [options] Override http request option.
|
|
79310
79122
|
* @throws {RequiredError}
|
|
79311
79123
|
*/
|
|
79312
|
-
getThreads(
|
|
79124
|
+
getThreads(page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
|
|
79313
79125
|
/**
|
|
79314
79126
|
* Update Thread endpoint
|
|
79315
79127
|
* @summary Update Thread
|
|
@@ -79393,10 +79205,6 @@ export interface ThreadsApiGetThreadRequest {
|
|
|
79393
79205
|
* Request parameters for getThreads operation in ThreadsApi.
|
|
79394
79206
|
*/
|
|
79395
79207
|
export interface ThreadsApiGetThreadsRequest {
|
|
79396
|
-
/**
|
|
79397
|
-
* Filter by type
|
|
79398
|
-
*/
|
|
79399
|
-
readonly type?: ThreadType;
|
|
79400
79208
|
/**
|
|
79401
79209
|
* Page number
|
|
79402
79210
|
*/
|
|
@@ -79470,602 +79278,18 @@ export declare class ThreadsApi extends BaseAPI {
|
|
|
79470
79278
|
updateThread(requestParameters: ThreadsApiUpdateThreadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThread200Response, any, {}>>;
|
|
79471
79279
|
}
|
|
79472
79280
|
/**
|
|
79473
|
-
*
|
|
79474
|
-
*/
|
|
79475
|
-
export declare const ThreadsCirclesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79476
|
-
/**
|
|
79477
|
-
* Create Thread Circle endpoint
|
|
79478
|
-
* @summary Create Thread Circle
|
|
79479
|
-
* @param {ThreadCircleCreateInputs} threadCircleCreateInputs
|
|
79480
|
-
* @param {*} [options] Override http request option.
|
|
79481
|
-
* @throws {RequiredError}
|
|
79482
|
-
*/
|
|
79483
|
-
createThreadCircle: (threadCircleCreateInputs: ThreadCircleCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79484
|
-
/**
|
|
79485
|
-
* Delete Thread Circle endpoint
|
|
79486
|
-
* @summary Delete Thread Circle
|
|
79487
|
-
* @param {string} circleId The circle identifier
|
|
79488
|
-
* @param {*} [options] Override http request option.
|
|
79489
|
-
* @throws {RequiredError}
|
|
79490
|
-
*/
|
|
79491
|
-
deleteThreadCircle: (circleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79492
|
-
/**
|
|
79493
|
-
* Get Thread Circle endpoint
|
|
79494
|
-
* @summary Get Thread Circle
|
|
79495
|
-
* @param {string} circleId The circle identifier
|
|
79496
|
-
* @param {*} [options] Override http request option.
|
|
79497
|
-
* @throws {RequiredError}
|
|
79498
|
-
*/
|
|
79499
|
-
getThreadCircle: (circleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79500
|
-
/**
|
|
79501
|
-
* Get Thread Circle Threads endpoint
|
|
79502
|
-
* @summary Get Thread Circle Threads
|
|
79503
|
-
* @param {string} circleId The circle identifier
|
|
79504
|
-
* @param {number} [page] Page number
|
|
79505
|
-
* @param {number} [pageSize] Number of items per page
|
|
79506
|
-
* @param {string} [orderBy] Field to order by
|
|
79507
|
-
* @param {string} [search] Search query
|
|
79508
|
-
* @param {*} [options] Override http request option.
|
|
79509
|
-
* @throws {RequiredError}
|
|
79510
|
-
*/
|
|
79511
|
-
getThreadCircleThreads: (circleId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79512
|
-
/**
|
|
79513
|
-
* Get Thread Circles endpoint
|
|
79514
|
-
* @summary Get Thread Circles
|
|
79515
|
-
* @param {ThreadCircleType} type Filter by type
|
|
79516
|
-
* @param {number} [page] Page number
|
|
79517
|
-
* @param {number} [pageSize] Number of items per page
|
|
79518
|
-
* @param {string} [orderBy] Field to order by
|
|
79519
|
-
* @param {string} [search] Search query
|
|
79520
|
-
* @param {*} [options] Override http request option.
|
|
79521
|
-
* @throws {RequiredError}
|
|
79522
|
-
*/
|
|
79523
|
-
getThreadCircles: (type: ThreadCircleType, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79524
|
-
/**
|
|
79525
|
-
* Update Thread Circle endpoint
|
|
79526
|
-
* @summary Update Thread Circle
|
|
79527
|
-
* @param {string} circleId The circle identifier
|
|
79528
|
-
* @param {ThreadCircleUpdateInputs} threadCircleUpdateInputs
|
|
79529
|
-
* @param {*} [options] Override http request option.
|
|
79530
|
-
* @throws {RequiredError}
|
|
79531
|
-
*/
|
|
79532
|
-
updateThreadCircle: (circleId: string, threadCircleUpdateInputs: ThreadCircleUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79533
|
-
};
|
|
79534
|
-
/**
|
|
79535
|
-
* ThreadsCirclesApi - functional programming interface
|
|
79536
|
-
*/
|
|
79537
|
-
export declare const ThreadsCirclesApiFp: (configuration?: Configuration) => {
|
|
79538
|
-
/**
|
|
79539
|
-
* Create Thread Circle endpoint
|
|
79540
|
-
* @summary Create Thread Circle
|
|
79541
|
-
* @param {ThreadCircleCreateInputs} threadCircleCreateInputs
|
|
79542
|
-
* @param {*} [options] Override http request option.
|
|
79543
|
-
* @throws {RequiredError}
|
|
79544
|
-
*/
|
|
79545
|
-
createThreadCircle(threadCircleCreateInputs: ThreadCircleCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircle200Response>>;
|
|
79546
|
-
/**
|
|
79547
|
-
* Delete Thread Circle endpoint
|
|
79548
|
-
* @summary Delete Thread Circle
|
|
79549
|
-
* @param {string} circleId The circle identifier
|
|
79550
|
-
* @param {*} [options] Override http request option.
|
|
79551
|
-
* @throws {RequiredError}
|
|
79552
|
-
*/
|
|
79553
|
-
deleteThreadCircle(circleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
79554
|
-
/**
|
|
79555
|
-
* Get Thread Circle endpoint
|
|
79556
|
-
* @summary Get Thread Circle
|
|
79557
|
-
* @param {string} circleId The circle identifier
|
|
79558
|
-
* @param {*} [options] Override http request option.
|
|
79559
|
-
* @throws {RequiredError}
|
|
79560
|
-
*/
|
|
79561
|
-
getThreadCircle(circleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircle200Response>>;
|
|
79562
|
-
/**
|
|
79563
|
-
* Get Thread Circle Threads endpoint
|
|
79564
|
-
* @summary Get Thread Circle Threads
|
|
79565
|
-
* @param {string} circleId The circle identifier
|
|
79566
|
-
* @param {number} [page] Page number
|
|
79567
|
-
* @param {number} [pageSize] Number of items per page
|
|
79568
|
-
* @param {string} [orderBy] Field to order by
|
|
79569
|
-
* @param {string} [search] Search query
|
|
79570
|
-
* @param {*} [options] Override http request option.
|
|
79571
|
-
* @throws {RequiredError}
|
|
79572
|
-
*/
|
|
79573
|
-
getThreadCircleThreads(circleId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountThreads200Response>>;
|
|
79574
|
-
/**
|
|
79575
|
-
* Get Thread Circles endpoint
|
|
79576
|
-
* @summary Get Thread Circles
|
|
79577
|
-
* @param {ThreadCircleType} type Filter by type
|
|
79578
|
-
* @param {number} [page] Page number
|
|
79579
|
-
* @param {number} [pageSize] Number of items per page
|
|
79580
|
-
* @param {string} [orderBy] Field to order by
|
|
79581
|
-
* @param {string} [search] Search query
|
|
79582
|
-
* @param {*} [options] Override http request option.
|
|
79583
|
-
* @throws {RequiredError}
|
|
79584
|
-
*/
|
|
79585
|
-
getThreadCircles(type: ThreadCircleType, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadCircles200Response>>;
|
|
79586
|
-
/**
|
|
79587
|
-
* Update Thread Circle endpoint
|
|
79588
|
-
* @summary Update Thread Circle
|
|
79589
|
-
* @param {string} circleId The circle identifier
|
|
79590
|
-
* @param {ThreadCircleUpdateInputs} threadCircleUpdateInputs
|
|
79591
|
-
* @param {*} [options] Override http request option.
|
|
79592
|
-
* @throws {RequiredError}
|
|
79593
|
-
*/
|
|
79594
|
-
updateThreadCircle(circleId: string, threadCircleUpdateInputs: ThreadCircleUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircle200Response>>;
|
|
79595
|
-
};
|
|
79596
|
-
/**
|
|
79597
|
-
* ThreadsCirclesApi - factory interface
|
|
79281
|
+
* ThreadsAccountsApi - axios parameter creator
|
|
79598
79282
|
*/
|
|
79599
|
-
export declare const
|
|
79600
|
-
/**
|
|
79601
|
-
* Create Thread Circle endpoint
|
|
79602
|
-
* @summary Create Thread Circle
|
|
79603
|
-
* @param {ThreadsCirclesApiCreateThreadCircleRequest} requestParameters Request parameters.
|
|
79604
|
-
* @param {*} [options] Override http request option.
|
|
79605
|
-
* @throws {RequiredError}
|
|
79606
|
-
*/
|
|
79607
|
-
createThreadCircle(requestParameters: ThreadsCirclesApiCreateThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircle200Response>;
|
|
79608
|
-
/**
|
|
79609
|
-
* Delete Thread Circle endpoint
|
|
79610
|
-
* @summary Delete Thread Circle
|
|
79611
|
-
* @param {ThreadsCirclesApiDeleteThreadCircleRequest} requestParameters Request parameters.
|
|
79612
|
-
* @param {*} [options] Override http request option.
|
|
79613
|
-
* @throws {RequiredError}
|
|
79614
|
-
*/
|
|
79615
|
-
deleteThreadCircle(requestParameters: ThreadsCirclesApiDeleteThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
79616
|
-
/**
|
|
79617
|
-
* Get Thread Circle endpoint
|
|
79618
|
-
* @summary Get Thread Circle
|
|
79619
|
-
* @param {ThreadsCirclesApiGetThreadCircleRequest} requestParameters Request parameters.
|
|
79620
|
-
* @param {*} [options] Override http request option.
|
|
79621
|
-
* @throws {RequiredError}
|
|
79622
|
-
*/
|
|
79623
|
-
getThreadCircle(requestParameters: ThreadsCirclesApiGetThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircle200Response>;
|
|
79283
|
+
export declare const ThreadsAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79624
79284
|
/**
|
|
79625
|
-
*
|
|
79626
|
-
* @summary
|
|
79627
|
-
* @param {
|
|
79628
|
-
* @param {*} [options] Override http request option.
|
|
79629
|
-
* @throws {RequiredError}
|
|
79630
|
-
*/
|
|
79631
|
-
getThreadCircleThreads(requestParameters: ThreadsCirclesApiGetThreadCircleThreadsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountThreads200Response>;
|
|
79632
|
-
/**
|
|
79633
|
-
* Get Thread Circles endpoint
|
|
79634
|
-
* @summary Get Thread Circles
|
|
79635
|
-
* @param {ThreadsCirclesApiGetThreadCirclesRequest} requestParameters Request parameters.
|
|
79636
|
-
* @param {*} [options] Override http request option.
|
|
79637
|
-
* @throws {RequiredError}
|
|
79638
|
-
*/
|
|
79639
|
-
getThreadCircles(requestParameters: ThreadsCirclesApiGetThreadCirclesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadCircles200Response>;
|
|
79640
|
-
/**
|
|
79641
|
-
* Update Thread Circle endpoint
|
|
79642
|
-
* @summary Update Thread Circle
|
|
79643
|
-
* @param {ThreadsCirclesApiUpdateThreadCircleRequest} requestParameters Request parameters.
|
|
79644
|
-
* @param {*} [options] Override http request option.
|
|
79645
|
-
* @throws {RequiredError}
|
|
79646
|
-
*/
|
|
79647
|
-
updateThreadCircle(requestParameters: ThreadsCirclesApiUpdateThreadCircleRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircle200Response>;
|
|
79648
|
-
};
|
|
79649
|
-
/**
|
|
79650
|
-
* Request parameters for createThreadCircle operation in ThreadsCirclesApi.
|
|
79651
|
-
*/
|
|
79652
|
-
export interface ThreadsCirclesApiCreateThreadCircleRequest {
|
|
79653
|
-
readonly threadCircleCreateInputs: ThreadCircleCreateInputs;
|
|
79654
|
-
}
|
|
79655
|
-
/**
|
|
79656
|
-
* Request parameters for deleteThreadCircle operation in ThreadsCirclesApi.
|
|
79657
|
-
*/
|
|
79658
|
-
export interface ThreadsCirclesApiDeleteThreadCircleRequest {
|
|
79659
|
-
/**
|
|
79660
|
-
* The circle identifier
|
|
79661
|
-
*/
|
|
79662
|
-
readonly circleId: string;
|
|
79663
|
-
}
|
|
79664
|
-
/**
|
|
79665
|
-
* Request parameters for getThreadCircle operation in ThreadsCirclesApi.
|
|
79666
|
-
*/
|
|
79667
|
-
export interface ThreadsCirclesApiGetThreadCircleRequest {
|
|
79668
|
-
/**
|
|
79669
|
-
* The circle identifier
|
|
79670
|
-
*/
|
|
79671
|
-
readonly circleId: string;
|
|
79672
|
-
}
|
|
79673
|
-
/**
|
|
79674
|
-
* Request parameters for getThreadCircleThreads operation in ThreadsCirclesApi.
|
|
79675
|
-
*/
|
|
79676
|
-
export interface ThreadsCirclesApiGetThreadCircleThreadsRequest {
|
|
79677
|
-
/**
|
|
79678
|
-
* The circle identifier
|
|
79679
|
-
*/
|
|
79680
|
-
readonly circleId: string;
|
|
79681
|
-
/**
|
|
79682
|
-
* Page number
|
|
79683
|
-
*/
|
|
79684
|
-
readonly page?: number;
|
|
79685
|
-
/**
|
|
79686
|
-
* Number of items per page
|
|
79687
|
-
*/
|
|
79688
|
-
readonly pageSize?: number;
|
|
79689
|
-
/**
|
|
79690
|
-
* Field to order by
|
|
79691
|
-
*/
|
|
79692
|
-
readonly orderBy?: string;
|
|
79693
|
-
/**
|
|
79694
|
-
* Search query
|
|
79695
|
-
*/
|
|
79696
|
-
readonly search?: string;
|
|
79697
|
-
}
|
|
79698
|
-
/**
|
|
79699
|
-
* Request parameters for getThreadCircles operation in ThreadsCirclesApi.
|
|
79700
|
-
*/
|
|
79701
|
-
export interface ThreadsCirclesApiGetThreadCirclesRequest {
|
|
79702
|
-
/**
|
|
79703
|
-
* Filter by type
|
|
79704
|
-
*/
|
|
79705
|
-
readonly type: ThreadCircleType;
|
|
79706
|
-
/**
|
|
79707
|
-
* Page number
|
|
79708
|
-
*/
|
|
79709
|
-
readonly page?: number;
|
|
79710
|
-
/**
|
|
79711
|
-
* Number of items per page
|
|
79712
|
-
*/
|
|
79713
|
-
readonly pageSize?: number;
|
|
79714
|
-
/**
|
|
79715
|
-
* Field to order by
|
|
79716
|
-
*/
|
|
79717
|
-
readonly orderBy?: string;
|
|
79718
|
-
/**
|
|
79719
|
-
* Search query
|
|
79720
|
-
*/
|
|
79721
|
-
readonly search?: string;
|
|
79722
|
-
}
|
|
79723
|
-
/**
|
|
79724
|
-
* Request parameters for updateThreadCircle operation in ThreadsCirclesApi.
|
|
79725
|
-
*/
|
|
79726
|
-
export interface ThreadsCirclesApiUpdateThreadCircleRequest {
|
|
79727
|
-
/**
|
|
79728
|
-
* The circle identifier
|
|
79729
|
-
*/
|
|
79730
|
-
readonly circleId: string;
|
|
79731
|
-
readonly threadCircleUpdateInputs: ThreadCircleUpdateInputs;
|
|
79732
|
-
}
|
|
79733
|
-
/**
|
|
79734
|
-
* ThreadsCirclesApi - object-oriented interface
|
|
79735
|
-
*/
|
|
79736
|
-
export declare class ThreadsCirclesApi extends BaseAPI {
|
|
79737
|
-
/**
|
|
79738
|
-
* Create Thread Circle endpoint
|
|
79739
|
-
* @summary Create Thread Circle
|
|
79740
|
-
* @param {ThreadsCirclesApiCreateThreadCircleRequest} requestParameters Request parameters.
|
|
79741
|
-
* @param {*} [options] Override http request option.
|
|
79742
|
-
* @throws {RequiredError}
|
|
79743
|
-
*/
|
|
79744
|
-
createThreadCircle(requestParameters: ThreadsCirclesApiCreateThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircle200Response, any, {}>>;
|
|
79745
|
-
/**
|
|
79746
|
-
* Delete Thread Circle endpoint
|
|
79747
|
-
* @summary Delete Thread Circle
|
|
79748
|
-
* @param {ThreadsCirclesApiDeleteThreadCircleRequest} requestParameters Request parameters.
|
|
79749
|
-
* @param {*} [options] Override http request option.
|
|
79750
|
-
* @throws {RequiredError}
|
|
79751
|
-
*/
|
|
79752
|
-
deleteThreadCircle(requestParameters: ThreadsCirclesApiDeleteThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
79753
|
-
/**
|
|
79754
|
-
* Get Thread Circle endpoint
|
|
79755
|
-
* @summary Get Thread Circle
|
|
79756
|
-
* @param {ThreadsCirclesApiGetThreadCircleRequest} requestParameters Request parameters.
|
|
79757
|
-
* @param {*} [options] Override http request option.
|
|
79758
|
-
* @throws {RequiredError}
|
|
79759
|
-
*/
|
|
79760
|
-
getThreadCircle(requestParameters: ThreadsCirclesApiGetThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircle200Response, any, {}>>;
|
|
79761
|
-
/**
|
|
79762
|
-
* Get Thread Circle Threads endpoint
|
|
79763
|
-
* @summary Get Thread Circle Threads
|
|
79764
|
-
* @param {ThreadsCirclesApiGetThreadCircleThreadsRequest} requestParameters Request parameters.
|
|
79765
|
-
* @param {*} [options] Override http request option.
|
|
79766
|
-
* @throws {RequiredError}
|
|
79767
|
-
*/
|
|
79768
|
-
getThreadCircleThreads(requestParameters: ThreadsCirclesApiGetThreadCircleThreadsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountThreads200Response, any, {}>>;
|
|
79769
|
-
/**
|
|
79770
|
-
* Get Thread Circles endpoint
|
|
79771
|
-
* @summary Get Thread Circles
|
|
79772
|
-
* @param {ThreadsCirclesApiGetThreadCirclesRequest} requestParameters Request parameters.
|
|
79773
|
-
* @param {*} [options] Override http request option.
|
|
79774
|
-
* @throws {RequiredError}
|
|
79775
|
-
*/
|
|
79776
|
-
getThreadCircles(requestParameters: ThreadsCirclesApiGetThreadCirclesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadCircles200Response, any, {}>>;
|
|
79777
|
-
/**
|
|
79778
|
-
* Update Thread Circle endpoint
|
|
79779
|
-
* @summary Update Thread Circle
|
|
79780
|
-
* @param {ThreadsCirclesApiUpdateThreadCircleRequest} requestParameters Request parameters.
|
|
79781
|
-
* @param {*} [options] Override http request option.
|
|
79782
|
-
* @throws {RequiredError}
|
|
79783
|
-
*/
|
|
79784
|
-
updateThreadCircle(requestParameters: ThreadsCirclesApiUpdateThreadCircleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircle200Response, any, {}>>;
|
|
79785
|
-
}
|
|
79786
|
-
/**
|
|
79787
|
-
* ThreadsCirclesAccountsApi - axios parameter creator
|
|
79788
|
-
*/
|
|
79789
|
-
export declare const ThreadsCirclesAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79790
|
-
/**
|
|
79791
|
-
* Create Thread Circle Account endpoint
|
|
79792
|
-
* @summary Create Thread Circle Account
|
|
79793
|
-
* @param {string} circleId The circle identifier
|
|
79794
|
-
* @param {ThreadCircleAccountCreateInputs} threadCircleAccountCreateInputs
|
|
79795
|
-
* @param {*} [options] Override http request option.
|
|
79796
|
-
* @throws {RequiredError}
|
|
79797
|
-
*/
|
|
79798
|
-
createThreadCircleAccount: (circleId: string, threadCircleAccountCreateInputs: ThreadCircleAccountCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79799
|
-
/**
|
|
79800
|
-
* Delete Thread Circle Account endpoint
|
|
79801
|
-
* @summary Delete Thread Circle Account
|
|
79802
|
-
* @param {string} circleId The circle identifier
|
|
79803
|
-
* @param {string} accountId The account identifier
|
|
79804
|
-
* @param {*} [options] Override http request option.
|
|
79805
|
-
* @throws {RequiredError}
|
|
79806
|
-
*/
|
|
79807
|
-
deleteThreadCircleAccount: (circleId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79808
|
-
/**
|
|
79809
|
-
* Get Thread Circle Account endpoint
|
|
79810
|
-
* @summary Get Thread Circle Account
|
|
79811
|
-
* @param {string} circleId The circle identifier
|
|
79812
|
-
* @param {string} accountId The account identifier
|
|
79813
|
-
* @param {*} [options] Override http request option.
|
|
79814
|
-
* @throws {RequiredError}
|
|
79815
|
-
*/
|
|
79816
|
-
getThreadCircleAccount: (circleId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79817
|
-
/**
|
|
79818
|
-
* Get Thread Circle Accounts endpoint
|
|
79819
|
-
* @summary Get Thread Circle Accounts
|
|
79820
|
-
* @param {string} circleId The circle identifier
|
|
79821
|
-
* @param {ThreadCircleAccountRole} [role] Filter by role
|
|
79822
|
-
* @param {number} [page] Page number
|
|
79823
|
-
* @param {number} [pageSize] Number of items per page
|
|
79824
|
-
* @param {string} [orderBy] Field to order by
|
|
79825
|
-
* @param {string} [search] Search query
|
|
79826
|
-
* @param {*} [options] Override http request option.
|
|
79827
|
-
* @throws {RequiredError}
|
|
79828
|
-
*/
|
|
79829
|
-
getThreadCircleAccounts: (circleId: string, role?: ThreadCircleAccountRole, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79830
|
-
/**
|
|
79831
|
-
* Update Thread Circle Account endpoint
|
|
79832
|
-
* @summary Update Thread Circle Account
|
|
79833
|
-
* @param {string} circleId The circle identifier
|
|
79834
|
-
* @param {string} accountId The account identifier
|
|
79835
|
-
* @param {ThreadCircleAccountUpdateInputs} threadCircleAccountUpdateInputs
|
|
79836
|
-
* @param {*} [options] Override http request option.
|
|
79837
|
-
* @throws {RequiredError}
|
|
79838
|
-
*/
|
|
79839
|
-
updateThreadCircleAccount: (circleId: string, accountId: string, threadCircleAccountUpdateInputs: ThreadCircleAccountUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79840
|
-
};
|
|
79841
|
-
/**
|
|
79842
|
-
* ThreadsCirclesAccountsApi - functional programming interface
|
|
79843
|
-
*/
|
|
79844
|
-
export declare const ThreadsCirclesAccountsApiFp: (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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircleAccount200Response>>;
|
|
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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircleAccount200Response>>;
|
|
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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadCircleAccounts200Response>>;
|
|
79885
|
-
/**
|
|
79886
|
-
* Update Thread Circle Account endpoint
|
|
79887
|
-
* @summary Update Thread Circle Account
|
|
79888
|
-
* @param {string} circleId The circle identifier
|
|
79285
|
+
* Delete Thread Account endpoint
|
|
79286
|
+
* @summary Delete Thread Account
|
|
79287
|
+
* @param {string} threadId The thread identifier
|
|
79889
79288
|
* @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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateThreadCircleAccount200Response>>;
|
|
79895
|
-
};
|
|
79896
|
-
/**
|
|
79897
|
-
* ThreadsCirclesAccountsApi - factory interface
|
|
79898
|
-
*/
|
|
79899
|
-
export declare const ThreadsCirclesAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
79900
|
-
/**
|
|
79901
|
-
* Create Thread Circle Account endpoint
|
|
79902
|
-
* @summary Create Thread Circle Account
|
|
79903
|
-
* @param {ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest} requestParameters Request parameters.
|
|
79904
|
-
* @param {*} [options] Override http request option.
|
|
79905
|
-
* @throws {RequiredError}
|
|
79906
|
-
*/
|
|
79907
|
-
createThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircleAccount200Response>;
|
|
79908
|
-
/**
|
|
79909
|
-
* Delete Thread Circle Account endpoint
|
|
79910
|
-
* @summary Delete Thread Circle Account
|
|
79911
|
-
* @param {ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest} requestParameters Request parameters.
|
|
79912
|
-
* @param {*} [options] Override http request option.
|
|
79913
|
-
* @throws {RequiredError}
|
|
79914
|
-
*/
|
|
79915
|
-
deleteThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
79916
|
-
/**
|
|
79917
|
-
* Get Thread Circle Account endpoint
|
|
79918
|
-
* @summary Get Thread Circle Account
|
|
79919
|
-
* @param {ThreadsCirclesAccountsApiGetThreadCircleAccountRequest} requestParameters Request parameters.
|
|
79920
|
-
* @param {*} [options] Override http request option.
|
|
79921
|
-
* @throws {RequiredError}
|
|
79922
|
-
*/
|
|
79923
|
-
getThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircleAccount200Response>;
|
|
79924
|
-
/**
|
|
79925
|
-
* Get Thread Circle Accounts endpoint
|
|
79926
|
-
* @summary Get Thread Circle Accounts
|
|
79927
|
-
* @param {ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest} requestParameters Request parameters.
|
|
79928
|
-
* @param {*} [options] Override http request option.
|
|
79929
|
-
* @throws {RequiredError}
|
|
79930
|
-
*/
|
|
79931
|
-
getThreadCircleAccounts(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadCircleAccounts200Response>;
|
|
79932
|
-
/**
|
|
79933
|
-
* Update Thread Circle Account endpoint
|
|
79934
|
-
* @summary Update Thread Circle Account
|
|
79935
|
-
* @param {ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest} requestParameters Request parameters.
|
|
79936
|
-
* @param {*} [options] Override http request option.
|
|
79937
|
-
* @throws {RequiredError}
|
|
79938
|
-
*/
|
|
79939
|
-
updateThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateThreadCircleAccount200Response>;
|
|
79940
|
-
};
|
|
79941
|
-
/**
|
|
79942
|
-
* Request parameters for createThreadCircleAccount operation in ThreadsCirclesAccountsApi.
|
|
79943
|
-
*/
|
|
79944
|
-
export interface ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest {
|
|
79945
|
-
/**
|
|
79946
|
-
* The circle identifier
|
|
79947
|
-
*/
|
|
79948
|
-
readonly circleId: string;
|
|
79949
|
-
readonly threadCircleAccountCreateInputs: ThreadCircleAccountCreateInputs;
|
|
79950
|
-
}
|
|
79951
|
-
/**
|
|
79952
|
-
* Request parameters for deleteThreadCircleAccount operation in ThreadsCirclesAccountsApi.
|
|
79953
|
-
*/
|
|
79954
|
-
export interface ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest {
|
|
79955
|
-
/**
|
|
79956
|
-
* The circle identifier
|
|
79957
|
-
*/
|
|
79958
|
-
readonly circleId: string;
|
|
79959
|
-
/**
|
|
79960
|
-
* The account identifier
|
|
79961
|
-
*/
|
|
79962
|
-
readonly accountId: string;
|
|
79963
|
-
}
|
|
79964
|
-
/**
|
|
79965
|
-
* Request parameters for getThreadCircleAccount operation in ThreadsCirclesAccountsApi.
|
|
79966
|
-
*/
|
|
79967
|
-
export interface ThreadsCirclesAccountsApiGetThreadCircleAccountRequest {
|
|
79968
|
-
/**
|
|
79969
|
-
* The circle identifier
|
|
79970
|
-
*/
|
|
79971
|
-
readonly circleId: string;
|
|
79972
|
-
/**
|
|
79973
|
-
* The account identifier
|
|
79974
|
-
*/
|
|
79975
|
-
readonly accountId: string;
|
|
79976
|
-
}
|
|
79977
|
-
/**
|
|
79978
|
-
* Request parameters for getThreadCircleAccounts operation in ThreadsCirclesAccountsApi.
|
|
79979
|
-
*/
|
|
79980
|
-
export interface ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest {
|
|
79981
|
-
/**
|
|
79982
|
-
* The circle identifier
|
|
79983
|
-
*/
|
|
79984
|
-
readonly circleId: string;
|
|
79985
|
-
/**
|
|
79986
|
-
* Filter by role
|
|
79987
|
-
*/
|
|
79988
|
-
readonly role?: ThreadCircleAccountRole;
|
|
79989
|
-
/**
|
|
79990
|
-
* Page number
|
|
79991
|
-
*/
|
|
79992
|
-
readonly page?: number;
|
|
79993
|
-
/**
|
|
79994
|
-
* Number of items per page
|
|
79995
|
-
*/
|
|
79996
|
-
readonly pageSize?: number;
|
|
79997
|
-
/**
|
|
79998
|
-
* Field to order by
|
|
79999
|
-
*/
|
|
80000
|
-
readonly orderBy?: string;
|
|
80001
|
-
/**
|
|
80002
|
-
* Search query
|
|
80003
|
-
*/
|
|
80004
|
-
readonly search?: string;
|
|
80005
|
-
}
|
|
80006
|
-
/**
|
|
80007
|
-
* Request parameters for updateThreadCircleAccount operation in ThreadsCirclesAccountsApi.
|
|
80008
|
-
*/
|
|
80009
|
-
export interface ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest {
|
|
80010
|
-
/**
|
|
80011
|
-
* The circle identifier
|
|
80012
|
-
*/
|
|
80013
|
-
readonly circleId: string;
|
|
80014
|
-
/**
|
|
80015
|
-
* The account identifier
|
|
80016
|
-
*/
|
|
80017
|
-
readonly accountId: string;
|
|
80018
|
-
readonly threadCircleAccountUpdateInputs: ThreadCircleAccountUpdateInputs;
|
|
80019
|
-
}
|
|
80020
|
-
/**
|
|
80021
|
-
* ThreadsCirclesAccountsApi - object-oriented interface
|
|
80022
|
-
*/
|
|
80023
|
-
export declare class ThreadsCirclesAccountsApi extends BaseAPI {
|
|
80024
|
-
/**
|
|
80025
|
-
* Create Thread Circle Account endpoint
|
|
80026
|
-
* @summary Create Thread Circle Account
|
|
80027
|
-
* @param {ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest} requestParameters Request parameters.
|
|
80028
|
-
* @param {*} [options] Override http request option.
|
|
80029
|
-
* @throws {RequiredError}
|
|
80030
|
-
*/
|
|
80031
|
-
createThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiCreateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircleAccount200Response, any, {}>>;
|
|
80032
|
-
/**
|
|
80033
|
-
* Delete Thread Circle Account endpoint
|
|
80034
|
-
* @summary Delete Thread Circle Account
|
|
80035
|
-
* @param {ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest} requestParameters Request parameters.
|
|
80036
|
-
* @param {*} [options] Override http request option.
|
|
80037
|
-
* @throws {RequiredError}
|
|
80038
|
-
*/
|
|
80039
|
-
deleteThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiDeleteThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
80040
|
-
/**
|
|
80041
|
-
* Get Thread Circle Account endpoint
|
|
80042
|
-
* @summary Get Thread Circle Account
|
|
80043
|
-
* @param {ThreadsCirclesAccountsApiGetThreadCircleAccountRequest} requestParameters Request parameters.
|
|
80044
|
-
* @param {*} [options] Override http request option.
|
|
80045
|
-
* @throws {RequiredError}
|
|
80046
|
-
*/
|
|
80047
|
-
getThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiGetThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircleAccount200Response, any, {}>>;
|
|
80048
|
-
/**
|
|
80049
|
-
* Get Thread Circle Accounts endpoint
|
|
80050
|
-
* @summary Get Thread Circle Accounts
|
|
80051
|
-
* @param {ThreadsCirclesAccountsApiGetThreadCircleAccountsRequest} requestParameters Request parameters.
|
|
80052
79289
|
* @param {*} [options] Override http request option.
|
|
80053
79290
|
* @throws {RequiredError}
|
|
80054
79291
|
*/
|
|
80055
|
-
|
|
80056
|
-
/**
|
|
80057
|
-
* Update Thread Circle Account endpoint
|
|
80058
|
-
* @summary Update Thread Circle Account
|
|
80059
|
-
* @param {ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest} requestParameters Request parameters.
|
|
80060
|
-
* @param {*} [options] Override http request option.
|
|
80061
|
-
* @throws {RequiredError}
|
|
80062
|
-
*/
|
|
80063
|
-
updateThreadCircleAccount(requestParameters: ThreadsCirclesAccountsApiUpdateThreadCircleAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateThreadCircleAccount200Response, any, {}>>;
|
|
80064
|
-
}
|
|
80065
|
-
/**
|
|
80066
|
-
* ThreadsMembersApi - axios parameter creator
|
|
80067
|
-
*/
|
|
80068
|
-
export declare const ThreadsMembersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79292
|
+
deleteThreadAccount: (threadId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80069
79293
|
/**
|
|
80070
79294
|
* Get Thread Accounts endpoint
|
|
80071
79295
|
* @summary Get Thread Accounts
|
|
@@ -80079,47 +79303,32 @@ export declare const ThreadsMembersApiAxiosParamCreator: (configuration?: Config
|
|
|
80079
79303
|
*/
|
|
80080
79304
|
getThreadAccounts: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80081
79305
|
/**
|
|
80082
|
-
*
|
|
80083
|
-
* @summary
|
|
80084
|
-
* @param {string} threadId The thread identifier
|
|
80085
|
-
* @param {number} [page] Page number
|
|
80086
|
-
* @param {number} [pageSize] Number of items per page
|
|
80087
|
-
* @param {string} [orderBy] Field to order by
|
|
80088
|
-
* @param {string} [search] Search query
|
|
80089
|
-
* @param {*} [options] Override http request option.
|
|
80090
|
-
* @throws {RequiredError}
|
|
80091
|
-
*/
|
|
80092
|
-
getThreadMembers: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80093
|
-
/**
|
|
80094
|
-
* Update Thread Member endpoint
|
|
80095
|
-
* @summary Update Thread Member
|
|
79306
|
+
* Update Thread Account endpoint
|
|
79307
|
+
* @summary Update Thread Account
|
|
80096
79308
|
* @param {string} threadId The thread identifier
|
|
80097
79309
|
* @param {string} accountId The account identifier
|
|
80098
|
-
* @param {
|
|
79310
|
+
* @param {ThreadAccountUpdateInputs} threadAccountUpdateInputs
|
|
80099
79311
|
* @param {*} [options] Override http request option.
|
|
80100
79312
|
* @throws {RequiredError}
|
|
80101
79313
|
*/
|
|
80102
|
-
|
|
79314
|
+
updateThreadAccount: (threadId: string, accountId: string, threadAccountUpdateInputs: ThreadAccountUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80103
79315
|
};
|
|
80104
79316
|
/**
|
|
80105
|
-
*
|
|
79317
|
+
* ThreadsAccountsApi - functional programming interface
|
|
80106
79318
|
*/
|
|
80107
|
-
export declare const
|
|
79319
|
+
export declare const ThreadsAccountsApiFp: (configuration?: Configuration) => {
|
|
80108
79320
|
/**
|
|
80109
|
-
*
|
|
80110
|
-
* @summary
|
|
79321
|
+
* Delete Thread Account endpoint
|
|
79322
|
+
* @summary Delete Thread Account
|
|
80111
79323
|
* @param {string} threadId The thread identifier
|
|
80112
|
-
* @param {
|
|
80113
|
-
* @param {number} [pageSize] Number of items per page
|
|
80114
|
-
* @param {string} [orderBy] Field to order by
|
|
80115
|
-
* @param {string} [search] Search query
|
|
79324
|
+
* @param {string} accountId The account identifier
|
|
80116
79325
|
* @param {*} [options] Override http request option.
|
|
80117
79326
|
* @throws {RequiredError}
|
|
80118
79327
|
*/
|
|
80119
|
-
|
|
79328
|
+
deleteThreadAccount(threadId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
80120
79329
|
/**
|
|
80121
|
-
* Get Thread
|
|
80122
|
-
* @summary Get Thread
|
|
79330
|
+
* Get Thread Accounts endpoint
|
|
79331
|
+
* @summary Get Thread Accounts
|
|
80123
79332
|
* @param {string} threadId The thread identifier
|
|
80124
79333
|
* @param {number} [page] Page number
|
|
80125
79334
|
* @param {number} [pageSize] Number of items per page
|
|
@@ -80128,76 +79337,64 @@ export declare const ThreadsMembersApiFp: (configuration?: Configuration) => {
|
|
|
80128
79337
|
* @param {*} [options] Override http request option.
|
|
80129
79338
|
* @throws {RequiredError}
|
|
80130
79339
|
*/
|
|
80131
|
-
|
|
79340
|
+
getThreadAccounts(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccounts200Response>>;
|
|
80132
79341
|
/**
|
|
80133
|
-
* Update Thread
|
|
80134
|
-
* @summary Update Thread
|
|
79342
|
+
* Update Thread Account endpoint
|
|
79343
|
+
* @summary Update Thread Account
|
|
80135
79344
|
* @param {string} threadId The thread identifier
|
|
80136
79345
|
* @param {string} accountId The account identifier
|
|
80137
|
-
* @param {
|
|
79346
|
+
* @param {ThreadAccountUpdateInputs} threadAccountUpdateInputs
|
|
80138
79347
|
* @param {*} [options] Override http request option.
|
|
80139
79348
|
* @throws {RequiredError}
|
|
80140
79349
|
*/
|
|
80141
|
-
|
|
79350
|
+
updateThreadAccount(threadId: string, accountId: string, threadAccountUpdateInputs: ThreadAccountUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateThreadAccount200Response>>;
|
|
80142
79351
|
};
|
|
80143
79352
|
/**
|
|
80144
|
-
*
|
|
79353
|
+
* ThreadsAccountsApi - factory interface
|
|
80145
79354
|
*/
|
|
80146
|
-
export declare const
|
|
79355
|
+
export declare const ThreadsAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
80147
79356
|
/**
|
|
80148
|
-
*
|
|
80149
|
-
* @summary
|
|
80150
|
-
* @param {
|
|
79357
|
+
* Delete Thread Account endpoint
|
|
79358
|
+
* @summary Delete Thread Account
|
|
79359
|
+
* @param {ThreadsAccountsApiDeleteThreadAccountRequest} requestParameters Request parameters.
|
|
80151
79360
|
* @param {*} [options] Override http request option.
|
|
80152
79361
|
* @throws {RequiredError}
|
|
80153
79362
|
*/
|
|
80154
|
-
|
|
79363
|
+
deleteThreadAccount(requestParameters: ThreadsAccountsApiDeleteThreadAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
80155
79364
|
/**
|
|
80156
|
-
* Get Thread
|
|
80157
|
-
* @summary Get Thread
|
|
80158
|
-
* @param {
|
|
79365
|
+
* Get Thread Accounts endpoint
|
|
79366
|
+
* @summary Get Thread Accounts
|
|
79367
|
+
* @param {ThreadsAccountsApiGetThreadAccountsRequest} requestParameters Request parameters.
|
|
80159
79368
|
* @param {*} [options] Override http request option.
|
|
80160
79369
|
* @throws {RequiredError}
|
|
80161
79370
|
*/
|
|
80162
|
-
|
|
79371
|
+
getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccounts200Response>;
|
|
80163
79372
|
/**
|
|
80164
|
-
* Update Thread
|
|
80165
|
-
* @summary Update Thread
|
|
80166
|
-
* @param {
|
|
79373
|
+
* Update Thread Account endpoint
|
|
79374
|
+
* @summary Update Thread Account
|
|
79375
|
+
* @param {ThreadsAccountsApiUpdateThreadAccountRequest} requestParameters Request parameters.
|
|
80167
79376
|
* @param {*} [options] Override http request option.
|
|
80168
79377
|
* @throws {RequiredError}
|
|
80169
79378
|
*/
|
|
80170
|
-
|
|
79379
|
+
updateThreadAccount(requestParameters: ThreadsAccountsApiUpdateThreadAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateThreadAccount200Response>;
|
|
80171
79380
|
};
|
|
80172
79381
|
/**
|
|
80173
|
-
* Request parameters for
|
|
79382
|
+
* Request parameters for deleteThreadAccount operation in ThreadsAccountsApi.
|
|
80174
79383
|
*/
|
|
80175
|
-
export interface
|
|
79384
|
+
export interface ThreadsAccountsApiDeleteThreadAccountRequest {
|
|
80176
79385
|
/**
|
|
80177
79386
|
* The thread identifier
|
|
80178
79387
|
*/
|
|
80179
79388
|
readonly threadId: string;
|
|
80180
79389
|
/**
|
|
80181
|
-
*
|
|
80182
|
-
*/
|
|
80183
|
-
readonly page?: number;
|
|
80184
|
-
/**
|
|
80185
|
-
* Number of items per page
|
|
80186
|
-
*/
|
|
80187
|
-
readonly pageSize?: number;
|
|
80188
|
-
/**
|
|
80189
|
-
* Field to order by
|
|
80190
|
-
*/
|
|
80191
|
-
readonly orderBy?: string;
|
|
80192
|
-
/**
|
|
80193
|
-
* Search query
|
|
79390
|
+
* The account identifier
|
|
80194
79391
|
*/
|
|
80195
|
-
readonly
|
|
79392
|
+
readonly accountId: string;
|
|
80196
79393
|
}
|
|
80197
79394
|
/**
|
|
80198
|
-
* Request parameters for
|
|
79395
|
+
* Request parameters for getThreadAccounts operation in ThreadsAccountsApi.
|
|
80199
79396
|
*/
|
|
80200
|
-
export interface
|
|
79397
|
+
export interface ThreadsAccountsApiGetThreadAccountsRequest {
|
|
80201
79398
|
/**
|
|
80202
79399
|
* The thread identifier
|
|
80203
79400
|
*/
|
|
@@ -80220,9 +79417,9 @@ export interface ThreadsMembersApiGetThreadMembersRequest {
|
|
|
80220
79417
|
readonly search?: string;
|
|
80221
79418
|
}
|
|
80222
79419
|
/**
|
|
80223
|
-
* Request parameters for
|
|
79420
|
+
* Request parameters for updateThreadAccount operation in ThreadsAccountsApi.
|
|
80224
79421
|
*/
|
|
80225
|
-
export interface
|
|
79422
|
+
export interface ThreadsAccountsApiUpdateThreadAccountRequest {
|
|
80226
79423
|
/**
|
|
80227
79424
|
* The thread identifier
|
|
80228
79425
|
*/
|
|
@@ -80231,36 +79428,36 @@ export interface ThreadsMembersApiUpdateThreadMemberRequest {
|
|
|
80231
79428
|
* The account identifier
|
|
80232
79429
|
*/
|
|
80233
79430
|
readonly accountId: string;
|
|
80234
|
-
readonly
|
|
79431
|
+
readonly threadAccountUpdateInputs: ThreadAccountUpdateInputs;
|
|
80235
79432
|
}
|
|
80236
79433
|
/**
|
|
80237
|
-
*
|
|
79434
|
+
* ThreadsAccountsApi - object-oriented interface
|
|
80238
79435
|
*/
|
|
80239
|
-
export declare class
|
|
79436
|
+
export declare class ThreadsAccountsApi extends BaseAPI {
|
|
80240
79437
|
/**
|
|
80241
|
-
*
|
|
80242
|
-
* @summary
|
|
80243
|
-
* @param {
|
|
79438
|
+
* Delete Thread Account endpoint
|
|
79439
|
+
* @summary Delete Thread Account
|
|
79440
|
+
* @param {ThreadsAccountsApiDeleteThreadAccountRequest} requestParameters Request parameters.
|
|
80244
79441
|
* @param {*} [options] Override http request option.
|
|
80245
79442
|
* @throws {RequiredError}
|
|
80246
79443
|
*/
|
|
80247
|
-
|
|
79444
|
+
deleteThreadAccount(requestParameters: ThreadsAccountsApiDeleteThreadAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
80248
79445
|
/**
|
|
80249
|
-
* Get Thread
|
|
80250
|
-
* @summary Get Thread
|
|
80251
|
-
* @param {
|
|
79446
|
+
* Get Thread Accounts endpoint
|
|
79447
|
+
* @summary Get Thread Accounts
|
|
79448
|
+
* @param {ThreadsAccountsApiGetThreadAccountsRequest} requestParameters Request parameters.
|
|
80252
79449
|
* @param {*} [options] Override http request option.
|
|
80253
79450
|
* @throws {RequiredError}
|
|
80254
79451
|
*/
|
|
80255
|
-
|
|
79452
|
+
getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccounts200Response, any, {}>>;
|
|
80256
79453
|
/**
|
|
80257
|
-
* Update Thread
|
|
80258
|
-
* @summary Update Thread
|
|
80259
|
-
* @param {
|
|
79454
|
+
* Update Thread Account endpoint
|
|
79455
|
+
* @summary Update Thread Account
|
|
79456
|
+
* @param {ThreadsAccountsApiUpdateThreadAccountRequest} requestParameters Request parameters.
|
|
80260
79457
|
* @param {*} [options] Override http request option.
|
|
80261
79458
|
* @throws {RequiredError}
|
|
80262
79459
|
*/
|
|
80263
|
-
|
|
79460
|
+
updateThreadAccount(requestParameters: ThreadsAccountsApiUpdateThreadAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateThreadAccount200Response, any, {}>>;
|
|
80264
79461
|
}
|
|
80265
79462
|
/**
|
|
80266
79463
|
* ThreadsMessagesApi - axios parameter creator
|