@closerplatform/spinner-openapi 0.12.630 → 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 +170 -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}
@@ -8050,6 +8050,13 @@ export declare const BotsApiFetchParamCreator: (configuration?: Configuration) =
8050
8050
  * @throws {RequiredError}
8051
8051
  */
8052
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;
8053
8060
  /**
8054
8061
  *
8055
8062
  * @summary create lekta config
@@ -8066,13 +8073,6 @@ export declare const BotsApiFetchParamCreator: (configuration?: Configuration) =
8066
8073
  * @throws {RequiredError}
8067
8074
  */
8068
8075
  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
8076
  /**
8077
8077
  *
8078
8078
  * @summary get bot info
@@ -8133,6 +8133,13 @@ export declare const BotsApiFp: (configuration?: Configuration) => {
8133
8133
  * @throws {RequiredError}
8134
8134
  */
8135
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>;
8136
8143
  /**
8137
8144
  *
8138
8145
  * @summary create lekta config
@@ -8149,13 +8156,6 @@ export declare const BotsApiFp: (configuration?: Configuration) => {
8149
8156
  * @throws {RequiredError}
8150
8157
  */
8151
8158
  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
8159
  /**
8160
8160
  *
8161
8161
  * @summary get bot info
@@ -8216,6 +8216,13 @@ export declare const BotsApiFactory: (configuration?: Configuration, fetch?: Fet
8216
8216
  * @throws {RequiredError}
8217
8217
  */
8218
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>;
8219
8226
  /**
8220
8227
  *
8221
8228
  * @summary create lekta config
@@ -8232,13 +8239,6 @@ export declare const BotsApiFactory: (configuration?: Configuration, fetch?: Fet
8232
8239
  * @throws {RequiredError}
8233
8240
  */
8234
8241
  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
8242
  /**
8243
8243
  *
8244
8244
  * @summary get bot info
@@ -8304,30 +8304,30 @@ export declare class BotsApi extends BaseAPI {
8304
8304
  changeBotType(body: ChangeBotTypeForm, options?: any): Promise<BotInfo>;
8305
8305
  /**
8306
8306
  *
8307
- * @summary create lekta config
8308
- * @param {LektaConfigForm} body
8307
+ * @summary create bot avatar handle
8309
8308
  * @param {*} [options] Override http request option.
8310
8309
  * @throws {RequiredError}
8311
8310
  * @memberof BotsApi
8312
8311
  */
8313
- createLektaConfig(body: LektaConfigForm, options?: any): Promise<LektaConfig>;
8312
+ createBotAvatarHandle(options?: any): Promise<FileHandle>;
8314
8313
  /**
8315
8314
  *
8316
- * @summary delete bot avatar
8317
- * @param {ChangeBotTypeForm} body
8315
+ * @summary create lekta config
8316
+ * @param {LektaConfigForm} body
8318
8317
  * @param {*} [options] Override http request option.
8319
8318
  * @throws {RequiredError}
8320
8319
  * @memberof BotsApi
8321
8320
  */
8322
- deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
8321
+ createLektaConfig(body: LektaConfigForm, options?: any): Promise<LektaConfig>;
8323
8322
  /**
8324
8323
  *
8325
- * @summary get bot avatar upload url
8324
+ * @summary delete bot avatar
8325
+ * @param {ChangeBotTypeForm} body
8326
8326
  * @param {*} [options] Override http request option.
8327
8327
  * @throws {RequiredError}
8328
8328
  * @memberof BotsApi
8329
8329
  */
8330
- getBotAvatarUploadUrl(options?: any): Promise<FileHandle>;
8330
+ deleteBotAvatar(body: ChangeBotTypeForm, options?: any): Promise<Response>;
8331
8331
  /**
8332
8332
  *
8333
8333
  * @summary get bot info
@@ -9436,13 +9436,13 @@ export declare const KnowledgeBasesApiFetchParamCreator: (configuration?: Config
9436
9436
  create(body: KnowledgeBaseCreateForm, options?: any): FetchArgs;
9437
9437
  /**
9438
9438
  *
9439
- * @summary Create knowledge base's file
9439
+ * @summary Create knowledge base's handle
9440
9440
  * @param {string} id
9441
9441
  * @param {KnowledgeBaseFileCreateForm} [body]
9442
9442
  * @param {*} [options] Override http request option.
9443
9443
  * @throws {RequiredError}
9444
9444
  */
9445
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): FetchArgs;
9445
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): FetchArgs;
9446
9446
  /**
9447
9447
  *
9448
9448
  * @summary Delete knowledge base's file
@@ -9500,13 +9500,13 @@ export declare const KnowledgeBasesApiFp: (configuration?: Configuration) => {
9500
9500
  create(body: KnowledgeBaseCreateForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<KnowledgeBase>;
9501
9501
  /**
9502
9502
  *
9503
- * @summary Create knowledge base's file
9503
+ * @summary Create knowledge base's handle
9504
9504
  * @param {string} id
9505
9505
  * @param {KnowledgeBaseFileCreateForm} [body]
9506
9506
  * @param {*} [options] Override http request option.
9507
9507
  * @throws {RequiredError}
9508
9508
  */
9509
- 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>;
9510
9510
  /**
9511
9511
  *
9512
9512
  * @summary Delete knowledge base's file
@@ -9564,13 +9564,13 @@ export declare const KnowledgeBasesApiFactory: (configuration?: Configuration, f
9564
9564
  create(body: KnowledgeBaseCreateForm, options?: any): Promise<KnowledgeBase>;
9565
9565
  /**
9566
9566
  *
9567
- * @summary Create knowledge base's file
9567
+ * @summary Create knowledge base's handle
9568
9568
  * @param {string} id
9569
9569
  * @param {KnowledgeBaseFileCreateForm} [body]
9570
9570
  * @param {*} [options] Override http request option.
9571
9571
  * @throws {RequiredError}
9572
9572
  */
9573
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9573
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9574
9574
  /**
9575
9575
  *
9576
9576
  * @summary Delete knowledge base's file
@@ -9632,14 +9632,14 @@ export declare class KnowledgeBasesApi extends BaseAPI {
9632
9632
  create(body: KnowledgeBaseCreateForm, options?: any): Promise<KnowledgeBase>;
9633
9633
  /**
9634
9634
  *
9635
- * @summary Create knowledge base's file
9635
+ * @summary Create knowledge base's handle
9636
9636
  * @param {string} id
9637
9637
  * @param {KnowledgeBaseFileCreateForm} [body]
9638
9638
  * @param {*} [options] Override http request option.
9639
9639
  * @throws {RequiredError}
9640
9640
  * @memberof KnowledgeBasesApi
9641
9641
  */
9642
- createFile(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9642
+ createKnowledgeBaseHandle(id: string, body?: KnowledgeBaseFileCreateForm, options?: any): Promise<FileHandle>;
9643
9643
  /**
9644
9644
  *
9645
9645
  * @summary Delete knowledge base's file
@@ -11396,6 +11396,30 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11396
11396
  * @throws {RequiredError}
11397
11397
  */
11398
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;
11399
11423
  /**
11400
11424
  *
11401
11425
  * @summary Create org and admin account with trial
@@ -11407,7 +11431,7 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11407
11431
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): FetchArgs;
11408
11432
  /**
11409
11433
  *
11410
- * @summary Delete organization cover image
11434
+ * @summary Delete organization cover graphic
11411
11435
  * @param {string} id
11412
11436
  * @param {*} [options] Override http request option.
11413
11437
  * @throws {RequiredError}
@@ -11461,22 +11485,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11461
11485
  * @throws {RequiredError}
11462
11486
  */
11463
11487
  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
11488
  /**
11481
11489
  *
11482
11490
  * @summary Get org information
@@ -11484,14 +11492,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11484
11492
  * @throws {RequiredError}
11485
11493
  */
11486
11494
  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
11495
  /**
11496
11496
  *
11497
11497
  * @summary Retrieve possible unavailability reasons for org.
@@ -11615,6 +11615,30 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11615
11615
  * @throws {RequiredError}
11616
11616
  */
11617
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>;
11618
11642
  /**
11619
11643
  *
11620
11644
  * @summary Create org and admin account with trial
@@ -11626,7 +11650,7 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11626
11650
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<SessionIdResponse>;
11627
11651
  /**
11628
11652
  *
11629
- * @summary Delete organization cover image
11653
+ * @summary Delete organization cover graphic
11630
11654
  * @param {string} id
11631
11655
  * @param {*} [options] Override http request option.
11632
11656
  * @throws {RequiredError}
@@ -11680,22 +11704,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11680
11704
  * @throws {RequiredError}
11681
11705
  */
11682
11706
  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
11707
  /**
11700
11708
  *
11701
11709
  * @summary Get org information
@@ -11703,14 +11711,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11703
11711
  * @throws {RequiredError}
11704
11712
  */
11705
11713
  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
11714
  /**
11715
11715
  *
11716
11716
  * @summary Retrieve possible unavailability reasons for org.
@@ -11834,6 +11834,30 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11834
11834
  * @throws {RequiredError}
11835
11835
  */
11836
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>;
11837
11861
  /**
11838
11862
  *
11839
11863
  * @summary Create org and admin account with trial
@@ -11845,7 +11869,7 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11845
11869
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): Promise<SessionIdResponse>;
11846
11870
  /**
11847
11871
  *
11848
- * @summary Delete organization cover image
11872
+ * @summary Delete organization cover graphic
11849
11873
  * @param {string} id
11850
11874
  * @param {*} [options] Override http request option.
11851
11875
  * @throws {RequiredError}
@@ -11899,22 +11923,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11899
11923
  * @throws {RequiredError}
11900
11924
  */
11901
11925
  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
11926
  /**
11919
11927
  *
11920
11928
  * @summary Get org information
@@ -11922,14 +11930,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11922
11930
  * @throws {RequiredError}
11923
11931
  */
11924
11932
  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
11933
  /**
11934
11934
  *
11935
11935
  * @summary Retrieve possible unavailability reasons for org.
@@ -12060,6 +12060,33 @@ export declare class OrgsApi extends BaseAPI {
12060
12060
  * @memberof OrgsApi
12061
12061
  */
12062
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>;
12063
12090
  /**
12064
12091
  *
12065
12092
  * @summary Create org and admin account with trial
@@ -12072,7 +12099,7 @@ export declare class OrgsApi extends BaseAPI {
12072
12099
  createStripeOrgAdmin(body: StripeOrgAdminForm, token: string, options?: any): Promise<SessionIdResponse>;
12073
12100
  /**
12074
12101
  *
12075
- * @summary Delete organization cover image
12102
+ * @summary Delete organization cover graphic
12076
12103
  * @param {string} id
12077
12104
  * @param {*} [options] Override http request option.
12078
12105
  * @throws {RequiredError}
@@ -12133,24 +12160,6 @@ export declare class OrgsApi extends BaseAPI {
12133
12160
  * @memberof OrgsApi
12134
12161
  */
12135
12162
  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
12163
  /**
12155
12164
  *
12156
12165
  * @summary Get org information
@@ -12159,15 +12168,6 @@ export declare class OrgsApi extends BaseAPI {
12159
12168
  * @memberof OrgsApi
12160
12169
  */
12161
12170
  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
12171
  /**
12172
12172
  *
12173
12173
  * @summary Retrieve possible unavailability reasons for org.
@@ -14902,6 +14902,13 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
14902
14902
  * @throws {RequiredError}
14903
14903
  */
14904
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;
14905
14912
  /**
14906
14913
  *
14907
14914
  * @summary Create a Lekta user.
@@ -14939,13 +14946,6 @@ export declare const UsersApiFetchParamCreator: (configuration?: Configuration)
14939
14946
  * @throws {RequiredError}
14940
14947
  */
14941
14948
  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
14949
  /**
14950
14950
  *
14951
14951
  * @summary Get agent preferences
@@ -15250,6 +15250,13 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
15250
15250
  * @throws {RequiredError}
15251
15251
  */
15252
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>;
15253
15260
  /**
15254
15261
  *
15255
15262
  * @summary Create a Lekta user.
@@ -15287,13 +15294,6 @@ export declare const UsersApiFp: (configuration?: Configuration) => {
15287
15294
  * @throws {RequiredError}
15288
15295
  */
15289
15296
  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
15297
  /**
15298
15298
  *
15299
15299
  * @summary Get agent preferences
@@ -15598,6 +15598,13 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
15598
15598
  * @throws {RequiredError}
15599
15599
  */
15600
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>;
15601
15608
  /**
15602
15609
  *
15603
15610
  * @summary Create a Lekta user.
@@ -15635,13 +15642,6 @@ export declare const UsersApiFactory: (configuration?: Configuration, fetch?: Fe
15635
15642
  * @throws {RequiredError}
15636
15643
  */
15637
15644
  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
15645
  /**
15646
15646
  *
15647
15647
  * @summary Get agent preferences
@@ -15952,6 +15952,14 @@ export declare class UsersApi extends BaseAPI {
15952
15952
  * @memberof UsersApi
15953
15953
  */
15954
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>;
15955
15963
  /**
15956
15964
  *
15957
15965
  * @summary Create a Lekta user.
@@ -15994,14 +16002,6 @@ export declare class UsersApi extends BaseAPI {
15994
16002
  * @memberof UsersApi
15995
16003
  */
15996
16004
  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
16005
  /**
16006
16006
  *
16007
16007
  * @summary Get agent preferences