@gooddata/api-client-tiger 11.32.0-alpha.0 → 11.32.0-alpha.2

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.
@@ -9462,6 +9462,7 @@ export declare interface AiConversationResponse {
9462
9462
  * Last activity timestamp (ISO-8601 UTC).
9463
9463
  */
9464
9464
  'lastActivityAt': string;
9465
+ 'agentId'?: string | null;
9465
9466
  }
9466
9467
 
9467
9468
  export declare interface AiConversationResponseList {
@@ -20717,11 +20718,13 @@ export declare function ConversationsAiAxiosParamCreator_GetConversationApiV1AiW
20717
20718
  * @summary Get Conversations
20718
20719
  * @param {string} workspaceId
20719
20720
  * @param {boolean} [isPreview]
20721
+ * @param {number} [page]
20722
+ * @param {number} [size]
20720
20723
  * @param {*} [options] Override http request option.
20721
20724
  * @param {Configuration} [configuration] Optional configuration.
20722
20725
  * @throws {RequiredError}
20723
20726
  */
20724
- export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(workspaceId: string, isPreview?: boolean, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
20727
+ export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(workspaceId: string, isPreview?: boolean, page?: number, size?: number, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
20725
20728
 
20726
20729
  /**
20727
20730
  *
@@ -20796,6 +20799,18 @@ declare interface ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdCha
20796
20799
  * @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
20797
20800
  */
20798
20801
  readonly isPreview?: boolean;
20802
+ /**
20803
+ *
20804
+ * @type {number}
20805
+ * @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
20806
+ */
20807
+ readonly page?: number;
20808
+ /**
20809
+ *
20810
+ * @type {number}
20811
+ * @memberof ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet
20812
+ */
20813
+ readonly size?: number;
20799
20814
  }
20800
20815
  export { ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest }
20801
20816
  export { ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest as GenAiApiGetConversationsRequest }
@@ -29629,12 +29644,18 @@ export declare interface DeclarativeDataSource {
29629
29644
  * Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
29630
29645
  */
29631
29646
  'alternativeDataSourceId'?: string | null;
29647
+ /**
29648
+ * Determines how datetime values are interpreted in data sources without native support for specifying this. - LOCAL: The values are assumed to be in local timezone and they are not converted to the user\'s timezone. - UTC: The values are assumed to be in UTC and they are converted to the user\'s timezone.
29649
+ */
29650
+ 'dateTimeSemantics'?: DeclarativeDataSourceDateTimeSemanticsEnum | null;
29632
29651
  }
29633
29652
 
29634
29653
  export declare type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
29635
29654
 
29636
29655
  export declare type DeclarativeDataSourceCacheStrategyEnum = 'ALWAYS' | 'NEVER';
29637
29656
 
29657
+ export declare type DeclarativeDataSourceDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
29658
+
29638
29659
  export declare interface DeclarativeDataSourcePermission {
29639
29660
  /**
29640
29661
  * Permission name.
@@ -62184,6 +62205,15 @@ export declare interface ITigerInsightLayerDefinition {
62184
62205
  properties?: ITigerVisualizationProperties;
62185
62206
  }
62186
62207
 
62208
+ /**
62209
+ * Tiger-specific insight parameter value (stored form).
62210
+ * @alpha
62211
+ */
62212
+ export declare interface ITigerInsightParameterValue {
62213
+ ref: ObjRef;
62214
+ value: number;
62215
+ }
62216
+
62187
62217
  /**
62188
62218
  * Tiger-specific insight widget
62189
62219
  * @public
@@ -62524,6 +62554,10 @@ declare interface IVisualizationObject_2 {
62524
62554
  sorts: ITigerSortItem[];
62525
62555
  properties: ITigerVisualizationProperties;
62526
62556
  layers?: ITigerInsightLayerDefinition[];
62557
+ /**
62558
+ * @alpha
62559
+ */
62560
+ parameters?: ITigerInsightParameterValue[];
62527
62561
  }
62528
62562
 
62529
62563
  /**
@@ -63866,15 +63900,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
63866
63900
  * API identifier of an object
63867
63901
  */
63868
63902
  'id': string;
63869
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
63870
- }
63871
-
63872
- export declare interface JsonApiCookieSecurityConfigurationInAttributes {
63873
- 'lastRotation'?: string;
63874
- /**
63875
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
63876
- */
63877
- 'rotationInterval'?: string;
63903
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
63878
63904
  }
63879
63905
 
63880
63906
  export declare interface JsonApiCookieSecurityConfigurationInDocument {
@@ -63895,7 +63921,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
63895
63921
  * API identifier of an object
63896
63922
  */
63897
63923
  'id': string;
63898
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
63924
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
63899
63925
  }
63900
63926
 
63901
63927
  export declare interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -63917,7 +63943,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
63917
63943
  * API identifier of an object
63918
63944
  */
63919
63945
  'id': string;
63920
- 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
63946
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
63947
+ }
63948
+
63949
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
63950
+ 'lastRotation'?: string;
63951
+ /**
63952
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
63953
+ */
63954
+ 'rotationInterval'?: string;
63921
63955
  }
63922
63956
 
63923
63957
  export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -64034,7 +64068,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
64034
64068
  * API identifier of an object
64035
64069
  */
64036
64070
  'id': string;
64037
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
64071
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
64038
64072
  }
64039
64073
 
64040
64074
  export declare interface JsonApiCustomApplicationSettingInDocument {
@@ -64056,15 +64090,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
64056
64090
  */
64057
64091
  'id': string;
64058
64092
  'meta'?: JsonApiExportDefinitionOutMeta;
64059
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
64060
- }
64061
-
64062
- export declare interface JsonApiCustomApplicationSettingOutAttributes {
64063
- 'applicationName': string;
64064
- /**
64065
- * Free-form JSON content. Maximum supported length is 250000 characters.
64066
- */
64067
- 'content': object;
64093
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
64068
64094
  }
64069
64095
 
64070
64096
  export declare interface JsonApiCustomApplicationSettingOutDocument {
@@ -64093,7 +64119,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
64093
64119
  */
64094
64120
  'id': string;
64095
64121
  'meta'?: JsonApiExportDefinitionOutMeta;
64096
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
64122
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
64097
64123
  'links'?: ObjectLinks;
64098
64124
  }
64099
64125
 
@@ -64140,7 +64166,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
64140
64166
  * API identifier of an object
64141
64167
  */
64142
64168
  'id'?: string;
64143
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
64169
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
64170
+ }
64171
+
64172
+ export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
64173
+ 'applicationName': string;
64174
+ /**
64175
+ * Free-form JSON content. Maximum supported length is 250000 characters.
64176
+ */
64177
+ 'content': object;
64144
64178
  }
64145
64179
 
64146
64180
  export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
@@ -64161,7 +64195,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
64161
64195
  * API identifier of an object
64162
64196
  */
64163
64197
  'id': string;
64164
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
64198
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
64199
+ }
64200
+
64201
+ export declare interface JsonApiCustomGeoCollectionInAttributes {
64202
+ 'name'?: string | null;
64203
+ 'description'?: string | null;
64165
64204
  }
64166
64205
 
64167
64206
  export declare interface JsonApiCustomGeoCollectionInDocument {
@@ -64182,12 +64221,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
64182
64221
  * API identifier of an object
64183
64222
  */
64184
64223
  'id': string;
64185
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
64186
- }
64187
-
64188
- export declare interface JsonApiCustomGeoCollectionOutAttributes {
64189
- 'name'?: string | null;
64190
- 'description'?: string | null;
64224
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
64191
64225
  }
64192
64226
 
64193
64227
  export declare interface JsonApiCustomGeoCollectionOutDocument {
@@ -64215,7 +64249,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
64215
64249
  * API identifier of an object
64216
64250
  */
64217
64251
  'id': string;
64218
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
64252
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
64219
64253
  'links'?: ObjectLinks;
64220
64254
  }
64221
64255
 
@@ -64233,7 +64267,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
64233
64267
  * API identifier of an object
64234
64268
  */
64235
64269
  'id': string;
64236
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
64270
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
64237
64271
  }
64238
64272
 
64239
64273
  export declare interface JsonApiCustomGeoCollectionPatchDocument {
@@ -64736,10 +64770,16 @@ export declare interface JsonApiDataSourceInAttributes {
64736
64770
  * Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
64737
64771
  */
64738
64772
  'alternativeDataSourceId'?: string | null;
64773
+ /**
64774
+ * Determines how datetime values are interpreted in data sources without native support for specifying this.
64775
+ */
64776
+ 'dateTimeSemantics'?: JsonApiDataSourceInAttributesDateTimeSemanticsEnum | null;
64739
64777
  }
64740
64778
 
64741
64779
  export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
64742
64780
 
64781
+ export declare type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
64782
+
64743
64783
  export declare interface JsonApiDataSourceInAttributesParametersInner {
64744
64784
  'name': string;
64745
64785
  'value': string;
@@ -64814,12 +64854,18 @@ export declare interface JsonApiDataSourceOutAttributes {
64814
64854
  * Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
64815
64855
  */
64816
64856
  'alternativeDataSourceId'?: string | null;
64857
+ /**
64858
+ * Determines how datetime values are interpreted in data sources without native support for specifying this.
64859
+ */
64860
+ 'dateTimeSemantics'?: JsonApiDataSourceOutAttributesDateTimeSemanticsEnum | null;
64817
64861
  }
64818
64862
 
64819
64863
  export declare type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
64820
64864
 
64821
64865
  export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
64822
64866
 
64867
+ export declare type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
64868
+
64823
64869
  export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
64824
64870
 
64825
64871
  export declare interface JsonApiDataSourceOutDocument {
@@ -64926,10 +64972,16 @@ export declare interface JsonApiDataSourcePatchAttributes {
64926
64972
  * Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
64927
64973
  */
64928
64974
  'alternativeDataSourceId'?: string | null;
64975
+ /**
64976
+ * Determines how datetime values are interpreted in data sources without native support for specifying this.
64977
+ */
64978
+ 'dateTimeSemantics'?: JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum | null;
64929
64979
  }
64930
64980
 
64931
64981
  export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
64932
64982
 
64983
+ export declare type JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
64984
+
64933
64985
  export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
64934
64986
 
64935
64987
  export declare interface JsonApiDataSourcePatchDocument {
@@ -65195,7 +65247,7 @@ export declare interface JsonApiExportTemplateIn {
65195
65247
  * API identifier of an object
65196
65248
  */
65197
65249
  'id': string;
65198
- 'attributes': JsonApiExportTemplateOutAttributes;
65250
+ 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
65199
65251
  }
65200
65252
 
65201
65253
  export declare interface JsonApiExportTemplateInDocument {
@@ -65216,47 +65268,9 @@ export declare interface JsonApiExportTemplateOut {
65216
65268
  * API identifier of an object
65217
65269
  */
65218
65270
  'id': string;
65219
- 'attributes': JsonApiExportTemplateOutAttributes;
65271
+ 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
65220
65272
  }
65221
65273
 
65222
- export declare interface JsonApiExportTemplateOutAttributes {
65223
- /**
65224
- * User-facing name of the Slides template.
65225
- */
65226
- 'name': string;
65227
- 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
65228
- 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
65229
- }
65230
-
65231
- /**
65232
- * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
65233
- */
65234
- export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
65235
- /**
65236
- * Export types this template applies to.
65237
- */
65238
- 'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
65239
- 'coverSlide'?: CoverSlideTemplate | null;
65240
- 'introSlide'?: IntroSlideTemplate | null;
65241
- 'sectionSlide'?: SectionSlideTemplate | null;
65242
- 'contentSlide'?: ContentSlideTemplate | null;
65243
- }
65244
-
65245
- export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
65246
-
65247
- /**
65248
- * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
65249
- */
65250
- export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
65251
- /**
65252
- * Export types this template applies to.
65253
- */
65254
- 'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
65255
- 'contentSlide'?: ContentSlideTemplate | null;
65256
- }
65257
-
65258
- export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
65259
-
65260
65274
  export declare interface JsonApiExportTemplateOutDocument {
65261
65275
  'data': JsonApiExportTemplateOut;
65262
65276
  'links'?: ObjectLinks;
@@ -65282,7 +65296,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
65282
65296
  * API identifier of an object
65283
65297
  */
65284
65298
  'id': string;
65285
- 'attributes': JsonApiExportTemplateOutAttributes;
65299
+ 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
65286
65300
  'links'?: ObjectLinks;
65287
65301
  }
65288
65302
 
@@ -65308,8 +65322,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
65308
65322
  * User-facing name of the Slides template.
65309
65323
  */
65310
65324
  'name'?: string;
65311
- 'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
65312
- 'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
65325
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
65326
+ 'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
65313
65327
  }
65314
65328
 
65315
65329
  export declare interface JsonApiExportTemplatePatchDocument {
@@ -65330,9 +65344,47 @@ export declare interface JsonApiExportTemplatePostOptionalId {
65330
65344
  * API identifier of an object
65331
65345
  */
65332
65346
  'id'?: string;
65333
- 'attributes': JsonApiExportTemplateOutAttributes;
65347
+ 'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
65348
+ }
65349
+
65350
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
65351
+ /**
65352
+ * User-facing name of the Slides template.
65353
+ */
65354
+ 'name': string;
65355
+ 'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
65356
+ 'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
65357
+ }
65358
+
65359
+ /**
65360
+ * Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
65361
+ */
65362
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
65363
+ /**
65364
+ * Export types this template applies to.
65365
+ */
65366
+ 'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
65367
+ 'coverSlide'?: CoverSlideTemplate | null;
65368
+ 'introSlide'?: IntroSlideTemplate | null;
65369
+ 'sectionSlide'?: SectionSlideTemplate | null;
65370
+ 'contentSlide'?: ContentSlideTemplate | null;
65371
+ }
65372
+
65373
+ export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
65374
+
65375
+ /**
65376
+ * Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
65377
+ */
65378
+ export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
65379
+ /**
65380
+ * Export types this template applies to.
65381
+ */
65382
+ 'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
65383
+ 'contentSlide'?: ContentSlideTemplate | null;
65334
65384
  }
65335
65385
 
65386
+ export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
65387
+
65336
65388
  export declare interface JsonApiExportTemplatePostOptionalIdDocument {
65337
65389
  'data': JsonApiExportTemplatePostOptionalId;
65338
65390
  }
@@ -66719,31 +66771,10 @@ export declare interface JsonApiLlmProviderIn {
66719
66771
  * API identifier of an object
66720
66772
  */
66721
66773
  'id': string;
66722
- 'attributes'?: JsonApiLlmProviderOutAttributes;
66774
+ 'attributes'?: JsonApiLlmProviderInAttributes;
66723
66775
  }
66724
66776
 
66725
- export declare interface JsonApiLlmProviderInDocument {
66726
- 'data': JsonApiLlmProviderIn;
66727
- }
66728
-
66729
- export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
66730
-
66731
- /**
66732
- * LLM Provider configuration for connecting to LLM services.
66733
- */
66734
- export declare interface JsonApiLlmProviderOut {
66735
- /**
66736
- * Object type
66737
- */
66738
- 'type': JsonApiLlmProviderOutTypeEnum;
66739
- /**
66740
- * API identifier of an object
66741
- */
66742
- 'id': string;
66743
- 'attributes'?: JsonApiLlmProviderOutAttributes;
66744
- }
66745
-
66746
- export declare interface JsonApiLlmProviderOutAttributes {
66777
+ export declare interface JsonApiLlmProviderInAttributes {
66747
66778
  'name'?: string | null;
66748
66779
  /**
66749
66780
  * Description of the LLM Provider.
@@ -66753,17 +66784,17 @@ export declare interface JsonApiLlmProviderOutAttributes {
66753
66784
  * Required ID of the default model to use from the models list.
66754
66785
  */
66755
66786
  'defaultModelId'?: string | null;
66756
- 'providerConfig'?: JsonApiLlmProviderOutAttributesProviderConfig | null;
66787
+ 'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
66757
66788
  /**
66758
66789
  * List of LLM models available for this provider.
66759
66790
  */
66760
- 'models'?: Array<JsonApiLlmProviderOutAttributesModelsInner> | null;
66791
+ 'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
66761
66792
  }
66762
66793
 
66763
66794
  /**
66764
66795
  * LLM Model configuration (id, family) within a provider.
66765
66796
  */
66766
- export declare interface JsonApiLlmProviderOutAttributesModelsInner {
66797
+ export declare interface JsonApiLlmProviderInAttributesModelsInner {
66767
66798
  /**
66768
66799
  * Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
66769
66800
  */
@@ -66771,16 +66802,37 @@ export declare interface JsonApiLlmProviderOutAttributesModelsInner {
66771
66802
  /**
66772
66803
  * Family of LLM models.
66773
66804
  */
66774
- 'family': JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum;
66805
+ 'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
66775
66806
  }
66776
66807
 
66777
- export declare type JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
66808
+ export declare type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
66778
66809
 
66779
66810
  /**
66780
- * @type JsonApiLlmProviderOutAttributesProviderConfig
66811
+ * @type JsonApiLlmProviderInAttributesProviderConfig
66781
66812
  * Provider-specific configuration including authentication.
66782
66813
  */
66783
- export declare type JsonApiLlmProviderOutAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
66814
+ export declare type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
66815
+
66816
+ export declare interface JsonApiLlmProviderInDocument {
66817
+ 'data': JsonApiLlmProviderIn;
66818
+ }
66819
+
66820
+ export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
66821
+
66822
+ /**
66823
+ * LLM Provider configuration for connecting to LLM services.
66824
+ */
66825
+ export declare interface JsonApiLlmProviderOut {
66826
+ /**
66827
+ * Object type
66828
+ */
66829
+ 'type': JsonApiLlmProviderOutTypeEnum;
66830
+ /**
66831
+ * API identifier of an object
66832
+ */
66833
+ 'id': string;
66834
+ 'attributes'?: JsonApiLlmProviderInAttributes;
66835
+ }
66784
66836
 
66785
66837
  export declare interface JsonApiLlmProviderOutDocument {
66786
66838
  'data': JsonApiLlmProviderOut;
@@ -66807,7 +66859,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
66807
66859
  * API identifier of an object
66808
66860
  */
66809
66861
  'id': string;
66810
- 'attributes'?: JsonApiLlmProviderOutAttributes;
66862
+ 'attributes'?: JsonApiLlmProviderInAttributes;
66811
66863
  'links'?: ObjectLinks;
66812
66864
  }
66813
66865
 
@@ -66825,7 +66877,7 @@ export declare interface JsonApiLlmProviderPatch {
66825
66877
  * API identifier of an object
66826
66878
  */
66827
66879
  'id': string;
66828
- 'attributes'?: JsonApiLlmProviderOutAttributes;
66880
+ 'attributes'?: JsonApiLlmProviderInAttributes;
66829
66881
  }
66830
66882
 
66831
66883
  export declare interface JsonApiLlmProviderPatchDocument {
@@ -67607,7 +67659,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF
67607
67659
  export declare interface JsonApiOrganizationOutRelationships {
67608
67660
  'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
67609
67661
  'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
67610
- 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
67662
+ 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
67611
67663
  }
67612
67664
 
67613
67665
  export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
@@ -67618,10 +67670,6 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
67618
67670
  'data': JsonApiUserGroupLinkage | null;
67619
67671
  }
67620
67672
 
67621
- export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
67622
- 'data': JsonApiIdentityProviderLinkage | null;
67623
- }
67624
-
67625
67673
  export declare type JsonApiOrganizationOutTypeEnum = 'organization';
67626
67674
 
67627
67675
  /**
@@ -67660,7 +67708,11 @@ export declare interface JsonApiOrganizationPatchDocument {
67660
67708
  }
67661
67709
 
67662
67710
  export declare interface JsonApiOrganizationPatchRelationships {
67663
- 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
67711
+ 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
67712
+ }
67713
+
67714
+ export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
67715
+ 'data': JsonApiIdentityProviderLinkage | null;
67664
67716
  }
67665
67717
 
67666
67718
  export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
@@ -67677,19 +67729,9 @@ export declare interface JsonApiOrganizationSettingIn {
67677
67729
  * API identifier of an object
67678
67730
  */
67679
67731
  'id': string;
67680
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
67732
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
67681
67733
  }
67682
67734
 
67683
- export declare interface JsonApiOrganizationSettingInAttributes {
67684
- /**
67685
- * Free-form JSON content. Maximum supported length is 15000 characters.
67686
- */
67687
- 'content'?: object;
67688
- 'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
67689
- }
67690
-
67691
- export declare type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
67692
-
67693
67735
  export declare interface JsonApiOrganizationSettingInDocument {
67694
67736
  'data': JsonApiOrganizationSettingIn;
67695
67737
  }
@@ -67708,9 +67750,19 @@ export declare interface JsonApiOrganizationSettingOut {
67708
67750
  * API identifier of an object
67709
67751
  */
67710
67752
  'id': string;
67711
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
67753
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
67712
67754
  }
67713
67755
 
67756
+ export declare interface JsonApiOrganizationSettingOutAttributes {
67757
+ /**
67758
+ * Free-form JSON content. Maximum supported length is 15000 characters.
67759
+ */
67760
+ 'content'?: object;
67761
+ 'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
67762
+ }
67763
+
67764
+ export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
67765
+
67714
67766
  export declare interface JsonApiOrganizationSettingOutDocument {
67715
67767
  'data': JsonApiOrganizationSettingOut;
67716
67768
  'links'?: ObjectLinks;
@@ -67736,7 +67788,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
67736
67788
  * API identifier of an object
67737
67789
  */
67738
67790
  'id': string;
67739
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
67791
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
67740
67792
  'links'?: ObjectLinks;
67741
67793
  }
67742
67794
 
@@ -67754,7 +67806,7 @@ export declare interface JsonApiOrganizationSettingPatch {
67754
67806
  * API identifier of an object
67755
67807
  */
67756
67808
  'id': string;
67757
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
67809
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
67758
67810
  }
67759
67811
 
67760
67812
  export declare interface JsonApiOrganizationSettingPatchDocument {
@@ -68495,7 +68547,7 @@ export declare interface JsonApiUserSettingIn {
68495
68547
  * API identifier of an object
68496
68548
  */
68497
68549
  'id': string;
68498
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
68550
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
68499
68551
  }
68500
68552
 
68501
68553
  export declare interface JsonApiUserSettingInDocument {
@@ -68516,7 +68568,7 @@ export declare interface JsonApiUserSettingOut {
68516
68568
  * API identifier of an object
68517
68569
  */
68518
68570
  'id': string;
68519
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
68571
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
68520
68572
  }
68521
68573
 
68522
68574
  export declare interface JsonApiUserSettingOutDocument {
@@ -68544,7 +68596,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
68544
68596
  * API identifier of an object
68545
68597
  */
68546
68598
  'id': string;
68547
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
68599
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
68548
68600
  'links'?: ObjectLinks;
68549
68601
  }
68550
68602
 
@@ -69419,7 +69471,7 @@ export declare interface JsonApiWorkspaceSettingIn {
69419
69471
  * API identifier of an object
69420
69472
  */
69421
69473
  'id': string;
69422
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
69474
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
69423
69475
  }
69424
69476
 
69425
69477
  export declare interface JsonApiWorkspaceSettingInDocument {
@@ -69441,7 +69493,7 @@ export declare interface JsonApiWorkspaceSettingOut {
69441
69493
  */
69442
69494
  'id': string;
69443
69495
  'meta'?: JsonApiExportDefinitionOutMeta;
69444
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
69496
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
69445
69497
  }
69446
69498
 
69447
69499
  export declare interface JsonApiWorkspaceSettingOutDocument {
@@ -69470,7 +69522,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
69470
69522
  */
69471
69523
  'id': string;
69472
69524
  'meta'?: JsonApiExportDefinitionOutMeta;
69473
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
69525
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
69474
69526
  'links'?: ObjectLinks;
69475
69527
  }
69476
69528
 
@@ -69488,7 +69540,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
69488
69540
  * API identifier of an object
69489
69541
  */
69490
69542
  'id': string;
69491
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
69543
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
69492
69544
  }
69493
69545
 
69494
69546
  export declare interface JsonApiWorkspaceSettingPatchDocument {
@@ -69509,7 +69561,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
69509
69561
  * API identifier of an object
69510
69562
  */
69511
69563
  'id'?: string;
69512
- 'attributes'?: JsonApiOrganizationSettingInAttributes;
69564
+ 'attributes'?: JsonApiOrganizationSettingOutAttributes;
69513
69565
  }
69514
69566
 
69515
69567
  export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -70379,6 +70431,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70379
70431
  * @memberof KnowledgeAi
70380
70432
  */
70381
70433
  createDocument(requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
70434
+ /**
70435
+ * Upload a new org-scoped knowledge document.
70436
+ * @summary Upload Document Org
70437
+ * @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
70438
+ * @param {*} [options] Override http request option.
70439
+ * @throws {RequiredError}
70440
+ * @memberof KnowledgeAi
70441
+ */
70442
+ createOrgDocument(requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
70382
70443
  /**
70383
70444
  * Delete a knowledge document and all its chunks.
70384
70445
  * @summary Delete Document
@@ -70388,6 +70449,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70388
70449
  * @memberof KnowledgeAi
70389
70450
  */
70390
70451
  deleteDocument(requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
70452
+ /**
70453
+ * Delete an org-scoped knowledge document and all its chunks.
70454
+ * @summary Delete Document Org
70455
+ * @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
70456
+ * @param {*} [options] Override http request option.
70457
+ * @throws {RequiredError}
70458
+ * @memberof KnowledgeAi
70459
+ */
70460
+ deleteOrgDocument(requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
70391
70461
  /**
70392
70462
  * Download a knowledge document\'s raw file.
70393
70463
  * @summary Download Document
@@ -70397,6 +70467,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70397
70467
  * @memberof KnowledgeAi
70398
70468
  */
70399
70469
  downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
70470
+ /**
70471
+ * Download an org-scoped knowledge document\'s raw file.
70472
+ * @summary Download Document Org
70473
+ * @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
70474
+ * @param {*} [options] Override http request option.
70475
+ * @throws {RequiredError}
70476
+ * @memberof KnowledgeAi
70477
+ */
70478
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
70400
70479
  /**
70401
70480
  * Get a single knowledge document\'s metadata.
70402
70481
  * @summary Get Document
@@ -70406,6 +70485,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70406
70485
  * @memberof KnowledgeAi
70407
70486
  */
70408
70487
  getDocument(requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
70488
+ /**
70489
+ * Get a single org-scoped knowledge document\'s metadata.
70490
+ * @summary Get Document Org
70491
+ * @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
70492
+ * @param {*} [options] Override http request option.
70493
+ * @throws {RequiredError}
70494
+ * @memberof KnowledgeAi
70495
+ */
70496
+ getOrgDocument(requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
70409
70497
  /**
70410
70498
  * List knowledge documents accessible from the workspace.
70411
70499
  * @summary List Documents
@@ -70415,6 +70503,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70415
70503
  * @memberof KnowledgeAi
70416
70504
  */
70417
70505
  listDocuments(requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
70506
+ /**
70507
+ * List org-scoped knowledge documents.
70508
+ * @summary List Documents Org
70509
+ * @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
70510
+ * @param {*} [options] Override http request option.
70511
+ * @throws {RequiredError}
70512
+ * @memberof KnowledgeAi
70513
+ */
70514
+ listOrgDocuments(requestParameters?: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
70418
70515
  /**
70419
70516
  * Patch a knowledge document\'s metadata without re-uploading content.
70420
70517
  * @summary Patch Document
@@ -70424,6 +70521,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70424
70521
  * @memberof KnowledgeAi
70425
70522
  */
70426
70523
  patchDocument(requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
70524
+ /**
70525
+ * Patch an org-scoped knowledge document\'s metadata.
70526
+ * @summary Patch Document Org
70527
+ * @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
70528
+ * @param {*} [options] Override http request option.
70529
+ * @throws {RequiredError}
70530
+ * @memberof KnowledgeAi
70531
+ */
70532
+ patchOrgDocument(requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
70427
70533
  /**
70428
70534
  * Search the knowledge base using semantic similarity.
70429
70535
  * @summary Search Documents
@@ -70433,6 +70539,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70433
70539
  * @memberof KnowledgeAi
70434
70540
  */
70435
70541
  searchKnowledge(requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
70542
+ /**
70543
+ * Search org-scoped knowledge documents using semantic similarity.
70544
+ * @summary Search Documents Org
70545
+ * @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
70546
+ * @param {*} [options] Override http request option.
70547
+ * @throws {RequiredError}
70548
+ * @memberof KnowledgeAi
70549
+ */
70550
+ searchOrgKnowledge(requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
70436
70551
  /**
70437
70552
  * Upload or replace a knowledge document.
70438
70553
  * @summary Upsert Document
@@ -70442,6 +70557,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
70442
70557
  * @memberof KnowledgeAi
70443
70558
  */
70444
70559
  upsertDocument(requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
70560
+ /**
70561
+ * Upload or replace an org-scoped knowledge document.
70562
+ * @summary Upsert Document Org
70563
+ * @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
70564
+ * @param {*} [options] Override http request option.
70565
+ * @throws {RequiredError}
70566
+ * @memberof KnowledgeAi
70567
+ */
70568
+ upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
70445
70569
  }
70446
70570
 
70447
70571
  /**
@@ -70458,6 +70582,18 @@ declare function KnowledgeAi_CreateDocument(axios: AxiosInstance, basePath: stri
70458
70582
  export { KnowledgeAi_CreateDocument as GenAiApi_CreateKnowledgeDocument }
70459
70583
  export { KnowledgeAi_CreateDocument }
70460
70584
 
70585
+ /**
70586
+ * Upload a new org-scoped knowledge document.
70587
+ * @summary Upload Document Org
70588
+ * @param {AxiosInstance} axios Axios instance.
70589
+ * @param {string} basePath Base path.
70590
+ * @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
70591
+ * @param {*} [options] Override http request option.
70592
+ * @param {Configuration} [configuration] Optional configuration.
70593
+ * @throws {RequiredError}
70594
+ */
70595
+ export declare function KnowledgeAi_CreateOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiUploadDocumentResponse>;
70596
+
70461
70597
  /**
70462
70598
  * Delete a knowledge document and all its chunks.
70463
70599
  * @summary Delete Document
@@ -70472,6 +70608,18 @@ declare function KnowledgeAi_DeleteDocument(axios: AxiosInstance, basePath: stri
70472
70608
  export { KnowledgeAi_DeleteDocument as GenAiApi_DeleteKnowledgeDocument }
70473
70609
  export { KnowledgeAi_DeleteDocument }
70474
70610
 
70611
+ /**
70612
+ * Delete an org-scoped knowledge document and all its chunks.
70613
+ * @summary Delete Document Org
70614
+ * @param {AxiosInstance} axios Axios instance.
70615
+ * @param {string} basePath Base path.
70616
+ * @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
70617
+ * @param {*} [options] Override http request option.
70618
+ * @param {Configuration} [configuration] Optional configuration.
70619
+ * @throws {RequiredError}
70620
+ */
70621
+ export declare function KnowledgeAi_DeleteOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiDeleteDocumentResponse>;
70622
+
70475
70623
  /**
70476
70624
  * Download a knowledge document\'s raw file.
70477
70625
  * @summary Download Document
@@ -70484,6 +70632,18 @@ export { KnowledgeAi_DeleteDocument }
70484
70632
  */
70485
70633
  export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<any>;
70486
70634
 
70635
+ /**
70636
+ * Download an org-scoped knowledge document\'s raw file.
70637
+ * @summary Download Document Org
70638
+ * @param {AxiosInstance} axios Axios instance.
70639
+ * @param {string} basePath Base path.
70640
+ * @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
70641
+ * @param {*} [options] Override http request option.
70642
+ * @param {Configuration} [configuration] Optional configuration.
70643
+ * @throws {RequiredError}
70644
+ */
70645
+ export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<any>;
70646
+
70487
70647
  /**
70488
70648
  * Get a single knowledge document\'s metadata.
70489
70649
  * @summary Get Document
@@ -70498,6 +70658,18 @@ declare function KnowledgeAi_GetDocument(axios: AxiosInstance, basePath: string,
70498
70658
  export { KnowledgeAi_GetDocument as GenAiApi_GetKnowledgeDocument }
70499
70659
  export { KnowledgeAi_GetDocument }
70500
70660
 
70661
+ /**
70662
+ * Get a single org-scoped knowledge document\'s metadata.
70663
+ * @summary Get Document Org
70664
+ * @param {AxiosInstance} axios Axios instance.
70665
+ * @param {string} basePath Base path.
70666
+ * @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
70667
+ * @param {*} [options] Override http request option.
70668
+ * @param {Configuration} [configuration] Optional configuration.
70669
+ * @throws {RequiredError}
70670
+ */
70671
+ export declare function KnowledgeAi_GetOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiDocumentMetadataResponse>;
70672
+
70501
70673
  /**
70502
70674
  * List knowledge documents accessible from the workspace.
70503
70675
  * @summary List Documents
@@ -70512,6 +70684,18 @@ declare function KnowledgeAi_ListDocuments(axios: AxiosInstance, basePath: strin
70512
70684
  export { KnowledgeAi_ListDocuments as GenAiApi_ListKnowledgeDocuments }
70513
70685
  export { KnowledgeAi_ListDocuments }
70514
70686
 
70687
+ /**
70688
+ * List org-scoped knowledge documents.
70689
+ * @summary List Documents Org
70690
+ * @param {AxiosInstance} axios Axios instance.
70691
+ * @param {string} basePath Base path.
70692
+ * @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
70693
+ * @param {*} [options] Override http request option.
70694
+ * @param {Configuration} [configuration] Optional configuration.
70695
+ * @throws {RequiredError}
70696
+ */
70697
+ export declare function KnowledgeAi_ListOrgDocuments(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiListDocumentsResponse>;
70698
+
70515
70699
  /**
70516
70700
  * Patch a knowledge document\'s metadata without re-uploading content.
70517
70701
  * @summary Patch Document
@@ -70526,6 +70710,18 @@ declare function KnowledgeAi_PatchDocument(axios: AxiosInstance, basePath: strin
70526
70710
  export { KnowledgeAi_PatchDocument as GenAiApi_PatchKnowledgeDocument }
70527
70711
  export { KnowledgeAi_PatchDocument }
70528
70712
 
70713
+ /**
70714
+ * Patch an org-scoped knowledge document\'s metadata.
70715
+ * @summary Patch Document Org
70716
+ * @param {AxiosInstance} axios Axios instance.
70717
+ * @param {string} basePath Base path.
70718
+ * @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
70719
+ * @param {*} [options] Override http request option.
70720
+ * @param {Configuration} [configuration] Optional configuration.
70721
+ * @throws {RequiredError}
70722
+ */
70723
+ export declare function KnowledgeAi_PatchOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiDocumentMetadataResponse>;
70724
+
70529
70725
  /**
70530
70726
  * Search the knowledge base using semantic similarity.
70531
70727
  * @summary Search Documents
@@ -70540,6 +70736,18 @@ declare function KnowledgeAi_SearchKnowledge(axios: AxiosInstance, basePath: str
70540
70736
  export { KnowledgeAi_SearchKnowledge as GenAiApi_SearchKnowledge }
70541
70737
  export { KnowledgeAi_SearchKnowledge }
70542
70738
 
70739
+ /**
70740
+ * Search org-scoped knowledge documents using semantic similarity.
70741
+ * @summary Search Documents Org
70742
+ * @param {AxiosInstance} axios Axios instance.
70743
+ * @param {string} basePath Base path.
70744
+ * @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
70745
+ * @param {*} [options] Override http request option.
70746
+ * @param {Configuration} [configuration] Optional configuration.
70747
+ * @throws {RequiredError}
70748
+ */
70749
+ export declare function KnowledgeAi_SearchOrgKnowledge(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiSearchDocumentsResponse>;
70750
+
70543
70751
  /**
70544
70752
  * Upload or replace a knowledge document.
70545
70753
  * @summary Upsert Document
@@ -70554,6 +70762,18 @@ declare function KnowledgeAi_UpsertDocument(axios: AxiosInstance, basePath: stri
70554
70762
  export { KnowledgeAi_UpsertDocument as GenAiApi_UpsertKnowledgeDocument }
70555
70763
  export { KnowledgeAi_UpsertDocument }
70556
70764
 
70765
+ /**
70766
+ * Upload or replace an org-scoped knowledge document.
70767
+ * @summary Upsert Document Org
70768
+ * @param {AxiosInstance} axios Axios instance.
70769
+ * @param {string} basePath Base path.
70770
+ * @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
70771
+ * @param {*} [options] Override http request option.
70772
+ * @param {Configuration} [configuration] Optional configuration.
70773
+ * @throws {RequiredError}
70774
+ */
70775
+ export declare function KnowledgeAi_UpsertOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiUploadDocumentResponse>;
70776
+
70557
70777
  /**
70558
70778
  * Upload a new knowledge document. Returns 409 if filename already exists.
70559
70779
  * @summary Upload Document
@@ -70567,6 +70787,18 @@ export { KnowledgeAi_UpsertDocument }
70567
70787
  */
70568
70788
  export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId: string, file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70569
70789
 
70790
+ /**
70791
+ * Upload a new org-scoped knowledge document.
70792
+ * @summary Upload Document Org
70793
+ * @param {File} file
70794
+ * @param {string} [title]
70795
+ * @param {Array<string>} [scopes]
70796
+ * @param {*} [options] Override http request option.
70797
+ * @param {Configuration} [configuration] Optional configuration.
70798
+ * @throws {RequiredError}
70799
+ */
70800
+ export declare function KnowledgeAiAxiosParamCreator_CreateOrgDocument(file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70801
+
70570
70802
  /**
70571
70803
  * Delete a knowledge document and all its chunks.
70572
70804
  * @summary Delete Document
@@ -70578,6 +70810,16 @@ export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId:
70578
70810
  */
70579
70811
  export declare function KnowledgeAiAxiosParamCreator_DeleteDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70580
70812
 
70813
+ /**
70814
+ * Delete an org-scoped knowledge document and all its chunks.
70815
+ * @summary Delete Document Org
70816
+ * @param {string} documentId
70817
+ * @param {*} [options] Override http request option.
70818
+ * @param {Configuration} [configuration] Optional configuration.
70819
+ * @throws {RequiredError}
70820
+ */
70821
+ export declare function KnowledgeAiAxiosParamCreator_DeleteOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70822
+
70581
70823
  /**
70582
70824
  * Download a knowledge document\'s raw file.
70583
70825
  * @summary Download Document
@@ -70589,6 +70831,16 @@ export declare function KnowledgeAiAxiosParamCreator_DeleteDocument(workspaceId:
70589
70831
  */
70590
70832
  export declare function KnowledgeAiAxiosParamCreator_DownloadDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70591
70833
 
70834
+ /**
70835
+ * Download an org-scoped knowledge document\'s raw file.
70836
+ * @summary Download Document Org
70837
+ * @param {string} documentId
70838
+ * @param {*} [options] Override http request option.
70839
+ * @param {Configuration} [configuration] Optional configuration.
70840
+ * @throws {RequiredError}
70841
+ */
70842
+ export declare function KnowledgeAiAxiosParamCreator_DownloadOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70843
+
70592
70844
  /**
70593
70845
  * Get a single knowledge document\'s metadata.
70594
70846
  * @summary Get Document
@@ -70600,6 +70852,16 @@ export declare function KnowledgeAiAxiosParamCreator_DownloadDocument(workspaceI
70600
70852
  */
70601
70853
  export declare function KnowledgeAiAxiosParamCreator_GetDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70602
70854
 
70855
+ /**
70856
+ * Get a single org-scoped knowledge document\'s metadata.
70857
+ * @summary Get Document Org
70858
+ * @param {string} documentId
70859
+ * @param {*} [options] Override http request option.
70860
+ * @param {Configuration} [configuration] Optional configuration.
70861
+ * @throws {RequiredError}
70862
+ */
70863
+ export declare function KnowledgeAiAxiosParamCreator_GetOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70864
+
70603
70865
  /**
70604
70866
  * List knowledge documents accessible from the workspace.
70605
70867
  * @summary List Documents
@@ -70616,6 +70878,21 @@ export declare function KnowledgeAiAxiosParamCreator_GetDocument(workspaceId: st
70616
70878
  */
70617
70879
  export declare function KnowledgeAiAxiosParamCreator_ListDocuments(workspaceId: string, scopes?: Array<string>, size?: number, pageToken?: string, metaInclude?: string, state?: 'enabled' | 'disabled', query?: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70618
70880
 
70881
+ /**
70882
+ * List org-scoped knowledge documents.
70883
+ * @summary List Documents Org
70884
+ * @param {Array<string>} [scopes]
70885
+ * @param {number} [size]
70886
+ * @param {string} [pageToken]
70887
+ * @param {string} [metaInclude]
70888
+ * @param {'enabled' | 'disabled'} [state]
70889
+ * @param {string} [query]
70890
+ * @param {*} [options] Override http request option.
70891
+ * @param {Configuration} [configuration] Optional configuration.
70892
+ * @throws {RequiredError}
70893
+ */
70894
+ export declare function KnowledgeAiAxiosParamCreator_ListOrgDocuments(scopes?: Array<string>, size?: number, pageToken?: string, metaInclude?: string, state?: 'enabled' | 'disabled', query?: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70895
+
70619
70896
  /**
70620
70897
  * Patch a knowledge document\'s metadata without re-uploading content.
70621
70898
  * @summary Patch Document
@@ -70628,6 +70905,17 @@ export declare function KnowledgeAiAxiosParamCreator_ListDocuments(workspaceId:
70628
70905
  */
70629
70906
  export declare function KnowledgeAiAxiosParamCreator_PatchDocument(workspaceId: string, documentId: string, aiPatchDocumentRequest: AiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70630
70907
 
70908
+ /**
70909
+ * Patch an org-scoped knowledge document\'s metadata.
70910
+ * @summary Patch Document Org
70911
+ * @param {string} documentId
70912
+ * @param {AiPatchDocumentRequest} aiPatchDocumentRequest
70913
+ * @param {*} [options] Override http request option.
70914
+ * @param {Configuration} [configuration] Optional configuration.
70915
+ * @throws {RequiredError}
70916
+ */
70917
+ export declare function KnowledgeAiAxiosParamCreator_PatchOrgDocument(documentId: string, aiPatchDocumentRequest: AiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70918
+
70631
70919
  /**
70632
70920
  * Search the knowledge base using semantic similarity.
70633
70921
  * @summary Search Documents
@@ -70642,6 +70930,19 @@ export declare function KnowledgeAiAxiosParamCreator_PatchDocument(workspaceId:
70642
70930
  */
70643
70931
  export declare function KnowledgeAiAxiosParamCreator_SearchKnowledge(workspaceId: string, query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70644
70932
 
70933
+ /**
70934
+ * Search org-scoped knowledge documents using semantic similarity.
70935
+ * @summary Search Documents Org
70936
+ * @param {string} query
70937
+ * @param {number} [limit]
70938
+ * @param {number} [minScore]
70939
+ * @param {Array<string>} [scopes]
70940
+ * @param {*} [options] Override http request option.
70941
+ * @param {Configuration} [configuration] Optional configuration.
70942
+ * @throws {RequiredError}
70943
+ */
70944
+ export declare function KnowledgeAiAxiosParamCreator_SearchOrgKnowledge(query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70945
+
70645
70946
  /**
70646
70947
  * Upload or replace a knowledge document.
70647
70948
  * @summary Upsert Document
@@ -70655,6 +70956,18 @@ export declare function KnowledgeAiAxiosParamCreator_SearchKnowledge(workspaceId
70655
70956
  */
70656
70957
  export declare function KnowledgeAiAxiosParamCreator_UpsertDocument(workspaceId: string, file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70657
70958
 
70959
+ /**
70960
+ * Upload or replace an org-scoped knowledge document.
70961
+ * @summary Upsert Document Org
70962
+ * @param {File} file
70963
+ * @param {string} [title]
70964
+ * @param {Array<string>} [scopes]
70965
+ * @param {*} [options] Override http request option.
70966
+ * @param {Configuration} [configuration] Optional configuration.
70967
+ * @throws {RequiredError}
70968
+ */
70969
+ export declare function KnowledgeAiAxiosParamCreator_UpsertOrgDocument(file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
70970
+
70658
70971
  /**
70659
70972
  * Request parameters for createDocument operation in KnowledgeAi.
70660
70973
  * @export
@@ -70689,6 +71002,32 @@ declare interface KnowledgeAiCreateDocumentRequest {
70689
71002
  export { KnowledgeAiCreateDocumentRequest as GenAiApiCreateKnowledgeDocumentRequest }
70690
71003
  export { KnowledgeAiCreateDocumentRequest }
70691
71004
 
71005
+ /**
71006
+ * Request parameters for createOrgDocument operation in KnowledgeAi.
71007
+ * @export
71008
+ * @interface KnowledgeAiCreateOrgDocumentRequest
71009
+ */
71010
+ export declare interface KnowledgeAiCreateOrgDocumentRequest {
71011
+ /**
71012
+ *
71013
+ * @type {File}
71014
+ * @memberof KnowledgeAiCreateOrgDocument
71015
+ */
71016
+ readonly file: File;
71017
+ /**
71018
+ *
71019
+ * @type {string}
71020
+ * @memberof KnowledgeAiCreateOrgDocument
71021
+ */
71022
+ readonly title?: string;
71023
+ /**
71024
+ *
71025
+ * @type {Array<string>}
71026
+ * @memberof KnowledgeAiCreateOrgDocument
71027
+ */
71028
+ readonly scopes?: Array<string>;
71029
+ }
71030
+
70692
71031
  /**
70693
71032
  * Request parameters for deleteDocument operation in KnowledgeAi.
70694
71033
  * @export
@@ -70711,6 +71050,20 @@ declare interface KnowledgeAiDeleteDocumentRequest {
70711
71050
  export { KnowledgeAiDeleteDocumentRequest as GenAiApiDeleteKnowledgeDocumentRequest }
70712
71051
  export { KnowledgeAiDeleteDocumentRequest }
70713
71052
 
71053
+ /**
71054
+ * Request parameters for deleteOrgDocument operation in KnowledgeAi.
71055
+ * @export
71056
+ * @interface KnowledgeAiDeleteOrgDocumentRequest
71057
+ */
71058
+ export declare interface KnowledgeAiDeleteOrgDocumentRequest {
71059
+ /**
71060
+ *
71061
+ * @type {string}
71062
+ * @memberof KnowledgeAiDeleteOrgDocument
71063
+ */
71064
+ readonly documentId: string;
71065
+ }
71066
+
70714
71067
  /**
70715
71068
  * Request parameters for downloadDocument operation in KnowledgeAi.
70716
71069
  * @export
@@ -70731,6 +71084,20 @@ export declare interface KnowledgeAiDownloadDocumentRequest {
70731
71084
  readonly documentId: string;
70732
71085
  }
70733
71086
 
71087
+ /**
71088
+ * Request parameters for downloadOrgDocument operation in KnowledgeAi.
71089
+ * @export
71090
+ * @interface KnowledgeAiDownloadOrgDocumentRequest
71091
+ */
71092
+ export declare interface KnowledgeAiDownloadOrgDocumentRequest {
71093
+ /**
71094
+ *
71095
+ * @type {string}
71096
+ * @memberof KnowledgeAiDownloadOrgDocument
71097
+ */
71098
+ readonly documentId: string;
71099
+ }
71100
+
70734
71101
  /**
70735
71102
  * Request parameters for getDocument operation in KnowledgeAi.
70736
71103
  * @export
@@ -70753,6 +71120,20 @@ declare interface KnowledgeAiGetDocumentRequest {
70753
71120
  export { KnowledgeAiGetDocumentRequest as GenAiApiGetKnowledgeDocumentRequest }
70754
71121
  export { KnowledgeAiGetDocumentRequest }
70755
71122
 
71123
+ /**
71124
+ * Request parameters for getOrgDocument operation in KnowledgeAi.
71125
+ * @export
71126
+ * @interface KnowledgeAiGetOrgDocumentRequest
71127
+ */
71128
+ export declare interface KnowledgeAiGetOrgDocumentRequest {
71129
+ /**
71130
+ *
71131
+ * @type {string}
71132
+ * @memberof KnowledgeAiGetOrgDocument
71133
+ */
71134
+ readonly documentId: string;
71135
+ }
71136
+
70756
71137
  /**
70757
71138
  * KnowledgeAi - interface
70758
71139
  * @export
@@ -70768,6 +71149,15 @@ export declare interface KnowledgeAiInterface {
70768
71149
  * @memberof KnowledgeAiInterface
70769
71150
  */
70770
71151
  createDocument(requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
71152
+ /**
71153
+ * Upload a new org-scoped knowledge document.
71154
+ * @summary Upload Document Org
71155
+ * @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
71156
+ * @param {*} [options] Override http request option.
71157
+ * @throws {RequiredError}
71158
+ * @memberof KnowledgeAiInterface
71159
+ */
71160
+ createOrgDocument(requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
70771
71161
  /**
70772
71162
  * Delete a knowledge document and all its chunks.
70773
71163
  * @summary Delete Document
@@ -70777,6 +71167,15 @@ export declare interface KnowledgeAiInterface {
70777
71167
  * @memberof KnowledgeAiInterface
70778
71168
  */
70779
71169
  deleteDocument(requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
71170
+ /**
71171
+ * Delete an org-scoped knowledge document and all its chunks.
71172
+ * @summary Delete Document Org
71173
+ * @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
71174
+ * @param {*} [options] Override http request option.
71175
+ * @throws {RequiredError}
71176
+ * @memberof KnowledgeAiInterface
71177
+ */
71178
+ deleteOrgDocument(requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
70780
71179
  /**
70781
71180
  * Download a knowledge document\'s raw file.
70782
71181
  * @summary Download Document
@@ -70786,6 +71185,15 @@ export declare interface KnowledgeAiInterface {
70786
71185
  * @memberof KnowledgeAiInterface
70787
71186
  */
70788
71187
  downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
71188
+ /**
71189
+ * Download an org-scoped knowledge document\'s raw file.
71190
+ * @summary Download Document Org
71191
+ * @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
71192
+ * @param {*} [options] Override http request option.
71193
+ * @throws {RequiredError}
71194
+ * @memberof KnowledgeAiInterface
71195
+ */
71196
+ downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
70789
71197
  /**
70790
71198
  * Get a single knowledge document\'s metadata.
70791
71199
  * @summary Get Document
@@ -70795,6 +71203,15 @@ export declare interface KnowledgeAiInterface {
70795
71203
  * @memberof KnowledgeAiInterface
70796
71204
  */
70797
71205
  getDocument(requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
71206
+ /**
71207
+ * Get a single org-scoped knowledge document\'s metadata.
71208
+ * @summary Get Document Org
71209
+ * @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
71210
+ * @param {*} [options] Override http request option.
71211
+ * @throws {RequiredError}
71212
+ * @memberof KnowledgeAiInterface
71213
+ */
71214
+ getOrgDocument(requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
70798
71215
  /**
70799
71216
  * List knowledge documents accessible from the workspace.
70800
71217
  * @summary List Documents
@@ -70804,6 +71221,15 @@ export declare interface KnowledgeAiInterface {
70804
71221
  * @memberof KnowledgeAiInterface
70805
71222
  */
70806
71223
  listDocuments(requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
71224
+ /**
71225
+ * List org-scoped knowledge documents.
71226
+ * @summary List Documents Org
71227
+ * @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
71228
+ * @param {*} [options] Override http request option.
71229
+ * @throws {RequiredError}
71230
+ * @memberof KnowledgeAiInterface
71231
+ */
71232
+ listOrgDocuments(requestParameters: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
70807
71233
  /**
70808
71234
  * Patch a knowledge document\'s metadata without re-uploading content.
70809
71235
  * @summary Patch Document
@@ -70813,6 +71239,15 @@ export declare interface KnowledgeAiInterface {
70813
71239
  * @memberof KnowledgeAiInterface
70814
71240
  */
70815
71241
  patchDocument(requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
71242
+ /**
71243
+ * Patch an org-scoped knowledge document\'s metadata.
71244
+ * @summary Patch Document Org
71245
+ * @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
71246
+ * @param {*} [options] Override http request option.
71247
+ * @throws {RequiredError}
71248
+ * @memberof KnowledgeAiInterface
71249
+ */
71250
+ patchOrgDocument(requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
70816
71251
  /**
70817
71252
  * Search the knowledge base using semantic similarity.
70818
71253
  * @summary Search Documents
@@ -70822,6 +71257,15 @@ export declare interface KnowledgeAiInterface {
70822
71257
  * @memberof KnowledgeAiInterface
70823
71258
  */
70824
71259
  searchKnowledge(requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
71260
+ /**
71261
+ * Search org-scoped knowledge documents using semantic similarity.
71262
+ * @summary Search Documents Org
71263
+ * @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
71264
+ * @param {*} [options] Override http request option.
71265
+ * @throws {RequiredError}
71266
+ * @memberof KnowledgeAiInterface
71267
+ */
71268
+ searchOrgKnowledge(requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
70825
71269
  /**
70826
71270
  * Upload or replace a knowledge document.
70827
71271
  * @summary Upsert Document
@@ -70831,6 +71275,15 @@ export declare interface KnowledgeAiInterface {
70831
71275
  * @memberof KnowledgeAiInterface
70832
71276
  */
70833
71277
  upsertDocument(requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
71278
+ /**
71279
+ * Upload or replace an org-scoped knowledge document.
71280
+ * @summary Upsert Document Org
71281
+ * @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
71282
+ * @param {*} [options] Override http request option.
71283
+ * @throws {RequiredError}
71284
+ * @memberof KnowledgeAiInterface
71285
+ */
71286
+ upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
70834
71287
  }
70835
71288
 
70836
71289
  /**
@@ -70885,6 +71338,50 @@ declare interface KnowledgeAiListDocumentsRequest {
70885
71338
  export { KnowledgeAiListDocumentsRequest as GenAiApiListKnowledgeDocumentsRequest }
70886
71339
  export { KnowledgeAiListDocumentsRequest }
70887
71340
 
71341
+ /**
71342
+ * Request parameters for listOrgDocuments operation in KnowledgeAi.
71343
+ * @export
71344
+ * @interface KnowledgeAiListOrgDocumentsRequest
71345
+ */
71346
+ export declare interface KnowledgeAiListOrgDocumentsRequest {
71347
+ /**
71348
+ *
71349
+ * @type {Array<string>}
71350
+ * @memberof KnowledgeAiListOrgDocuments
71351
+ */
71352
+ readonly scopes?: Array<string>;
71353
+ /**
71354
+ *
71355
+ * @type {number}
71356
+ * @memberof KnowledgeAiListOrgDocuments
71357
+ */
71358
+ readonly size?: number;
71359
+ /**
71360
+ *
71361
+ * @type {string}
71362
+ * @memberof KnowledgeAiListOrgDocuments
71363
+ */
71364
+ readonly pageToken?: string;
71365
+ /**
71366
+ *
71367
+ * @type {string}
71368
+ * @memberof KnowledgeAiListOrgDocuments
71369
+ */
71370
+ readonly metaInclude?: string;
71371
+ /**
71372
+ *
71373
+ * @type {'enabled' | 'disabled'}
71374
+ * @memberof KnowledgeAiListOrgDocuments
71375
+ */
71376
+ readonly state?: 'enabled' | 'disabled';
71377
+ /**
71378
+ *
71379
+ * @type {string}
71380
+ * @memberof KnowledgeAiListOrgDocuments
71381
+ */
71382
+ readonly query?: string;
71383
+ }
71384
+
70888
71385
  /**
70889
71386
  * Request parameters for patchDocument operation in KnowledgeAi.
70890
71387
  * @export
@@ -70913,6 +71410,26 @@ declare interface KnowledgeAiPatchDocumentRequest {
70913
71410
  export { KnowledgeAiPatchDocumentRequest as GenAiApiPatchKnowledgeDocumentRequest }
70914
71411
  export { KnowledgeAiPatchDocumentRequest }
70915
71412
 
71413
+ /**
71414
+ * Request parameters for patchOrgDocument operation in KnowledgeAi.
71415
+ * @export
71416
+ * @interface KnowledgeAiPatchOrgDocumentRequest
71417
+ */
71418
+ export declare interface KnowledgeAiPatchOrgDocumentRequest {
71419
+ /**
71420
+ *
71421
+ * @type {string}
71422
+ * @memberof KnowledgeAiPatchOrgDocument
71423
+ */
71424
+ readonly documentId: string;
71425
+ /**
71426
+ *
71427
+ * @type {AiPatchDocumentRequest}
71428
+ * @memberof KnowledgeAiPatchOrgDocument
71429
+ */
71430
+ readonly aiPatchDocumentRequest: AiPatchDocumentRequest;
71431
+ }
71432
+
70916
71433
  /**
70917
71434
  * Request parameters for searchKnowledge operation in KnowledgeAi.
70918
71435
  * @export
@@ -70953,6 +71470,38 @@ declare interface KnowledgeAiSearchKnowledgeRequest {
70953
71470
  export { KnowledgeAiSearchKnowledgeRequest as GenAiApiSearchKnowledgeRequest }
70954
71471
  export { KnowledgeAiSearchKnowledgeRequest }
70955
71472
 
71473
+ /**
71474
+ * Request parameters for searchOrgKnowledge operation in KnowledgeAi.
71475
+ * @export
71476
+ * @interface KnowledgeAiSearchOrgKnowledgeRequest
71477
+ */
71478
+ export declare interface KnowledgeAiSearchOrgKnowledgeRequest {
71479
+ /**
71480
+ *
71481
+ * @type {string}
71482
+ * @memberof KnowledgeAiSearchOrgKnowledge
71483
+ */
71484
+ readonly query: string;
71485
+ /**
71486
+ *
71487
+ * @type {number}
71488
+ * @memberof KnowledgeAiSearchOrgKnowledge
71489
+ */
71490
+ readonly limit?: number;
71491
+ /**
71492
+ *
71493
+ * @type {number}
71494
+ * @memberof KnowledgeAiSearchOrgKnowledge
71495
+ */
71496
+ readonly minScore?: number;
71497
+ /**
71498
+ *
71499
+ * @type {Array<string>}
71500
+ * @memberof KnowledgeAiSearchOrgKnowledge
71501
+ */
71502
+ readonly scopes?: Array<string>;
71503
+ }
71504
+
70956
71505
  /**
70957
71506
  * Request parameters for upsertDocument operation in KnowledgeAi.
70958
71507
  * @export
@@ -70987,6 +71536,32 @@ declare interface KnowledgeAiUpsertDocumentRequest {
70987
71536
  export { KnowledgeAiUpsertDocumentRequest as GenAiApiUpsertKnowledgeDocumentRequest }
70988
71537
  export { KnowledgeAiUpsertDocumentRequest }
70989
71538
 
71539
+ /**
71540
+ * Request parameters for upsertOrgDocument operation in KnowledgeAi.
71541
+ * @export
71542
+ * @interface KnowledgeAiUpsertOrgDocumentRequest
71543
+ */
71544
+ export declare interface KnowledgeAiUpsertOrgDocumentRequest {
71545
+ /**
71546
+ *
71547
+ * @type {File}
71548
+ * @memberof KnowledgeAiUpsertOrgDocument
71549
+ */
71550
+ readonly file: File;
71551
+ /**
71552
+ *
71553
+ * @type {string}
71554
+ * @memberof KnowledgeAiUpsertOrgDocument
71555
+ */
71556
+ readonly title?: string;
71557
+ /**
71558
+ *
71559
+ * @type {Array<string>}
71560
+ * @memberof KnowledgeAiUpsertOrgDocument
71561
+ */
71562
+ readonly scopes?: Array<string>;
71563
+ }
71564
+
70990
71565
  /**
70991
71566
  * KnowledgeRecommendationControllerApi - object-oriented interface
70992
71567
  * @export