@gooddata/api-client-tiger 11.8.0-alpha.1 → 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/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +230 -73
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +191 -10
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +147 -8
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +169 -5
- package/esm/generated/metadata-json-api/api.d.ts +86 -62
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +40 -34
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +9842 -9771
- package/esm/generated/scan-json-api/api.d.ts +1 -1
- package/esm/generated/scan-json-api/openapi-spec.json +3 -2
- 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
|
@@ -368,6 +368,7 @@ export declare const AttributeHeaderAttributeHeaderValueTypeEnum: {
|
|
|
368
368
|
readonly GEO: "GEO";
|
|
369
369
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
370
370
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
371
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
371
372
|
readonly IMAGE: "IMAGE";
|
|
372
373
|
};
|
|
373
374
|
export type AttributeHeaderAttributeHeaderValueTypeEnum = (typeof AttributeHeaderAttributeHeaderValueTypeEnum)[keyof typeof AttributeHeaderAttributeHeaderValueTypeEnum];
|
|
@@ -439,6 +440,33 @@ export declare const BoundedFilterGranularityEnum: {
|
|
|
439
440
|
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
440
441
|
};
|
|
441
442
|
export type BoundedFilterGranularityEnum = (typeof BoundedFilterGranularityEnum)[keyof typeof BoundedFilterGranularityEnum];
|
|
443
|
+
/**
|
|
444
|
+
* Change analysis specification.
|
|
445
|
+
*/
|
|
446
|
+
export interface ChangeAnalysisParams {
|
|
447
|
+
measure: MeasureItem;
|
|
448
|
+
dateAttribute: AttributeItem;
|
|
449
|
+
/**
|
|
450
|
+
* The reference time period
|
|
451
|
+
*/
|
|
452
|
+
referencePeriod: string;
|
|
453
|
+
/**
|
|
454
|
+
* The analyzed time period
|
|
455
|
+
*/
|
|
456
|
+
analyzedPeriod: string;
|
|
457
|
+
/**
|
|
458
|
+
* Attributes to analyze for significant changes
|
|
459
|
+
*/
|
|
460
|
+
attributes: Array<AttributeItem>;
|
|
461
|
+
/**
|
|
462
|
+
* Optional filters to apply
|
|
463
|
+
*/
|
|
464
|
+
filters: Array<ChangeAnalysisRequestFiltersInner>;
|
|
465
|
+
/**
|
|
466
|
+
* Whether to use smart attribute selection
|
|
467
|
+
*/
|
|
468
|
+
useSmartAttributeSelection: boolean;
|
|
469
|
+
}
|
|
442
470
|
/**
|
|
443
471
|
* Request for change analysis computation
|
|
444
472
|
*/
|
|
@@ -520,6 +548,7 @@ export interface ChatHistoryInteraction {
|
|
|
520
548
|
errorResponse?: string;
|
|
521
549
|
foundObjects?: FoundObjects;
|
|
522
550
|
createdVisualizations?: CreatedVisualizations;
|
|
551
|
+
changeAnalysisParams?: ChangeAnalysisParams;
|
|
523
552
|
/**
|
|
524
553
|
* User feedback.
|
|
525
554
|
*/
|
|
@@ -553,6 +582,10 @@ export interface ChatHistoryRequest {
|
|
|
553
582
|
* Response state indicating the outcome of the AI interaction.
|
|
554
583
|
*/
|
|
555
584
|
responseState?: ChatHistoryRequestResponseStateEnum;
|
|
585
|
+
/**
|
|
586
|
+
* User text feedback for the interaction.
|
|
587
|
+
*/
|
|
588
|
+
userTextFeedback?: string;
|
|
556
589
|
}
|
|
557
590
|
export declare const ChatHistoryRequestUserFeedbackEnum: {
|
|
558
591
|
readonly POSITIVE: "POSITIVE";
|
|
@@ -631,6 +664,7 @@ export interface ChatResult {
|
|
|
631
664
|
errorResponse?: string;
|
|
632
665
|
foundObjects?: FoundObjects;
|
|
633
666
|
createdVisualizations?: CreatedVisualizations;
|
|
667
|
+
changeAnalysisParams?: ChangeAnalysisParams;
|
|
634
668
|
/**
|
|
635
669
|
* Chat History thread suffix appended to ID generated by backend. Enables more chat windows.
|
|
636
670
|
*/
|
|
@@ -1266,6 +1300,7 @@ export declare const KeyDriversDimensionValueTypeEnum: {
|
|
|
1266
1300
|
readonly GEO: "GEO";
|
|
1267
1301
|
readonly GEO_LONGITUDE: "GEO_LONGITUDE";
|
|
1268
1302
|
readonly GEO_LATITUDE: "GEO_LATITUDE";
|
|
1303
|
+
readonly GEO_AREA: "GEO_AREA";
|
|
1269
1304
|
readonly IMAGE: "IMAGE";
|
|
1270
1305
|
};
|
|
1271
1306
|
export type KeyDriversDimensionValueTypeEnum = (typeof KeyDriversDimensionValueTypeEnum)[keyof typeof KeyDriversDimensionValueTypeEnum];
|
|
@@ -1344,6 +1379,33 @@ export interface MeasureResultHeader {
|
|
|
1344
1379
|
* Abstract filter definition type filtering by the value of the metric.
|
|
1345
1380
|
*/
|
|
1346
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
|
+
}
|
|
1347
1409
|
/**
|
|
1348
1410
|
* List of metrics to be used in the new visualization
|
|
1349
1411
|
*/
|
|
@@ -1420,6 +1482,14 @@ export interface MetricValueChange {
|
|
|
1420
1482
|
* Whether the change is statistically significant
|
|
1421
1483
|
*/
|
|
1422
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;
|
|
1423
1493
|
}
|
|
1424
1494
|
/**
|
|
1425
1495
|
* Filter able to limit element values by label and related selected negated elements.
|
|
@@ -1762,6 +1832,7 @@ export declare const RouteResultUseCaseEnum: {
|
|
|
1762
1832
|
readonly CREATE_VISUALIZATION: "CREATE_VISUALIZATION";
|
|
1763
1833
|
readonly EXTEND_VISUALIZATION: "EXTEND_VISUALIZATION";
|
|
1764
1834
|
readonly HOWTO: "HOWTO";
|
|
1835
|
+
readonly CHANGE_ANALYSIS: "CHANGE_ANALYSIS";
|
|
1765
1836
|
};
|
|
1766
1837
|
export type RouteResultUseCaseEnum = (typeof RouteResultUseCaseEnum)[keyof typeof RouteResultUseCaseEnum];
|
|
1767
1838
|
/**
|
|
@@ -2337,7 +2408,7 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2337
2408
|
computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2338
2409
|
/**
|
|
2339
2410
|
* Returns a list of Users who created any object for this workspace
|
|
2340
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
2411
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
2341
2412
|
* @param {string} workspaceId Workspace identifier
|
|
2342
2413
|
* @param {*} [options] Override http request option.
|
|
2343
2414
|
* @throws {RequiredError}
|
|
@@ -2413,6 +2484,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2413
2484
|
* @throws {RequiredError}
|
|
2414
2485
|
*/
|
|
2415
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>;
|
|
2416
2495
|
/**
|
|
2417
2496
|
* Returns a list of available LLM Endpoints
|
|
2418
2497
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -2640,7 +2719,7 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2640
2719
|
computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
|
|
2641
2720
|
/**
|
|
2642
2721
|
* Returns a list of Users who created any object for this workspace
|
|
2643
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
2722
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
2644
2723
|
* @param {string} workspaceId Workspace identifier
|
|
2645
2724
|
* @param {*} [options] Override http request option.
|
|
2646
2725
|
* @throws {RequiredError}
|
|
@@ -2716,6 +2795,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2716
2795
|
* @throws {RequiredError}
|
|
2717
2796
|
*/
|
|
2718
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>>;
|
|
2719
2806
|
/**
|
|
2720
2807
|
* Returns a list of available LLM Endpoints
|
|
2721
2808
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -2915,7 +3002,7 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2915
3002
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
2916
3003
|
/**
|
|
2917
3004
|
* Returns a list of Users who created any object for this workspace
|
|
2918
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
3005
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
2919
3006
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
2920
3007
|
* @param {*} [options] Override http request option.
|
|
2921
3008
|
* @throws {RequiredError}
|
|
@@ -2977,6 +3064,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2977
3064
|
* @throws {RequiredError}
|
|
2978
3065
|
*/
|
|
2979
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>;
|
|
2980
3075
|
/**
|
|
2981
3076
|
* Returns a list of available LLM Endpoints
|
|
2982
3077
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3186,7 +3281,7 @@ export interface ActionsApiInterface {
|
|
|
3186
3281
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
3187
3282
|
/**
|
|
3188
3283
|
* Returns a list of Users who created any object for this workspace
|
|
3189
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
3284
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
3190
3285
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
3191
3286
|
* @param {*} [options] Override http request option.
|
|
3192
3287
|
* @throws {RequiredError}
|
|
@@ -3256,6 +3351,15 @@ export interface ActionsApiInterface {
|
|
|
3256
3351
|
* @memberof ActionsApiInterface
|
|
3257
3352
|
*/
|
|
3258
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>;
|
|
3259
3363
|
/**
|
|
3260
3364
|
* Returns a list of available LLM Endpoints
|
|
3261
3365
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3884,6 +3988,19 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
|
|
|
3884
3988
|
*/
|
|
3885
3989
|
readonly limit?: number;
|
|
3886
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
|
+
}
|
|
3887
4004
|
/**
|
|
3888
4005
|
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
3889
4006
|
* @export
|
|
@@ -4170,7 +4287,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4170
4287
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AfmValidObjectsResponse, any, {}>>;
|
|
4171
4288
|
/**
|
|
4172
4289
|
* Returns a list of Users who created any object for this workspace
|
|
4173
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
4290
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
4174
4291
|
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
4175
4292
|
* @param {*} [options] Override http request option.
|
|
4176
4293
|
* @throws {RequiredError}
|
|
@@ -4240,6 +4357,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4240
4357
|
* @memberof ActionsApi
|
|
4241
4358
|
*/
|
|
4242
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, {}>>;
|
|
4243
4369
|
/**
|
|
4244
4370
|
* Returns a list of available LLM Endpoints
|
|
4245
4371
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5229,7 +5355,7 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5229
5355
|
clusteringResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5230
5356
|
/**
|
|
5231
5357
|
* Returns a list of Users who created any object for this workspace
|
|
5232
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5358
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5233
5359
|
* @param {string} workspaceId Workspace identifier
|
|
5234
5360
|
* @param {*} [options] Override http request option.
|
|
5235
5361
|
* @throws {RequiredError}
|
|
@@ -5274,6 +5400,14 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5274
5400
|
* @throws {RequiredError}
|
|
5275
5401
|
*/
|
|
5276
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>;
|
|
5277
5411
|
/**
|
|
5278
5412
|
* Returns a list of available LLM Endpoints
|
|
5279
5413
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5411,7 +5545,7 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
5411
5545
|
clusteringResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusteringResult>>;
|
|
5412
5546
|
/**
|
|
5413
5547
|
* Returns a list of Users who created any object for this workspace
|
|
5414
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5548
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5415
5549
|
* @param {string} workspaceId Workspace identifier
|
|
5416
5550
|
* @param {*} [options] Override http request option.
|
|
5417
5551
|
* @throws {RequiredError}
|
|
@@ -5456,6 +5590,14 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
5456
5590
|
* @throws {RequiredError}
|
|
5457
5591
|
*/
|
|
5458
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>>;
|
|
5459
5601
|
/**
|
|
5460
5602
|
* Returns a list of available LLM Endpoints
|
|
5461
5603
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5577,7 +5719,7 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
5577
5719
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
|
|
5578
5720
|
/**
|
|
5579
5721
|
* Returns a list of Users who created any object for this workspace
|
|
5580
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5722
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5581
5723
|
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5582
5724
|
* @param {*} [options] Override http request option.
|
|
5583
5725
|
* @throws {RequiredError}
|
|
@@ -5615,6 +5757,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
5615
5757
|
* @throws {RequiredError}
|
|
5616
5758
|
*/
|
|
5617
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>;
|
|
5618
5768
|
/**
|
|
5619
5769
|
* Returns a list of available LLM Endpoints
|
|
5620
5770
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5745,7 +5895,7 @@ export interface SmartFunctionsApiInterface {
|
|
|
5745
5895
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
|
|
5746
5896
|
/**
|
|
5747
5897
|
* Returns a list of Users who created any object for this workspace
|
|
5748
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
5898
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
5749
5899
|
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5750
5900
|
* @param {*} [options] Override http request option.
|
|
5751
5901
|
* @throws {RequiredError}
|
|
@@ -5788,6 +5938,15 @@ export interface SmartFunctionsApiInterface {
|
|
|
5788
5938
|
* @memberof SmartFunctionsApiInterface
|
|
5789
5939
|
*/
|
|
5790
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>;
|
|
5791
5950
|
/**
|
|
5792
5951
|
* Returns a list of available LLM Endpoints
|
|
5793
5952
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6154,6 +6313,19 @@ export interface SmartFunctionsApiGetQualityIssuesCalculationStatusRequest {
|
|
|
6154
6313
|
*/
|
|
6155
6314
|
readonly processId: string;
|
|
6156
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
|
+
}
|
|
6157
6329
|
/**
|
|
6158
6330
|
* Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
|
|
6159
6331
|
* @export
|
|
@@ -6315,7 +6487,7 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
6315
6487
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusteringResult, any, {}>>;
|
|
6316
6488
|
/**
|
|
6317
6489
|
* Returns a list of Users who created any object for this workspace
|
|
6318
|
-
* @summary Get Analytics Catalog CreatedBy
|
|
6490
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
6319
6491
|
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
6320
6492
|
* @param {*} [options] Override http request option.
|
|
6321
6493
|
* @throws {RequiredError}
|
|
@@ -6358,6 +6530,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
6358
6530
|
* @memberof SmartFunctionsApi
|
|
6359
6531
|
*/
|
|
6360
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, {}>>;
|
|
6361
6542
|
/**
|
|
6362
6543
|
* Returns a list of available LLM Endpoints
|
|
6363
6544
|
* @summary Get Active LLM Endpoints for this workspace
|