@gooddata/api-client-tiger 11.52.0-alpha.4 → 11.52.0-alpha.6

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.
@@ -331,6 +331,49 @@ export interface AiBoundedFilterOutput {
331
331
  export interface AiBucketRefObject {
332
332
  'field': string;
333
333
  }
334
+ /**
335
+ * What one search looked for in the semantic catalog, what came back, and what it used.
336
+ */
337
+ export interface AiCatalogSearchDetail {
338
+ /**
339
+ * Category this body belongs to.
340
+ */
341
+ 'category'?: AiCatalogSearchDetailCategoryEnum;
342
+ /**
343
+ * Titles the search returned, grouped by object type.
344
+ */
345
+ 'found'?: Array<AiSearchedGroup>;
346
+ /**
347
+ * Keywords the search looked for. Each runs against every requested type.
348
+ */
349
+ 'query'?: Array<string>;
350
+ /**
351
+ * Catalog types the search asked for.
352
+ */
353
+ 'requestedTypes'?: Array<string>;
354
+ /**
355
+ * Best-matching object per type. Empty for the search modes that do not rank.
356
+ */
357
+ 'used'?: Array<AiCatalogSearchMatch>;
358
+ }
359
+ export type AiCatalogSearchDetailCategoryEnum = 'catalogSearch';
360
+ /**
361
+ * The highest-ranked object of one searched type, with the score that ranked it.
362
+ */
363
+ export interface AiCatalogSearchMatch {
364
+ /**
365
+ * Catalog type the object is the best match of.
366
+ */
367
+ 'objectType': string;
368
+ /**
369
+ * Relevance score that ranked it.
370
+ */
371
+ 'score': number;
372
+ /**
373
+ * Title of the highest-ranked object.
374
+ */
375
+ 'title': string;
376
+ }
334
377
  export interface AiClusteringAmount {
335
378
  }
336
379
  export interface AiComparison {
@@ -387,6 +430,20 @@ export declare const AiComparisonMeasureValueOperator: {
387
430
  readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
388
431
  };
389
432
  export type AiComparisonMeasureValueOperator = typeof AiComparisonMeasureValueOperator[keyof typeof AiComparisonMeasureValueOperator];
433
+ /**
434
+ * How the answer itself came out: what it is and which model wrote it.
435
+ */
436
+ export interface AiComposeAnswerDetail {
437
+ /**
438
+ * Category this body belongs to.
439
+ */
440
+ 'category'?: AiComposeAnswerDetailCategoryEnum;
441
+ 'modelId'?: string | null;
442
+ 'output'?: AiComposeAnswerDetailOutputEnum | null;
443
+ 'suggestedActions'?: number | null;
444
+ }
445
+ export type AiComposeAnswerDetailCategoryEnum = 'composeAnswer';
446
+ export type AiComposeAnswerDetailOutputEnum = 'text' | 'visualization' | 'dashboard' | 'keyDriverAnalysis' | 'whatIf' | 'searchResults' | 'alertProposal';
390
447
  export interface AiCompoundMeasureValueFilter {
391
448
  'compoundMeasureValueFilter': AiCompoundMeasureValueFilterBody;
392
449
  }
@@ -454,6 +511,7 @@ export interface AiConversationItemResponse {
454
511
  * Item creation timestamp (ISO-8601 UTC).
455
512
  */
456
513
  'createdAt': string;
514
+ 'detail'?: AiConversationItemResponseDetail | null;
457
515
  /**
458
516
  * Conversation item identifier.
459
517
  */
@@ -464,17 +522,32 @@ export interface AiConversationItemResponse {
464
522
  'itemIndex': number;
465
523
  'newAgentId'?: string | null;
466
524
  'oldAgentId'?: string | null;
525
+ 'reasoningEffort'?: AiRequestedReasoningEffort | null;
467
526
  'replyTo'?: string | null;
468
527
  'responseId'?: string | null;
469
528
  /**
470
529
  * Author role of the item.
471
530
  */
472
531
  'role': AiConversationItemResponseRoleEnum;
532
+ 'stepId'?: string | null;
473
533
  'taskId'?: string | null;
474
534
  'trigger'?: AiConversationItemResponseTriggerEnum | null;
475
535
  }
476
536
  export type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool' | 'system';
477
537
  export type AiConversationItemResponseTriggerEnum = 'agent_switched' | 'agent_updated';
538
+ /**
539
+ * @type AiConversationItemResponseDetail
540
+ * What one item\'s action did.
541
+ */
542
+ export type AiConversationItemResponseDetail = ({
543
+ category: 'catalogSearch';
544
+ } & AiCatalogSearchDetail) | ({
545
+ category: 'composeAnswer';
546
+ } & AiComposeAnswerDetail) | ({
547
+ category: 'knowledgeSearch';
548
+ } & AiKnowledgeSearchDetail) | ({
549
+ category: 'skillRouting';
550
+ } & AiSkillRoutingDetail);
478
551
  export interface AiConversationListMeta {
479
552
  'page': AiConversationListPageMeta;
480
553
  }
@@ -599,7 +672,8 @@ export interface AiDashboardIdUpdateRequest {
599
672
  }
600
673
  export interface AiDashboardPart {
601
674
  'dashboard'?: AiDashboard | null;
602
- 'savedDashboardId'?: string | null;
675
+ 'references'?: AiDashboardReferences | null;
676
+ 'saved_dashboard_id'?: string | null;
603
677
  /**
604
678
  * Type of multipart part.
605
679
  */
@@ -613,6 +687,16 @@ export interface AiDashboardRef {
613
687
  'id': string;
614
688
  'title'?: string | null;
615
689
  }
690
+ /**
691
+ * AAC bodies of every widget-referenced visualization in a dashboard draft. Each entry is opaque AAC pass-through (dict), not modeled as a schema — same treatment the codebase gives elsewhere to full AAC visualization bodies.
692
+ */
693
+ export interface AiDashboardReferences {
694
+ [key: string]: any;
695
+ /**
696
+ * Full AAC body of every widget-referenced visualization that has one available.
697
+ */
698
+ 'visualizations': Array<object>;
699
+ }
616
700
  /**
617
701
  * AAC ref: dashboard.json section.
618
702
  */
@@ -814,6 +898,48 @@ export interface AiInlineFilterDefinitionBody {
814
898
  'filter': string;
815
899
  'localIdentifier'?: string | null;
816
900
  }
901
+ /**
902
+ * Interaction step list response.
903
+ */
904
+ export interface AiInteractionStepListResponse {
905
+ /**
906
+ * Ordered list of interaction steps.
907
+ */
908
+ 'steps': Array<AiInteractionStepResponse>;
909
+ }
910
+ /**
911
+ * One LLM call of a turn and the tools it dispatched. Carries only what belongs to the whole call -- ordering, duration, spend. What each action did lives on the items that link here via their ``stepId``.
912
+ */
913
+ export interface AiInteractionStepResponse {
914
+ /**
915
+ * Parent conversation identifier.
916
+ */
917
+ 'conversationId': string;
918
+ /**
919
+ * Step start timestamp (ISO-8601 UTC).
920
+ */
921
+ 'createdAt': string;
922
+ /**
923
+ * Wall-clock duration of the LLM call and its tool dispatches.
924
+ */
925
+ 'durationMs': number;
926
+ /**
927
+ * Response/turn identifier the step belongs to.
928
+ */
929
+ 'responseId': string;
930
+ /**
931
+ * Interaction step identifier.
932
+ */
933
+ 'stepId': string;
934
+ /**
935
+ * Zero-based step order within the turn.
936
+ */
937
+ 'stepIndex': number;
938
+ /**
939
+ * Token usage of the step\'s LLM call.
940
+ */
941
+ 'tokens': AiStepTokens;
942
+ }
817
943
  /**
818
944
  * Date granularity for the interval of an ONCE_PER_INTERVAL trigger.
819
945
  */
@@ -869,6 +995,32 @@ export interface AiKeyDriverAnalysisPart {
869
995
  'type'?: AiKeyDriverAnalysisPartTypeEnum;
870
996
  }
871
997
  export type AiKeyDriverAnalysisPartTypeEnum = 'kda';
998
+ /**
999
+ * What one action looked for in the knowledge base and which documents it reached.
1000
+ */
1001
+ export interface AiKnowledgeSearchDetail {
1002
+ 'bestMatch'?: string | null;
1003
+ /**
1004
+ * Category this body belongs to.
1005
+ */
1006
+ 'category'?: AiKnowledgeSearchDetailCategoryEnum;
1007
+ /**
1008
+ * Documents the action reached, best-scoring first.
1009
+ */
1010
+ 'documents'?: Array<AiKnowledgeSearchDocument>;
1011
+ 'query'?: string | null;
1012
+ }
1013
+ export type AiKnowledgeSearchDetailCategoryEnum = 'knowledgeSearch';
1014
+ /**
1015
+ * One knowledge document an action reached, named as the user would recognise it.
1016
+ */
1017
+ export interface AiKnowledgeSearchDocument {
1018
+ 'score'?: number | null;
1019
+ /**
1020
+ * Document title, falling back to its filename when it has none.
1021
+ */
1022
+ 'title': string;
1023
+ }
872
1024
  export interface AiLabel {
873
1025
  'identifier': AiAfmObjectIdentifierBody;
874
1026
  'localIdentifier': string;
@@ -1409,6 +1561,19 @@ export interface AiSearchStatistics {
1409
1561
  'averageSimilarityScore': number;
1410
1562
  'totalResults': number;
1411
1563
  }
1564
+ /**
1565
+ * The results of a search that share one object type.
1566
+ */
1567
+ export interface AiSearchedGroup {
1568
+ /**
1569
+ * Catalog type name the group belongs to.
1570
+ */
1571
+ 'objectType': string;
1572
+ /**
1573
+ * Titles of that type that came back.
1574
+ */
1575
+ 'titles'?: Array<string>;
1576
+ }
1412
1577
  export interface AiSendMessageContent {
1413
1578
  'text': string;
1414
1579
  'type': AiSendMessageContentTypeEnum;
@@ -1457,6 +1622,32 @@ export interface AiSkillResponse {
1457
1622
  'tags': Array<string>;
1458
1623
  'title': string;
1459
1624
  }
1625
+ /**
1626
+ * Which skills the turn could reach for, and which this call left active.
1627
+ */
1628
+ export interface AiSkillRoutingDetail {
1629
+ /**
1630
+ * Titles of the skills active after the call replaced the active set.
1631
+ */
1632
+ 'activated'?: Array<string>;
1633
+ /**
1634
+ * Titles of the skills the model could choose from, in the order the prompt lists them.
1635
+ */
1636
+ 'available'?: Array<string>;
1637
+ /**
1638
+ * Category this body belongs to.
1639
+ */
1640
+ 'category'?: AiSkillRoutingDetailCategoryEnum;
1641
+ }
1642
+ export type AiSkillRoutingDetailCategoryEnum = 'skillRouting';
1643
+ /**
1644
+ * What the step\'s LLM call spent; a field is null when the provider did not report it.
1645
+ */
1646
+ export interface AiStepTokens {
1647
+ 'input'?: number | null;
1648
+ 'output'?: number | null;
1649
+ 'total'?: number | null;
1650
+ }
1460
1651
  /**
1461
1652
  * A quick-reply action button rendered alongside the follow-up question.
1462
1653
  */
@@ -2529,6 +2720,86 @@ export declare class DashboardsAi extends BaseAPI implements DashboardsAiInterfa
2529
2720
  */
2530
2721
  patchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch(requestParameters: DashboardsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2531
2722
  }
2723
+ /**
2724
+ *
2725
+ * @summary Get Conversation Interaction Steps
2726
+ * @param {string} workspaceId
2727
+ * @param {string} conversationId
2728
+ * @param {string} [responseId]
2729
+ * @param {*} [options] Override http request option.
2730
+ * @param {Configuration} [configuration] Optional configuration.
2731
+ * @throws {RequiredError}
2732
+ */
2733
+ export declare function InteractionStepsAiAxiosParamCreator_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(workspaceId: string, conversationId: string, responseId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
2734
+ /**
2735
+ *
2736
+ * @summary Get Conversation Interaction Steps
2737
+ * @param {AxiosInstance} axios Axios instance.
2738
+ * @param {string} basePath Base path.
2739
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
2740
+ * @param {*} [options] Override http request option.
2741
+ * @param {Configuration} [configuration] Optional configuration.
2742
+ * @throws {RequiredError}
2743
+ */
2744
+ export declare function InteractionStepsAi_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(axios: AxiosInstance, basePath: string, requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiInteractionStepListResponse>;
2745
+ /**
2746
+ * InteractionStepsAi - interface
2747
+ * @export
2748
+ * @interface InteractionStepsAi
2749
+ */
2750
+ export interface InteractionStepsAiInterface {
2751
+ /**
2752
+ *
2753
+ * @summary Get Conversation Interaction Steps
2754
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
2755
+ * @param {*} [options] Override http request option.
2756
+ * @throws {RequiredError}
2757
+ * @memberof InteractionStepsAiInterface
2758
+ */
2759
+ getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
2760
+ }
2761
+ /**
2762
+ * Request parameters for getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet operation in InteractionStepsAi.
2763
+ * @export
2764
+ * @interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest
2765
+ */
2766
+ export interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest {
2767
+ /**
2768
+ *
2769
+ * @type {string}
2770
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
2771
+ */
2772
+ readonly workspaceId: string;
2773
+ /**
2774
+ *
2775
+ * @type {string}
2776
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
2777
+ */
2778
+ readonly conversationId: string;
2779
+ /**
2780
+ *
2781
+ * @type {string}
2782
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
2783
+ */
2784
+ readonly responseId?: string;
2785
+ }
2786
+ /**
2787
+ * InteractionStepsAi - object-oriented interface
2788
+ * @export
2789
+ * @class InteractionStepsAi
2790
+ * @extends {BaseAPI}
2791
+ */
2792
+ export declare class InteractionStepsAi extends BaseAPI implements InteractionStepsAiInterface {
2793
+ /**
2794
+ *
2795
+ * @summary Get Conversation Interaction Steps
2796
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
2797
+ * @param {*} [options] Override http request option.
2798
+ * @throws {RequiredError}
2799
+ * @memberof InteractionStepsAi
2800
+ */
2801
+ getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
2802
+ }
2532
2803
  /**
2533
2804
  *
2534
2805
  * @summary Get Conversation Items
@@ -2834,7 +3105,7 @@ export declare function KnowledgeAi_DeleteOrgDocument(axios: AxiosInstance, base
2834
3105
  * @param {Configuration} [configuration] Optional configuration.
2835
3106
  * @throws {RequiredError}
2836
3107
  */
2837
- export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
3108
+ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
2838
3109
  /**
2839
3110
  * Download an org-scoped knowledge document\'s raw file.
2840
3111
  * @summary Download Document Org
@@ -2845,7 +3116,7 @@ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, baseP
2845
3116
  * @param {Configuration} [configuration] Optional configuration.
2846
3117
  * @throws {RequiredError}
2847
3118
  */
2848
- export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
3119
+ export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
2849
3120
  /**
2850
3121
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
2851
3122
  * @summary Get Document
@@ -3006,7 +3277,7 @@ export interface KnowledgeAiInterface {
3006
3277
  * @throws {RequiredError}
3007
3278
  * @memberof KnowledgeAiInterface
3008
3279
  */
3009
- downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
3280
+ downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
3010
3281
  /**
3011
3282
  * Download an org-scoped knowledge document\'s raw file.
3012
3283
  * @summary Download Document Org
@@ -3015,7 +3286,7 @@ export interface KnowledgeAiInterface {
3015
3286
  * @throws {RequiredError}
3016
3287
  * @memberof KnowledgeAiInterface
3017
3288
  */
3018
- downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
3289
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
3019
3290
  /**
3020
3291
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
3021
3292
  * @summary Get Document
@@ -3570,7 +3841,7 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
3570
3841
  * @throws {RequiredError}
3571
3842
  * @memberof KnowledgeAi
3572
3843
  */
3573
- downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
3844
+ downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
3574
3845
  /**
3575
3846
  * Download an org-scoped knowledge document\'s raw file.
3576
3847
  * @summary Download Document Org
@@ -3579,7 +3850,7 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
3579
3850
  * @throws {RequiredError}
3580
3851
  * @memberof KnowledgeAi
3581
3852
  */
3582
- downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
3853
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
3583
3854
  /**
3584
3855
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
3585
3856
  * @summary Get Document
@@ -3692,7 +3963,7 @@ export declare function MessagesAiAxiosParamCreator_PostMessagesApiV1AiWorkspace
3692
3963
  * @param {Configuration} [configuration] Optional configuration.
3693
3964
  * @throws {RequiredError}
3694
3965
  */
3695
- export declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<any>;
3966
+ export declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<string>;
3696
3967
  /**
3697
3968
  * MessagesAi - interface
3698
3969
  * @export
@@ -3707,7 +3978,7 @@ export interface MessagesAiInterface {
3707
3978
  * @throws {RequiredError}
3708
3979
  * @memberof MessagesAiInterface
3709
3980
  */
3710
- postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
3981
+ postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
3711
3982
  }
3712
3983
  /**
3713
3984
  * Request parameters for postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost operation in MessagesAi.
@@ -3749,7 +4020,7 @@ export declare class MessagesAi extends BaseAPI implements MessagesAiInterface {
3749
4020
  * @throws {RequiredError}
3750
4021
  * @memberof MessagesAi
3751
4022
  */
3752
- postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
4023
+ postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
3753
4024
  }
3754
4025
  /**
3755
4026
  *