@closerplatform/spinner-openapi 0.12.629 → 0.12.631

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/api.d.ts +176 -170
  2. package/dist/api.js +362 -362
  3. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -2341,7 +2341,7 @@ export interface FileHandle {
2341
2341
  * @type {string}
2342
2342
  * @memberof FileHandle
2343
2343
  */
2344
- fileUrl: string;
2344
+ fileToken: string;
2345
2345
  /**
2346
2346
  *
2347
2347
  * @type {string}
@@ -5130,6 +5130,12 @@ export interface OrgConfig {
5130
5130
  * @memberof OrgConfig
5131
5131
  */
5132
5132
  welcomeMessageEnabled: boolean;
5133
+ /**
5134
+ *
5135
+ * @type {number}
5136
+ * @memberof OrgConfig
5137
+ */
5138
+ ttlMs?: number;
5133
5139
  }
5134
5140
  /**
5135
5141
  *
@@ -8044,6 +8050,13 @@ export declare const BotsApiFetchParamCreator: (configuration?: Configuration) =
8044
8050
  * @throws {RequiredError}
8045
8051
  */
8046
8052
  changeBotType(body: ChangeBotTypeForm, options?: any): FetchArgs;
8053
+ /**
8054
+ *
8055
+ * @summary create bot avatar handle
8056
+ * @param {*} [options] Override http request option.
8057
+ * @throws {RequiredError}
8058
+ */
8059
+ createBotAvatarHandle(options?: any): FetchArgs;
8047
8060
  /**
8048
8061
  *
8049
8062
  * @summary create lekta config
@@ -8060,13 +8073,6 @@ export declare const BotsApiFetchParamCreator: (configuration?: Configuration) =
8060
8073
  * @throws {RequiredError}
8061
8074
  */
8062
8075
  deleteBotAvatar(body: ChangeBotTypeForm, options?: any): FetchArgs;
8063
- /**
8064
- *
8065
- * @summary get bot avatar upload url
8066
- * @param {*} [options] Override http request option.
8067
- * @throws {RequiredError}
8068
- */
8069
- getBotAvatarUploadUrl(options?: any): FetchArgs;
8070
8076
  /**
8071
8077
  *
8072
8078
  * @summary get bot info
@@ -8127,6 +8133,13 @@ export declare const BotsApiFp: (configuration?: Configuration) => {
8127
8133
  * @throws {RequiredError}
8128
8134
  */
8129
8135
  changeBotType(body: ChangeBotTypeForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<BotInfo>;
8136
+ /**
8137
+ *
8138
+ * @summary create bot avatar handle
8139
+ * @param {*} [options] Override http request option.
8140
+ * @throws {RequiredError}
8141
+ */
8142
+ createBotAvatarHandle(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
8130
8143
  /**
8131
8144
  *
8132
8145
  * @summary create lekta config
@@ -8143,13 +8156,6 @@ export declare const BotsApiFp: (configuration?: Configuration) => {
8143
8156
  * @throws {RequiredError}
8144
8157
  */
8145
8158
  deleteBotAvatar(body: ChangeBotTypeForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8146
- /**
8147
- *
8148
- * @summary get bot avatar upload url
8149
- * @param {*} [options] Override http request option.
8150
- * @throws {RequiredError}
8151
- */
8152
- getBotAvatarUploadUrl(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
8153
8159
  /**
8154
8160
  *
8155
8161
  * @summary get bot info
@@ -8210,6 +8216,13 @@ export declare const BotsApiFactory: (configuration?: Configuration, fetch?: Fet
8210
8216
  * @throws {RequiredError}
8211
8217
  */
8212
8218
  changeBotType(body: ChangeBotTypeForm, options?: any): Promise<BotInfo>;
8219
+ /**
8220
+ *
8221
+ * @summary create bot avatar handle
8222
+ * @param {*} [options] Override http request option.
8223
+ * @throws {RequiredError}
8224
+ */
8225
+ createBotAvatarHandle(options?: any): Promise<FileHandle>;
8213
8226
  /**
8214
8227
  *
8215
8228
  * @summary create lekta config
@@ -8226,13 +8239,6 @@ export declare const BotsApiFactory: (configuration?: Configuration, fetch?: Fet
8226
8239
  * @throws {RequiredError}
8227
8240
  */
8228
8241
  deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
8229
- /**
8230
- *
8231
- * @summary get bot avatar upload url
8232
- * @param {*} [options] Override http request option.
8233
- * @throws {RequiredError}
8234
- */
8235
- getBotAvatarUploadUrl(options?: any): Promise<FileHandle>;
8236
8242
  /**
8237
8243
  *
8238
8244
  * @summary get bot info
@@ -8298,30 +8304,30 @@ export declare class BotsApi extends BaseAPI {
8298
8304
  changeBotType(body: ChangeBotTypeForm, options?: any): Promise<BotInfo>;
8299
8305
  /**
8300
8306
  *
8301
- * @summary create lekta config
8302
- * @param {LektaConfigForm} body
8307
+ * @summary create bot avatar handle
8303
8308
  * @param {*} [options] Override http request option.
8304
8309
  * @throws {RequiredError}
8305
8310
  * @memberof BotsApi
8306
8311
  */
8307
- createLektaConfig(body: LektaConfigForm, options?: any): Promise<LektaConfig>;
8312
+ createBotAvatarHandle(options?: any): Promise<FileHandle>;
8308
8313
  /**
8309
8314
  *
8310
- * @summary delete bot avatar
8311
- * @param {ChangeBotTypeForm} body
8315
+ * @summary create lekta config
8316
+ * @param {LektaConfigForm} body
8312
8317
  * @param {*} [options] Override http request option.
8313
8318
  * @throws {RequiredError}
8314
8319
  * @memberof BotsApi
8315
8320
  */
8316
- deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
8321
+ createLektaConfig(body: LektaConfigForm, options?: any): Promise<LektaConfig>;
8317
8322
  /**
8318
8323
  *
8319
- * @summary get bot avatar upload url
8324
+ * @summary delete bot avatar
8325
+ * @param {ChangeBotTypeForm} body
8320
8326
  * @param {*} [options] Override http request option.
8321
8327
  * @throws {RequiredError}
8322
8328
  * @memberof BotsApi
8323
8329
  */
8324
- getBotAvatarUploadUrl(options?: any): Promise<FileHandle>;
8330
+ deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
8325
8331
  /**
8326
8332
  *
8327
8333
  * @summary get bot info
@@ -9430,13 +9436,13 @@ export declare const KnowledgeBasesApiFetchParamCreator: (configuration?: Config
9430
9436
  create(body: KnowledgeBaseCreateForm, options?: any): FetchArgs;
9431
9437
  /**
9432
9438
  *
9433
- * @summary Create knowledge base's file
9439
+ * @summary Create knowledge base's handle
9434
9440
  * @param {string} id
9435
9441
  * @param {KnowledgeBaseFileCreateForm} [body]
9436
9442
  * @param {*} [options] Override http request option.
9437
9443
  * @throws {RequiredError}
9438
9444
  */
9439
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): FetchArgs;
9445
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): FetchArgs;
9440
9446
  /**
9441
9447
  *
9442
9448
  * @summary Delete knowledge base's file
@@ -9494,13 +9500,13 @@ export declare const KnowledgeBasesApiFp: (configuration?: Configuration) => {
9494
9500
  create(body: KnowledgeBaseCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<KnowledgeBase>;
9495
9501
  /**
9496
9502
  *
9497
- * @summary Create knowledge base's file
9503
+ * @summary Create knowledge base's handle
9498
9504
  * @param {string} id
9499
9505
  * @param {KnowledgeBaseFileCreateForm} [body]
9500
9506
  * @param {*} [options] Override http request option.
9501
9507
  * @throws {RequiredError}
9502
9508
  */
9503
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
9509
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
9504
9510
  /**
9505
9511
  *
9506
9512
  * @summary Delete knowledge base's file
@@ -9558,13 +9564,13 @@ export declare const KnowledgeBasesApiFactory: (configuration?: Configuration, f
9558
9564
  create(body: KnowledgeBaseCreateForm, options?: any): Promise<KnowledgeBase>;
9559
9565
  /**
9560
9566
  *
9561
- * @summary Create knowledge base's file
9567
+ * @summary Create knowledge base's handle
9562
9568
  * @param {string} id
9563
9569
  * @param {KnowledgeBaseFileCreateForm} [body]
9564
9570
  * @param {*} [options] Override http request option.
9565
9571
  * @throws {RequiredError}
9566
9572
  */
9567
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9573
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9568
9574
  /**
9569
9575
  *
9570
9576
  * @summary Delete knowledge base's file
@@ -9626,14 +9632,14 @@ export declare class KnowledgeBasesApi extends BaseAPI {
9626
9632
  create(body: KnowledgeBaseCreateForm, options?: any): Promise<KnowledgeBase>;
9627
9633
  /**
9628
9634
  *
9629
- * @summary Create knowledge base's file
9635
+ * @summary Create knowledge base's handle
9630
9636
  * @param {string} id
9631
9637
  * @param {KnowledgeBaseFileCreateForm} [body]
9632
9638
  * @param {*} [options] Override http request option.
9633
9639
  * @throws {RequiredError}
9634
9640
  * @memberof KnowledgeBasesApi
9635
9641
  */
9636
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9642
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9637
9643
  /**
9638
9644
  *
9639
9645
  * @summary Delete knowledge base's file
@@ -11390,6 +11396,30 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11390
11396
  * @throws {RequiredError}
11391
11397
  */
11392
11398
  createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): FetchArgs;
11399
+ /**
11400
+ *
11401
+ * @summary Create organization cover handle
11402
+ * @param {string} id
11403
+ * @param {*} [options] Override http request option.
11404
+ * @throws {RequiredError}
11405
+ */
11406
+ createOrgCoverHandle(id: string, options?: any): FetchArgs;
11407
+ /**
11408
+ *
11409
+ * @summary Create organization default agent avatar handle
11410
+ * @param {string} id
11411
+ * @param {*} [options] Override http request option.
11412
+ * @throws {RequiredError}
11413
+ */
11414
+ createOrgDefaultAgentAvatarHandle(id: string, options?: any): FetchArgs;
11415
+ /**
11416
+ *
11417
+ * @summary Create organization logo handle
11418
+ * @param {string} id
11419
+ * @param {*} [options] Override http request option.
11420
+ * @throws {RequiredError}
11421
+ */
11422
+ createOrgLogoHandle(id: string, options?: any): FetchArgs;
11393
11423
  /**
11394
11424
  *
11395
11425
  * @summary Create org and admin account with trial
@@ -11401,7 +11431,7 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11401
11431
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): FetchArgs;
11402
11432
  /**
11403
11433
  *
11404
- * @summary Delete organization cover image
11434
+ * @summary Delete organization cover graphic
11405
11435
  * @param {string} id
11406
11436
  * @param {*} [options] Override http request option.
11407
11437
  * @throws {RequiredError}
@@ -11455,22 +11485,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11455
11485
  * @throws {RequiredError}
11456
11486
  */
11457
11487
  getOrg(id: string, options?: any): FetchArgs;
11458
- /**
11459
- *
11460
- * @summary Generate organization cover image upload URL.
11461
- * @param {string} id
11462
- * @param {*} [options] Override http request option.
11463
- * @throws {RequiredError}
11464
- */
11465
- getOrgCoverUploadURL(id: string, options?: any): FetchArgs;
11466
- /**
11467
- *
11468
- * @summary Generate organization default agent avatar upload URL.
11469
- * @param {string} id
11470
- * @param {*} [options] Override http request option.
11471
- * @throws {RequiredError}
11472
- */
11473
- getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): FetchArgs;
11474
11488
  /**
11475
11489
  *
11476
11490
  * @summary Get org information
@@ -11478,14 +11492,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11478
11492
  * @throws {RequiredError}
11479
11493
  */
11480
11494
  getOrgInfo(options?: any): FetchArgs;
11481
- /**
11482
- *
11483
- * @summary Generate organization logo upload URL.
11484
- * @param {string} id
11485
- * @param {*} [options] Override http request option.
11486
- * @throws {RequiredError}
11487
- */
11488
- getOrgLogoUploadURL(id: string, options?: any): FetchArgs;
11489
11495
  /**
11490
11496
  *
11491
11497
  * @summary Retrieve possible unavailability reasons for org.
@@ -11609,6 +11615,30 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11609
11615
  * @throws {RequiredError}
11610
11616
  */
11611
11617
  createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<AgentCtx>;
11618
+ /**
11619
+ *
11620
+ * @summary Create organization cover handle
11621
+ * @param {string} id
11622
+ * @param {*} [options] Override http request option.
11623
+ * @throws {RequiredError}
11624
+ */
11625
+ createOrgCoverHandle(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
11626
+ /**
11627
+ *
11628
+ * @summary Create organization default agent avatar handle
11629
+ * @param {string} id
11630
+ * @param {*} [options] Override http request option.
11631
+ * @throws {RequiredError}
11632
+ */
11633
+ createOrgDefaultAgentAvatarHandle(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
11634
+ /**
11635
+ *
11636
+ * @summary Create organization logo handle
11637
+ * @param {string} id
11638
+ * @param {*} [options] Override http request option.
11639
+ * @throws {RequiredError}
11640
+ */
11641
+ createOrgLogoHandle(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
11612
11642
  /**
11613
11643
  *
11614
11644
  * @summary Create org and admin account with trial
@@ -11620,7 +11650,7 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11620
11650
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<SessionIdResponse>;
11621
11651
  /**
11622
11652
  *
11623
- * @summary Delete organization cover image
11653
+ * @summary Delete organization cover graphic
11624
11654
  * @param {string} id
11625
11655
  * @param {*} [options] Override http request option.
11626
11656
  * @throws {RequiredError}
@@ -11674,22 +11704,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11674
11704
  * @throws {RequiredError}
11675
11705
  */
11676
11706
  getOrg(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Organization>;
11677
- /**
11678
- *
11679
- * @summary Generate organization cover image upload URL.
11680
- * @param {string} id
11681
- * @param {*} [options] Override http request option.
11682
- * @throws {RequiredError}
11683
- */
11684
- getOrgCoverUploadURL(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
11685
- /**
11686
- *
11687
- * @summary Generate organization default agent avatar upload URL.
11688
- * @param {string} id
11689
- * @param {*} [options] Override http request option.
11690
- * @throws {RequiredError}
11691
- */
11692
- getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
11693
11707
  /**
11694
11708
  *
11695
11709
  * @summary Get org information
@@ -11697,14 +11711,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11697
11711
  * @throws {RequiredError}
11698
11712
  */
11699
11713
  getOrgInfo(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrgInfo>;
11700
- /**
11701
- *
11702
- * @summary Generate organization logo upload URL.
11703
- * @param {string} id
11704
- * @param {*} [options] Override http request option.
11705
- * @throws {RequiredError}
11706
- */
11707
- getOrgLogoUploadURL(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
11708
11714
  /**
11709
11715
  *
11710
11716
  * @summary Retrieve possible unavailability reasons for org.
@@ -11828,6 +11834,30 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11828
11834
  * @throws {RequiredError}
11829
11835
  */
11830
11836
  createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): Promise<AgentCtx>;
11837
+ /**
11838
+ *
11839
+ * @summary Create organization cover handle
11840
+ * @param {string} id
11841
+ * @param {*} [options] Override http request option.
11842
+ * @throws {RequiredError}
11843
+ */
11844
+ createOrgCoverHandle(id: string, options?: any): Promise<FileHandle>;
11845
+ /**
11846
+ *
11847
+ * @summary Create organization default agent avatar handle
11848
+ * @param {string} id
11849
+ * @param {*} [options] Override http request option.
11850
+ * @throws {RequiredError}
11851
+ */
11852
+ createOrgDefaultAgentAvatarHandle(id: string, options?: any): Promise<FileHandle>;
11853
+ /**
11854
+ *
11855
+ * @summary Create organization logo handle
11856
+ * @param {string} id
11857
+ * @param {*} [options] Override http request option.
11858
+ * @throws {RequiredError}
11859
+ */
11860
+ createOrgLogoHandle(id: string, options?: any): Promise<FileHandle>;
11831
11861
  /**
11832
11862
  *
11833
11863
  * @summary Create org and admin account with trial
@@ -11839,7 +11869,7 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11839
11869
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): Promise<SessionIdResponse>;
11840
11870
  /**
11841
11871
  *
11842
- * @summary Delete organization cover image
11872
+ * @summary Delete organization cover graphic
11843
11873
  * @param {string} id
11844
11874
  * @param {*} [options] Override http request option.
11845
11875
  * @throws {RequiredError}
@@ -11893,22 +11923,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11893
11923
  * @throws {RequiredError}
11894
11924
  */
11895
11925
  getOrg(id: string, options?: any): Promise<Organization>;
11896
- /**
11897
- *
11898
- * @summary Generate organization cover image upload URL.
11899
- * @param {string} id
11900
- * @param {*} [options] Override http request option.
11901
- * @throws {RequiredError}
11902
- */
11903
- getOrgCoverUploadURL(id: string, options?: any): Promise<FileHandle>;
11904
- /**
11905
- *
11906
- * @summary Generate organization default agent avatar upload URL.
11907
- * @param {string} id
11908
- * @param {*} [options] Override http request option.
11909
- * @throws {RequiredError}
11910
- */
11911
- getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): Promise<FileHandle>;
11912
11926
  /**
11913
11927
  *
11914
11928
  * @summary Get org information
@@ -11916,14 +11930,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11916
11930
  * @throws {RequiredError}
11917
11931
  */
11918
11932
  getOrgInfo(options?: any): Promise<OrgInfo>;
11919
- /**
11920
- *
11921
- * @summary Generate organization logo upload URL.
11922
- * @param {string} id
11923
- * @param {*} [options] Override http request option.
11924
- * @throws {RequiredError}
11925
- */
11926
- getOrgLogoUploadURL(id: string, options?: any): Promise<FileHandle>;
11927
11933
  /**
11928
11934
  *
11929
11935
  * @summary Retrieve possible unavailability reasons for org.
@@ -12054,6 +12060,33 @@ export declare class OrgsApi extends BaseAPI {
12054
12060
  * @memberof OrgsApi
12055
12061
  */
12056
12062
  createFreeOrgAdmin(body: FreeOrgAdminForm, token: string, options?: any): Promise<AgentCtx>;
12063
+ /**
12064
+ *
12065
+ * @summary Create organization cover handle
12066
+ * @param {string} id
12067
+ * @param {*} [options] Override http request option.
12068
+ * @throws {RequiredError}
12069
+ * @memberof OrgsApi
12070
+ */
12071
+ createOrgCoverHandle(id: string, options?: any): Promise<FileHandle>;
12072
+ /**
12073
+ *
12074
+ * @summary Create organization default agent avatar handle
12075
+ * @param {string} id
12076
+ * @param {*} [options] Override http request option.
12077
+ * @throws {RequiredError}
12078
+ * @memberof OrgsApi
12079
+ */
12080
+ createOrgDefaultAgentAvatarHandle(id: string, options?: any): Promise<FileHandle>;
12081
+ /**
12082
+ *
12083
+ * @summary Create organization logo handle
12084
+ * @param {string} id
12085
+ * @param {*} [options] Override http request option.
12086
+ * @throws {RequiredError}
12087
+ * @memberof OrgsApi
12088
+ */
12089
+ createOrgLogoHandle(id: string, options?: any): Promise<FileHandle>;
12057
12090
  /**
12058
12091
  *
12059
12092
  * @summary Create org and admin account with trial
@@ -12066,7 +12099,7 @@ export declare class OrgsApi extends BaseAPI {
12066
12099
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): Promise<SessionIdResponse>;
12067
12100
  /**
12068
12101
  *
12069
- * @summary Delete organization cover image
12102
+ * @summary Delete organization cover graphic
12070
12103
  * @param {string} id
12071
12104
  * @param {*} [options] Override http request option.
12072
12105
  * @throws {RequiredError}
@@ -12127,24 +12160,6 @@ export declare class OrgsApi extends BaseAPI {
12127
12160
  * @memberof OrgsApi
12128
12161
  */
12129
12162
  getOrg(id: string, options?: any): Promise<Organization>;
12130
- /**
12131
- *
12132
- * @summary Generate organization cover image upload URL.
12133
- * @param {string} id
12134
- * @param {*} [options] Override http request option.
12135
- * @throws {RequiredError}
12136
- * @memberof OrgsApi
12137
- */
12138
- getOrgCoverUploadURL(id: string, options?: any): Promise<FileHandle>;
12139
- /**
12140
- *
12141
- * @summary Generate organization default agent avatar upload URL.
12142
- * @param {string} id
12143
- * @param {*} [options] Override http request option.
12144
- * @throws {RequiredError}
12145
- * @memberof OrgsApi
12146
- */
12147
- getOrgDefaultAgentAvatarUploadURL(id: string, options?: any): Promise<FileHandle>;
12148
12163
  /**
12149
12164
  *
12150
12165
  * @summary Get org information
@@ -12153,15 +12168,6 @@ export declare class OrgsApi extends BaseAPI {
12153
12168
  * @memberof OrgsApi
12154
12169
  */
12155
12170
  getOrgInfo(options?: any): Promise<OrgInfo>;
12156
- /**
12157
- *
12158
- * @summary Generate organization logo upload URL.
12159
- * @param {string} id
12160
- * @param {*} [options] Override http request option.
12161
- * @throws {RequiredError}
12162
- * @memberof OrgsApi
12163
- */
12164
- getOrgLogoUploadURL(id: string, options?: any): Promise<FileHandle>;
12165
12171
  /**
12166
12172
  *
12167
12173
  * @summary Retrieve possible unavailability reasons for org.
@@ -14896,6 +14902,13 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
14896
14902
  * @throws {RequiredError}
14897
14903
  */
14898
14904
  continueConversationLink(body: LeadContinueConversation, options?: any): FetchArgs;
14905
+ /**
14906
+ *
14907
+ * @summary Create agent avatar handle
14908
+ * @param {*} [options] Override http request option.
14909
+ * @throws {RequiredError}
14910
+ */
14911
+ createAgentAvatarHandle(options?: any): FetchArgs;
14899
14912
  /**
14900
14913
  *
14901
14914
  * @summary Create a Lekta user.
@@ -14933,13 +14946,6 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
14933
14946
  * @throws {RequiredError}
14934
14947
  */
14935
14948
  deleteCustomer(customerId: string, options?: any): FetchArgs;
14936
- /**
14937
- *
14938
- * @summary Generate avatar upload URL.
14939
- * @param {*} [options] Override http request option.
14940
- * @throws {RequiredError}
14941
- */
14942
- getAgentAvatarUploadURL(options?: any): FetchArgs;
14943
14949
  /**
14944
14950
  *
14945
14951
  * @summary Get agent preferences
@@ -15244,6 +15250,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
15244
15250
  * @throws {RequiredError}
15245
15251
  */
15246
15252
  continueConversationLink(body: LeadContinueConversation, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
15253
+ /**
15254
+ *
15255
+ * @summary Create agent avatar handle
15256
+ * @param {*} [options] Override http request option.
15257
+ * @throws {RequiredError}
15258
+ */
15259
+ createAgentAvatarHandle(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
15247
15260
  /**
15248
15261
  *
15249
15262
  * @summary Create a Lekta user.
@@ -15281,13 +15294,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
15281
15294
  * @throws {RequiredError}
15282
15295
  */
15283
15296
  deleteCustomer(customerId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
15284
- /**
15285
- *
15286
- * @summary Generate avatar upload URL.
15287
- * @param {*} [options] Override http request option.
15288
- * @throws {RequiredError}
15289
- */
15290
- getAgentAvatarUploadURL(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<FileHandle>;
15291
15297
  /**
15292
15298
  *
15293
15299
  * @summary Get agent preferences
@@ -15592,6 +15598,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
15592
15598
  * @throws {RequiredError}
15593
15599
  */
15594
15600
  continueConversationLink(body: LeadContinueConversation, options?: any): Promise<Response>;
15601
+ /**
15602
+ *
15603
+ * @summary Create agent avatar handle
15604
+ * @param {*} [options] Override http request option.
15605
+ * @throws {RequiredError}
15606
+ */
15607
+ createAgentAvatarHandle(options?: any): Promise<FileHandle>;
15595
15608
  /**
15596
15609
  *
15597
15610
  * @summary Create a Lekta user.
@@ -15629,13 +15642,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
15629
15642
  * @throws {RequiredError}
15630
15643
  */
15631
15644
  deleteCustomer(customerId: string, options?: any): Promise<Response>;
15632
- /**
15633
- *
15634
- * @summary Generate avatar upload URL.
15635
- * @param {*} [options] Override http request option.
15636
- * @throws {RequiredError}
15637
- */
15638
- getAgentAvatarUploadURL(options?: any): Promise<FileHandle>;
15639
15645
  /**
15640
15646
  *
15641
15647
  * @summary Get agent preferences
@@ -15946,6 +15952,14 @@ export declare class UsersApi extends BaseAPI {
15946
15952
  * @memberof UsersApi
15947
15953
  */
15948
15954
  continueConversationLink(body: LeadContinueConversation, options?: any): Promise<Response>;
15955
+ /**
15956
+ *
15957
+ * @summary Create agent avatar handle
15958
+ * @param {*} [options] Override http request option.
15959
+ * @throws {RequiredError}
15960
+ * @memberof UsersApi
15961
+ */
15962
+ createAgentAvatarHandle(options?: any): Promise<FileHandle>;
15949
15963
  /**
15950
15964
  *
15951
15965
  * @summary Create a Lekta user.
@@ -15988,14 +16002,6 @@ export declare class UsersApi extends BaseAPI {
15988
16002
  * @memberof UsersApi
15989
16003
  */
15990
16004
  deleteCustomer(customerId: string, options?: any): Promise<Response>;
15991
- /**
15992
- *
15993
- * @summary Generate avatar upload URL.
15994
- * @param {*} [options] Override http request option.
15995
- * @throws {RequiredError}
15996
- * @memberof UsersApi
15997
- */
15998
- getAgentAvatarUploadURL(options?: any): Promise<FileHandle>;
15999
16005
  /**
16000
16006
  *
16001
16007
  * @summary Get agent preferences