@gooddata/api-client-tiger 11.8.0-alpha.2 → 11.8.0-alpha.3

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/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" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy">;
6
+ export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy" | "memoryCreatedByUsers">;
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,GACzB,kBAAkB,GAClB,mCAAmC,GACnC,iCAAiC,GACjC,MAAM,GACN,WAAW,CACwB,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,mCAAmC,GACnC,iCAAiC,GACjC,MAAM,GACN,WAAW,GACX,sBAAsB,CACa,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,EActB,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,EAetB,EAAE,CAAC,IAAI,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC"}
@@ -1379,6 +1379,33 @@ export interface MeasureResultHeader {
1379
1379
  * Abstract filter definition type filtering by the value of the metric.
1380
1380
  */
1381
1381
  export type MeasureValueFilter = ComparisonMeasureValueFilter | RangeMeasureValueFilter;
1382
+ export interface MemoryItemCreatedByUsers {
1383
+ /**
1384
+ * Users who created memory item
1385
+ */
1386
+ users: Array<MemoryItemUser>;
1387
+ /**
1388
+ * Reasoning for error states
1389
+ */
1390
+ reasoning: string;
1391
+ }
1392
+ /**
1393
+ * Users who created memory item
1394
+ */
1395
+ export interface MemoryItemUser {
1396
+ /**
1397
+ * User ID of the user who created memory item
1398
+ */
1399
+ userId: string;
1400
+ /**
1401
+ * First name of the user who created memory item
1402
+ */
1403
+ firstname: string;
1404
+ /**
1405
+ * Last name of the user who created memory item
1406
+ */
1407
+ lastname: string;
1408
+ }
1382
1409
  /**
1383
1410
  * List of metrics to be used in the new visualization
1384
1411
  */
@@ -1455,6 +1482,14 @@ export interface MetricValueChange {
1455
1482
  * Whether the change is statistically significant
1456
1483
  */
1457
1484
  isSignificantChange: boolean;
1485
+ /**
1486
+ * The overall metric value in the analyzed period
1487
+ */
1488
+ overallMetricValueInAnalyzedPeriod: number;
1489
+ /**
1490
+ * The overall metric value in the reference period
1491
+ */
1492
+ overallMetricValueInReferencePeriod: number;
1458
1493
  }
1459
1494
  /**
1460
1495
  * Filter able to limit element values by label and related selected negated elements.
@@ -2373,7 +2408,7 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2373
2408
  computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2374
2409
  /**
2375
2410
  * Returns a list of Users who created any object for this workspace
2376
- * @summary Get Analytics Catalog CreatedBy
2411
+ * @summary Get Analytics Catalog CreatedBy Users
2377
2412
  * @param {string} workspaceId Workspace identifier
2378
2413
  * @param {*} [options] Override http request option.
2379
2414
  * @throws {RequiredError}
@@ -2449,6 +2484,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2449
2484
  * @throws {RequiredError}
2450
2485
  */
2451
2486
  keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2487
+ /**
2488
+ * Returns a list of Users who created any memory item for this workspace
2489
+ * @summary Get AI Memory CreatedBy Users
2490
+ * @param {string} workspaceId Workspace identifier
2491
+ * @param {*} [options] Override http request option.
2492
+ * @throws {RequiredError}
2493
+ */
2494
+ memoryCreatedByUsers: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2452
2495
  /**
2453
2496
  * Returns a list of available LLM Endpoints
2454
2497
  * @summary Get Active LLM Endpoints for this workspace
@@ -2676,7 +2719,7 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2676
2719
  computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
2677
2720
  /**
2678
2721
  * Returns a list of Users who created any object for this workspace
2679
- * @summary Get Analytics Catalog CreatedBy
2722
+ * @summary Get Analytics Catalog CreatedBy Users
2680
2723
  * @param {string} workspaceId Workspace identifier
2681
2724
  * @param {*} [options] Override http request option.
2682
2725
  * @throws {RequiredError}
@@ -2752,6 +2795,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2752
2795
  * @throws {RequiredError}
2753
2796
  */
2754
2797
  keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
2798
+ /**
2799
+ * Returns a list of Users who created any memory item for this workspace
2800
+ * @summary Get AI Memory CreatedBy Users
2801
+ * @param {string} workspaceId Workspace identifier
2802
+ * @param {*} [options] Override http request option.
2803
+ * @throws {RequiredError}
2804
+ */
2805
+ memoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItemCreatedByUsers>>;
2755
2806
  /**
2756
2807
  * Returns a list of available LLM Endpoints
2757
2808
  * @summary Get Active LLM Endpoints for this workspace
@@ -2951,7 +3002,7 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
2951
3002
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
2952
3003
  /**
2953
3004
  * Returns a list of Users who created any object for this workspace
2954
- * @summary Get Analytics Catalog CreatedBy
3005
+ * @summary Get Analytics Catalog CreatedBy Users
2955
3006
  * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
2956
3007
  * @param {*} [options] Override http request option.
2957
3008
  * @throws {RequiredError}
@@ -3013,6 +3064,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
3013
3064
  * @throws {RequiredError}
3014
3065
  */
3015
3066
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
3067
+ /**
3068
+ * Returns a list of Users who created any memory item for this workspace
3069
+ * @summary Get AI Memory CreatedBy Users
3070
+ * @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
3071
+ * @param {*} [options] Override http request option.
3072
+ * @throws {RequiredError}
3073
+ */
3074
+ memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
3016
3075
  /**
3017
3076
  * Returns a list of available LLM Endpoints
3018
3077
  * @summary Get Active LLM Endpoints for this workspace
@@ -3222,7 +3281,7 @@ export interface ActionsApiInterface {
3222
3281
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
3223
3282
  /**
3224
3283
  * Returns a list of Users who created any object for this workspace
3225
- * @summary Get Analytics Catalog CreatedBy
3284
+ * @summary Get Analytics Catalog CreatedBy Users
3226
3285
  * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
3227
3286
  * @param {*} [options] Override http request option.
3228
3287
  * @throws {RequiredError}
@@ -3292,6 +3351,15 @@ export interface ActionsApiInterface {
3292
3351
  * @memberof ActionsApiInterface
3293
3352
  */
3294
3353
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
3354
+ /**
3355
+ * Returns a list of Users who created any memory item for this workspace
3356
+ * @summary Get AI Memory CreatedBy Users
3357
+ * @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
3358
+ * @param {*} [options] Override http request option.
3359
+ * @throws {RequiredError}
3360
+ * @memberof ActionsApiInterface
3361
+ */
3362
+ memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
3295
3363
  /**
3296
3364
  * Returns a list of available LLM Endpoints
3297
3365
  * @summary Get Active LLM Endpoints for this workspace
@@ -3920,6 +3988,19 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
3920
3988
  */
3921
3989
  readonly limit?: number;
3922
3990
  }
3991
+ /**
3992
+ * Request parameters for memoryCreatedByUsers operation in ActionsApi.
3993
+ * @export
3994
+ * @interface ActionsApiMemoryCreatedByUsersRequest
3995
+ */
3996
+ export interface ActionsApiMemoryCreatedByUsersRequest {
3997
+ /**
3998
+ * Workspace identifier
3999
+ * @type {string}
4000
+ * @memberof ActionsApiMemoryCreatedByUsers
4001
+ */
4002
+ readonly workspaceId: string;
4003
+ }
3923
4004
  /**
3924
4005
  * Request parameters for resolveLlmEndpoints operation in ActionsApi.
3925
4006
  * @export
@@ -4206,7 +4287,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
4206
4287
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AfmValidObjectsResponse, any, {}>>;
4207
4288
  /**
4208
4289
  * Returns a list of Users who created any object for this workspace
4209
- * @summary Get Analytics Catalog CreatedBy
4290
+ * @summary Get Analytics Catalog CreatedBy Users
4210
4291
  * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
4211
4292
  * @param {*} [options] Override http request option.
4212
4293
  * @throws {RequiredError}
@@ -4276,6 +4357,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
4276
4357
  * @memberof ActionsApi
4277
4358
  */
4278
4359
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeyDriversResult, any, {}>>;
4360
+ /**
4361
+ * Returns a list of Users who created any memory item for this workspace
4362
+ * @summary Get AI Memory CreatedBy Users
4363
+ * @param {ActionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
4364
+ * @param {*} [options] Override http request option.
4365
+ * @throws {RequiredError}
4366
+ * @memberof ActionsApi
4367
+ */
4368
+ memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItemCreatedByUsers, any, {}>>;
4279
4369
  /**
4280
4370
  * Returns a list of available LLM Endpoints
4281
4371
  * @summary Get Active LLM Endpoints for this workspace
@@ -5265,7 +5355,7 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
5265
5355
  clusteringResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5266
5356
  /**
5267
5357
  * Returns a list of Users who created any object for this workspace
5268
- * @summary Get Analytics Catalog CreatedBy
5358
+ * @summary Get Analytics Catalog CreatedBy Users
5269
5359
  * @param {string} workspaceId Workspace identifier
5270
5360
  * @param {*} [options] Override http request option.
5271
5361
  * @throws {RequiredError}
@@ -5310,6 +5400,14 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
5310
5400
  * @throws {RequiredError}
5311
5401
  */
5312
5402
  getQualityIssuesCalculationStatus: (workspaceId: string, processId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5403
+ /**
5404
+ * Returns a list of Users who created any memory item for this workspace
5405
+ * @summary Get AI Memory CreatedBy Users
5406
+ * @param {string} workspaceId Workspace identifier
5407
+ * @param {*} [options] Override http request option.
5408
+ * @throws {RequiredError}
5409
+ */
5410
+ memoryCreatedByUsers: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5313
5411
  /**
5314
5412
  * Returns a list of available LLM Endpoints
5315
5413
  * @summary Get Active LLM Endpoints for this workspace
@@ -5447,7 +5545,7 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
5447
5545
  clusteringResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusteringResult>>;
5448
5546
  /**
5449
5547
  * Returns a list of Users who created any object for this workspace
5450
- * @summary Get Analytics Catalog CreatedBy
5548
+ * @summary Get Analytics Catalog CreatedBy Users
5451
5549
  * @param {string} workspaceId Workspace identifier
5452
5550
  * @param {*} [options] Override http request option.
5453
5551
  * @throws {RequiredError}
@@ -5492,6 +5590,14 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
5492
5590
  * @throws {RequiredError}
5493
5591
  */
5494
5592
  getQualityIssuesCalculationStatus(workspaceId: string, processId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QualityIssuesCalculationStatusResponse>>;
5593
+ /**
5594
+ * Returns a list of Users who created any memory item for this workspace
5595
+ * @summary Get AI Memory CreatedBy Users
5596
+ * @param {string} workspaceId Workspace identifier
5597
+ * @param {*} [options] Override http request option.
5598
+ * @throws {RequiredError}
5599
+ */
5600
+ memoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItemCreatedByUsers>>;
5495
5601
  /**
5496
5602
  * Returns a list of available LLM Endpoints
5497
5603
  * @summary Get Active LLM Endpoints for this workspace
@@ -5613,7 +5719,7 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
5613
5719
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
5614
5720
  /**
5615
5721
  * Returns a list of Users who created any object for this workspace
5616
- * @summary Get Analytics Catalog CreatedBy
5722
+ * @summary Get Analytics Catalog CreatedBy Users
5617
5723
  * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
5618
5724
  * @param {*} [options] Override http request option.
5619
5725
  * @throws {RequiredError}
@@ -5651,6 +5757,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
5651
5757
  * @throws {RequiredError}
5652
5758
  */
5653
5759
  getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<QualityIssuesCalculationStatusResponse>;
5760
+ /**
5761
+ * Returns a list of Users who created any memory item for this workspace
5762
+ * @summary Get AI Memory CreatedBy Users
5763
+ * @param {SmartFunctionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
5764
+ * @param {*} [options] Override http request option.
5765
+ * @throws {RequiredError}
5766
+ */
5767
+ memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
5654
5768
  /**
5655
5769
  * Returns a list of available LLM Endpoints
5656
5770
  * @summary Get Active LLM Endpoints for this workspace
@@ -5781,7 +5895,7 @@ export interface SmartFunctionsApiInterface {
5781
5895
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
5782
5896
  /**
5783
5897
  * Returns a list of Users who created any object for this workspace
5784
- * @summary Get Analytics Catalog CreatedBy
5898
+ * @summary Get Analytics Catalog CreatedBy Users
5785
5899
  * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
5786
5900
  * @param {*} [options] Override http request option.
5787
5901
  * @throws {RequiredError}
@@ -5824,6 +5938,15 @@ export interface SmartFunctionsApiInterface {
5824
5938
  * @memberof SmartFunctionsApiInterface
5825
5939
  */
5826
5940
  getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<QualityIssuesCalculationStatusResponse>;
5941
+ /**
5942
+ * Returns a list of Users who created any memory item for this workspace
5943
+ * @summary Get AI Memory CreatedBy Users
5944
+ * @param {SmartFunctionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
5945
+ * @param {*} [options] Override http request option.
5946
+ * @throws {RequiredError}
5947
+ * @memberof SmartFunctionsApiInterface
5948
+ */
5949
+ memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
5827
5950
  /**
5828
5951
  * Returns a list of available LLM Endpoints
5829
5952
  * @summary Get Active LLM Endpoints for this workspace
@@ -6190,6 +6313,19 @@ export interface SmartFunctionsApiGetQualityIssuesCalculationStatusRequest {
6190
6313
  */
6191
6314
  readonly processId: string;
6192
6315
  }
6316
+ /**
6317
+ * Request parameters for memoryCreatedByUsers operation in SmartFunctionsApi.
6318
+ * @export
6319
+ * @interface SmartFunctionsApiMemoryCreatedByUsersRequest
6320
+ */
6321
+ export interface SmartFunctionsApiMemoryCreatedByUsersRequest {
6322
+ /**
6323
+ * Workspace identifier
6324
+ * @type {string}
6325
+ * @memberof SmartFunctionsApiMemoryCreatedByUsers
6326
+ */
6327
+ readonly workspaceId: string;
6328
+ }
6193
6329
  /**
6194
6330
  * Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
6195
6331
  * @export
@@ -6351,7 +6487,7 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
6351
6487
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusteringResult, any, {}>>;
6352
6488
  /**
6353
6489
  * Returns a list of Users who created any object for this workspace
6354
- * @summary Get Analytics Catalog CreatedBy
6490
+ * @summary Get Analytics Catalog CreatedBy Users
6355
6491
  * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
6356
6492
  * @param {*} [options] Override http request option.
6357
6493
  * @throws {RequiredError}
@@ -6394,6 +6530,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
6394
6530
  * @memberof SmartFunctionsApi
6395
6531
  */
6396
6532
  getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QualityIssuesCalculationStatusResponse, any, {}>>;
6533
+ /**
6534
+ * Returns a list of Users who created any memory item for this workspace
6535
+ * @summary Get AI Memory CreatedBy Users
6536
+ * @param {SmartFunctionsApiMemoryCreatedByUsersRequest} requestParameters Request parameters.
6537
+ * @param {*} [options] Override http request option.
6538
+ * @throws {RequiredError}
6539
+ * @memberof SmartFunctionsApi
6540
+ */
6541
+ memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItemCreatedByUsers, any, {}>>;
6397
6542
  /**
6398
6543
  * Returns a list of available LLM Endpoints
6399
6544
  * @summary Get Active LLM Endpoints for this workspace