@closerplatform/spinner-openapi 0.12.630 → 0.12.632
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/dist/api.d.ts +194 -213
- package/dist/api.js +362 -362
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -332,7 +332,7 @@ export interface AgentCtx {
|
|
|
332
332
|
* @type {string}
|
|
333
333
|
* @memberof AgentCtx
|
|
334
334
|
*/
|
|
335
|
-
|
|
335
|
+
avatarToken?: string;
|
|
336
336
|
/**
|
|
337
337
|
*
|
|
338
338
|
* @type {string}
|
|
@@ -635,7 +635,7 @@ export interface AgentProfile {
|
|
|
635
635
|
* @type {string}
|
|
636
636
|
* @memberof AgentProfile
|
|
637
637
|
*/
|
|
638
|
-
|
|
638
|
+
avatarToken?: string;
|
|
639
639
|
/**
|
|
640
640
|
*
|
|
641
641
|
* @type {string}
|
|
@@ -2341,7 +2341,7 @@ export interface FileHandle {
|
|
|
2341
2341
|
* @type {string}
|
|
2342
2342
|
* @memberof FileHandle
|
|
2343
2343
|
*/
|
|
2344
|
-
|
|
2344
|
+
fileToken: string;
|
|
2345
2345
|
/**
|
|
2346
2346
|
*
|
|
2347
2347
|
* @type {string}
|
|
@@ -3741,7 +3741,7 @@ export interface LimitedAgentProfile {
|
|
|
3741
3741
|
* @type {string}
|
|
3742
3742
|
* @memberof LimitedAgentProfile
|
|
3743
3743
|
*/
|
|
3744
|
-
|
|
3744
|
+
avatarToken?: string;
|
|
3745
3745
|
/**
|
|
3746
3746
|
*
|
|
3747
3747
|
* @type {AppPresence}
|
|
@@ -4757,13 +4757,13 @@ export interface OrgConfig {
|
|
|
4757
4757
|
* @type {string}
|
|
4758
4758
|
* @memberof OrgConfig
|
|
4759
4759
|
*/
|
|
4760
|
-
|
|
4760
|
+
coverToken?: string;
|
|
4761
4761
|
/**
|
|
4762
4762
|
*
|
|
4763
4763
|
* @type {string}
|
|
4764
4764
|
* @memberof OrgConfig
|
|
4765
4765
|
*/
|
|
4766
|
-
|
|
4766
|
+
logoToken?: string;
|
|
4767
4767
|
/**
|
|
4768
4768
|
*
|
|
4769
4769
|
* @type {number}
|
|
@@ -5039,7 +5039,7 @@ export interface OrgConfig {
|
|
|
5039
5039
|
* @type {string}
|
|
5040
5040
|
* @memberof OrgConfig
|
|
5041
5041
|
*/
|
|
5042
|
-
|
|
5042
|
+
defaultAgentAvatarToken?: string;
|
|
5043
5043
|
/**
|
|
5044
5044
|
*
|
|
5045
5045
|
* @type {number}
|
|
@@ -5282,6 +5282,24 @@ export interface Organization {
|
|
|
5282
5282
|
* @memberof Organization
|
|
5283
5283
|
*/
|
|
5284
5284
|
name: string;
|
|
5285
|
+
/**
|
|
5286
|
+
*
|
|
5287
|
+
* @type {string}
|
|
5288
|
+
* @memberof Organization
|
|
5289
|
+
*/
|
|
5290
|
+
color: string;
|
|
5291
|
+
/**
|
|
5292
|
+
*
|
|
5293
|
+
* @type {string}
|
|
5294
|
+
* @memberof Organization
|
|
5295
|
+
*/
|
|
5296
|
+
logoToken?: string;
|
|
5297
|
+
/**
|
|
5298
|
+
*
|
|
5299
|
+
* @type {string}
|
|
5300
|
+
* @memberof Organization
|
|
5301
|
+
*/
|
|
5302
|
+
coverToken?: string;
|
|
5285
5303
|
}
|
|
5286
5304
|
/**
|
|
5287
5305
|
*
|
|
@@ -5308,43 +5326,6 @@ export interface OrganizationLimits {
|
|
|
5308
5326
|
*/
|
|
5309
5327
|
callMaxDuration?: number;
|
|
5310
5328
|
}
|
|
5311
|
-
/**
|
|
5312
|
-
*
|
|
5313
|
-
* @export
|
|
5314
|
-
* @interface OrganizationSummary
|
|
5315
|
-
*/
|
|
5316
|
-
export interface OrganizationSummary {
|
|
5317
|
-
/**
|
|
5318
|
-
*
|
|
5319
|
-
* @type {string}
|
|
5320
|
-
* @memberof OrganizationSummary
|
|
5321
|
-
*/
|
|
5322
|
-
id: string;
|
|
5323
|
-
/**
|
|
5324
|
-
*
|
|
5325
|
-
* @type {string}
|
|
5326
|
-
* @memberof OrganizationSummary
|
|
5327
|
-
*/
|
|
5328
|
-
name: string;
|
|
5329
|
-
/**
|
|
5330
|
-
*
|
|
5331
|
-
* @type {string}
|
|
5332
|
-
* @memberof OrganizationSummary
|
|
5333
|
-
*/
|
|
5334
|
-
logoUrl?: string;
|
|
5335
|
-
/**
|
|
5336
|
-
*
|
|
5337
|
-
* @type {string}
|
|
5338
|
-
* @memberof OrganizationSummary
|
|
5339
|
-
*/
|
|
5340
|
-
coverUrl?: string;
|
|
5341
|
-
/**
|
|
5342
|
-
*
|
|
5343
|
-
* @type {string}
|
|
5344
|
-
* @memberof OrganizationSummary
|
|
5345
|
-
*/
|
|
5346
|
-
color?: string;
|
|
5347
|
-
}
|
|
5348
5329
|
/**
|
|
5349
5330
|
*
|
|
5350
5331
|
* @export
|
|
@@ -8050,6 +8031,13 @@ export declare const BotsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
8050
8031
|
* @throws {RequiredError}
|
|
8051
8032
|
*/
|
|
8052
8033
|
changeBotType(body: ChangeBotTypeForm, options?: any): FetchArgs;
|
|
8034
|
+
/**
|
|
8035
|
+
*
|
|
8036
|
+
* @summary create bot avatar handle
|
|
8037
|
+
* @param {*} [options] Override http request option.
|
|
8038
|
+
* @throws {RequiredError}
|
|
8039
|
+
*/
|
|
8040
|
+
createBotAvatarHandle(options?: any): FetchArgs;
|
|
8053
8041
|
/**
|
|
8054
8042
|
*
|
|
8055
8043
|
* @summary create lekta config
|
|
@@ -8066,13 +8054,6 @@ export declare const BotsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
8066
8054
|
* @throws {RequiredError}
|
|
8067
8055
|
*/
|
|
8068
8056
|
deleteBotAvatar(body: ChangeBotTypeForm, options?: any): FetchArgs;
|
|
8069
|
-
/**
|
|
8070
|
-
*
|
|
8071
|
-
* @summary get bot avatar upload url
|
|
8072
|
-
* @param {*} [options] Override http request option.
|
|
8073
|
-
* @throws {RequiredError}
|
|
8074
|
-
*/
|
|
8075
|
-
getBotAvatarUploadUrl(options?: any): FetchArgs;
|
|
8076
8057
|
/**
|
|
8077
8058
|
*
|
|
8078
8059
|
* @summary get bot info
|
|
@@ -8133,6 +8114,13 @@ export declare const BotsApiFp: (configuration?: Configuration) => {
|
|
|
8133
8114
|
* @throws {RequiredError}
|
|
8134
8115
|
*/
|
|
8135
8116
|
changeBotType(body: ChangeBotTypeForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<BotInfo>;
|
|
8117
|
+
/**
|
|
8118
|
+
*
|
|
8119
|
+
* @summary create bot avatar handle
|
|
8120
|
+
* @param {*} [options] Override http request option.
|
|
8121
|
+
* @throws {RequiredError}
|
|
8122
|
+
*/
|
|
8123
|
+
createBotAvatarHandle(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
8136
8124
|
/**
|
|
8137
8125
|
*
|
|
8138
8126
|
* @summary create lekta config
|
|
@@ -8149,13 +8137,6 @@ export declare const BotsApiFp: (configuration?: Configuration) => {
|
|
|
8149
8137
|
* @throws {RequiredError}
|
|
8150
8138
|
*/
|
|
8151
8139
|
deleteBotAvatar(body: ChangeBotTypeForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
8152
|
-
/**
|
|
8153
|
-
*
|
|
8154
|
-
* @summary get bot avatar upload url
|
|
8155
|
-
* @param {*} [options] Override http request option.
|
|
8156
|
-
* @throws {RequiredError}
|
|
8157
|
-
*/
|
|
8158
|
-
getBotAvatarUploadUrl(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
8159
8140
|
/**
|
|
8160
8141
|
*
|
|
8161
8142
|
* @summary get bot info
|
|
@@ -8216,6 +8197,13 @@ export declare const BotsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
8216
8197
|
* @throws {RequiredError}
|
|
8217
8198
|
*/
|
|
8218
8199
|
changeBotType(body: ChangeBotTypeForm, options?: any): Promise<BotInfo>;
|
|
8200
|
+
/**
|
|
8201
|
+
*
|
|
8202
|
+
* @summary create bot avatar handle
|
|
8203
|
+
* @param {*} [options] Override http request option.
|
|
8204
|
+
* @throws {RequiredError}
|
|
8205
|
+
*/
|
|
8206
|
+
createBotAvatarHandle(options?: any): Promise<FileHandle>;
|
|
8219
8207
|
/**
|
|
8220
8208
|
*
|
|
8221
8209
|
* @summary create lekta config
|
|
@@ -8232,13 +8220,6 @@ export declare const BotsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
8232
8220
|
* @throws {RequiredError}
|
|
8233
8221
|
*/
|
|
8234
8222
|
deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
|
|
8235
|
-
/**
|
|
8236
|
-
*
|
|
8237
|
-
* @summary get bot avatar upload url
|
|
8238
|
-
* @param {*} [options] Override http request option.
|
|
8239
|
-
* @throws {RequiredError}
|
|
8240
|
-
*/
|
|
8241
|
-
getBotAvatarUploadUrl(options?: any): Promise<FileHandle>;
|
|
8242
8223
|
/**
|
|
8243
8224
|
*
|
|
8244
8225
|
* @summary get bot info
|
|
@@ -8304,30 +8285,30 @@ export declare class BotsApi extends BaseAPI {
|
|
|
8304
8285
|
changeBotType(body: ChangeBotTypeForm, options?: any): Promise<BotInfo>;
|
|
8305
8286
|
/**
|
|
8306
8287
|
*
|
|
8307
|
-
* @summary create
|
|
8308
|
-
* @param {LektaConfigForm} body
|
|
8288
|
+
* @summary create bot avatar handle
|
|
8309
8289
|
* @param {*} [options] Override http request option.
|
|
8310
8290
|
* @throws {RequiredError}
|
|
8311
8291
|
* @memberof BotsApi
|
|
8312
8292
|
*/
|
|
8313
|
-
|
|
8293
|
+
createBotAvatarHandle(options?: any): Promise<FileHandle>;
|
|
8314
8294
|
/**
|
|
8315
8295
|
*
|
|
8316
|
-
* @summary
|
|
8317
|
-
* @param {
|
|
8296
|
+
* @summary create lekta config
|
|
8297
|
+
* @param {LektaConfigForm} body
|
|
8318
8298
|
* @param {*} [options] Override http request option.
|
|
8319
8299
|
* @throws {RequiredError}
|
|
8320
8300
|
* @memberof BotsApi
|
|
8321
8301
|
*/
|
|
8322
|
-
|
|
8302
|
+
createLektaConfig(body: LektaConfigForm, options?: any): Promise<LektaConfig>;
|
|
8323
8303
|
/**
|
|
8324
8304
|
*
|
|
8325
|
-
* @summary
|
|
8305
|
+
* @summary delete bot avatar
|
|
8306
|
+
* @param {ChangeBotTypeForm} body
|
|
8326
8307
|
* @param {*} [options] Override http request option.
|
|
8327
8308
|
* @throws {RequiredError}
|
|
8328
8309
|
* @memberof BotsApi
|
|
8329
8310
|
*/
|
|
8330
|
-
|
|
8311
|
+
deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
|
|
8331
8312
|
/**
|
|
8332
8313
|
*
|
|
8333
8314
|
* @summary get bot info
|
|
@@ -9436,13 +9417,13 @@ export declare const KnowledgeBasesApiFetchParamCreator: (configuration?: Config
|
|
|
9436
9417
|
create(body: KnowledgeBaseCreateForm, options?: any): FetchArgs;
|
|
9437
9418
|
/**
|
|
9438
9419
|
*
|
|
9439
|
-
* @summary Create knowledge base's
|
|
9420
|
+
* @summary Create knowledge base's handle
|
|
9440
9421
|
* @param {string} id
|
|
9441
9422
|
* @param {KnowledgeBaseFileCreateForm} [body]
|
|
9442
9423
|
* @param {*} [options] Override http request option.
|
|
9443
9424
|
* @throws {RequiredError}
|
|
9444
9425
|
*/
|
|
9445
|
-
|
|
9426
|
+
createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): FetchArgs;
|
|
9446
9427
|
/**
|
|
9447
9428
|
*
|
|
9448
9429
|
* @summary Delete knowledge base's file
|
|
@@ -9500,13 +9481,13 @@ export declare const KnowledgeBasesApiFp: (configuration?: Configuration) => {
|
|
|
9500
9481
|
create(body: KnowledgeBaseCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<KnowledgeBase>;
|
|
9501
9482
|
/**
|
|
9502
9483
|
*
|
|
9503
|
-
* @summary Create knowledge base's
|
|
9484
|
+
* @summary Create knowledge base's handle
|
|
9504
9485
|
* @param {string} id
|
|
9505
9486
|
* @param {KnowledgeBaseFileCreateForm} [body]
|
|
9506
9487
|
* @param {*} [options] Override http request option.
|
|
9507
9488
|
* @throws {RequiredError}
|
|
9508
9489
|
*/
|
|
9509
|
-
|
|
9490
|
+
createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
9510
9491
|
/**
|
|
9511
9492
|
*
|
|
9512
9493
|
* @summary Delete knowledge base's file
|
|
@@ -9564,13 +9545,13 @@ export declare const KnowledgeBasesApiFactory: (configuration?: Configuration, f
|
|
|
9564
9545
|
create(body: KnowledgeBaseCreateForm, options?: any): Promise<KnowledgeBase>;
|
|
9565
9546
|
/**
|
|
9566
9547
|
*
|
|
9567
|
-
* @summary Create knowledge base's
|
|
9548
|
+
* @summary Create knowledge base's handle
|
|
9568
9549
|
* @param {string} id
|
|
9569
9550
|
* @param {KnowledgeBaseFileCreateForm} [body]
|
|
9570
9551
|
* @param {*} [options] Override http request option.
|
|
9571
9552
|
* @throws {RequiredError}
|
|
9572
9553
|
*/
|
|
9573
|
-
|
|
9554
|
+
createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
|
|
9574
9555
|
/**
|
|
9575
9556
|
*
|
|
9576
9557
|
* @summary Delete knowledge base's file
|
|
@@ -9632,14 +9613,14 @@ export declare class KnowledgeBasesApi extends BaseAPI {
|
|
|
9632
9613
|
create(body: KnowledgeBaseCreateForm, options?: any): Promise<KnowledgeBase>;
|
|
9633
9614
|
/**
|
|
9634
9615
|
*
|
|
9635
|
-
* @summary Create knowledge base's
|
|
9616
|
+
* @summary Create knowledge base's handle
|
|
9636
9617
|
* @param {string} id
|
|
9637
9618
|
* @param {KnowledgeBaseFileCreateForm} [body]
|
|
9638
9619
|
* @param {*} [options] Override http request option.
|
|
9639
9620
|
* @throws {RequiredError}
|
|
9640
9621
|
* @memberof KnowledgeBasesApi
|
|
9641
9622
|
*/
|
|
9642
|
-
|
|
9623
|
+
createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
|
|
9643
9624
|
/**
|
|
9644
9625
|
*
|
|
9645
9626
|
* @summary Delete knowledge base's file
|
|
@@ -11396,6 +11377,30 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
11396
11377
|
* @throws {RequiredError}
|
|
11397
11378
|
*/
|
|
11398
11379
|
createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): FetchArgs;
|
|
11380
|
+
/**
|
|
11381
|
+
*
|
|
11382
|
+
* @summary Create organization cover handle
|
|
11383
|
+
* @param {string} id
|
|
11384
|
+
* @param {*} [options] Override http request option.
|
|
11385
|
+
* @throws {RequiredError}
|
|
11386
|
+
*/
|
|
11387
|
+
createOrgCoverHandle(id: string, options?: any): FetchArgs;
|
|
11388
|
+
/**
|
|
11389
|
+
*
|
|
11390
|
+
* @summary Create organization default agent avatar handle
|
|
11391
|
+
* @param {string} id
|
|
11392
|
+
* @param {*} [options] Override http request option.
|
|
11393
|
+
* @throws {RequiredError}
|
|
11394
|
+
*/
|
|
11395
|
+
createOrgDefaultAgentAvatarHandle(id: string, options?: any): FetchArgs;
|
|
11396
|
+
/**
|
|
11397
|
+
*
|
|
11398
|
+
* @summary Create organization logo handle
|
|
11399
|
+
* @param {string} id
|
|
11400
|
+
* @param {*} [options] Override http request option.
|
|
11401
|
+
* @throws {RequiredError}
|
|
11402
|
+
*/
|
|
11403
|
+
createOrgLogoHandle(id: string, options?: any): FetchArgs;
|
|
11399
11404
|
/**
|
|
11400
11405
|
*
|
|
11401
11406
|
* @summary Create org and admin account with trial
|
|
@@ -11407,7 +11412,7 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
11407
11412
|
createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): FetchArgs;
|
|
11408
11413
|
/**
|
|
11409
11414
|
*
|
|
11410
|
-
* @summary Delete organization cover
|
|
11415
|
+
* @summary Delete organization cover graphic
|
|
11411
11416
|
* @param {string} id
|
|
11412
11417
|
* @param {*} [options] Override http request option.
|
|
11413
11418
|
* @throws {RequiredError}
|
|
@@ -11461,22 +11466,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
11461
11466
|
* @throws {RequiredError}
|
|
11462
11467
|
*/
|
|
11463
11468
|
getOrg(id: string, options?: any): FetchArgs;
|
|
11464
|
-
/**
|
|
11465
|
-
*
|
|
11466
|
-
* @summary Generate organization cover image upload URL.
|
|
11467
|
-
* @param {string} id
|
|
11468
|
-
* @param {*} [options] Override http request option.
|
|
11469
|
-
* @throws {RequiredError}
|
|
11470
|
-
*/
|
|
11471
|
-
getOrgCoverUploadURL(id: string, options?: any): FetchArgs;
|
|
11472
|
-
/**
|
|
11473
|
-
*
|
|
11474
|
-
* @summary Generate organization default agent avatar upload URL.
|
|
11475
|
-
* @param {string} id
|
|
11476
|
-
* @param {*} [options] Override http request option.
|
|
11477
|
-
* @throws {RequiredError}
|
|
11478
|
-
*/
|
|
11479
|
-
getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): FetchArgs;
|
|
11480
11469
|
/**
|
|
11481
11470
|
*
|
|
11482
11471
|
* @summary Get org information
|
|
@@ -11484,14 +11473,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
|
|
|
11484
11473
|
* @throws {RequiredError}
|
|
11485
11474
|
*/
|
|
11486
11475
|
getOrgInfo(options?: any): FetchArgs;
|
|
11487
|
-
/**
|
|
11488
|
-
*
|
|
11489
|
-
* @summary Generate organization logo upload URL.
|
|
11490
|
-
* @param {string} id
|
|
11491
|
-
* @param {*} [options] Override http request option.
|
|
11492
|
-
* @throws {RequiredError}
|
|
11493
|
-
*/
|
|
11494
|
-
getOrgLogoUploadURL(id: string, options?: any): FetchArgs;
|
|
11495
11476
|
/**
|
|
11496
11477
|
*
|
|
11497
11478
|
* @summary Retrieve possible unavailability reasons for org.
|
|
@@ -11615,6 +11596,30 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
|
|
|
11615
11596
|
* @throws {RequiredError}
|
|
11616
11597
|
*/
|
|
11617
11598
|
createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<AgentCtx>;
|
|
11599
|
+
/**
|
|
11600
|
+
*
|
|
11601
|
+
* @summary Create organization cover handle
|
|
11602
|
+
* @param {string} id
|
|
11603
|
+
* @param {*} [options] Override http request option.
|
|
11604
|
+
* @throws {RequiredError}
|
|
11605
|
+
*/
|
|
11606
|
+
createOrgCoverHandle(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
11607
|
+
/**
|
|
11608
|
+
*
|
|
11609
|
+
* @summary Create organization default agent avatar handle
|
|
11610
|
+
* @param {string} id
|
|
11611
|
+
* @param {*} [options] Override http request option.
|
|
11612
|
+
* @throws {RequiredError}
|
|
11613
|
+
*/
|
|
11614
|
+
createOrgDefaultAgentAvatarHandle(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
11615
|
+
/**
|
|
11616
|
+
*
|
|
11617
|
+
* @summary Create organization logo handle
|
|
11618
|
+
* @param {string} id
|
|
11619
|
+
* @param {*} [options] Override http request option.
|
|
11620
|
+
* @throws {RequiredError}
|
|
11621
|
+
*/
|
|
11622
|
+
createOrgLogoHandle(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
11618
11623
|
/**
|
|
11619
11624
|
*
|
|
11620
11625
|
* @summary Create org and admin account with trial
|
|
@@ -11626,7 +11631,7 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
|
|
|
11626
11631
|
createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<SessionIdResponse>;
|
|
11627
11632
|
/**
|
|
11628
11633
|
*
|
|
11629
|
-
* @summary Delete organization cover
|
|
11634
|
+
* @summary Delete organization cover graphic
|
|
11630
11635
|
* @param {string} id
|
|
11631
11636
|
* @param {*} [options] Override http request option.
|
|
11632
11637
|
* @throws {RequiredError}
|
|
@@ -11680,22 +11685,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
|
|
|
11680
11685
|
* @throws {RequiredError}
|
|
11681
11686
|
*/
|
|
11682
11687
|
getOrg(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Organization>;
|
|
11683
|
-
/**
|
|
11684
|
-
*
|
|
11685
|
-
* @summary Generate organization cover image upload URL.
|
|
11686
|
-
* @param {string} id
|
|
11687
|
-
* @param {*} [options] Override http request option.
|
|
11688
|
-
* @throws {RequiredError}
|
|
11689
|
-
*/
|
|
11690
|
-
getOrgCoverUploadURL(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
11691
|
-
/**
|
|
11692
|
-
*
|
|
11693
|
-
* @summary Generate organization default agent avatar upload URL.
|
|
11694
|
-
* @param {string} id
|
|
11695
|
-
* @param {*} [options] Override http request option.
|
|
11696
|
-
* @throws {RequiredError}
|
|
11697
|
-
*/
|
|
11698
|
-
getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
11699
11688
|
/**
|
|
11700
11689
|
*
|
|
11701
11690
|
* @summary Get org information
|
|
@@ -11703,14 +11692,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
|
|
|
11703
11692
|
* @throws {RequiredError}
|
|
11704
11693
|
*/
|
|
11705
11694
|
getOrgInfo(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrgInfo>;
|
|
11706
|
-
/**
|
|
11707
|
-
*
|
|
11708
|
-
* @summary Generate organization logo upload URL.
|
|
11709
|
-
* @param {string} id
|
|
11710
|
-
* @param {*} [options] Override http request option.
|
|
11711
|
-
* @throws {RequiredError}
|
|
11712
|
-
*/
|
|
11713
|
-
getOrgLogoUploadURL(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
11714
11695
|
/**
|
|
11715
11696
|
*
|
|
11716
11697
|
* @summary Retrieve possible unavailability reasons for org.
|
|
@@ -11834,6 +11815,30 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
11834
11815
|
* @throws {RequiredError}
|
|
11835
11816
|
*/
|
|
11836
11817
|
createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): Promise<AgentCtx>;
|
|
11818
|
+
/**
|
|
11819
|
+
*
|
|
11820
|
+
* @summary Create organization cover handle
|
|
11821
|
+
* @param {string} id
|
|
11822
|
+
* @param {*} [options] Override http request option.
|
|
11823
|
+
* @throws {RequiredError}
|
|
11824
|
+
*/
|
|
11825
|
+
createOrgCoverHandle(id: string, options?: any): Promise<FileHandle>;
|
|
11826
|
+
/**
|
|
11827
|
+
*
|
|
11828
|
+
* @summary Create organization default agent avatar handle
|
|
11829
|
+
* @param {string} id
|
|
11830
|
+
* @param {*} [options] Override http request option.
|
|
11831
|
+
* @throws {RequiredError}
|
|
11832
|
+
*/
|
|
11833
|
+
createOrgDefaultAgentAvatarHandle(id: string, options?: any): Promise<FileHandle>;
|
|
11834
|
+
/**
|
|
11835
|
+
*
|
|
11836
|
+
* @summary Create organization logo handle
|
|
11837
|
+
* @param {string} id
|
|
11838
|
+
* @param {*} [options] Override http request option.
|
|
11839
|
+
* @throws {RequiredError}
|
|
11840
|
+
*/
|
|
11841
|
+
createOrgLogoHandle(id: string, options?: any): Promise<FileHandle>;
|
|
11837
11842
|
/**
|
|
11838
11843
|
*
|
|
11839
11844
|
* @summary Create org and admin account with trial
|
|
@@ -11845,7 +11850,7 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
11845
11850
|
createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): Promise<SessionIdResponse>;
|
|
11846
11851
|
/**
|
|
11847
11852
|
*
|
|
11848
|
-
* @summary Delete organization cover
|
|
11853
|
+
* @summary Delete organization cover graphic
|
|
11849
11854
|
* @param {string} id
|
|
11850
11855
|
* @param {*} [options] Override http request option.
|
|
11851
11856
|
* @throws {RequiredError}
|
|
@@ -11899,22 +11904,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
11899
11904
|
* @throws {RequiredError}
|
|
11900
11905
|
*/
|
|
11901
11906
|
getOrg(id: string, options?: any): Promise<Organization>;
|
|
11902
|
-
/**
|
|
11903
|
-
*
|
|
11904
|
-
* @summary Generate organization cover image upload URL.
|
|
11905
|
-
* @param {string} id
|
|
11906
|
-
* @param {*} [options] Override http request option.
|
|
11907
|
-
* @throws {RequiredError}
|
|
11908
|
-
*/
|
|
11909
|
-
getOrgCoverUploadURL(id: string, options?: any): Promise<FileHandle>;
|
|
11910
|
-
/**
|
|
11911
|
-
*
|
|
11912
|
-
* @summary Generate organization default agent avatar upload URL.
|
|
11913
|
-
* @param {string} id
|
|
11914
|
-
* @param {*} [options] Override http request option.
|
|
11915
|
-
* @throws {RequiredError}
|
|
11916
|
-
*/
|
|
11917
|
-
getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): Promise<FileHandle>;
|
|
11918
11907
|
/**
|
|
11919
11908
|
*
|
|
11920
11909
|
* @summary Get org information
|
|
@@ -11922,14 +11911,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
|
|
|
11922
11911
|
* @throws {RequiredError}
|
|
11923
11912
|
*/
|
|
11924
11913
|
getOrgInfo(options?: any): Promise<OrgInfo>;
|
|
11925
|
-
/**
|
|
11926
|
-
*
|
|
11927
|
-
* @summary Generate organization logo upload URL.
|
|
11928
|
-
* @param {string} id
|
|
11929
|
-
* @param {*} [options] Override http request option.
|
|
11930
|
-
* @throws {RequiredError}
|
|
11931
|
-
*/
|
|
11932
|
-
getOrgLogoUploadURL(id: string, options?: any): Promise<FileHandle>;
|
|
11933
11914
|
/**
|
|
11934
11915
|
*
|
|
11935
11916
|
* @summary Retrieve possible unavailability reasons for org.
|
|
@@ -12060,6 +12041,33 @@ export declare class OrgsApi extends BaseAPI {
|
|
|
12060
12041
|
* @memberof OrgsApi
|
|
12061
12042
|
*/
|
|
12062
12043
|
createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): Promise<AgentCtx>;
|
|
12044
|
+
/**
|
|
12045
|
+
*
|
|
12046
|
+
* @summary Create organization cover handle
|
|
12047
|
+
* @param {string} id
|
|
12048
|
+
* @param {*} [options] Override http request option.
|
|
12049
|
+
* @throws {RequiredError}
|
|
12050
|
+
* @memberof OrgsApi
|
|
12051
|
+
*/
|
|
12052
|
+
createOrgCoverHandle(id: string, options?: any): Promise<FileHandle>;
|
|
12053
|
+
/**
|
|
12054
|
+
*
|
|
12055
|
+
* @summary Create organization default agent avatar handle
|
|
12056
|
+
* @param {string} id
|
|
12057
|
+
* @param {*} [options] Override http request option.
|
|
12058
|
+
* @throws {RequiredError}
|
|
12059
|
+
* @memberof OrgsApi
|
|
12060
|
+
*/
|
|
12061
|
+
createOrgDefaultAgentAvatarHandle(id: string, options?: any): Promise<FileHandle>;
|
|
12062
|
+
/**
|
|
12063
|
+
*
|
|
12064
|
+
* @summary Create organization logo handle
|
|
12065
|
+
* @param {string} id
|
|
12066
|
+
* @param {*} [options] Override http request option.
|
|
12067
|
+
* @throws {RequiredError}
|
|
12068
|
+
* @memberof OrgsApi
|
|
12069
|
+
*/
|
|
12070
|
+
createOrgLogoHandle(id: string, options?: any): Promise<FileHandle>;
|
|
12063
12071
|
/**
|
|
12064
12072
|
*
|
|
12065
12073
|
* @summary Create org and admin account with trial
|
|
@@ -12072,7 +12080,7 @@ export declare class OrgsApi extends BaseAPI {
|
|
|
12072
12080
|
createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): Promise<SessionIdResponse>;
|
|
12073
12081
|
/**
|
|
12074
12082
|
*
|
|
12075
|
-
* @summary Delete organization cover
|
|
12083
|
+
* @summary Delete organization cover graphic
|
|
12076
12084
|
* @param {string} id
|
|
12077
12085
|
* @param {*} [options] Override http request option.
|
|
12078
12086
|
* @throws {RequiredError}
|
|
@@ -12133,24 +12141,6 @@ export declare class OrgsApi extends BaseAPI {
|
|
|
12133
12141
|
* @memberof OrgsApi
|
|
12134
12142
|
*/
|
|
12135
12143
|
getOrg(id: string, options?: any): Promise<Organization>;
|
|
12136
|
-
/**
|
|
12137
|
-
*
|
|
12138
|
-
* @summary Generate organization cover image upload URL.
|
|
12139
|
-
* @param {string} id
|
|
12140
|
-
* @param {*} [options] Override http request option.
|
|
12141
|
-
* @throws {RequiredError}
|
|
12142
|
-
* @memberof OrgsApi
|
|
12143
|
-
*/
|
|
12144
|
-
getOrgCoverUploadURL(id: string, options?: any): Promise<FileHandle>;
|
|
12145
|
-
/**
|
|
12146
|
-
*
|
|
12147
|
-
* @summary Generate organization default agent avatar upload URL.
|
|
12148
|
-
* @param {string} id
|
|
12149
|
-
* @param {*} [options] Override http request option.
|
|
12150
|
-
* @throws {RequiredError}
|
|
12151
|
-
* @memberof OrgsApi
|
|
12152
|
-
*/
|
|
12153
|
-
getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): Promise<FileHandle>;
|
|
12154
12144
|
/**
|
|
12155
12145
|
*
|
|
12156
12146
|
* @summary Get org information
|
|
@@ -12159,15 +12149,6 @@ export declare class OrgsApi extends BaseAPI {
|
|
|
12159
12149
|
* @memberof OrgsApi
|
|
12160
12150
|
*/
|
|
12161
12151
|
getOrgInfo(options?: any): Promise<OrgInfo>;
|
|
12162
|
-
/**
|
|
12163
|
-
*
|
|
12164
|
-
* @summary Generate organization logo upload URL.
|
|
12165
|
-
* @param {string} id
|
|
12166
|
-
* @param {*} [options] Override http request option.
|
|
12167
|
-
* @throws {RequiredError}
|
|
12168
|
-
* @memberof OrgsApi
|
|
12169
|
-
*/
|
|
12170
|
-
getOrgLogoUploadURL(id: string, options?: any): Promise<FileHandle>;
|
|
12171
12152
|
/**
|
|
12172
12153
|
*
|
|
12173
12154
|
* @summary Retrieve possible unavailability reasons for org.
|
|
@@ -14902,6 +14883,13 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
14902
14883
|
* @throws {RequiredError}
|
|
14903
14884
|
*/
|
|
14904
14885
|
continueConversationLink(body: LeadContinueConversation, options?: any): FetchArgs;
|
|
14886
|
+
/**
|
|
14887
|
+
*
|
|
14888
|
+
* @summary Create agent avatar handle
|
|
14889
|
+
* @param {*} [options] Override http request option.
|
|
14890
|
+
* @throws {RequiredError}
|
|
14891
|
+
*/
|
|
14892
|
+
createAgentAvatarHandle(options?: any): FetchArgs;
|
|
14905
14893
|
/**
|
|
14906
14894
|
*
|
|
14907
14895
|
* @summary Create a Lekta user.
|
|
@@ -14939,13 +14927,6 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
|
|
|
14939
14927
|
* @throws {RequiredError}
|
|
14940
14928
|
*/
|
|
14941
14929
|
deleteCustomer(customerId: string, options?: any): FetchArgs;
|
|
14942
|
-
/**
|
|
14943
|
-
*
|
|
14944
|
-
* @summary Generate avatar upload URL.
|
|
14945
|
-
* @param {*} [options] Override http request option.
|
|
14946
|
-
* @throws {RequiredError}
|
|
14947
|
-
*/
|
|
14948
|
-
getAgentAvatarUploadURL(options?: any): FetchArgs;
|
|
14949
14930
|
/**
|
|
14950
14931
|
*
|
|
14951
14932
|
* @summary Get agent preferences
|
|
@@ -15250,6 +15231,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15250
15231
|
* @throws {RequiredError}
|
|
15251
15232
|
*/
|
|
15252
15233
|
continueConversationLink(body: LeadContinueConversation, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
15234
|
+
/**
|
|
15235
|
+
*
|
|
15236
|
+
* @summary Create agent avatar handle
|
|
15237
|
+
* @param {*} [options] Override http request option.
|
|
15238
|
+
* @throws {RequiredError}
|
|
15239
|
+
*/
|
|
15240
|
+
createAgentAvatarHandle(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
15253
15241
|
/**
|
|
15254
15242
|
*
|
|
15255
15243
|
* @summary Create a Lekta user.
|
|
@@ -15287,13 +15275,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
15287
15275
|
* @throws {RequiredError}
|
|
15288
15276
|
*/
|
|
15289
15277
|
deleteCustomer(customerId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
15290
|
-
/**
|
|
15291
|
-
*
|
|
15292
|
-
* @summary Generate avatar upload URL.
|
|
15293
|
-
* @param {*} [options] Override http request option.
|
|
15294
|
-
* @throws {RequiredError}
|
|
15295
|
-
*/
|
|
15296
|
-
getAgentAvatarUploadURL(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
|
|
15297
15278
|
/**
|
|
15298
15279
|
*
|
|
15299
15280
|
* @summary Get agent preferences
|
|
@@ -15598,6 +15579,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15598
15579
|
* @throws {RequiredError}
|
|
15599
15580
|
*/
|
|
15600
15581
|
continueConversationLink(body: LeadContinueConversation, options?: any): Promise<Response>;
|
|
15582
|
+
/**
|
|
15583
|
+
*
|
|
15584
|
+
* @summary Create agent avatar handle
|
|
15585
|
+
* @param {*} [options] Override http request option.
|
|
15586
|
+
* @throws {RequiredError}
|
|
15587
|
+
*/
|
|
15588
|
+
createAgentAvatarHandle(options?: any): Promise<FileHandle>;
|
|
15601
15589
|
/**
|
|
15602
15590
|
*
|
|
15603
15591
|
* @summary Create a Lekta user.
|
|
@@ -15635,13 +15623,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
15635
15623
|
* @throws {RequiredError}
|
|
15636
15624
|
*/
|
|
15637
15625
|
deleteCustomer(customerId: string, options?: any): Promise<Response>;
|
|
15638
|
-
/**
|
|
15639
|
-
*
|
|
15640
|
-
* @summary Generate avatar upload URL.
|
|
15641
|
-
* @param {*} [options] Override http request option.
|
|
15642
|
-
* @throws {RequiredError}
|
|
15643
|
-
*/
|
|
15644
|
-
getAgentAvatarUploadURL(options?: any): Promise<FileHandle>;
|
|
15645
15626
|
/**
|
|
15646
15627
|
*
|
|
15647
15628
|
* @summary Get agent preferences
|
|
@@ -15952,6 +15933,14 @@ export declare class UsersApi extends BaseAPI {
|
|
|
15952
15933
|
* @memberof UsersApi
|
|
15953
15934
|
*/
|
|
15954
15935
|
continueConversationLink(body: LeadContinueConversation, options?: any): Promise<Response>;
|
|
15936
|
+
/**
|
|
15937
|
+
*
|
|
15938
|
+
* @summary Create agent avatar handle
|
|
15939
|
+
* @param {*} [options] Override http request option.
|
|
15940
|
+
* @throws {RequiredError}
|
|
15941
|
+
* @memberof UsersApi
|
|
15942
|
+
*/
|
|
15943
|
+
createAgentAvatarHandle(options?: any): Promise<FileHandle>;
|
|
15955
15944
|
/**
|
|
15956
15945
|
*
|
|
15957
15946
|
* @summary Create a Lekta user.
|
|
@@ -15994,14 +15983,6 @@ export declare class UsersApi extends BaseAPI {
|
|
|
15994
15983
|
* @memberof UsersApi
|
|
15995
15984
|
*/
|
|
15996
15985
|
deleteCustomer(customerId: string, options?: any): Promise<Response>;
|
|
15997
|
-
/**
|
|
15998
|
-
*
|
|
15999
|
-
* @summary Generate avatar upload URL.
|
|
16000
|
-
* @param {*} [options] Override http request option.
|
|
16001
|
-
* @throws {RequiredError}
|
|
16002
|
-
* @memberof UsersApi
|
|
16003
|
-
*/
|
|
16004
|
-
getAgentAvatarUploadURL(options?: any): Promise<FileHandle>;
|
|
16005
15986
|
/**
|
|
16006
15987
|
*
|
|
16007
15988
|
* @summary Get agent preferences
|