@gooddata/api-client-tiger 11.32.0-alpha.0 → 11.32.0-alpha.1
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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +697 -136
- package/esm/gd-tiger-model/TigerTypes.d.ts +8 -0
- package/esm/gd-tiger-model/TigerTypes.d.ts.map +1 -1
- package/esm/gd-tiger-model/VisualizationObjectModelV2.d.ts +5 -1
- package/esm/gd-tiger-model/VisualizationObjectModelV2.d.ts.map +1 -1
- package/esm/gd-tiger-model/VisualizationObjectModelV2.js.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +500 -0
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +563 -0
- package/esm/generated/ai-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +142 -122
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -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 {
|
|
@@ -29629,12 +29630,18 @@ export declare interface DeclarativeDataSource {
|
|
|
29629
29630
|
* 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
29631
|
*/
|
|
29631
29632
|
'alternativeDataSourceId'?: string | null;
|
|
29633
|
+
/**
|
|
29634
|
+
* 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.
|
|
29635
|
+
*/
|
|
29636
|
+
'dateTimeSemantics'?: DeclarativeDataSourceDateTimeSemanticsEnum | null;
|
|
29632
29637
|
}
|
|
29633
29638
|
|
|
29634
29639
|
export declare type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
|
|
29635
29640
|
|
|
29636
29641
|
export declare type DeclarativeDataSourceCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
29637
29642
|
|
|
29643
|
+
export declare type DeclarativeDataSourceDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
29644
|
+
|
|
29638
29645
|
export declare interface DeclarativeDataSourcePermission {
|
|
29639
29646
|
/**
|
|
29640
29647
|
* Permission name.
|
|
@@ -62184,6 +62191,15 @@ export declare interface ITigerInsightLayerDefinition {
|
|
|
62184
62191
|
properties?: ITigerVisualizationProperties;
|
|
62185
62192
|
}
|
|
62186
62193
|
|
|
62194
|
+
/**
|
|
62195
|
+
* Tiger-specific insight parameter value (stored form).
|
|
62196
|
+
* @alpha
|
|
62197
|
+
*/
|
|
62198
|
+
export declare interface ITigerInsightParameterValue {
|
|
62199
|
+
ref: ObjRef;
|
|
62200
|
+
value: number;
|
|
62201
|
+
}
|
|
62202
|
+
|
|
62187
62203
|
/**
|
|
62188
62204
|
* Tiger-specific insight widget
|
|
62189
62205
|
* @public
|
|
@@ -62524,6 +62540,10 @@ declare interface IVisualizationObject_2 {
|
|
|
62524
62540
|
sorts: ITigerSortItem[];
|
|
62525
62541
|
properties: ITigerVisualizationProperties;
|
|
62526
62542
|
layers?: ITigerInsightLayerDefinition[];
|
|
62543
|
+
/**
|
|
62544
|
+
* @alpha
|
|
62545
|
+
*/
|
|
62546
|
+
parameters?: ITigerInsightParameterValue[];
|
|
62527
62547
|
}
|
|
62528
62548
|
|
|
62529
62549
|
/**
|
|
@@ -63866,15 +63886,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
63866
63886
|
* API identifier of an object
|
|
63867
63887
|
*/
|
|
63868
63888
|
'id': string;
|
|
63869
|
-
'attributes'?:
|
|
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;
|
|
63889
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
63878
63890
|
}
|
|
63879
63891
|
|
|
63880
63892
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -63895,7 +63907,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
63895
63907
|
* API identifier of an object
|
|
63896
63908
|
*/
|
|
63897
63909
|
'id': string;
|
|
63898
|
-
'attributes'?:
|
|
63910
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
63899
63911
|
}
|
|
63900
63912
|
|
|
63901
63913
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -63917,7 +63929,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
63917
63929
|
* API identifier of an object
|
|
63918
63930
|
*/
|
|
63919
63931
|
'id': string;
|
|
63920
|
-
'attributes'?:
|
|
63932
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
63933
|
+
}
|
|
63934
|
+
|
|
63935
|
+
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
63936
|
+
'lastRotation'?: string;
|
|
63937
|
+
/**
|
|
63938
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
63939
|
+
*/
|
|
63940
|
+
'rotationInterval'?: string;
|
|
63921
63941
|
}
|
|
63922
63942
|
|
|
63923
63943
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -64034,7 +64054,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
64034
64054
|
* API identifier of an object
|
|
64035
64055
|
*/
|
|
64036
64056
|
'id': string;
|
|
64037
|
-
'attributes':
|
|
64057
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
64038
64058
|
}
|
|
64039
64059
|
|
|
64040
64060
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -64056,15 +64076,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
64056
64076
|
*/
|
|
64057
64077
|
'id': string;
|
|
64058
64078
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
64059
|
-
'attributes':
|
|
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;
|
|
64079
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
64068
64080
|
}
|
|
64069
64081
|
|
|
64070
64082
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -64093,7 +64105,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
64093
64105
|
*/
|
|
64094
64106
|
'id': string;
|
|
64095
64107
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
64096
|
-
'attributes':
|
|
64108
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
64097
64109
|
'links'?: ObjectLinks;
|
|
64098
64110
|
}
|
|
64099
64111
|
|
|
@@ -64140,7 +64152,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
64140
64152
|
* API identifier of an object
|
|
64141
64153
|
*/
|
|
64142
64154
|
'id'?: string;
|
|
64143
|
-
'attributes':
|
|
64155
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
64156
|
+
}
|
|
64157
|
+
|
|
64158
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
64159
|
+
'applicationName': string;
|
|
64160
|
+
/**
|
|
64161
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
64162
|
+
*/
|
|
64163
|
+
'content': object;
|
|
64144
64164
|
}
|
|
64145
64165
|
|
|
64146
64166
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -64161,7 +64181,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
64161
64181
|
* API identifier of an object
|
|
64162
64182
|
*/
|
|
64163
64183
|
'id': string;
|
|
64164
|
-
'attributes'?:
|
|
64184
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
64185
|
+
}
|
|
64186
|
+
|
|
64187
|
+
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
64188
|
+
'name'?: string | null;
|
|
64189
|
+
'description'?: string | null;
|
|
64165
64190
|
}
|
|
64166
64191
|
|
|
64167
64192
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -64182,12 +64207,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
64182
64207
|
* API identifier of an object
|
|
64183
64208
|
*/
|
|
64184
64209
|
'id': string;
|
|
64185
|
-
'attributes'?:
|
|
64186
|
-
}
|
|
64187
|
-
|
|
64188
|
-
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
64189
|
-
'name'?: string | null;
|
|
64190
|
-
'description'?: string | null;
|
|
64210
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
64191
64211
|
}
|
|
64192
64212
|
|
|
64193
64213
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -64215,7 +64235,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
64215
64235
|
* API identifier of an object
|
|
64216
64236
|
*/
|
|
64217
64237
|
'id': string;
|
|
64218
|
-
'attributes'?:
|
|
64238
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
64219
64239
|
'links'?: ObjectLinks;
|
|
64220
64240
|
}
|
|
64221
64241
|
|
|
@@ -64233,7 +64253,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
64233
64253
|
* API identifier of an object
|
|
64234
64254
|
*/
|
|
64235
64255
|
'id': string;
|
|
64236
|
-
'attributes'?:
|
|
64256
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
64237
64257
|
}
|
|
64238
64258
|
|
|
64239
64259
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -64736,10 +64756,16 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
64736
64756
|
* 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
64757
|
*/
|
|
64738
64758
|
'alternativeDataSourceId'?: string | null;
|
|
64759
|
+
/**
|
|
64760
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this.
|
|
64761
|
+
*/
|
|
64762
|
+
'dateTimeSemantics'?: JsonApiDataSourceInAttributesDateTimeSemanticsEnum | null;
|
|
64739
64763
|
}
|
|
64740
64764
|
|
|
64741
64765
|
export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
64742
64766
|
|
|
64767
|
+
export declare type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
64768
|
+
|
|
64743
64769
|
export declare interface JsonApiDataSourceInAttributesParametersInner {
|
|
64744
64770
|
'name': string;
|
|
64745
64771
|
'value': string;
|
|
@@ -64814,12 +64840,18 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
64814
64840
|
* 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
64841
|
*/
|
|
64816
64842
|
'alternativeDataSourceId'?: string | null;
|
|
64843
|
+
/**
|
|
64844
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this.
|
|
64845
|
+
*/
|
|
64846
|
+
'dateTimeSemantics'?: JsonApiDataSourceOutAttributesDateTimeSemanticsEnum | null;
|
|
64817
64847
|
}
|
|
64818
64848
|
|
|
64819
64849
|
export declare type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'ACCESS_TOKEN';
|
|
64820
64850
|
|
|
64821
64851
|
export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
64822
64852
|
|
|
64853
|
+
export declare type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
64854
|
+
|
|
64823
64855
|
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
64856
|
|
|
64825
64857
|
export declare interface JsonApiDataSourceOutDocument {
|
|
@@ -64926,10 +64958,16 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
64926
64958
|
* 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
64959
|
*/
|
|
64928
64960
|
'alternativeDataSourceId'?: string | null;
|
|
64961
|
+
/**
|
|
64962
|
+
* Determines how datetime values are interpreted in data sources without native support for specifying this.
|
|
64963
|
+
*/
|
|
64964
|
+
'dateTimeSemantics'?: JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum | null;
|
|
64929
64965
|
}
|
|
64930
64966
|
|
|
64931
64967
|
export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
64932
64968
|
|
|
64969
|
+
export declare type JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
64970
|
+
|
|
64933
64971
|
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
64972
|
|
|
64935
64973
|
export declare interface JsonApiDataSourcePatchDocument {
|
|
@@ -65195,7 +65233,7 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
65195
65233
|
* API identifier of an object
|
|
65196
65234
|
*/
|
|
65197
65235
|
'id': string;
|
|
65198
|
-
'attributes':
|
|
65236
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
65199
65237
|
}
|
|
65200
65238
|
|
|
65201
65239
|
export declare interface JsonApiExportTemplateInDocument {
|
|
@@ -65216,47 +65254,9 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
65216
65254
|
* API identifier of an object
|
|
65217
65255
|
*/
|
|
65218
65256
|
'id': string;
|
|
65219
|
-
'attributes':
|
|
65220
|
-
}
|
|
65221
|
-
|
|
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;
|
|
65257
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
65229
65258
|
}
|
|
65230
65259
|
|
|
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
65260
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
65261
65261
|
'data': JsonApiExportTemplateOut;
|
|
65262
65262
|
'links'?: ObjectLinks;
|
|
@@ -65282,7 +65282,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
65282
65282
|
* API identifier of an object
|
|
65283
65283
|
*/
|
|
65284
65284
|
'id': string;
|
|
65285
|
-
'attributes':
|
|
65285
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
65286
65286
|
'links'?: ObjectLinks;
|
|
65287
65287
|
}
|
|
65288
65288
|
|
|
@@ -65308,8 +65308,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
65308
65308
|
* User-facing name of the Slides template.
|
|
65309
65309
|
*/
|
|
65310
65310
|
'name'?: string;
|
|
65311
|
-
'dashboardSlidesTemplate'?:
|
|
65312
|
-
'widgetSlidesTemplate'?:
|
|
65311
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
65312
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
65313
65313
|
}
|
|
65314
65314
|
|
|
65315
65315
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -65330,9 +65330,47 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
65330
65330
|
* API identifier of an object
|
|
65331
65331
|
*/
|
|
65332
65332
|
'id'?: string;
|
|
65333
|
-
'attributes':
|
|
65333
|
+
'attributes': JsonApiExportTemplatePostOptionalIdAttributes;
|
|
65334
|
+
}
|
|
65335
|
+
|
|
65336
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
65337
|
+
/**
|
|
65338
|
+
* User-facing name of the Slides template.
|
|
65339
|
+
*/
|
|
65340
|
+
'name': string;
|
|
65341
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
65342
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
65343
|
+
}
|
|
65344
|
+
|
|
65345
|
+
/**
|
|
65346
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
65347
|
+
*/
|
|
65348
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
65349
|
+
/**
|
|
65350
|
+
* Export types this template applies to.
|
|
65351
|
+
*/
|
|
65352
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
65353
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
65354
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
65355
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
65356
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
65334
65357
|
}
|
|
65335
65358
|
|
|
65359
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
65360
|
+
|
|
65361
|
+
/**
|
|
65362
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
65363
|
+
*/
|
|
65364
|
+
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
65365
|
+
/**
|
|
65366
|
+
* Export types this template applies to.
|
|
65367
|
+
*/
|
|
65368
|
+
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
65369
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
65370
|
+
}
|
|
65371
|
+
|
|
65372
|
+
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
65373
|
+
|
|
65336
65374
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
65337
65375
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
65338
65376
|
}
|
|
@@ -66719,31 +66757,10 @@ export declare interface JsonApiLlmProviderIn {
|
|
|
66719
66757
|
* API identifier of an object
|
|
66720
66758
|
*/
|
|
66721
66759
|
'id': string;
|
|
66722
|
-
'attributes'?:
|
|
66723
|
-
}
|
|
66724
|
-
|
|
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;
|
|
66760
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
66744
66761
|
}
|
|
66745
66762
|
|
|
66746
|
-
export declare interface
|
|
66763
|
+
export declare interface JsonApiLlmProviderInAttributes {
|
|
66747
66764
|
'name'?: string | null;
|
|
66748
66765
|
/**
|
|
66749
66766
|
* Description of the LLM Provider.
|
|
@@ -66753,17 +66770,17 @@ export declare interface JsonApiLlmProviderOutAttributes {
|
|
|
66753
66770
|
* Required ID of the default model to use from the models list.
|
|
66754
66771
|
*/
|
|
66755
66772
|
'defaultModelId'?: string | null;
|
|
66756
|
-
'providerConfig'?:
|
|
66773
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
66757
66774
|
/**
|
|
66758
66775
|
* List of LLM models available for this provider.
|
|
66759
66776
|
*/
|
|
66760
|
-
'models'?: Array<
|
|
66777
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
66761
66778
|
}
|
|
66762
66779
|
|
|
66763
66780
|
/**
|
|
66764
66781
|
* LLM Model configuration (id, family) within a provider.
|
|
66765
66782
|
*/
|
|
66766
|
-
export declare interface
|
|
66783
|
+
export declare interface JsonApiLlmProviderInAttributesModelsInner {
|
|
66767
66784
|
/**
|
|
66768
66785
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
66769
66786
|
*/
|
|
@@ -66771,16 +66788,37 @@ export declare interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
66771
66788
|
/**
|
|
66772
66789
|
* Family of LLM models.
|
|
66773
66790
|
*/
|
|
66774
|
-
'family':
|
|
66791
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
66775
66792
|
}
|
|
66776
66793
|
|
|
66777
|
-
export declare type
|
|
66794
|
+
export declare type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
66778
66795
|
|
|
66779
66796
|
/**
|
|
66780
|
-
* @type
|
|
66797
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
66781
66798
|
* Provider-specific configuration including authentication.
|
|
66782
66799
|
*/
|
|
66783
|
-
export declare type
|
|
66800
|
+
export declare type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
66801
|
+
|
|
66802
|
+
export declare interface JsonApiLlmProviderInDocument {
|
|
66803
|
+
'data': JsonApiLlmProviderIn;
|
|
66804
|
+
}
|
|
66805
|
+
|
|
66806
|
+
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
66807
|
+
|
|
66808
|
+
/**
|
|
66809
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
66810
|
+
*/
|
|
66811
|
+
export declare interface JsonApiLlmProviderOut {
|
|
66812
|
+
/**
|
|
66813
|
+
* Object type
|
|
66814
|
+
*/
|
|
66815
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
66816
|
+
/**
|
|
66817
|
+
* API identifier of an object
|
|
66818
|
+
*/
|
|
66819
|
+
'id': string;
|
|
66820
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
66821
|
+
}
|
|
66784
66822
|
|
|
66785
66823
|
export declare interface JsonApiLlmProviderOutDocument {
|
|
66786
66824
|
'data': JsonApiLlmProviderOut;
|
|
@@ -66807,7 +66845,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
|
|
|
66807
66845
|
* API identifier of an object
|
|
66808
66846
|
*/
|
|
66809
66847
|
'id': string;
|
|
66810
|
-
'attributes'?:
|
|
66848
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
66811
66849
|
'links'?: ObjectLinks;
|
|
66812
66850
|
}
|
|
66813
66851
|
|
|
@@ -66825,7 +66863,7 @@ export declare interface JsonApiLlmProviderPatch {
|
|
|
66825
66863
|
* API identifier of an object
|
|
66826
66864
|
*/
|
|
66827
66865
|
'id': string;
|
|
66828
|
-
'attributes'?:
|
|
66866
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
66829
66867
|
}
|
|
66830
66868
|
|
|
66831
66869
|
export declare interface JsonApiLlmProviderPatchDocument {
|
|
@@ -67607,7 +67645,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF
|
|
|
67607
67645
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
67608
67646
|
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
67609
67647
|
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
67610
|
-
'identityProvider'?:
|
|
67648
|
+
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
67611
67649
|
}
|
|
67612
67650
|
|
|
67613
67651
|
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
@@ -67618,10 +67656,6 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
|
67618
67656
|
'data': JsonApiUserGroupLinkage | null;
|
|
67619
67657
|
}
|
|
67620
67658
|
|
|
67621
|
-
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
67622
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
67623
|
-
}
|
|
67624
|
-
|
|
67625
67659
|
export declare type JsonApiOrganizationOutTypeEnum = 'organization';
|
|
67626
67660
|
|
|
67627
67661
|
/**
|
|
@@ -67660,7 +67694,11 @@ export declare interface JsonApiOrganizationPatchDocument {
|
|
|
67660
67694
|
}
|
|
67661
67695
|
|
|
67662
67696
|
export declare interface JsonApiOrganizationPatchRelationships {
|
|
67663
|
-
'identityProvider'?:
|
|
67697
|
+
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
67698
|
+
}
|
|
67699
|
+
|
|
67700
|
+
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
67701
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
67664
67702
|
}
|
|
67665
67703
|
|
|
67666
67704
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
@@ -67677,19 +67715,9 @@ export declare interface JsonApiOrganizationSettingIn {
|
|
|
67677
67715
|
* API identifier of an object
|
|
67678
67716
|
*/
|
|
67679
67717
|
'id': string;
|
|
67680
|
-
'attributes'?:
|
|
67681
|
-
}
|
|
67682
|
-
|
|
67683
|
-
export declare interface JsonApiOrganizationSettingInAttributes {
|
|
67684
|
-
/**
|
|
67685
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
67686
|
-
*/
|
|
67687
|
-
'content'?: object;
|
|
67688
|
-
'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
67718
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
67689
67719
|
}
|
|
67690
67720
|
|
|
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
67721
|
export declare interface JsonApiOrganizationSettingInDocument {
|
|
67694
67722
|
'data': JsonApiOrganizationSettingIn;
|
|
67695
67723
|
}
|
|
@@ -67708,9 +67736,19 @@ export declare interface JsonApiOrganizationSettingOut {
|
|
|
67708
67736
|
* API identifier of an object
|
|
67709
67737
|
*/
|
|
67710
67738
|
'id': string;
|
|
67711
|
-
'attributes'?:
|
|
67739
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
67712
67740
|
}
|
|
67713
67741
|
|
|
67742
|
+
export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
67743
|
+
/**
|
|
67744
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
67745
|
+
*/
|
|
67746
|
+
'content'?: object;
|
|
67747
|
+
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
67748
|
+
}
|
|
67749
|
+
|
|
67750
|
+
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';
|
|
67751
|
+
|
|
67714
67752
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
67715
67753
|
'data': JsonApiOrganizationSettingOut;
|
|
67716
67754
|
'links'?: ObjectLinks;
|
|
@@ -67736,7 +67774,7 @@ export declare interface JsonApiOrganizationSettingOutWithLinks {
|
|
|
67736
67774
|
* API identifier of an object
|
|
67737
67775
|
*/
|
|
67738
67776
|
'id': string;
|
|
67739
|
-
'attributes'?:
|
|
67777
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
67740
67778
|
'links'?: ObjectLinks;
|
|
67741
67779
|
}
|
|
67742
67780
|
|
|
@@ -67754,7 +67792,7 @@ export declare interface JsonApiOrganizationSettingPatch {
|
|
|
67754
67792
|
* API identifier of an object
|
|
67755
67793
|
*/
|
|
67756
67794
|
'id': string;
|
|
67757
|
-
'attributes'?:
|
|
67795
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
67758
67796
|
}
|
|
67759
67797
|
|
|
67760
67798
|
export declare interface JsonApiOrganizationSettingPatchDocument {
|
|
@@ -68495,7 +68533,7 @@ export declare interface JsonApiUserSettingIn {
|
|
|
68495
68533
|
* API identifier of an object
|
|
68496
68534
|
*/
|
|
68497
68535
|
'id': string;
|
|
68498
|
-
'attributes'?:
|
|
68536
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68499
68537
|
}
|
|
68500
68538
|
|
|
68501
68539
|
export declare interface JsonApiUserSettingInDocument {
|
|
@@ -68516,7 +68554,7 @@ export declare interface JsonApiUserSettingOut {
|
|
|
68516
68554
|
* API identifier of an object
|
|
68517
68555
|
*/
|
|
68518
68556
|
'id': string;
|
|
68519
|
-
'attributes'?:
|
|
68557
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68520
68558
|
}
|
|
68521
68559
|
|
|
68522
68560
|
export declare interface JsonApiUserSettingOutDocument {
|
|
@@ -68544,7 +68582,7 @@ export declare interface JsonApiUserSettingOutWithLinks {
|
|
|
68544
68582
|
* API identifier of an object
|
|
68545
68583
|
*/
|
|
68546
68584
|
'id': string;
|
|
68547
|
-
'attributes'?:
|
|
68585
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
68548
68586
|
'links'?: ObjectLinks;
|
|
68549
68587
|
}
|
|
68550
68588
|
|
|
@@ -69419,7 +69457,7 @@ export declare interface JsonApiWorkspaceSettingIn {
|
|
|
69419
69457
|
* API identifier of an object
|
|
69420
69458
|
*/
|
|
69421
69459
|
'id': string;
|
|
69422
|
-
'attributes'?:
|
|
69460
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69423
69461
|
}
|
|
69424
69462
|
|
|
69425
69463
|
export declare interface JsonApiWorkspaceSettingInDocument {
|
|
@@ -69441,7 +69479,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
69441
69479
|
*/
|
|
69442
69480
|
'id': string;
|
|
69443
69481
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
69444
|
-
'attributes'?:
|
|
69482
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69445
69483
|
}
|
|
69446
69484
|
|
|
69447
69485
|
export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
@@ -69470,7 +69508,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
69470
69508
|
*/
|
|
69471
69509
|
'id': string;
|
|
69472
69510
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
69473
|
-
'attributes'?:
|
|
69511
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69474
69512
|
'links'?: ObjectLinks;
|
|
69475
69513
|
}
|
|
69476
69514
|
|
|
@@ -69488,7 +69526,7 @@ export declare interface JsonApiWorkspaceSettingPatch {
|
|
|
69488
69526
|
* API identifier of an object
|
|
69489
69527
|
*/
|
|
69490
69528
|
'id': string;
|
|
69491
|
-
'attributes'?:
|
|
69529
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69492
69530
|
}
|
|
69493
69531
|
|
|
69494
69532
|
export declare interface JsonApiWorkspaceSettingPatchDocument {
|
|
@@ -69509,7 +69547,7 @@ export declare interface JsonApiWorkspaceSettingPostOptionalId {
|
|
|
69509
69547
|
* API identifier of an object
|
|
69510
69548
|
*/
|
|
69511
69549
|
'id'?: string;
|
|
69512
|
-
'attributes'?:
|
|
69550
|
+
'attributes'?: JsonApiOrganizationSettingOutAttributes;
|
|
69513
69551
|
}
|
|
69514
69552
|
|
|
69515
69553
|
export declare interface JsonApiWorkspaceSettingPostOptionalIdDocument {
|
|
@@ -70379,6 +70417,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70379
70417
|
* @memberof KnowledgeAi
|
|
70380
70418
|
*/
|
|
70381
70419
|
createDocument(requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
70420
|
+
/**
|
|
70421
|
+
* Upload a new org-scoped knowledge document.
|
|
70422
|
+
* @summary Upload Document Org
|
|
70423
|
+
* @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
|
|
70424
|
+
* @param {*} [options] Override http request option.
|
|
70425
|
+
* @throws {RequiredError}
|
|
70426
|
+
* @memberof KnowledgeAi
|
|
70427
|
+
*/
|
|
70428
|
+
createOrgDocument(requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
70382
70429
|
/**
|
|
70383
70430
|
* Delete a knowledge document and all its chunks.
|
|
70384
70431
|
* @summary Delete Document
|
|
@@ -70388,6 +70435,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70388
70435
|
* @memberof KnowledgeAi
|
|
70389
70436
|
*/
|
|
70390
70437
|
deleteDocument(requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
|
|
70438
|
+
/**
|
|
70439
|
+
* Delete an org-scoped knowledge document and all its chunks.
|
|
70440
|
+
* @summary Delete Document Org
|
|
70441
|
+
* @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
|
|
70442
|
+
* @param {*} [options] Override http request option.
|
|
70443
|
+
* @throws {RequiredError}
|
|
70444
|
+
* @memberof KnowledgeAi
|
|
70445
|
+
*/
|
|
70446
|
+
deleteOrgDocument(requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
|
|
70391
70447
|
/**
|
|
70392
70448
|
* Download a knowledge document\'s raw file.
|
|
70393
70449
|
* @summary Download Document
|
|
@@ -70397,6 +70453,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70397
70453
|
* @memberof KnowledgeAi
|
|
70398
70454
|
*/
|
|
70399
70455
|
downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
70456
|
+
/**
|
|
70457
|
+
* Download an org-scoped knowledge document\'s raw file.
|
|
70458
|
+
* @summary Download Document Org
|
|
70459
|
+
* @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
|
|
70460
|
+
* @param {*} [options] Override http request option.
|
|
70461
|
+
* @throws {RequiredError}
|
|
70462
|
+
* @memberof KnowledgeAi
|
|
70463
|
+
*/
|
|
70464
|
+
downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
70400
70465
|
/**
|
|
70401
70466
|
* Get a single knowledge document\'s metadata.
|
|
70402
70467
|
* @summary Get Document
|
|
@@ -70406,6 +70471,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70406
70471
|
* @memberof KnowledgeAi
|
|
70407
70472
|
*/
|
|
70408
70473
|
getDocument(requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70474
|
+
/**
|
|
70475
|
+
* Get a single org-scoped knowledge document\'s metadata.
|
|
70476
|
+
* @summary Get Document Org
|
|
70477
|
+
* @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
|
|
70478
|
+
* @param {*} [options] Override http request option.
|
|
70479
|
+
* @throws {RequiredError}
|
|
70480
|
+
* @memberof KnowledgeAi
|
|
70481
|
+
*/
|
|
70482
|
+
getOrgDocument(requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70409
70483
|
/**
|
|
70410
70484
|
* List knowledge documents accessible from the workspace.
|
|
70411
70485
|
* @summary List Documents
|
|
@@ -70415,6 +70489,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70415
70489
|
* @memberof KnowledgeAi
|
|
70416
70490
|
*/
|
|
70417
70491
|
listDocuments(requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
|
|
70492
|
+
/**
|
|
70493
|
+
* List org-scoped knowledge documents.
|
|
70494
|
+
* @summary List Documents Org
|
|
70495
|
+
* @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
|
|
70496
|
+
* @param {*} [options] Override http request option.
|
|
70497
|
+
* @throws {RequiredError}
|
|
70498
|
+
* @memberof KnowledgeAi
|
|
70499
|
+
*/
|
|
70500
|
+
listOrgDocuments(requestParameters?: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
|
|
70418
70501
|
/**
|
|
70419
70502
|
* Patch a knowledge document\'s metadata without re-uploading content.
|
|
70420
70503
|
* @summary Patch Document
|
|
@@ -70424,6 +70507,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70424
70507
|
* @memberof KnowledgeAi
|
|
70425
70508
|
*/
|
|
70426
70509
|
patchDocument(requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70510
|
+
/**
|
|
70511
|
+
* Patch an org-scoped knowledge document\'s metadata.
|
|
70512
|
+
* @summary Patch Document Org
|
|
70513
|
+
* @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
|
|
70514
|
+
* @param {*} [options] Override http request option.
|
|
70515
|
+
* @throws {RequiredError}
|
|
70516
|
+
* @memberof KnowledgeAi
|
|
70517
|
+
*/
|
|
70518
|
+
patchOrgDocument(requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70427
70519
|
/**
|
|
70428
70520
|
* Search the knowledge base using semantic similarity.
|
|
70429
70521
|
* @summary Search Documents
|
|
@@ -70433,6 +70525,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70433
70525
|
* @memberof KnowledgeAi
|
|
70434
70526
|
*/
|
|
70435
70527
|
searchKnowledge(requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
|
|
70528
|
+
/**
|
|
70529
|
+
* Search org-scoped knowledge documents using semantic similarity.
|
|
70530
|
+
* @summary Search Documents Org
|
|
70531
|
+
* @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
|
|
70532
|
+
* @param {*} [options] Override http request option.
|
|
70533
|
+
* @throws {RequiredError}
|
|
70534
|
+
* @memberof KnowledgeAi
|
|
70535
|
+
*/
|
|
70536
|
+
searchOrgKnowledge(requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
|
|
70436
70537
|
/**
|
|
70437
70538
|
* Upload or replace a knowledge document.
|
|
70438
70539
|
* @summary Upsert Document
|
|
@@ -70442,6 +70543,15 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
70442
70543
|
* @memberof KnowledgeAi
|
|
70443
70544
|
*/
|
|
70444
70545
|
upsertDocument(requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
70546
|
+
/**
|
|
70547
|
+
* Upload or replace an org-scoped knowledge document.
|
|
70548
|
+
* @summary Upsert Document Org
|
|
70549
|
+
* @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
|
|
70550
|
+
* @param {*} [options] Override http request option.
|
|
70551
|
+
* @throws {RequiredError}
|
|
70552
|
+
* @memberof KnowledgeAi
|
|
70553
|
+
*/
|
|
70554
|
+
upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
70445
70555
|
}
|
|
70446
70556
|
|
|
70447
70557
|
/**
|
|
@@ -70458,6 +70568,18 @@ declare function KnowledgeAi_CreateDocument(axios: AxiosInstance, basePath: stri
|
|
|
70458
70568
|
export { KnowledgeAi_CreateDocument as GenAiApi_CreateKnowledgeDocument }
|
|
70459
70569
|
export { KnowledgeAi_CreateDocument }
|
|
70460
70570
|
|
|
70571
|
+
/**
|
|
70572
|
+
* Upload a new org-scoped knowledge document.
|
|
70573
|
+
* @summary Upload Document Org
|
|
70574
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70575
|
+
* @param {string} basePath Base path.
|
|
70576
|
+
* @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
|
|
70577
|
+
* @param {*} [options] Override http request option.
|
|
70578
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70579
|
+
* @throws {RequiredError}
|
|
70580
|
+
*/
|
|
70581
|
+
export declare function KnowledgeAi_CreateOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiUploadDocumentResponse>;
|
|
70582
|
+
|
|
70461
70583
|
/**
|
|
70462
70584
|
* Delete a knowledge document and all its chunks.
|
|
70463
70585
|
* @summary Delete Document
|
|
@@ -70472,6 +70594,18 @@ declare function KnowledgeAi_DeleteDocument(axios: AxiosInstance, basePath: stri
|
|
|
70472
70594
|
export { KnowledgeAi_DeleteDocument as GenAiApi_DeleteKnowledgeDocument }
|
|
70473
70595
|
export { KnowledgeAi_DeleteDocument }
|
|
70474
70596
|
|
|
70597
|
+
/**
|
|
70598
|
+
* Delete an org-scoped knowledge document and all its chunks.
|
|
70599
|
+
* @summary Delete Document Org
|
|
70600
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70601
|
+
* @param {string} basePath Base path.
|
|
70602
|
+
* @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
|
|
70603
|
+
* @param {*} [options] Override http request option.
|
|
70604
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70605
|
+
* @throws {RequiredError}
|
|
70606
|
+
*/
|
|
70607
|
+
export declare function KnowledgeAi_DeleteOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiDeleteDocumentResponse>;
|
|
70608
|
+
|
|
70475
70609
|
/**
|
|
70476
70610
|
* Download a knowledge document\'s raw file.
|
|
70477
70611
|
* @summary Download Document
|
|
@@ -70484,6 +70618,18 @@ export { KnowledgeAi_DeleteDocument }
|
|
|
70484
70618
|
*/
|
|
70485
70619
|
export declare function KnowledgeAi_DownloadDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<any>;
|
|
70486
70620
|
|
|
70621
|
+
/**
|
|
70622
|
+
* Download an org-scoped knowledge document\'s raw file.
|
|
70623
|
+
* @summary Download Document Org
|
|
70624
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70625
|
+
* @param {string} basePath Base path.
|
|
70626
|
+
* @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
|
|
70627
|
+
* @param {*} [options] Override http request option.
|
|
70628
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70629
|
+
* @throws {RequiredError}
|
|
70630
|
+
*/
|
|
70631
|
+
export declare function KnowledgeAi_DownloadOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<any>;
|
|
70632
|
+
|
|
70487
70633
|
/**
|
|
70488
70634
|
* Get a single knowledge document\'s metadata.
|
|
70489
70635
|
* @summary Get Document
|
|
@@ -70498,6 +70644,18 @@ declare function KnowledgeAi_GetDocument(axios: AxiosInstance, basePath: string,
|
|
|
70498
70644
|
export { KnowledgeAi_GetDocument as GenAiApi_GetKnowledgeDocument }
|
|
70499
70645
|
export { KnowledgeAi_GetDocument }
|
|
70500
70646
|
|
|
70647
|
+
/**
|
|
70648
|
+
* Get a single org-scoped knowledge document\'s metadata.
|
|
70649
|
+
* @summary Get Document Org
|
|
70650
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70651
|
+
* @param {string} basePath Base path.
|
|
70652
|
+
* @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
|
|
70653
|
+
* @param {*} [options] Override http request option.
|
|
70654
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70655
|
+
* @throws {RequiredError}
|
|
70656
|
+
*/
|
|
70657
|
+
export declare function KnowledgeAi_GetOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70658
|
+
|
|
70501
70659
|
/**
|
|
70502
70660
|
* List knowledge documents accessible from the workspace.
|
|
70503
70661
|
* @summary List Documents
|
|
@@ -70512,6 +70670,18 @@ declare function KnowledgeAi_ListDocuments(axios: AxiosInstance, basePath: strin
|
|
|
70512
70670
|
export { KnowledgeAi_ListDocuments as GenAiApi_ListKnowledgeDocuments }
|
|
70513
70671
|
export { KnowledgeAi_ListDocuments }
|
|
70514
70672
|
|
|
70673
|
+
/**
|
|
70674
|
+
* List org-scoped knowledge documents.
|
|
70675
|
+
* @summary List Documents Org
|
|
70676
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70677
|
+
* @param {string} basePath Base path.
|
|
70678
|
+
* @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
|
|
70679
|
+
* @param {*} [options] Override http request option.
|
|
70680
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70681
|
+
* @throws {RequiredError}
|
|
70682
|
+
*/
|
|
70683
|
+
export declare function KnowledgeAi_ListOrgDocuments(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiListDocumentsResponse>;
|
|
70684
|
+
|
|
70515
70685
|
/**
|
|
70516
70686
|
* Patch a knowledge document\'s metadata without re-uploading content.
|
|
70517
70687
|
* @summary Patch Document
|
|
@@ -70526,6 +70696,18 @@ declare function KnowledgeAi_PatchDocument(axios: AxiosInstance, basePath: strin
|
|
|
70526
70696
|
export { KnowledgeAi_PatchDocument as GenAiApi_PatchKnowledgeDocument }
|
|
70527
70697
|
export { KnowledgeAi_PatchDocument }
|
|
70528
70698
|
|
|
70699
|
+
/**
|
|
70700
|
+
* Patch an org-scoped knowledge document\'s metadata.
|
|
70701
|
+
* @summary Patch Document Org
|
|
70702
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70703
|
+
* @param {string} basePath Base path.
|
|
70704
|
+
* @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
|
|
70705
|
+
* @param {*} [options] Override http request option.
|
|
70706
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70707
|
+
* @throws {RequiredError}
|
|
70708
|
+
*/
|
|
70709
|
+
export declare function KnowledgeAi_PatchOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70710
|
+
|
|
70529
70711
|
/**
|
|
70530
70712
|
* Search the knowledge base using semantic similarity.
|
|
70531
70713
|
* @summary Search Documents
|
|
@@ -70540,6 +70722,18 @@ declare function KnowledgeAi_SearchKnowledge(axios: AxiosInstance, basePath: str
|
|
|
70540
70722
|
export { KnowledgeAi_SearchKnowledge as GenAiApi_SearchKnowledge }
|
|
70541
70723
|
export { KnowledgeAi_SearchKnowledge }
|
|
70542
70724
|
|
|
70725
|
+
/**
|
|
70726
|
+
* Search org-scoped knowledge documents using semantic similarity.
|
|
70727
|
+
* @summary Search Documents Org
|
|
70728
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70729
|
+
* @param {string} basePath Base path.
|
|
70730
|
+
* @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
|
|
70731
|
+
* @param {*} [options] Override http request option.
|
|
70732
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70733
|
+
* @throws {RequiredError}
|
|
70734
|
+
*/
|
|
70735
|
+
export declare function KnowledgeAi_SearchOrgKnowledge(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiSearchDocumentsResponse>;
|
|
70736
|
+
|
|
70543
70737
|
/**
|
|
70544
70738
|
* Upload or replace a knowledge document.
|
|
70545
70739
|
* @summary Upsert Document
|
|
@@ -70554,6 +70748,18 @@ declare function KnowledgeAi_UpsertDocument(axios: AxiosInstance, basePath: stri
|
|
|
70554
70748
|
export { KnowledgeAi_UpsertDocument as GenAiApi_UpsertKnowledgeDocument }
|
|
70555
70749
|
export { KnowledgeAi_UpsertDocument }
|
|
70556
70750
|
|
|
70751
|
+
/**
|
|
70752
|
+
* Upload or replace an org-scoped knowledge document.
|
|
70753
|
+
* @summary Upsert Document Org
|
|
70754
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
70755
|
+
* @param {string} basePath Base path.
|
|
70756
|
+
* @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
|
|
70757
|
+
* @param {*} [options] Override http request option.
|
|
70758
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70759
|
+
* @throws {RequiredError}
|
|
70760
|
+
*/
|
|
70761
|
+
export declare function KnowledgeAi_UpsertOrgDocument(axios: AxiosInstance, basePath: string, requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): AxiosPromise<AiUploadDocumentResponse>;
|
|
70762
|
+
|
|
70557
70763
|
/**
|
|
70558
70764
|
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
70559
70765
|
* @summary Upload Document
|
|
@@ -70567,6 +70773,18 @@ export { KnowledgeAi_UpsertDocument }
|
|
|
70567
70773
|
*/
|
|
70568
70774
|
export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId: string, file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70569
70775
|
|
|
70776
|
+
/**
|
|
70777
|
+
* Upload a new org-scoped knowledge document.
|
|
70778
|
+
* @summary Upload Document Org
|
|
70779
|
+
* @param {File} file
|
|
70780
|
+
* @param {string} [title]
|
|
70781
|
+
* @param {Array<string>} [scopes]
|
|
70782
|
+
* @param {*} [options] Override http request option.
|
|
70783
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70784
|
+
* @throws {RequiredError}
|
|
70785
|
+
*/
|
|
70786
|
+
export declare function KnowledgeAiAxiosParamCreator_CreateOrgDocument(file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70787
|
+
|
|
70570
70788
|
/**
|
|
70571
70789
|
* Delete a knowledge document and all its chunks.
|
|
70572
70790
|
* @summary Delete Document
|
|
@@ -70578,6 +70796,16 @@ export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId:
|
|
|
70578
70796
|
*/
|
|
70579
70797
|
export declare function KnowledgeAiAxiosParamCreator_DeleteDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70580
70798
|
|
|
70799
|
+
/**
|
|
70800
|
+
* Delete an org-scoped knowledge document and all its chunks.
|
|
70801
|
+
* @summary Delete Document Org
|
|
70802
|
+
* @param {string} documentId
|
|
70803
|
+
* @param {*} [options] Override http request option.
|
|
70804
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70805
|
+
* @throws {RequiredError}
|
|
70806
|
+
*/
|
|
70807
|
+
export declare function KnowledgeAiAxiosParamCreator_DeleteOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70808
|
+
|
|
70581
70809
|
/**
|
|
70582
70810
|
* Download a knowledge document\'s raw file.
|
|
70583
70811
|
* @summary Download Document
|
|
@@ -70589,6 +70817,16 @@ export declare function KnowledgeAiAxiosParamCreator_DeleteDocument(workspaceId:
|
|
|
70589
70817
|
*/
|
|
70590
70818
|
export declare function KnowledgeAiAxiosParamCreator_DownloadDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70591
70819
|
|
|
70820
|
+
/**
|
|
70821
|
+
* Download an org-scoped knowledge document\'s raw file.
|
|
70822
|
+
* @summary Download Document Org
|
|
70823
|
+
* @param {string} documentId
|
|
70824
|
+
* @param {*} [options] Override http request option.
|
|
70825
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70826
|
+
* @throws {RequiredError}
|
|
70827
|
+
*/
|
|
70828
|
+
export declare function KnowledgeAiAxiosParamCreator_DownloadOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70829
|
+
|
|
70592
70830
|
/**
|
|
70593
70831
|
* Get a single knowledge document\'s metadata.
|
|
70594
70832
|
* @summary Get Document
|
|
@@ -70600,6 +70838,16 @@ export declare function KnowledgeAiAxiosParamCreator_DownloadDocument(workspaceI
|
|
|
70600
70838
|
*/
|
|
70601
70839
|
export declare function KnowledgeAiAxiosParamCreator_GetDocument(workspaceId: string, documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70602
70840
|
|
|
70841
|
+
/**
|
|
70842
|
+
* Get a single org-scoped knowledge document\'s metadata.
|
|
70843
|
+
* @summary Get Document Org
|
|
70844
|
+
* @param {string} documentId
|
|
70845
|
+
* @param {*} [options] Override http request option.
|
|
70846
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70847
|
+
* @throws {RequiredError}
|
|
70848
|
+
*/
|
|
70849
|
+
export declare function KnowledgeAiAxiosParamCreator_GetOrgDocument(documentId: string, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70850
|
+
|
|
70603
70851
|
/**
|
|
70604
70852
|
* List knowledge documents accessible from the workspace.
|
|
70605
70853
|
* @summary List Documents
|
|
@@ -70616,6 +70864,21 @@ export declare function KnowledgeAiAxiosParamCreator_GetDocument(workspaceId: st
|
|
|
70616
70864
|
*/
|
|
70617
70865
|
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
70866
|
|
|
70867
|
+
/**
|
|
70868
|
+
* List org-scoped knowledge documents.
|
|
70869
|
+
* @summary List Documents Org
|
|
70870
|
+
* @param {Array<string>} [scopes]
|
|
70871
|
+
* @param {number} [size]
|
|
70872
|
+
* @param {string} [pageToken]
|
|
70873
|
+
* @param {string} [metaInclude]
|
|
70874
|
+
* @param {'enabled' | 'disabled'} [state]
|
|
70875
|
+
* @param {string} [query]
|
|
70876
|
+
* @param {*} [options] Override http request option.
|
|
70877
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70878
|
+
* @throws {RequiredError}
|
|
70879
|
+
*/
|
|
70880
|
+
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>;
|
|
70881
|
+
|
|
70619
70882
|
/**
|
|
70620
70883
|
* Patch a knowledge document\'s metadata without re-uploading content.
|
|
70621
70884
|
* @summary Patch Document
|
|
@@ -70628,6 +70891,17 @@ export declare function KnowledgeAiAxiosParamCreator_ListDocuments(workspaceId:
|
|
|
70628
70891
|
*/
|
|
70629
70892
|
export declare function KnowledgeAiAxiosParamCreator_PatchDocument(workspaceId: string, documentId: string, aiPatchDocumentRequest: AiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70630
70893
|
|
|
70894
|
+
/**
|
|
70895
|
+
* Patch an org-scoped knowledge document\'s metadata.
|
|
70896
|
+
* @summary Patch Document Org
|
|
70897
|
+
* @param {string} documentId
|
|
70898
|
+
* @param {AiPatchDocumentRequest} aiPatchDocumentRequest
|
|
70899
|
+
* @param {*} [options] Override http request option.
|
|
70900
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70901
|
+
* @throws {RequiredError}
|
|
70902
|
+
*/
|
|
70903
|
+
export declare function KnowledgeAiAxiosParamCreator_PatchOrgDocument(documentId: string, aiPatchDocumentRequest: AiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70904
|
+
|
|
70631
70905
|
/**
|
|
70632
70906
|
* Search the knowledge base using semantic similarity.
|
|
70633
70907
|
* @summary Search Documents
|
|
@@ -70642,6 +70916,19 @@ export declare function KnowledgeAiAxiosParamCreator_PatchDocument(workspaceId:
|
|
|
70642
70916
|
*/
|
|
70643
70917
|
export declare function KnowledgeAiAxiosParamCreator_SearchKnowledge(workspaceId: string, query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70644
70918
|
|
|
70919
|
+
/**
|
|
70920
|
+
* Search org-scoped knowledge documents using semantic similarity.
|
|
70921
|
+
* @summary Search Documents Org
|
|
70922
|
+
* @param {string} query
|
|
70923
|
+
* @param {number} [limit]
|
|
70924
|
+
* @param {number} [minScore]
|
|
70925
|
+
* @param {Array<string>} [scopes]
|
|
70926
|
+
* @param {*} [options] Override http request option.
|
|
70927
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70928
|
+
* @throws {RequiredError}
|
|
70929
|
+
*/
|
|
70930
|
+
export declare function KnowledgeAiAxiosParamCreator_SearchOrgKnowledge(query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70931
|
+
|
|
70645
70932
|
/**
|
|
70646
70933
|
* Upload or replace a knowledge document.
|
|
70647
70934
|
* @summary Upsert Document
|
|
@@ -70655,6 +70942,18 @@ export declare function KnowledgeAiAxiosParamCreator_SearchKnowledge(workspaceId
|
|
|
70655
70942
|
*/
|
|
70656
70943
|
export declare function KnowledgeAiAxiosParamCreator_UpsertDocument(workspaceId: string, file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70657
70944
|
|
|
70945
|
+
/**
|
|
70946
|
+
* Upload or replace an org-scoped knowledge document.
|
|
70947
|
+
* @summary Upsert Document Org
|
|
70948
|
+
* @param {File} file
|
|
70949
|
+
* @param {string} [title]
|
|
70950
|
+
* @param {Array<string>} [scopes]
|
|
70951
|
+
* @param {*} [options] Override http request option.
|
|
70952
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
70953
|
+
* @throws {RequiredError}
|
|
70954
|
+
*/
|
|
70955
|
+
export declare function KnowledgeAiAxiosParamCreator_UpsertOrgDocument(file: File, title?: string, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration_2): Promise<RequestArgs>;
|
|
70956
|
+
|
|
70658
70957
|
/**
|
|
70659
70958
|
* Request parameters for createDocument operation in KnowledgeAi.
|
|
70660
70959
|
* @export
|
|
@@ -70689,6 +70988,32 @@ declare interface KnowledgeAiCreateDocumentRequest {
|
|
|
70689
70988
|
export { KnowledgeAiCreateDocumentRequest as GenAiApiCreateKnowledgeDocumentRequest }
|
|
70690
70989
|
export { KnowledgeAiCreateDocumentRequest }
|
|
70691
70990
|
|
|
70991
|
+
/**
|
|
70992
|
+
* Request parameters for createOrgDocument operation in KnowledgeAi.
|
|
70993
|
+
* @export
|
|
70994
|
+
* @interface KnowledgeAiCreateOrgDocumentRequest
|
|
70995
|
+
*/
|
|
70996
|
+
export declare interface KnowledgeAiCreateOrgDocumentRequest {
|
|
70997
|
+
/**
|
|
70998
|
+
*
|
|
70999
|
+
* @type {File}
|
|
71000
|
+
* @memberof KnowledgeAiCreateOrgDocument
|
|
71001
|
+
*/
|
|
71002
|
+
readonly file: File;
|
|
71003
|
+
/**
|
|
71004
|
+
*
|
|
71005
|
+
* @type {string}
|
|
71006
|
+
* @memberof KnowledgeAiCreateOrgDocument
|
|
71007
|
+
*/
|
|
71008
|
+
readonly title?: string;
|
|
71009
|
+
/**
|
|
71010
|
+
*
|
|
71011
|
+
* @type {Array<string>}
|
|
71012
|
+
* @memberof KnowledgeAiCreateOrgDocument
|
|
71013
|
+
*/
|
|
71014
|
+
readonly scopes?: Array<string>;
|
|
71015
|
+
}
|
|
71016
|
+
|
|
70692
71017
|
/**
|
|
70693
71018
|
* Request parameters for deleteDocument operation in KnowledgeAi.
|
|
70694
71019
|
* @export
|
|
@@ -70711,6 +71036,20 @@ declare interface KnowledgeAiDeleteDocumentRequest {
|
|
|
70711
71036
|
export { KnowledgeAiDeleteDocumentRequest as GenAiApiDeleteKnowledgeDocumentRequest }
|
|
70712
71037
|
export { KnowledgeAiDeleteDocumentRequest }
|
|
70713
71038
|
|
|
71039
|
+
/**
|
|
71040
|
+
* Request parameters for deleteOrgDocument operation in KnowledgeAi.
|
|
71041
|
+
* @export
|
|
71042
|
+
* @interface KnowledgeAiDeleteOrgDocumentRequest
|
|
71043
|
+
*/
|
|
71044
|
+
export declare interface KnowledgeAiDeleteOrgDocumentRequest {
|
|
71045
|
+
/**
|
|
71046
|
+
*
|
|
71047
|
+
* @type {string}
|
|
71048
|
+
* @memberof KnowledgeAiDeleteOrgDocument
|
|
71049
|
+
*/
|
|
71050
|
+
readonly documentId: string;
|
|
71051
|
+
}
|
|
71052
|
+
|
|
70714
71053
|
/**
|
|
70715
71054
|
* Request parameters for downloadDocument operation in KnowledgeAi.
|
|
70716
71055
|
* @export
|
|
@@ -70731,6 +71070,20 @@ export declare interface KnowledgeAiDownloadDocumentRequest {
|
|
|
70731
71070
|
readonly documentId: string;
|
|
70732
71071
|
}
|
|
70733
71072
|
|
|
71073
|
+
/**
|
|
71074
|
+
* Request parameters for downloadOrgDocument operation in KnowledgeAi.
|
|
71075
|
+
* @export
|
|
71076
|
+
* @interface KnowledgeAiDownloadOrgDocumentRequest
|
|
71077
|
+
*/
|
|
71078
|
+
export declare interface KnowledgeAiDownloadOrgDocumentRequest {
|
|
71079
|
+
/**
|
|
71080
|
+
*
|
|
71081
|
+
* @type {string}
|
|
71082
|
+
* @memberof KnowledgeAiDownloadOrgDocument
|
|
71083
|
+
*/
|
|
71084
|
+
readonly documentId: string;
|
|
71085
|
+
}
|
|
71086
|
+
|
|
70734
71087
|
/**
|
|
70735
71088
|
* Request parameters for getDocument operation in KnowledgeAi.
|
|
70736
71089
|
* @export
|
|
@@ -70753,6 +71106,20 @@ declare interface KnowledgeAiGetDocumentRequest {
|
|
|
70753
71106
|
export { KnowledgeAiGetDocumentRequest as GenAiApiGetKnowledgeDocumentRequest }
|
|
70754
71107
|
export { KnowledgeAiGetDocumentRequest }
|
|
70755
71108
|
|
|
71109
|
+
/**
|
|
71110
|
+
* Request parameters for getOrgDocument operation in KnowledgeAi.
|
|
71111
|
+
* @export
|
|
71112
|
+
* @interface KnowledgeAiGetOrgDocumentRequest
|
|
71113
|
+
*/
|
|
71114
|
+
export declare interface KnowledgeAiGetOrgDocumentRequest {
|
|
71115
|
+
/**
|
|
71116
|
+
*
|
|
71117
|
+
* @type {string}
|
|
71118
|
+
* @memberof KnowledgeAiGetOrgDocument
|
|
71119
|
+
*/
|
|
71120
|
+
readonly documentId: string;
|
|
71121
|
+
}
|
|
71122
|
+
|
|
70756
71123
|
/**
|
|
70757
71124
|
* KnowledgeAi - interface
|
|
70758
71125
|
* @export
|
|
@@ -70768,6 +71135,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70768
71135
|
* @memberof KnowledgeAiInterface
|
|
70769
71136
|
*/
|
|
70770
71137
|
createDocument(requestParameters: KnowledgeAiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
71138
|
+
/**
|
|
71139
|
+
* Upload a new org-scoped knowledge document.
|
|
71140
|
+
* @summary Upload Document Org
|
|
71141
|
+
* @param {KnowledgeAiCreateOrgDocumentRequest} requestParameters Request parameters.
|
|
71142
|
+
* @param {*} [options] Override http request option.
|
|
71143
|
+
* @throws {RequiredError}
|
|
71144
|
+
* @memberof KnowledgeAiInterface
|
|
71145
|
+
*/
|
|
71146
|
+
createOrgDocument(requestParameters: KnowledgeAiCreateOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
70771
71147
|
/**
|
|
70772
71148
|
* Delete a knowledge document and all its chunks.
|
|
70773
71149
|
* @summary Delete Document
|
|
@@ -70777,6 +71153,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70777
71153
|
* @memberof KnowledgeAiInterface
|
|
70778
71154
|
*/
|
|
70779
71155
|
deleteDocument(requestParameters: KnowledgeAiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
|
|
71156
|
+
/**
|
|
71157
|
+
* Delete an org-scoped knowledge document and all its chunks.
|
|
71158
|
+
* @summary Delete Document Org
|
|
71159
|
+
* @param {KnowledgeAiDeleteOrgDocumentRequest} requestParameters Request parameters.
|
|
71160
|
+
* @param {*} [options] Override http request option.
|
|
71161
|
+
* @throws {RequiredError}
|
|
71162
|
+
* @memberof KnowledgeAiInterface
|
|
71163
|
+
*/
|
|
71164
|
+
deleteOrgDocument(requestParameters: KnowledgeAiDeleteOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDeleteDocumentResponse>;
|
|
70780
71165
|
/**
|
|
70781
71166
|
* Download a knowledge document\'s raw file.
|
|
70782
71167
|
* @summary Download Document
|
|
@@ -70786,6 +71171,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70786
71171
|
* @memberof KnowledgeAiInterface
|
|
70787
71172
|
*/
|
|
70788
71173
|
downloadDocument(requestParameters: KnowledgeAiDownloadDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
71174
|
+
/**
|
|
71175
|
+
* Download an org-scoped knowledge document\'s raw file.
|
|
71176
|
+
* @summary Download Document Org
|
|
71177
|
+
* @param {KnowledgeAiDownloadOrgDocumentRequest} requestParameters Request parameters.
|
|
71178
|
+
* @param {*} [options] Override http request option.
|
|
71179
|
+
* @throws {RequiredError}
|
|
71180
|
+
* @memberof KnowledgeAiInterface
|
|
71181
|
+
*/
|
|
71182
|
+
downloadOrgDocument(requestParameters: KnowledgeAiDownloadOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<any>;
|
|
70789
71183
|
/**
|
|
70790
71184
|
* Get a single knowledge document\'s metadata.
|
|
70791
71185
|
* @summary Get Document
|
|
@@ -70795,6 +71189,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70795
71189
|
* @memberof KnowledgeAiInterface
|
|
70796
71190
|
*/
|
|
70797
71191
|
getDocument(requestParameters: KnowledgeAiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
71192
|
+
/**
|
|
71193
|
+
* Get a single org-scoped knowledge document\'s metadata.
|
|
71194
|
+
* @summary Get Document Org
|
|
71195
|
+
* @param {KnowledgeAiGetOrgDocumentRequest} requestParameters Request parameters.
|
|
71196
|
+
* @param {*} [options] Override http request option.
|
|
71197
|
+
* @throws {RequiredError}
|
|
71198
|
+
* @memberof KnowledgeAiInterface
|
|
71199
|
+
*/
|
|
71200
|
+
getOrgDocument(requestParameters: KnowledgeAiGetOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70798
71201
|
/**
|
|
70799
71202
|
* List knowledge documents accessible from the workspace.
|
|
70800
71203
|
* @summary List Documents
|
|
@@ -70804,6 +71207,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70804
71207
|
* @memberof KnowledgeAiInterface
|
|
70805
71208
|
*/
|
|
70806
71209
|
listDocuments(requestParameters: KnowledgeAiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
|
|
71210
|
+
/**
|
|
71211
|
+
* List org-scoped knowledge documents.
|
|
71212
|
+
* @summary List Documents Org
|
|
71213
|
+
* @param {KnowledgeAiListOrgDocumentsRequest} requestParameters Request parameters.
|
|
71214
|
+
* @param {*} [options] Override http request option.
|
|
71215
|
+
* @throws {RequiredError}
|
|
71216
|
+
* @memberof KnowledgeAiInterface
|
|
71217
|
+
*/
|
|
71218
|
+
listOrgDocuments(requestParameters: KnowledgeAiListOrgDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiListDocumentsResponse>;
|
|
70807
71219
|
/**
|
|
70808
71220
|
* Patch a knowledge document\'s metadata without re-uploading content.
|
|
70809
71221
|
* @summary Patch Document
|
|
@@ -70813,6 +71225,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70813
71225
|
* @memberof KnowledgeAiInterface
|
|
70814
71226
|
*/
|
|
70815
71227
|
patchDocument(requestParameters: KnowledgeAiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
71228
|
+
/**
|
|
71229
|
+
* Patch an org-scoped knowledge document\'s metadata.
|
|
71230
|
+
* @summary Patch Document Org
|
|
71231
|
+
* @param {KnowledgeAiPatchOrgDocumentRequest} requestParameters Request parameters.
|
|
71232
|
+
* @param {*} [options] Override http request option.
|
|
71233
|
+
* @throws {RequiredError}
|
|
71234
|
+
* @memberof KnowledgeAiInterface
|
|
71235
|
+
*/
|
|
71236
|
+
patchOrgDocument(requestParameters: KnowledgeAiPatchOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiDocumentMetadataResponse>;
|
|
70816
71237
|
/**
|
|
70817
71238
|
* Search the knowledge base using semantic similarity.
|
|
70818
71239
|
* @summary Search Documents
|
|
@@ -70822,6 +71243,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70822
71243
|
* @memberof KnowledgeAiInterface
|
|
70823
71244
|
*/
|
|
70824
71245
|
searchKnowledge(requestParameters: KnowledgeAiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
|
|
71246
|
+
/**
|
|
71247
|
+
* Search org-scoped knowledge documents using semantic similarity.
|
|
71248
|
+
* @summary Search Documents Org
|
|
71249
|
+
* @param {KnowledgeAiSearchOrgKnowledgeRequest} requestParameters Request parameters.
|
|
71250
|
+
* @param {*} [options] Override http request option.
|
|
71251
|
+
* @throws {RequiredError}
|
|
71252
|
+
* @memberof KnowledgeAiInterface
|
|
71253
|
+
*/
|
|
71254
|
+
searchOrgKnowledge(requestParameters: KnowledgeAiSearchOrgKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<AiSearchDocumentsResponse>;
|
|
70825
71255
|
/**
|
|
70826
71256
|
* Upload or replace a knowledge document.
|
|
70827
71257
|
* @summary Upsert Document
|
|
@@ -70831,6 +71261,15 @@ export declare interface KnowledgeAiInterface {
|
|
|
70831
71261
|
* @memberof KnowledgeAiInterface
|
|
70832
71262
|
*/
|
|
70833
71263
|
upsertDocument(requestParameters: KnowledgeAiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
71264
|
+
/**
|
|
71265
|
+
* Upload or replace an org-scoped knowledge document.
|
|
71266
|
+
* @summary Upsert Document Org
|
|
71267
|
+
* @param {KnowledgeAiUpsertOrgDocumentRequest} requestParameters Request parameters.
|
|
71268
|
+
* @param {*} [options] Override http request option.
|
|
71269
|
+
* @throws {RequiredError}
|
|
71270
|
+
* @memberof KnowledgeAiInterface
|
|
71271
|
+
*/
|
|
71272
|
+
upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
70834
71273
|
}
|
|
70835
71274
|
|
|
70836
71275
|
/**
|
|
@@ -70885,6 +71324,50 @@ declare interface KnowledgeAiListDocumentsRequest {
|
|
|
70885
71324
|
export { KnowledgeAiListDocumentsRequest as GenAiApiListKnowledgeDocumentsRequest }
|
|
70886
71325
|
export { KnowledgeAiListDocumentsRequest }
|
|
70887
71326
|
|
|
71327
|
+
/**
|
|
71328
|
+
* Request parameters for listOrgDocuments operation in KnowledgeAi.
|
|
71329
|
+
* @export
|
|
71330
|
+
* @interface KnowledgeAiListOrgDocumentsRequest
|
|
71331
|
+
*/
|
|
71332
|
+
export declare interface KnowledgeAiListOrgDocumentsRequest {
|
|
71333
|
+
/**
|
|
71334
|
+
*
|
|
71335
|
+
* @type {Array<string>}
|
|
71336
|
+
* @memberof KnowledgeAiListOrgDocuments
|
|
71337
|
+
*/
|
|
71338
|
+
readonly scopes?: Array<string>;
|
|
71339
|
+
/**
|
|
71340
|
+
*
|
|
71341
|
+
* @type {number}
|
|
71342
|
+
* @memberof KnowledgeAiListOrgDocuments
|
|
71343
|
+
*/
|
|
71344
|
+
readonly size?: number;
|
|
71345
|
+
/**
|
|
71346
|
+
*
|
|
71347
|
+
* @type {string}
|
|
71348
|
+
* @memberof KnowledgeAiListOrgDocuments
|
|
71349
|
+
*/
|
|
71350
|
+
readonly pageToken?: string;
|
|
71351
|
+
/**
|
|
71352
|
+
*
|
|
71353
|
+
* @type {string}
|
|
71354
|
+
* @memberof KnowledgeAiListOrgDocuments
|
|
71355
|
+
*/
|
|
71356
|
+
readonly metaInclude?: string;
|
|
71357
|
+
/**
|
|
71358
|
+
*
|
|
71359
|
+
* @type {'enabled' | 'disabled'}
|
|
71360
|
+
* @memberof KnowledgeAiListOrgDocuments
|
|
71361
|
+
*/
|
|
71362
|
+
readonly state?: 'enabled' | 'disabled';
|
|
71363
|
+
/**
|
|
71364
|
+
*
|
|
71365
|
+
* @type {string}
|
|
71366
|
+
* @memberof KnowledgeAiListOrgDocuments
|
|
71367
|
+
*/
|
|
71368
|
+
readonly query?: string;
|
|
71369
|
+
}
|
|
71370
|
+
|
|
70888
71371
|
/**
|
|
70889
71372
|
* Request parameters for patchDocument operation in KnowledgeAi.
|
|
70890
71373
|
* @export
|
|
@@ -70913,6 +71396,26 @@ declare interface KnowledgeAiPatchDocumentRequest {
|
|
|
70913
71396
|
export { KnowledgeAiPatchDocumentRequest as GenAiApiPatchKnowledgeDocumentRequest }
|
|
70914
71397
|
export { KnowledgeAiPatchDocumentRequest }
|
|
70915
71398
|
|
|
71399
|
+
/**
|
|
71400
|
+
* Request parameters for patchOrgDocument operation in KnowledgeAi.
|
|
71401
|
+
* @export
|
|
71402
|
+
* @interface KnowledgeAiPatchOrgDocumentRequest
|
|
71403
|
+
*/
|
|
71404
|
+
export declare interface KnowledgeAiPatchOrgDocumentRequest {
|
|
71405
|
+
/**
|
|
71406
|
+
*
|
|
71407
|
+
* @type {string}
|
|
71408
|
+
* @memberof KnowledgeAiPatchOrgDocument
|
|
71409
|
+
*/
|
|
71410
|
+
readonly documentId: string;
|
|
71411
|
+
/**
|
|
71412
|
+
*
|
|
71413
|
+
* @type {AiPatchDocumentRequest}
|
|
71414
|
+
* @memberof KnowledgeAiPatchOrgDocument
|
|
71415
|
+
*/
|
|
71416
|
+
readonly aiPatchDocumentRequest: AiPatchDocumentRequest;
|
|
71417
|
+
}
|
|
71418
|
+
|
|
70916
71419
|
/**
|
|
70917
71420
|
* Request parameters for searchKnowledge operation in KnowledgeAi.
|
|
70918
71421
|
* @export
|
|
@@ -70953,6 +71456,38 @@ declare interface KnowledgeAiSearchKnowledgeRequest {
|
|
|
70953
71456
|
export { KnowledgeAiSearchKnowledgeRequest as GenAiApiSearchKnowledgeRequest }
|
|
70954
71457
|
export { KnowledgeAiSearchKnowledgeRequest }
|
|
70955
71458
|
|
|
71459
|
+
/**
|
|
71460
|
+
* Request parameters for searchOrgKnowledge operation in KnowledgeAi.
|
|
71461
|
+
* @export
|
|
71462
|
+
* @interface KnowledgeAiSearchOrgKnowledgeRequest
|
|
71463
|
+
*/
|
|
71464
|
+
export declare interface KnowledgeAiSearchOrgKnowledgeRequest {
|
|
71465
|
+
/**
|
|
71466
|
+
*
|
|
71467
|
+
* @type {string}
|
|
71468
|
+
* @memberof KnowledgeAiSearchOrgKnowledge
|
|
71469
|
+
*/
|
|
71470
|
+
readonly query: string;
|
|
71471
|
+
/**
|
|
71472
|
+
*
|
|
71473
|
+
* @type {number}
|
|
71474
|
+
* @memberof KnowledgeAiSearchOrgKnowledge
|
|
71475
|
+
*/
|
|
71476
|
+
readonly limit?: number;
|
|
71477
|
+
/**
|
|
71478
|
+
*
|
|
71479
|
+
* @type {number}
|
|
71480
|
+
* @memberof KnowledgeAiSearchOrgKnowledge
|
|
71481
|
+
*/
|
|
71482
|
+
readonly minScore?: number;
|
|
71483
|
+
/**
|
|
71484
|
+
*
|
|
71485
|
+
* @type {Array<string>}
|
|
71486
|
+
* @memberof KnowledgeAiSearchOrgKnowledge
|
|
71487
|
+
*/
|
|
71488
|
+
readonly scopes?: Array<string>;
|
|
71489
|
+
}
|
|
71490
|
+
|
|
70956
71491
|
/**
|
|
70957
71492
|
* Request parameters for upsertDocument operation in KnowledgeAi.
|
|
70958
71493
|
* @export
|
|
@@ -70987,6 +71522,32 @@ declare interface KnowledgeAiUpsertDocumentRequest {
|
|
|
70987
71522
|
export { KnowledgeAiUpsertDocumentRequest as GenAiApiUpsertKnowledgeDocumentRequest }
|
|
70988
71523
|
export { KnowledgeAiUpsertDocumentRequest }
|
|
70989
71524
|
|
|
71525
|
+
/**
|
|
71526
|
+
* Request parameters for upsertOrgDocument operation in KnowledgeAi.
|
|
71527
|
+
* @export
|
|
71528
|
+
* @interface KnowledgeAiUpsertOrgDocumentRequest
|
|
71529
|
+
*/
|
|
71530
|
+
export declare interface KnowledgeAiUpsertOrgDocumentRequest {
|
|
71531
|
+
/**
|
|
71532
|
+
*
|
|
71533
|
+
* @type {File}
|
|
71534
|
+
* @memberof KnowledgeAiUpsertOrgDocument
|
|
71535
|
+
*/
|
|
71536
|
+
readonly file: File;
|
|
71537
|
+
/**
|
|
71538
|
+
*
|
|
71539
|
+
* @type {string}
|
|
71540
|
+
* @memberof KnowledgeAiUpsertOrgDocument
|
|
71541
|
+
*/
|
|
71542
|
+
readonly title?: string;
|
|
71543
|
+
/**
|
|
71544
|
+
*
|
|
71545
|
+
* @type {Array<string>}
|
|
71546
|
+
* @memberof KnowledgeAiUpsertOrgDocument
|
|
71547
|
+
*/
|
|
71548
|
+
readonly scopes?: Array<string>;
|
|
71549
|
+
}
|
|
71550
|
+
|
|
70990
71551
|
/**
|
|
70991
71552
|
* KnowledgeRecommendationControllerApi - object-oriented interface
|
|
70992
71553
|
* @export
|