@gooddata/api-client-tiger 11.2.0-alpha.5 → 11.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.2.0-alpha.5";
1
+ export declare const LIB_VERSION = "11.2.0";
2
2
  export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/api-client-tiger";
4
4
  //# sourceMappingURL=__version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"__version.d.ts","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,mBAAmB,CAAC;AAE5C,eAAO,MAAM,eAAe,kDAAkD,CAAC;AAE/E,eAAO,MAAM,QAAQ,+BAA+B,CAAC"}
1
+ {"version":3,"file":"__version.d.ts","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,WAAW,CAAC;AAEpC,eAAO,MAAM,eAAe,kDAAkD,CAAC;AAE/E,eAAO,MAAM,QAAQ,+BAA+B,CAAC"}
package/esm/__version.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.2.0-alpha.5";
3
+ export const LIB_VERSION = "11.2.0";
4
4
  export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/api-client-tiger";
6
6
  //# sourceMappingURL=__version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"__version.js","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,6DAA6D;AAE7D,MAAM,CAAC,MAAM,WAAW,GAAG,gBAAgB,CAAC;AAE5C,MAAM,CAAC,MAAM,eAAe,GAAG,+CAA+C,CAAC;AAE/E,MAAM,CAAC,MAAM,QAAQ,GAAG,4BAA4B,CAAC"}
1
+ {"version":3,"file":"__version.js","sourceRoot":"","sources":["../src/__version.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,6DAA6D;AAE7D,MAAM,CAAC,MAAM,WAAW,GAAG,QAAQ,CAAC;AAEpC,MAAM,CAAC,MAAM,eAAe,GAAG,+CAA+C,CAAC;AAE/E,MAAM,CAAC,MAAM,QAAQ,GAAG,4BAA4B,CAAC"}
@@ -1231,6 +1231,20 @@ export declare interface ActionsApiComputeValidObjectsRequest {
1231
1231
  readonly afmValidObjectsQuery: AfmValidObjectsQuery;
1232
1232
  }
1233
1233
 
1234
+ /**
1235
+ * Request parameters for createdBy operation in ActionsApi.
1236
+ * @export
1237
+ * @interface ActionsApiCreatedByRequest
1238
+ */
1239
+ declare interface ActionsApiCreatedByRequest {
1240
+ /**
1241
+ * Workspace identifier
1242
+ * @type {string}
1243
+ * @memberof ActionsApiCreatedBy
1244
+ */
1245
+ readonly workspaceId: string;
1246
+ }
1247
+
1234
1248
  /**
1235
1249
  * Request parameters for dashboardPermissions operation in ActionsApi.
1236
1250
  * @export
@@ -2159,6 +2173,20 @@ export declare interface ActionsApiGetDependentEntitiesGraphRequest {
2159
2173
  readonly workspaceId: string;
2160
2174
  }
2161
2175
 
2176
+ /**
2177
+ * Request parameters for getQualityIssues operation in ActionsApi.
2178
+ * @export
2179
+ * @interface ActionsApiGetQualityIssuesRequest
2180
+ */
2181
+ declare interface ActionsApiGetQualityIssuesRequest {
2182
+ /**
2183
+ * Workspace identifier
2184
+ * @type {string}
2185
+ * @memberof ActionsApiGetQualityIssues
2186
+ */
2187
+ readonly workspaceId: string;
2188
+ }
2189
+
2162
2190
  /**
2163
2191
  * Request parameters for getTranslationTags operation in ActionsApi.
2164
2192
  * @export
@@ -3154,6 +3182,20 @@ export declare interface ActionsApiSwitchActiveIdentityProviderRequest {
3154
3182
  readonly switchIdentityProviderRequest: SwitchIdentityProviderRequest;
3155
3183
  }
3156
3184
 
3185
+ /**
3186
+ * Request parameters for tags operation in ActionsApi.
3187
+ * @export
3188
+ * @interface ActionsApiTagsRequest
3189
+ */
3190
+ declare interface ActionsApiTagsRequest {
3191
+ /**
3192
+ * Workspace identifier
3193
+ * @type {string}
3194
+ * @memberof ActionsApiTags
3195
+ */
3196
+ readonly workspaceId: string;
3197
+ }
3198
+
3157
3199
  /**
3158
3200
  * Request parameters for testDataSourceDefinition operation in ActionsApi.
3159
3201
  * @export
@@ -5011,6 +5053,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5011
5053
  * @memberof ActionsApi
5012
5054
  */
5013
5055
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmValidObjectsResponse, any, {}>>;
5056
+ /**
5057
+ * Returns a list of Users who created any object for this workspace
5058
+ * @summary Get Analytics Catalog CreatedBy
5059
+ * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
5060
+ * @param {*} [options] Override http request option.
5061
+ * @throws {RequiredError}
5062
+ * @memberof ActionsApi
5063
+ */
5064
+ createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmAnalyticsCatalogCreatedBy, any, {}>>;
5014
5065
  /**
5015
5066
  * The resource provides static structures needed for investigation of a problem with given AFM.
5016
5067
  * @summary AFM explain resource.
@@ -5038,6 +5089,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5038
5089
  * @memberof ActionsApi
5039
5090
  */
5040
5091
  forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ForecastResult, any, {}>>;
5092
+ /**
5093
+ * Returns metadata quality issues detected by the platform linter.
5094
+ * @summary Get Quality Issues
5095
+ * @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
5096
+ * @param {*} [options] Override http request option.
5097
+ * @throws {RequiredError}
5098
+ * @memberof ActionsApi
5099
+ */
5100
+ getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<GetQualityIssuesResponse, any, {}>>;
5041
5101
  /**
5042
5102
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5043
5103
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5083,6 +5143,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
5083
5143
  * @memberof ActionsApi
5084
5144
  */
5085
5145
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ExecutionResult, any, {}>>;
5146
+ /**
5147
+ * Returns a list of tags for this workspace
5148
+ * @summary Get Analytics Catalog Tags
5149
+ * @param {ActionsApiTagsRequest} requestParameters Request parameters.
5150
+ * @param {*} [options] Override http request option.
5151
+ * @throws {RequiredError}
5152
+ * @memberof ActionsApi
5153
+ */
5154
+ tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmAnalyticsCatalogTags, any, {}>>;
5086
5155
  /**
5087
5156
  * Validates LLM endpoint with provided parameters.
5088
5157
  * @summary Validate LLM Endpoint
@@ -5246,6 +5315,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5246
5315
  * @throws {RequiredError}
5247
5316
  */
5248
5317
  computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5318
+ /**
5319
+ * Returns a list of Users who created any object for this workspace
5320
+ * @summary Get Analytics Catalog CreatedBy
5321
+ * @param {string} workspaceId Workspace identifier
5322
+ * @param {*} [options] Override http request option.
5323
+ * @throws {RequiredError}
5324
+ */
5325
+ createdBy: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5249
5326
  /**
5250
5327
  * The resource provides static structures needed for investigation of a problem with given AFM.
5251
5328
  * @summary AFM explain resource.
@@ -5278,6 +5355,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5278
5355
  * @throws {RequiredError}
5279
5356
  */
5280
5357
  forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5358
+ /**
5359
+ * Returns metadata quality issues detected by the platform linter.
5360
+ * @summary Get Quality Issues
5361
+ * @param {string} workspaceId Workspace identifier
5362
+ * @param {*} [options] Override http request option.
5363
+ * @throws {RequiredError}
5364
+ */
5365
+ getQualityIssues: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5281
5366
  /**
5282
5367
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5283
5368
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5329,6 +5414,14 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
5329
5414
  * @throws {RequiredError}
5330
5415
  */
5331
5416
  retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5417
+ /**
5418
+ * Returns a list of tags for this workspace
5419
+ * @summary Get Analytics Catalog Tags
5420
+ * @param {string} workspaceId Workspace identifier
5421
+ * @param {*} [options] Override http request option.
5422
+ * @throws {RequiredError}
5423
+ */
5424
+ tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
5332
5425
  /**
5333
5426
  * Validates LLM endpoint with provided parameters.
5334
5427
  * @summary Validate LLM Endpoint
@@ -5465,6 +5558,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5465
5558
  * @throws {RequiredError}
5466
5559
  */
5467
5560
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
5561
+ /**
5562
+ * Returns a list of Users who created any object for this workspace
5563
+ * @summary Get Analytics Catalog CreatedBy
5564
+ * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
5565
+ * @param {*} [options] Override http request option.
5566
+ * @throws {RequiredError}
5567
+ */
5568
+ createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogCreatedBy>;
5468
5569
  /**
5469
5570
  * The resource provides static structures needed for investigation of a problem with given AFM.
5470
5571
  * @summary AFM explain resource.
@@ -5489,6 +5590,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5489
5590
  * @throws {RequiredError}
5490
5591
  */
5491
5592
  forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
5593
+ /**
5594
+ * Returns metadata quality issues detected by the platform linter.
5595
+ * @summary Get Quality Issues
5596
+ * @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
5597
+ * @param {*} [options] Override http request option.
5598
+ * @throws {RequiredError}
5599
+ */
5600
+ getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
5492
5601
  /**
5493
5602
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5494
5603
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5529,6 +5638,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
5529
5638
  * @throws {RequiredError}
5530
5639
  */
5531
5640
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
5641
+ /**
5642
+ * Returns a list of tags for this workspace
5643
+ * @summary Get Analytics Catalog Tags
5644
+ * @param {ActionsApiTagsRequest} requestParameters Request parameters.
5645
+ * @param {*} [options] Override http request option.
5646
+ * @throws {RequiredError}
5647
+ */
5648
+ tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogTags>;
5532
5649
  /**
5533
5650
  * Validates LLM endpoint with provided parameters.
5534
5651
  * @summary Validate LLM Endpoint
@@ -5690,6 +5807,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5690
5807
  * @throws {RequiredError}
5691
5808
  */
5692
5809
  computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
5810
+ /**
5811
+ * Returns a list of Users who created any object for this workspace
5812
+ * @summary Get Analytics Catalog CreatedBy
5813
+ * @param {string} workspaceId Workspace identifier
5814
+ * @param {*} [options] Override http request option.
5815
+ * @throws {RequiredError}
5816
+ */
5817
+ createdBy(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmAnalyticsCatalogCreatedBy>>;
5693
5818
  /**
5694
5819
  * The resource provides static structures needed for investigation of a problem with given AFM.
5695
5820
  * @summary AFM explain resource.
@@ -5722,6 +5847,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5722
5847
  * @throws {RequiredError}
5723
5848
  */
5724
5849
  forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
5850
+ /**
5851
+ * Returns metadata quality issues detected by the platform linter.
5852
+ * @summary Get Quality Issues
5853
+ * @param {string} workspaceId Workspace identifier
5854
+ * @param {*} [options] Override http request option.
5855
+ * @throws {RequiredError}
5856
+ */
5857
+ getQualityIssues(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetQualityIssuesResponse>>;
5725
5858
  /**
5726
5859
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5727
5860
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5773,6 +5906,14 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
5773
5906
  * @throws {RequiredError}
5774
5907
  */
5775
5908
  retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
5909
+ /**
5910
+ * Returns a list of tags for this workspace
5911
+ * @summary Get Analytics Catalog Tags
5912
+ * @param {string} workspaceId Workspace identifier
5913
+ * @param {*} [options] Override http request option.
5914
+ * @throws {RequiredError}
5915
+ */
5916
+ tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmAnalyticsCatalogTags>>;
5776
5917
  /**
5777
5918
  * Validates LLM endpoint with provided parameters.
5778
5919
  * @summary Validate LLM Endpoint
@@ -5924,6 +6065,15 @@ export declare interface AfmActionsApiInterface {
5924
6065
  * @memberof ActionsApiInterface
5925
6066
  */
5926
6067
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
6068
+ /**
6069
+ * Returns a list of Users who created any object for this workspace
6070
+ * @summary Get Analytics Catalog CreatedBy
6071
+ * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
6072
+ * @param {*} [options] Override http request option.
6073
+ * @throws {RequiredError}
6074
+ * @memberof ActionsApiInterface
6075
+ */
6076
+ createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogCreatedBy>;
5927
6077
  /**
5928
6078
  * The resource provides static structures needed for investigation of a problem with given AFM.
5929
6079
  * @summary AFM explain resource.
@@ -5951,6 +6101,15 @@ export declare interface AfmActionsApiInterface {
5951
6101
  * @memberof ActionsApiInterface
5952
6102
  */
5953
6103
  forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
6104
+ /**
6105
+ * Returns metadata quality issues detected by the platform linter.
6106
+ * @summary Get Quality Issues
6107
+ * @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
6108
+ * @param {*} [options] Override http request option.
6109
+ * @throws {RequiredError}
6110
+ * @memberof ActionsApiInterface
6111
+ */
6112
+ getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
5954
6113
  /**
5955
6114
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5956
6115
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5996,6 +6155,15 @@ export declare interface AfmActionsApiInterface {
5996
6155
  * @memberof ActionsApiInterface
5997
6156
  */
5998
6157
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
6158
+ /**
6159
+ * Returns a list of tags for this workspace
6160
+ * @summary Get Analytics Catalog Tags
6161
+ * @param {ActionsApiTagsRequest} requestParameters Request parameters.
6162
+ * @param {*} [options] Override http request option.
6163
+ * @throws {RequiredError}
6164
+ * @memberof ActionsApiInterface
6165
+ */
6166
+ tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogTags>;
5999
6167
  /**
6000
6168
  * Validates LLM endpoint with provided parameters.
6001
6169
  * @summary Validate LLM Endpoint
@@ -6016,6 +6184,39 @@ export declare interface AfmActionsApiInterface {
6016
6184
  validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
6017
6185
  }
6018
6186
 
6187
+ export declare interface AfmAnalyticsCatalogCreatedBy {
6188
+ /**
6189
+ * Users who created any object in the catalog
6190
+ */
6191
+ users: Array<AfmAnalyticsCatalogUser>;
6192
+ /**
6193
+ * Reasoning for error states
6194
+ */
6195
+ reasoning: string;
6196
+ }
6197
+
6198
+ export declare interface AfmAnalyticsCatalogTags {
6199
+ tags: Array<string>;
6200
+ }
6201
+
6202
+ /**
6203
+ * Users who created any object in the catalog
6204
+ */
6205
+ export declare interface AfmAnalyticsCatalogUser {
6206
+ /**
6207
+ * User ID of the user who created any objects
6208
+ */
6209
+ userId: string;
6210
+ /**
6211
+ * First name of the user who created any objects
6212
+ */
6213
+ firstname: string;
6214
+ /**
6215
+ * Last name of the user who created any objects
6216
+ */
6217
+ lastname: string;
6218
+ }
6219
+
6019
6220
  /**
6020
6221
  * Metric representing arithmetics between other metrics.
6021
6222
  */
@@ -41818,6 +42019,10 @@ export declare interface GenerateLogicalDataModelApiInterface {
41818
42019
  generateLogicalModel(requestParameters: GenerateLogicalDataModelApiGenerateLogicalModelRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeModel>;
41819
42020
  }
41820
42021
 
42022
+ declare interface GetQualityIssuesResponse {
42023
+ issues: Array<QualityIssue>;
42024
+ }
42025
+
41821
42026
  /**
41822
42027
  * A grain identifier.
41823
42028
  */
@@ -66295,6 +66500,20 @@ export declare interface ProfileApiInterface {
66295
66500
  getCurrentWithDetails: () => Promise<IUserProfile>;
66296
66501
  }
66297
66502
 
66503
+ declare interface QualityIssue {
66504
+ objects: Array<QualityIssueObject>;
66505
+ severity: string;
66506
+ code: string;
66507
+ detail: {
66508
+ [key: string]: object;
66509
+ };
66510
+ }
66511
+
66512
+ declare interface QualityIssueObject {
66513
+ type: string;
66514
+ id: string;
66515
+ }
66516
+
66298
66517
  declare interface Range_2 {
66299
66518
  operator: RangeOperatorEnum;
66300
66519
  measure: LocalIdentifier;
@@ -67584,6 +67803,10 @@ export declare interface SearchRequest {
67584
67803
  * Score, above which we return found objects. Below this score objects are not relevant.
67585
67804
  */
67586
67805
  relevantScoreThreshold?: number;
67806
+ /**
67807
+ * If true, includes hidden objects in search results. If false (default), excludes objects where isHidden=true.
67808
+ */
67809
+ includeHidden?: boolean;
67587
67810
  }
67588
67811
 
67589
67812
  export declare const SearchRequestObjectTypesEnum: {
@@ -67658,6 +67881,10 @@ export declare interface SearchResultObject {
67658
67881
  * Result score for exact match(id/title). 1/1000. Other scores are multiplied by this.
67659
67882
  */
67660
67883
  scoreExactMatch?: number;
67884
+ /**
67885
+ * If true, this object is hidden from AI search results by default.
67886
+ */
67887
+ isHidden?: boolean;
67661
67888
  }
67662
67889
 
67663
67890
  /**
@@ -68772,7 +68999,7 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
68772
68999
  /**
68773
69000
  * Tiger GenAI client factory
68774
69001
  */
68775
- export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById">;
69002
+ export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "tags" | "createdBy">;
68776
69003
 
68777
69004
  export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
68778
69005
 
package/esm/genAI.d.ts CHANGED
@@ -3,5 +3,5 @@ import { ActionsApiInterface } from "./generated/afm-rest-api/index.js";
3
3
  /**
4
4
  * Tiger GenAI client factory
5
5
  */
6
- export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById">;
6
+ export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "tags" | "createdBy">;
7
7
  //# sourceMappingURL=genAI.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"genAI.d.ts","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAc,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAChC,OAAO,aAAa,KACrB,IAAI,CACH,mBAAmB,EACjB,UAAU,GACV,QAAQ,GACR,cAAc,GACd,eAAe,GACf,qBAAqB,GACrB,yBAAyB,CAEU,CAAC"}
1
+ {"version":3,"file":"genAI.d.ts","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAc,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAChC,OAAO,aAAa,KACrB,IAAI,CACH,mBAAmB,EACjB,UAAU,GACV,QAAQ,GACR,cAAc,GACd,eAAe,GACf,qBAAqB,GACrB,yBAAyB,GACzB,kBAAkB,GAClB,MAAM,GACN,WAAW,CAEwB,CAAC"}
package/esm/genAI.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"genAI.js","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAIrC,OAAO,EAAE,UAAU,EAAuB,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,KAAoB,EAUtB,EAAE,CAAC,IAAI,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC"}
1
+ {"version":3,"file":"genAI.js","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAIrC,OAAO,EAAE,UAAU,EAAuB,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,KAAoB,EAatB,EAAE,CAAC,IAAI,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC"}