@gooddata/api-client-tiger 11.52.0-alpha.5 → 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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.52.0-alpha.5";
1
+ export declare const LIB_VERSION = "11.52.0-alpha.6";
2
2
  export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/api-client-tiger";
4
4
  //# sourceMappingURL=__version.d.ts.map
package/esm/__version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.52.0-alpha.5";
3
+ export const LIB_VERSION = "11.52.0-alpha.6";
4
4
  export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/api-client-tiger";
@@ -10943,6 +10943,52 @@ export declare interface AiBucketRefObject {
10943
10943
  'field': string;
10944
10944
  }
10945
10945
 
10946
+ /**
10947
+ * What one search looked for in the semantic catalog, what came back, and what it used.
10948
+ */
10949
+ export declare interface AiCatalogSearchDetail {
10950
+ /**
10951
+ * Category this body belongs to.
10952
+ */
10953
+ 'category'?: AiCatalogSearchDetailCategoryEnum;
10954
+ /**
10955
+ * Titles the search returned, grouped by object type.
10956
+ */
10957
+ 'found'?: Array<AiSearchedGroup>;
10958
+ /**
10959
+ * Keywords the search looked for. Each runs against every requested type.
10960
+ */
10961
+ 'query'?: Array<string>;
10962
+ /**
10963
+ * Catalog types the search asked for.
10964
+ */
10965
+ 'requestedTypes'?: Array<string>;
10966
+ /**
10967
+ * Best-matching object per type. Empty for the search modes that do not rank.
10968
+ */
10969
+ 'used'?: Array<AiCatalogSearchMatch>;
10970
+ }
10971
+
10972
+ export declare type AiCatalogSearchDetailCategoryEnum = 'catalogSearch';
10973
+
10974
+ /**
10975
+ * The highest-ranked object of one searched type, with the score that ranked it.
10976
+ */
10977
+ export declare interface AiCatalogSearchMatch {
10978
+ /**
10979
+ * Catalog type the object is the best match of.
10980
+ */
10981
+ 'objectType': string;
10982
+ /**
10983
+ * Relevance score that ranked it.
10984
+ */
10985
+ 'score': number;
10986
+ /**
10987
+ * Title of the highest-ranked object.
10988
+ */
10989
+ 'title': string;
10990
+ }
10991
+
10946
10992
  export declare interface AiClusteringAmount {
10947
10993
  }
10948
10994
 
@@ -11009,6 +11055,23 @@ export declare const AiComparisonMeasureValueOperator: {
11009
11055
 
11010
11056
  export declare type AiComparisonMeasureValueOperator = typeof AiComparisonMeasureValueOperator[keyof typeof AiComparisonMeasureValueOperator];
11011
11057
 
11058
+ /**
11059
+ * How the answer itself came out: what it is and which model wrote it.
11060
+ */
11061
+ export declare interface AiComposeAnswerDetail {
11062
+ /**
11063
+ * Category this body belongs to.
11064
+ */
11065
+ 'category'?: AiComposeAnswerDetailCategoryEnum;
11066
+ 'modelId'?: string | null;
11067
+ 'output'?: AiComposeAnswerDetailOutputEnum | null;
11068
+ 'suggestedActions'?: number | null;
11069
+ }
11070
+
11071
+ export declare type AiComposeAnswerDetailCategoryEnum = 'composeAnswer';
11072
+
11073
+ export declare type AiComposeAnswerDetailOutputEnum = 'text' | 'visualization' | 'dashboard' | 'keyDriverAnalysis' | 'whatIf' | 'searchResults' | 'alertProposal';
11074
+
11012
11075
  export declare interface AiCompoundMeasureValueFilter {
11013
11076
  'compoundMeasureValueFilter': AiCompoundMeasureValueFilterBody;
11014
11077
  }
@@ -11160,6 +11223,7 @@ export declare interface AiConversationItemResponse {
11160
11223
  * Item creation timestamp (ISO-8601 UTC).
11161
11224
  */
11162
11225
  'createdAt': string;
11226
+ 'detail'?: AiConversationItemResponseDetail | null;
11163
11227
  /**
11164
11228
  * Conversation item identifier.
11165
11229
  */
@@ -11170,16 +11234,32 @@ export declare interface AiConversationItemResponse {
11170
11234
  'itemIndex': number;
11171
11235
  'newAgentId'?: string | null;
11172
11236
  'oldAgentId'?: string | null;
11237
+ 'reasoningEffort'?: AiRequestedReasoningEffort | null;
11173
11238
  'replyTo'?: string | null;
11174
11239
  'responseId'?: string | null;
11175
11240
  /**
11176
11241
  * Author role of the item.
11177
11242
  */
11178
11243
  'role': AiConversationItemResponseRoleEnum;
11244
+ 'stepId'?: string | null;
11179
11245
  'taskId'?: string | null;
11180
11246
  'trigger'?: AiConversationItemResponseTriggerEnum | null;
11181
11247
  }
11182
11248
 
11249
+ /**
11250
+ * @type AiConversationItemResponseDetail
11251
+ * What one item\'s action did.
11252
+ */
11253
+ export declare type AiConversationItemResponseDetail = ({
11254
+ category: 'catalogSearch';
11255
+ } & AiCatalogSearchDetail) | ({
11256
+ category: 'composeAnswer';
11257
+ } & AiComposeAnswerDetail) | ({
11258
+ category: 'knowledgeSearch';
11259
+ } & AiKnowledgeSearchDetail) | ({
11260
+ category: 'skillRouting';
11261
+ } & AiSkillRoutingDetail);
11262
+
11183
11263
  export declare type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool' | 'system';
11184
11264
 
11185
11265
  export declare type AiConversationItemResponseTriggerEnum = 'agent_switched' | 'agent_updated';
@@ -11319,7 +11399,8 @@ export declare interface AiDashboardIdUpdateRequest {
11319
11399
 
11320
11400
  export declare interface AiDashboardPart {
11321
11401
  'dashboard'?: AiDashboard | null;
11322
- 'savedDashboardId'?: string | null;
11402
+ 'references'?: AiDashboardReferences | null;
11403
+ 'saved_dashboard_id'?: string | null;
11323
11404
  /**
11324
11405
  * Type of multipart part.
11325
11406
  */
@@ -11336,6 +11417,17 @@ export declare interface AiDashboardRef {
11336
11417
  'title'?: string | null;
11337
11418
  }
11338
11419
 
11420
+ /**
11421
+ * 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.
11422
+ */
11423
+ export declare interface AiDashboardReferences {
11424
+ [key: string]: any;
11425
+ /**
11426
+ * Full AAC body of every widget-referenced visualization that has one available.
11427
+ */
11428
+ 'visualizations': Array<object>;
11429
+ }
11430
+
11339
11431
  /**
11340
11432
  * AAC ref: dashboard.json section.
11341
11433
  */
@@ -11570,6 +11662,50 @@ export declare interface AiInlineFilterDefinitionBody {
11570
11662
  'localIdentifier'?: string | null;
11571
11663
  }
11572
11664
 
11665
+ /**
11666
+ * Interaction step list response.
11667
+ */
11668
+ export declare interface AiInteractionStepListResponse {
11669
+ /**
11670
+ * Ordered list of interaction steps.
11671
+ */
11672
+ 'steps': Array<AiInteractionStepResponse>;
11673
+ }
11674
+
11675
+ /**
11676
+ * 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``.
11677
+ */
11678
+ export declare interface AiInteractionStepResponse {
11679
+ /**
11680
+ * Parent conversation identifier.
11681
+ */
11682
+ 'conversationId': string;
11683
+ /**
11684
+ * Step start timestamp (ISO-8601 UTC).
11685
+ */
11686
+ 'createdAt': string;
11687
+ /**
11688
+ * Wall-clock duration of the LLM call and its tool dispatches.
11689
+ */
11690
+ 'durationMs': number;
11691
+ /**
11692
+ * Response/turn identifier the step belongs to.
11693
+ */
11694
+ 'responseId': string;
11695
+ /**
11696
+ * Interaction step identifier.
11697
+ */
11698
+ 'stepId': string;
11699
+ /**
11700
+ * Zero-based step order within the turn.
11701
+ */
11702
+ 'stepIndex': number;
11703
+ /**
11704
+ * Token usage of the step\'s LLM call.
11705
+ */
11706
+ 'tokens': AiStepTokens;
11707
+ }
11708
+
11573
11709
  /**
11574
11710
  * Date granularity for the interval of an ONCE_PER_INTERVAL trigger.
11575
11711
  */
@@ -11633,6 +11769,35 @@ export declare interface AiKeyDriverAnalysisPart {
11633
11769
 
11634
11770
  export declare type AiKeyDriverAnalysisPartTypeEnum = 'kda';
11635
11771
 
11772
+ /**
11773
+ * What one action looked for in the knowledge base and which documents it reached.
11774
+ */
11775
+ export declare interface AiKnowledgeSearchDetail {
11776
+ 'bestMatch'?: string | null;
11777
+ /**
11778
+ * Category this body belongs to.
11779
+ */
11780
+ 'category'?: AiKnowledgeSearchDetailCategoryEnum;
11781
+ /**
11782
+ * Documents the action reached, best-scoring first.
11783
+ */
11784
+ 'documents'?: Array<AiKnowledgeSearchDocument>;
11785
+ 'query'?: string | null;
11786
+ }
11787
+
11788
+ export declare type AiKnowledgeSearchDetailCategoryEnum = 'knowledgeSearch';
11789
+
11790
+ /**
11791
+ * One knowledge document an action reached, named as the user would recognise it.
11792
+ */
11793
+ export declare interface AiKnowledgeSearchDocument {
11794
+ 'score'?: number | null;
11795
+ /**
11796
+ * Document title, falling back to its filename when it has none.
11797
+ */
11798
+ 'title': string;
11799
+ }
11800
+
11636
11801
  export declare interface AiLabel {
11637
11802
  'identifier': AiAfmObjectIdentifierBody;
11638
11803
  'localIdentifier': string;
@@ -12221,6 +12386,20 @@ export declare interface AiSearchDocumentsResponse {
12221
12386
  'statistics': AiSearchStatistics;
12222
12387
  }
12223
12388
 
12389
+ /**
12390
+ * The results of a search that share one object type.
12391
+ */
12392
+ export declare interface AiSearchedGroup {
12393
+ /**
12394
+ * Catalog type name the group belongs to.
12395
+ */
12396
+ 'objectType': string;
12397
+ /**
12398
+ * Titles of that type that came back.
12399
+ */
12400
+ 'titles'?: Array<string>;
12401
+ }
12402
+
12224
12403
  export declare interface AiSearchObject {
12225
12404
  'certification'?: string | null;
12226
12405
  'certificationMessage'?: string | null;
@@ -12391,6 +12570,35 @@ export declare interface AiSkillResponse {
12391
12570
  'title': string;
12392
12571
  }
12393
12572
 
12573
+ /**
12574
+ * Which skills the turn could reach for, and which this call left active.
12575
+ */
12576
+ export declare interface AiSkillRoutingDetail {
12577
+ /**
12578
+ * Titles of the skills active after the call replaced the active set.
12579
+ */
12580
+ 'activated'?: Array<string>;
12581
+ /**
12582
+ * Titles of the skills the model could choose from, in the order the prompt lists them.
12583
+ */
12584
+ 'available'?: Array<string>;
12585
+ /**
12586
+ * Category this body belongs to.
12587
+ */
12588
+ 'category'?: AiSkillRoutingDetailCategoryEnum;
12589
+ }
12590
+
12591
+ export declare type AiSkillRoutingDetailCategoryEnum = 'skillRouting';
12592
+
12593
+ /**
12594
+ * What the step\'s LLM call spent; a field is null when the provider did not report it.
12595
+ */
12596
+ export declare interface AiStepTokens {
12597
+ 'input'?: number | null;
12598
+ 'output'?: number | null;
12599
+ 'total'?: number | null;
12600
+ }
12601
+
12394
12602
  /**
12395
12603
  * A quick-reply action button rendered alongside the follow-up question.
12396
12604
  */
@@ -33556,7 +33764,7 @@ export declare interface DeclarativeDataSources {
33556
33764
  'dataSources': Array<DeclarativeDataSource>;
33557
33765
  }
33558
33766
 
33559
- export declare type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
33767
+ export declare type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
33560
33768
 
33561
33769
  /**
33562
33770
  * A date dataset.
@@ -67593,6 +67801,91 @@ export declare interface InPlatform {
67593
67801
 
67594
67802
  export declare type InPlatformTypeEnum = 'IN_PLATFORM';
67595
67803
 
67804
+ /**
67805
+ * InteractionStepsAi - object-oriented interface
67806
+ * @export
67807
+ * @class InteractionStepsAi
67808
+ * @extends {BaseAPI}
67809
+ */
67810
+ export declare class InteractionStepsAi extends AiBaseAPI implements InteractionStepsAiInterface {
67811
+ /**
67812
+ *
67813
+ * @summary Get Conversation Interaction Steps
67814
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
67815
+ * @param {*} [options] Override http request option.
67816
+ * @throws {RequiredError}
67817
+ * @memberof InteractionStepsAi
67818
+ */
67819
+ getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
67820
+ }
67821
+
67822
+ /**
67823
+ *
67824
+ * @summary Get Conversation Interaction Steps
67825
+ * @param {AxiosInstance} axios Axios instance.
67826
+ * @param {string} basePath Base path.
67827
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
67828
+ * @param {*} [options] Override http request option.
67829
+ * @param {Configuration} [configuration] Optional configuration.
67830
+ * @throws {RequiredError}
67831
+ */
67832
+ export declare function InteractionStepsAi_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(axios: AxiosInstance, basePath: string, requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiInteractionStepListResponse>;
67833
+
67834
+ /**
67835
+ *
67836
+ * @summary Get Conversation Interaction Steps
67837
+ * @param {string} workspaceId
67838
+ * @param {string} conversationId
67839
+ * @param {string} [responseId]
67840
+ * @param {*} [options] Override http request option.
67841
+ * @param {Configuration} [configuration] Optional configuration.
67842
+ * @throws {RequiredError}
67843
+ */
67844
+ export declare function InteractionStepsAiAxiosParamCreator_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(workspaceId: string, conversationId: string, responseId?: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
67845
+
67846
+ /**
67847
+ * Request parameters for getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet operation in InteractionStepsAi.
67848
+ * @export
67849
+ * @interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest
67850
+ */
67851
+ export declare interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest {
67852
+ /**
67853
+ *
67854
+ * @type {string}
67855
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
67856
+ */
67857
+ readonly workspaceId: string;
67858
+ /**
67859
+ *
67860
+ * @type {string}
67861
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
67862
+ */
67863
+ readonly conversationId: string;
67864
+ /**
67865
+ *
67866
+ * @type {string}
67867
+ * @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
67868
+ */
67869
+ readonly responseId?: string;
67870
+ }
67871
+
67872
+ /**
67873
+ * InteractionStepsAi - interface
67874
+ * @export
67875
+ * @interface InteractionStepsAi
67876
+ */
67877
+ export declare interface InteractionStepsAiInterface {
67878
+ /**
67879
+ *
67880
+ * @summary Get Conversation Interaction Steps
67881
+ * @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
67882
+ * @param {*} [options] Override http request option.
67883
+ * @throws {RequiredError}
67884
+ * @memberof InteractionStepsAiInterface
67885
+ */
67886
+ getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
67887
+ }
67888
+
67596
67889
  /**
67597
67890
  * Settings for intro slide.
67598
67891
  */
@@ -71791,7 +72084,7 @@ export declare interface JsonApiDataSourceIdentifierOutAttributes {
71791
72084
  'type': JsonApiDataSourceIdentifierOutAttributesTypeEnum;
71792
72085
  }
71793
72086
 
71794
- export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72087
+ export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
71795
72088
 
71796
72089
  export declare interface JsonApiDataSourceIdentifierOutDocument {
71797
72090
  'data': JsonApiDataSourceIdentifierOut;
@@ -71938,7 +72231,7 @@ export declare interface JsonApiDataSourceInAttributesParametersInner {
71938
72231
  'value': string;
71939
72232
  }
71940
72233
 
71941
- export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72234
+ export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
71942
72235
 
71943
72236
  export declare interface JsonApiDataSourceInDocument {
71944
72237
  'data': JsonApiDataSourceIn;
@@ -72040,7 +72333,7 @@ export declare interface JsonApiDataSourceOutAttributesParametersInner {
72040
72333
  'value': string;
72041
72334
  }
72042
72335
 
72043
- export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72336
+ export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72044
72337
 
72045
72338
  export declare interface JsonApiDataSourceOutDocument {
72046
72339
  'data': JsonApiDataSourceOut;
@@ -72187,7 +72480,7 @@ export declare interface JsonApiDataSourcePatchAttributesParametersInner {
72187
72480
  'value': string;
72188
72481
  }
72189
72482
 
72190
- export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72483
+ export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
72191
72484
 
72192
72485
  export declare interface JsonApiDataSourcePatchDocument {
72193
72486
  'data': JsonApiDataSourcePatch;
@@ -80163,7 +80456,7 @@ export declare class KnowledgeAi extends AiBaseAPI implements KnowledgeAiInterfa
80163
80456
  * @throws {RequiredError}
80164
80457
  * @memberof KnowledgeAi
80165
80458
  */
80166
- downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
80459
+ downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80167
80460
  /**
80168
80461
  * Download an org-scoped knowledge document\'s raw file.
80169
80462
  * @summary Download Document Org
@@ -80172,7 +80465,7 @@ export declare class KnowledgeAi extends AiBaseAPI implements KnowledgeAiInterfa
80172
80465
  * @throws {RequiredError}
80173
80466
  * @memberof KnowledgeAi
80174
80467
  */
80175
- downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
80468
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80176
80469
  /**
80177
80470
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
80178
80471
  * @summary Get Document
@@ -80331,7 +80624,7 @@ export { KnowledgeAi_DeleteOrgDocument }
80331
80624
  * @param {Configuration} [configuration] Optional configuration.
80332
80625
  * @throws {RequiredError}
80333
80626
  */
80334
- export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<any>;
80627
+ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<File>;
80335
80628
 
80336
80629
  /**
80337
80630
  * Download an org-scoped knowledge document\'s raw file.
@@ -80343,7 +80636,7 @@ export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, baseP
80343
80636
  * @param {Configuration} [configuration] Optional configuration.
80344
80637
  * @throws {RequiredError}
80345
80638
  */
80346
- export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<any>;
80639
+ export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<File>;
80347
80640
 
80348
80641
  /**
80349
80642
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
@@ -80901,7 +81194,7 @@ export declare interface KnowledgeAiInterface {
80901
81194
  * @throws {RequiredError}
80902
81195
  * @memberof KnowledgeAiInterface
80903
81196
  */
80904
- downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
81197
+ downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80905
81198
  /**
80906
81199
  * Download an org-scoped knowledge document\'s raw file.
80907
81200
  * @summary Download Document Org
@@ -80910,7 +81203,7 @@ export declare interface KnowledgeAiInterface {
80910
81203
  * @throws {RequiredError}
80911
81204
  * @memberof KnowledgeAiInterface
80912
81205
  */
80913
- downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
81206
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
80914
81207
  /**
80915
81208
  * Get a single knowledge document\'s metadata. Inherited and org-level docs are visible.
80916
81209
  * @summary Get Document
@@ -87547,7 +87840,7 @@ export declare class MessagesAi extends AiBaseAPI implements MessagesAiInterface
87547
87840
  * @throws {RequiredError}
87548
87841
  * @memberof MessagesAi
87549
87842
  */
87550
- postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
87843
+ postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
87551
87844
  }
87552
87845
 
87553
87846
  /**
@@ -87560,7 +87853,7 @@ export declare class MessagesAi extends AiBaseAPI implements MessagesAiInterface
87560
87853
  * @param {Configuration} [configuration] Optional configuration.
87561
87854
  * @throws {RequiredError}
87562
87855
  */
87563
- declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<any>;
87856
+ declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<string>;
87564
87857
  export { MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost as GenAiApi_PostMessages }
87565
87858
  export { MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost }
87566
87859
 
@@ -87590,7 +87883,7 @@ export declare interface MessagesAiInterface {
87590
87883
  * @throws {RequiredError}
87591
87884
  * @memberof MessagesAiInterface
87592
87885
  */
87593
- postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
87886
+ postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
87594
87887
  }
87595
87888
 
87596
87889
  /**
@@ -98925,7 +99218,7 @@ export declare interface TestDefinitionRequest {
98925
99218
 
98926
99219
  export declare type TestDefinitionRequestAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
98927
99220
 
98928
- export declare type TestDefinitionRequestTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
99221
+ export declare type TestDefinitionRequestTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
98929
99222
 
98930
99223
  export declare interface TestLlmProviderByIdRequest {
98931
99224
  /**