@gooddata/api-client-tiger 11.6.0 → 11.7.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +20 -389
- package/esm/generated/afm-rest-api/api.d.ts +18 -695
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +8 -763
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +15 -283
- package/package.json +4 -4
|
@@ -669,8 +669,8 @@ export interface ClusteringResult {
|
|
|
669
669
|
xCoord?: Array<number | null>;
|
|
670
670
|
yCoord?: Array<number | null>;
|
|
671
671
|
clusters: Array<number | null>;
|
|
672
|
-
ycoord: Array<number>;
|
|
673
672
|
xcoord: Array<number>;
|
|
673
|
+
ycoord: Array<number>;
|
|
674
674
|
}
|
|
675
675
|
/**
|
|
676
676
|
* Filter the result by comparing specified metric to given constant value, using given comparison operator.
|
|
@@ -1185,7 +1185,18 @@ export interface GetQualityIssuesResponse {
|
|
|
1185
1185
|
* Timestamp when the quality issues were last updated (ISO format)
|
|
1186
1186
|
*/
|
|
1187
1187
|
updatedAt?: string;
|
|
1188
|
+
/**
|
|
1189
|
+
* Status of the latest triggered quality check process
|
|
1190
|
+
*/
|
|
1191
|
+
status: GetQualityIssuesResponseStatusEnum;
|
|
1188
1192
|
}
|
|
1193
|
+
export declare const GetQualityIssuesResponseStatusEnum: {
|
|
1194
|
+
readonly RUNNING: "RUNNING";
|
|
1195
|
+
readonly COMPLETED: "COMPLETED";
|
|
1196
|
+
readonly FAILED: "FAILED";
|
|
1197
|
+
readonly NOT_FOUND: "NOT_FOUND";
|
|
1198
|
+
};
|
|
1199
|
+
export type GetQualityIssuesResponseStatusEnum = (typeof GetQualityIssuesResponseStatusEnum)[keyof typeof GetQualityIssuesResponseStatusEnum];
|
|
1189
1200
|
/**
|
|
1190
1201
|
* Contains the information specific for a group of headers. These groups correlate to attributes and metric groups.
|
|
1191
1202
|
*/
|
|
@@ -1333,68 +1344,6 @@ export interface MeasureResultHeader {
|
|
|
1333
1344
|
* Abstract filter definition type filtering by the value of the metric.
|
|
1334
1345
|
*/
|
|
1335
1346
|
export type MeasureValueFilter = ComparisonMeasureValueFilter | RangeMeasureValueFilter;
|
|
1336
|
-
export interface MemoryItem {
|
|
1337
|
-
/**
|
|
1338
|
-
* Memory item ID
|
|
1339
|
-
*/
|
|
1340
|
-
id: string;
|
|
1341
|
-
useCases?: MemoryItemUseCases;
|
|
1342
|
-
/**
|
|
1343
|
-
* Defines the application strategy.
|
|
1344
|
-
*/
|
|
1345
|
-
strategy?: MemoryItemStrategyEnum;
|
|
1346
|
-
/**
|
|
1347
|
-
* Instruction that will be injected into the prompt.
|
|
1348
|
-
*/
|
|
1349
|
-
instruction: string;
|
|
1350
|
-
/**
|
|
1351
|
-
* List of keywords used to match the memory item.
|
|
1352
|
-
*/
|
|
1353
|
-
keywords: Array<string>;
|
|
1354
|
-
}
|
|
1355
|
-
export declare const MemoryItemStrategyEnum: {
|
|
1356
|
-
readonly MEMORY_ITEM_STRATEGY_ALLWAYS: "MEMORY_ITEM_STRATEGY_ALLWAYS";
|
|
1357
|
-
readonly MEMORY_ITEM_STRATEGY_NEVER: "MEMORY_ITEM_STRATEGY_NEVER";
|
|
1358
|
-
readonly MEMORY_ITEM_STRATEGY_AUTO: "MEMORY_ITEM_STRATEGY_AUTO";
|
|
1359
|
-
};
|
|
1360
|
-
export type MemoryItemStrategyEnum = (typeof MemoryItemStrategyEnum)[keyof typeof MemoryItemStrategyEnum];
|
|
1361
|
-
/**
|
|
1362
|
-
* Defines the prompts where the given instruction should be applied.
|
|
1363
|
-
*/
|
|
1364
|
-
export interface MemoryItemUseCases {
|
|
1365
|
-
/**
|
|
1366
|
-
* Appy this memory item to the router prompt.
|
|
1367
|
-
*/
|
|
1368
|
-
router: boolean;
|
|
1369
|
-
/**
|
|
1370
|
-
* Apply this memory item to the search keyword extraction prompt.
|
|
1371
|
-
*/
|
|
1372
|
-
keywords: boolean;
|
|
1373
|
-
/**
|
|
1374
|
-
* Apply this memory item to the search prompt.
|
|
1375
|
-
*/
|
|
1376
|
-
search: boolean;
|
|
1377
|
-
/**
|
|
1378
|
-
* Apply this memory item to the visualization prompt.
|
|
1379
|
-
*/
|
|
1380
|
-
visualization: boolean;
|
|
1381
|
-
/**
|
|
1382
|
-
* Apply this memory item to the general answer prompt.
|
|
1383
|
-
*/
|
|
1384
|
-
general: boolean;
|
|
1385
|
-
/**
|
|
1386
|
-
* Apply this memory item to the how-to prompt.
|
|
1387
|
-
*/
|
|
1388
|
-
howto: boolean;
|
|
1389
|
-
/**
|
|
1390
|
-
* Apply this memory item to the normalize prompt.
|
|
1391
|
-
*/
|
|
1392
|
-
normalize: boolean;
|
|
1393
|
-
/**
|
|
1394
|
-
* Apply this memory item to the metric selection prompt.
|
|
1395
|
-
*/
|
|
1396
|
-
metric: boolean;
|
|
1397
|
-
}
|
|
1398
1347
|
/**
|
|
1399
1348
|
* List of metrics to be used in the new visualization
|
|
1400
1349
|
*/
|
|
@@ -1595,8 +1544,8 @@ export interface QualityIssue {
|
|
|
1595
1544
|
};
|
|
1596
1545
|
}
|
|
1597
1546
|
export declare const QualityIssueSeverityEnum: {
|
|
1598
|
-
readonly
|
|
1599
|
-
readonly
|
|
1547
|
+
readonly WARNING: "WARNING";
|
|
1548
|
+
readonly INFO: "INFO";
|
|
1600
1549
|
};
|
|
1601
1550
|
export type QualityIssueSeverityEnum = (typeof QualityIssueSeverityEnum)[keyof typeof QualityIssueSeverityEnum];
|
|
1602
1551
|
/**
|
|
@@ -1615,6 +1564,10 @@ export interface QualityIssueObject {
|
|
|
1615
1564
|
* Workspace ID where the object belongs
|
|
1616
1565
|
*/
|
|
1617
1566
|
workspaceId: string;
|
|
1567
|
+
/**
|
|
1568
|
+
* Object title
|
|
1569
|
+
*/
|
|
1570
|
+
title: string;
|
|
1618
1571
|
}
|
|
1619
1572
|
export interface QualityIssuesCalculationStatusResponse {
|
|
1620
1573
|
/**
|
|
@@ -2382,15 +2335,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2382
2335
|
* @throws {RequiredError}
|
|
2383
2336
|
*/
|
|
2384
2337
|
computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2385
|
-
/**
|
|
2386
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
2387
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
2388
|
-
* @param {string} workspaceId Workspace identifier
|
|
2389
|
-
* @param {MemoryItem} memoryItem
|
|
2390
|
-
* @param {*} [options] Override http request option.
|
|
2391
|
-
* @throws {RequiredError}
|
|
2392
|
-
*/
|
|
2393
|
-
createMemoryItem: (workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2394
2338
|
/**
|
|
2395
2339
|
* Returns a list of Users who created any object for this workspace
|
|
2396
2340
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -2431,15 +2375,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2431
2375
|
* @throws {RequiredError}
|
|
2432
2376
|
*/
|
|
2433
2377
|
forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2434
|
-
/**
|
|
2435
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
2436
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
2437
|
-
* @param {string} workspaceId Workspace identifier
|
|
2438
|
-
* @param {string} memoryId
|
|
2439
|
-
* @param {*} [options] Override http request option.
|
|
2440
|
-
* @throws {RequiredError}
|
|
2441
|
-
*/
|
|
2442
|
-
getMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2443
2378
|
/**
|
|
2444
2379
|
* Returns metadata quality issues detected by the platform linter.
|
|
2445
2380
|
* @summary Get Quality Issues
|
|
@@ -2478,23 +2413,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2478
2413
|
* @throws {RequiredError}
|
|
2479
2414
|
*/
|
|
2480
2415
|
keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2481
|
-
/**
|
|
2482
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
2483
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
2484
|
-
* @param {string} workspaceId Workspace identifier
|
|
2485
|
-
* @param {*} [options] Override http request option.
|
|
2486
|
-
* @throws {RequiredError}
|
|
2487
|
-
*/
|
|
2488
|
-
listMemoryItems: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2489
|
-
/**
|
|
2490
|
-
* (EXPERIMENTAL) Removes memory item
|
|
2491
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
2492
|
-
* @param {string} workspaceId Workspace identifier
|
|
2493
|
-
* @param {string} memoryId
|
|
2494
|
-
* @param {*} [options] Override http request option.
|
|
2495
|
-
* @throws {RequiredError}
|
|
2496
|
-
*/
|
|
2497
|
-
removeMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2498
2416
|
/**
|
|
2499
2417
|
* Returns a list of available LLM Endpoints
|
|
2500
2418
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -2541,16 +2459,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2541
2459
|
* @throws {RequiredError}
|
|
2542
2460
|
*/
|
|
2543
2461
|
triggerQualityIssuesCalculation: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2544
|
-
/**
|
|
2545
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
2546
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
2547
|
-
* @param {string} workspaceId Workspace identifier
|
|
2548
|
-
* @param {string} memoryId
|
|
2549
|
-
* @param {MemoryItem} memoryItem
|
|
2550
|
-
* @param {*} [options] Override http request option.
|
|
2551
|
-
* @throws {RequiredError}
|
|
2552
|
-
*/
|
|
2553
|
-
updateMemoryItem: (workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2554
2462
|
/**
|
|
2555
2463
|
* Validates LLM endpoint with provided parameters.
|
|
2556
2464
|
* @summary Validate LLM Endpoint
|
|
@@ -2730,15 +2638,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2730
2638
|
* @throws {RequiredError}
|
|
2731
2639
|
*/
|
|
2732
2640
|
computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
|
|
2733
|
-
/**
|
|
2734
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
2735
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
2736
|
-
* @param {string} workspaceId Workspace identifier
|
|
2737
|
-
* @param {MemoryItem} memoryItem
|
|
2738
|
-
* @param {*} [options] Override http request option.
|
|
2739
|
-
* @throws {RequiredError}
|
|
2740
|
-
*/
|
|
2741
|
-
createMemoryItem(workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
2742
2641
|
/**
|
|
2743
2642
|
* Returns a list of Users who created any object for this workspace
|
|
2744
2643
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -2779,15 +2678,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2779
2678
|
* @throws {RequiredError}
|
|
2780
2679
|
*/
|
|
2781
2680
|
forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
|
|
2782
|
-
/**
|
|
2783
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
2784
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
2785
|
-
* @param {string} workspaceId Workspace identifier
|
|
2786
|
-
* @param {string} memoryId
|
|
2787
|
-
* @param {*} [options] Override http request option.
|
|
2788
|
-
* @throws {RequiredError}
|
|
2789
|
-
*/
|
|
2790
|
-
getMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
2791
2681
|
/**
|
|
2792
2682
|
* Returns metadata quality issues detected by the platform linter.
|
|
2793
2683
|
* @summary Get Quality Issues
|
|
@@ -2826,23 +2716,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2826
2716
|
* @throws {RequiredError}
|
|
2827
2717
|
*/
|
|
2828
2718
|
keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
|
|
2829
|
-
/**
|
|
2830
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
2831
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
2832
|
-
* @param {string} workspaceId Workspace identifier
|
|
2833
|
-
* @param {*} [options] Override http request option.
|
|
2834
|
-
* @throws {RequiredError}
|
|
2835
|
-
*/
|
|
2836
|
-
listMemoryItems(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MemoryItem>>>;
|
|
2837
|
-
/**
|
|
2838
|
-
* (EXPERIMENTAL) Removes memory item
|
|
2839
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
2840
|
-
* @param {string} workspaceId Workspace identifier
|
|
2841
|
-
* @param {string} memoryId
|
|
2842
|
-
* @param {*} [options] Override http request option.
|
|
2843
|
-
* @throws {RequiredError}
|
|
2844
|
-
*/
|
|
2845
|
-
removeMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2846
2719
|
/**
|
|
2847
2720
|
* Returns a list of available LLM Endpoints
|
|
2848
2721
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -2889,16 +2762,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2889
2762
|
* @throws {RequiredError}
|
|
2890
2763
|
*/
|
|
2891
2764
|
triggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TriggerQualityIssuesCalculationResponse>>;
|
|
2892
|
-
/**
|
|
2893
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
2894
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
2895
|
-
* @param {string} workspaceId Workspace identifier
|
|
2896
|
-
* @param {string} memoryId
|
|
2897
|
-
* @param {MemoryItem} memoryItem
|
|
2898
|
-
* @param {*} [options] Override http request option.
|
|
2899
|
-
* @throws {RequiredError}
|
|
2900
|
-
*/
|
|
2901
|
-
updateMemoryItem(workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
2902
2765
|
/**
|
|
2903
2766
|
* Validates LLM endpoint with provided parameters.
|
|
2904
2767
|
* @summary Validate LLM Endpoint
|
|
@@ -3050,14 +2913,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
3050
2913
|
* @throws {RequiredError}
|
|
3051
2914
|
*/
|
|
3052
2915
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
3053
|
-
/**
|
|
3054
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
3055
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
3056
|
-
* @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
3057
|
-
* @param {*} [options] Override http request option.
|
|
3058
|
-
* @throws {RequiredError}
|
|
3059
|
-
*/
|
|
3060
|
-
createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
3061
2916
|
/**
|
|
3062
2917
|
* Returns a list of Users who created any object for this workspace
|
|
3063
2918
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -3090,14 +2945,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
3090
2945
|
* @throws {RequiredError}
|
|
3091
2946
|
*/
|
|
3092
2947
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
3093
|
-
/**
|
|
3094
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
3095
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
3096
|
-
* @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
3097
|
-
* @param {*} [options] Override http request option.
|
|
3098
|
-
* @throws {RequiredError}
|
|
3099
|
-
*/
|
|
3100
|
-
getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
3101
2948
|
/**
|
|
3102
2949
|
* Returns metadata quality issues detected by the platform linter.
|
|
3103
2950
|
* @summary Get Quality Issues
|
|
@@ -3130,22 +2977,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
3130
2977
|
* @throws {RequiredError}
|
|
3131
2978
|
*/
|
|
3132
2979
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
3133
|
-
/**
|
|
3134
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
3135
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
3136
|
-
* @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
3137
|
-
* @param {*} [options] Override http request option.
|
|
3138
|
-
* @throws {RequiredError}
|
|
3139
|
-
*/
|
|
3140
|
-
listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
|
|
3141
|
-
/**
|
|
3142
|
-
* (EXPERIMENTAL) Removes memory item
|
|
3143
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
3144
|
-
* @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
3145
|
-
* @param {*} [options] Override http request option.
|
|
3146
|
-
* @throws {RequiredError}
|
|
3147
|
-
*/
|
|
3148
|
-
removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3149
2980
|
/**
|
|
3150
2981
|
* Returns a list of available LLM Endpoints
|
|
3151
2982
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3186,14 +3017,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
3186
3017
|
* @throws {RequiredError}
|
|
3187
3018
|
*/
|
|
3188
3019
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
3189
|
-
/**
|
|
3190
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
3191
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
3192
|
-
* @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
3193
|
-
* @param {*} [options] Override http request option.
|
|
3194
|
-
* @throws {RequiredError}
|
|
3195
|
-
*/
|
|
3196
|
-
updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
3197
3020
|
/**
|
|
3198
3021
|
* Validates LLM endpoint with provided parameters.
|
|
3199
3022
|
* @summary Validate LLM Endpoint
|
|
@@ -3361,15 +3184,6 @@ export interface ActionsApiInterface {
|
|
|
3361
3184
|
* @memberof ActionsApiInterface
|
|
3362
3185
|
*/
|
|
3363
3186
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
3364
|
-
/**
|
|
3365
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
3366
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
3367
|
-
* @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
3368
|
-
* @param {*} [options] Override http request option.
|
|
3369
|
-
* @throws {RequiredError}
|
|
3370
|
-
* @memberof ActionsApiInterface
|
|
3371
|
-
*/
|
|
3372
|
-
createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
3373
3187
|
/**
|
|
3374
3188
|
* Returns a list of Users who created any object for this workspace
|
|
3375
3189
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -3406,15 +3220,6 @@ export interface ActionsApiInterface {
|
|
|
3406
3220
|
* @memberof ActionsApiInterface
|
|
3407
3221
|
*/
|
|
3408
3222
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
3409
|
-
/**
|
|
3410
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
3411
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
3412
|
-
* @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
3413
|
-
* @param {*} [options] Override http request option.
|
|
3414
|
-
* @throws {RequiredError}
|
|
3415
|
-
* @memberof ActionsApiInterface
|
|
3416
|
-
*/
|
|
3417
|
-
getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
3418
3223
|
/**
|
|
3419
3224
|
* Returns metadata quality issues detected by the platform linter.
|
|
3420
3225
|
* @summary Get Quality Issues
|
|
@@ -3451,24 +3256,6 @@ export interface ActionsApiInterface {
|
|
|
3451
3256
|
* @memberof ActionsApiInterface
|
|
3452
3257
|
*/
|
|
3453
3258
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
3454
|
-
/**
|
|
3455
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
3456
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
3457
|
-
* @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
3458
|
-
* @param {*} [options] Override http request option.
|
|
3459
|
-
* @throws {RequiredError}
|
|
3460
|
-
* @memberof ActionsApiInterface
|
|
3461
|
-
*/
|
|
3462
|
-
listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
|
|
3463
|
-
/**
|
|
3464
|
-
* (EXPERIMENTAL) Removes memory item
|
|
3465
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
3466
|
-
* @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
3467
|
-
* @param {*} [options] Override http request option.
|
|
3468
|
-
* @throws {RequiredError}
|
|
3469
|
-
* @memberof ActionsApiInterface
|
|
3470
|
-
*/
|
|
3471
|
-
removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3472
3259
|
/**
|
|
3473
3260
|
* Returns a list of available LLM Endpoints
|
|
3474
3261
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3514,15 +3301,6 @@ export interface ActionsApiInterface {
|
|
|
3514
3301
|
* @memberof ActionsApiInterface
|
|
3515
3302
|
*/
|
|
3516
3303
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
3517
|
-
/**
|
|
3518
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
3519
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
3520
|
-
* @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
3521
|
-
* @param {*} [options] Override http request option.
|
|
3522
|
-
* @throws {RequiredError}
|
|
3523
|
-
* @memberof ActionsApiInterface
|
|
3524
|
-
*/
|
|
3525
|
-
updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
3526
3304
|
/**
|
|
3527
3305
|
* Validates LLM endpoint with provided parameters.
|
|
3528
3306
|
* @summary Validate LLM Endpoint
|
|
@@ -3918,25 +3696,6 @@ export interface ActionsApiComputeValidObjectsRequest {
|
|
|
3918
3696
|
*/
|
|
3919
3697
|
readonly afmValidObjectsQuery: AfmValidObjectsQuery;
|
|
3920
3698
|
}
|
|
3921
|
-
/**
|
|
3922
|
-
* Request parameters for createMemoryItem operation in ActionsApi.
|
|
3923
|
-
* @export
|
|
3924
|
-
* @interface ActionsApiCreateMemoryItemRequest
|
|
3925
|
-
*/
|
|
3926
|
-
export interface ActionsApiCreateMemoryItemRequest {
|
|
3927
|
-
/**
|
|
3928
|
-
* Workspace identifier
|
|
3929
|
-
* @type {string}
|
|
3930
|
-
* @memberof ActionsApiCreateMemoryItem
|
|
3931
|
-
*/
|
|
3932
|
-
readonly workspaceId: string;
|
|
3933
|
-
/**
|
|
3934
|
-
*
|
|
3935
|
-
* @type {MemoryItem}
|
|
3936
|
-
* @memberof ActionsApiCreateMemoryItem
|
|
3937
|
-
*/
|
|
3938
|
-
readonly memoryItem: MemoryItem;
|
|
3939
|
-
}
|
|
3940
3699
|
/**
|
|
3941
3700
|
* Request parameters for createdBy operation in ActionsApi.
|
|
3942
3701
|
* @export
|
|
@@ -4037,25 +3796,6 @@ export interface ActionsApiForecastResultRequest {
|
|
|
4037
3796
|
*/
|
|
4038
3797
|
readonly limit?: number;
|
|
4039
3798
|
}
|
|
4040
|
-
/**
|
|
4041
|
-
* Request parameters for getMemoryItem operation in ActionsApi.
|
|
4042
|
-
* @export
|
|
4043
|
-
* @interface ActionsApiGetMemoryItemRequest
|
|
4044
|
-
*/
|
|
4045
|
-
export interface ActionsApiGetMemoryItemRequest {
|
|
4046
|
-
/**
|
|
4047
|
-
* Workspace identifier
|
|
4048
|
-
* @type {string}
|
|
4049
|
-
* @memberof ActionsApiGetMemoryItem
|
|
4050
|
-
*/
|
|
4051
|
-
readonly workspaceId: string;
|
|
4052
|
-
/**
|
|
4053
|
-
*
|
|
4054
|
-
* @type {string}
|
|
4055
|
-
* @memberof ActionsApiGetMemoryItem
|
|
4056
|
-
*/
|
|
4057
|
-
readonly memoryId: string;
|
|
4058
|
-
}
|
|
4059
3799
|
/**
|
|
4060
3800
|
* Request parameters for getQualityIssues operation in ActionsApi.
|
|
4061
3801
|
* @export
|
|
@@ -4144,38 +3884,6 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
|
|
|
4144
3884
|
*/
|
|
4145
3885
|
readonly limit?: number;
|
|
4146
3886
|
}
|
|
4147
|
-
/**
|
|
4148
|
-
* Request parameters for listMemoryItems operation in ActionsApi.
|
|
4149
|
-
* @export
|
|
4150
|
-
* @interface ActionsApiListMemoryItemsRequest
|
|
4151
|
-
*/
|
|
4152
|
-
export interface ActionsApiListMemoryItemsRequest {
|
|
4153
|
-
/**
|
|
4154
|
-
* Workspace identifier
|
|
4155
|
-
* @type {string}
|
|
4156
|
-
* @memberof ActionsApiListMemoryItems
|
|
4157
|
-
*/
|
|
4158
|
-
readonly workspaceId: string;
|
|
4159
|
-
}
|
|
4160
|
-
/**
|
|
4161
|
-
* Request parameters for removeMemoryItem operation in ActionsApi.
|
|
4162
|
-
* @export
|
|
4163
|
-
* @interface ActionsApiRemoveMemoryItemRequest
|
|
4164
|
-
*/
|
|
4165
|
-
export interface ActionsApiRemoveMemoryItemRequest {
|
|
4166
|
-
/**
|
|
4167
|
-
* Workspace identifier
|
|
4168
|
-
* @type {string}
|
|
4169
|
-
* @memberof ActionsApiRemoveMemoryItem
|
|
4170
|
-
*/
|
|
4171
|
-
readonly workspaceId: string;
|
|
4172
|
-
/**
|
|
4173
|
-
*
|
|
4174
|
-
* @type {string}
|
|
4175
|
-
* @memberof ActionsApiRemoveMemoryItem
|
|
4176
|
-
*/
|
|
4177
|
-
readonly memoryId: string;
|
|
4178
|
-
}
|
|
4179
3887
|
/**
|
|
4180
3888
|
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
4181
3889
|
* @export
|
|
@@ -4277,31 +3985,6 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
4277
3985
|
*/
|
|
4278
3986
|
readonly workspaceId: string;
|
|
4279
3987
|
}
|
|
4280
|
-
/**
|
|
4281
|
-
* Request parameters for updateMemoryItem operation in ActionsApi.
|
|
4282
|
-
* @export
|
|
4283
|
-
* @interface ActionsApiUpdateMemoryItemRequest
|
|
4284
|
-
*/
|
|
4285
|
-
export interface ActionsApiUpdateMemoryItemRequest {
|
|
4286
|
-
/**
|
|
4287
|
-
* Workspace identifier
|
|
4288
|
-
* @type {string}
|
|
4289
|
-
* @memberof ActionsApiUpdateMemoryItem
|
|
4290
|
-
*/
|
|
4291
|
-
readonly workspaceId: string;
|
|
4292
|
-
/**
|
|
4293
|
-
*
|
|
4294
|
-
* @type {string}
|
|
4295
|
-
* @memberof ActionsApiUpdateMemoryItem
|
|
4296
|
-
*/
|
|
4297
|
-
readonly memoryId: string;
|
|
4298
|
-
/**
|
|
4299
|
-
*
|
|
4300
|
-
* @type {MemoryItem}
|
|
4301
|
-
* @memberof ActionsApiUpdateMemoryItem
|
|
4302
|
-
*/
|
|
4303
|
-
readonly memoryItem: MemoryItem;
|
|
4304
|
-
}
|
|
4305
3988
|
/**
|
|
4306
3989
|
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
4307
3990
|
* @export
|
|
@@ -4485,15 +4168,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4485
4168
|
* @memberof ActionsApi
|
|
4486
4169
|
*/
|
|
4487
4170
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AfmValidObjectsResponse, any, {}>>;
|
|
4488
|
-
/**
|
|
4489
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
4490
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
4491
|
-
* @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
4492
|
-
* @param {*} [options] Override http request option.
|
|
4493
|
-
* @throws {RequiredError}
|
|
4494
|
-
* @memberof ActionsApi
|
|
4495
|
-
*/
|
|
4496
|
-
createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
|
|
4497
4171
|
/**
|
|
4498
4172
|
* Returns a list of Users who created any object for this workspace
|
|
4499
4173
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -4530,15 +4204,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4530
4204
|
* @memberof ActionsApi
|
|
4531
4205
|
*/
|
|
4532
4206
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any, {}>>;
|
|
4533
|
-
/**
|
|
4534
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
4535
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
4536
|
-
* @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
4537
|
-
* @param {*} [options] Override http request option.
|
|
4538
|
-
* @throws {RequiredError}
|
|
4539
|
-
* @memberof ActionsApi
|
|
4540
|
-
*/
|
|
4541
|
-
getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
|
|
4542
4207
|
/**
|
|
4543
4208
|
* Returns metadata quality issues detected by the platform linter.
|
|
4544
4209
|
* @summary Get Quality Issues
|
|
@@ -4575,24 +4240,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4575
4240
|
* @memberof ActionsApi
|
|
4576
4241
|
*/
|
|
4577
4242
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeyDriversResult, any, {}>>;
|
|
4578
|
-
/**
|
|
4579
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
4580
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
4581
|
-
* @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
4582
|
-
* @param {*} [options] Override http request option.
|
|
4583
|
-
* @throws {RequiredError}
|
|
4584
|
-
* @memberof ActionsApi
|
|
4585
|
-
*/
|
|
4586
|
-
listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem[], any, {}>>;
|
|
4587
|
-
/**
|
|
4588
|
-
* (EXPERIMENTAL) Removes memory item
|
|
4589
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
4590
|
-
* @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
4591
|
-
* @param {*} [options] Override http request option.
|
|
4592
|
-
* @throws {RequiredError}
|
|
4593
|
-
* @memberof ActionsApi
|
|
4594
|
-
*/
|
|
4595
|
-
removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
4596
4243
|
/**
|
|
4597
4244
|
* Returns a list of available LLM Endpoints
|
|
4598
4245
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4638,15 +4285,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4638
4285
|
* @memberof ActionsApi
|
|
4639
4286
|
*/
|
|
4640
4287
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TriggerQualityIssuesCalculationResponse, any, {}>>;
|
|
4641
|
-
/**
|
|
4642
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
4643
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
4644
|
-
* @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
4645
|
-
* @param {*} [options] Override http request option.
|
|
4646
|
-
* @throws {RequiredError}
|
|
4647
|
-
* @memberof ActionsApi
|
|
4648
|
-
*/
|
|
4649
|
-
updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
|
|
4650
4288
|
/**
|
|
4651
4289
|
* Validates LLM endpoint with provided parameters.
|
|
4652
4290
|
* @summary Validate LLM Endpoint
|
|
@@ -5589,15 +5227,6 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5589
5227
|
* @throws {RequiredError}
|
|
5590
5228
|
*/
|
|
5591
5229
|
clusteringResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5592
|
-
/**
|
|
5593
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
5594
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
5595
|
-
* @param {string} workspaceId Workspace identifier
|
|
5596
|
-
* @param {MemoryItem} memoryItem
|
|
5597
|
-
* @param {*} [options] Override http request option.
|
|
5598
|
-
* @throws {RequiredError}
|
|
5599
|
-
*/
|
|
5600
|
-
createMemoryItem: (workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5601
5230
|
/**
|
|
5602
5231
|
* Returns a list of Users who created any object for this workspace
|
|
5603
5232
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -5628,15 +5257,6 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5628
5257
|
* @throws {RequiredError}
|
|
5629
5258
|
*/
|
|
5630
5259
|
forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5631
|
-
/**
|
|
5632
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
5633
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
5634
|
-
* @param {string} workspaceId Workspace identifier
|
|
5635
|
-
* @param {string} memoryId
|
|
5636
|
-
* @param {*} [options] Override http request option.
|
|
5637
|
-
* @throws {RequiredError}
|
|
5638
|
-
*/
|
|
5639
|
-
getMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5640
5260
|
/**
|
|
5641
5261
|
* Returns metadata quality issues detected by the platform linter.
|
|
5642
5262
|
* @summary Get Quality Issues
|
|
@@ -5654,23 +5274,6 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5654
5274
|
* @throws {RequiredError}
|
|
5655
5275
|
*/
|
|
5656
5276
|
getQualityIssuesCalculationStatus: (workspaceId: string, processId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5657
|
-
/**
|
|
5658
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
5659
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
5660
|
-
* @param {string} workspaceId Workspace identifier
|
|
5661
|
-
* @param {*} [options] Override http request option.
|
|
5662
|
-
* @throws {RequiredError}
|
|
5663
|
-
*/
|
|
5664
|
-
listMemoryItems: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5665
|
-
/**
|
|
5666
|
-
* (EXPERIMENTAL) Removes memory item
|
|
5667
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
5668
|
-
* @param {string} workspaceId Workspace identifier
|
|
5669
|
-
* @param {string} memoryId
|
|
5670
|
-
* @param {*} [options] Override http request option.
|
|
5671
|
-
* @throws {RequiredError}
|
|
5672
|
-
*/
|
|
5673
|
-
removeMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5674
5277
|
/**
|
|
5675
5278
|
* Returns a list of available LLM Endpoints
|
|
5676
5279
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5695,16 +5298,6 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5695
5298
|
* @throws {RequiredError}
|
|
5696
5299
|
*/
|
|
5697
5300
|
triggerQualityIssuesCalculation: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5698
|
-
/**
|
|
5699
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5700
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
5701
|
-
* @param {string} workspaceId Workspace identifier
|
|
5702
|
-
* @param {string} memoryId
|
|
5703
|
-
* @param {MemoryItem} memoryItem
|
|
5704
|
-
* @param {*} [options] Override http request option.
|
|
5705
|
-
* @throws {RequiredError}
|
|
5706
|
-
*/
|
|
5707
|
-
updateMemoryItem: (workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5708
5301
|
/**
|
|
5709
5302
|
* Validates LLM endpoint with provided parameters.
|
|
5710
5303
|
* @summary Validate LLM Endpoint
|
|
@@ -5816,15 +5409,6 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
5816
5409
|
* @throws {RequiredError}
|
|
5817
5410
|
*/
|
|
5818
5411
|
clusteringResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusteringResult>>;
|
|
5819
|
-
/**
|
|
5820
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
5821
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
5822
|
-
* @param {string} workspaceId Workspace identifier
|
|
5823
|
-
* @param {MemoryItem} memoryItem
|
|
5824
|
-
* @param {*} [options] Override http request option.
|
|
5825
|
-
* @throws {RequiredError}
|
|
5826
|
-
*/
|
|
5827
|
-
createMemoryItem(workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
5828
5412
|
/**
|
|
5829
5413
|
* Returns a list of Users who created any object for this workspace
|
|
5830
5414
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -5855,15 +5439,6 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
5855
5439
|
* @throws {RequiredError}
|
|
5856
5440
|
*/
|
|
5857
5441
|
forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
|
|
5858
|
-
/**
|
|
5859
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
5860
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
5861
|
-
* @param {string} workspaceId Workspace identifier
|
|
5862
|
-
* @param {string} memoryId
|
|
5863
|
-
* @param {*} [options] Override http request option.
|
|
5864
|
-
* @throws {RequiredError}
|
|
5865
|
-
*/
|
|
5866
|
-
getMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
5867
5442
|
/**
|
|
5868
5443
|
* Returns metadata quality issues detected by the platform linter.
|
|
5869
5444
|
* @summary Get Quality Issues
|
|
@@ -5881,23 +5456,6 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
5881
5456
|
* @throws {RequiredError}
|
|
5882
5457
|
*/
|
|
5883
5458
|
getQualityIssuesCalculationStatus(workspaceId: string, processId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QualityIssuesCalculationStatusResponse>>;
|
|
5884
|
-
/**
|
|
5885
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
5886
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
5887
|
-
* @param {string} workspaceId Workspace identifier
|
|
5888
|
-
* @param {*} [options] Override http request option.
|
|
5889
|
-
* @throws {RequiredError}
|
|
5890
|
-
*/
|
|
5891
|
-
listMemoryItems(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MemoryItem>>>;
|
|
5892
|
-
/**
|
|
5893
|
-
* (EXPERIMENTAL) Removes memory item
|
|
5894
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
5895
|
-
* @param {string} workspaceId Workspace identifier
|
|
5896
|
-
* @param {string} memoryId
|
|
5897
|
-
* @param {*} [options] Override http request option.
|
|
5898
|
-
* @throws {RequiredError}
|
|
5899
|
-
*/
|
|
5900
|
-
removeMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5901
5459
|
/**
|
|
5902
5460
|
* Returns a list of available LLM Endpoints
|
|
5903
5461
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5922,16 +5480,6 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
5922
5480
|
* @throws {RequiredError}
|
|
5923
5481
|
*/
|
|
5924
5482
|
triggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TriggerQualityIssuesCalculationResponse>>;
|
|
5925
|
-
/**
|
|
5926
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5927
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
5928
|
-
* @param {string} workspaceId Workspace identifier
|
|
5929
|
-
* @param {string} memoryId
|
|
5930
|
-
* @param {MemoryItem} memoryItem
|
|
5931
|
-
* @param {*} [options] Override http request option.
|
|
5932
|
-
* @throws {RequiredError}
|
|
5933
|
-
*/
|
|
5934
|
-
updateMemoryItem(workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
5935
5483
|
/**
|
|
5936
5484
|
* Validates LLM endpoint with provided parameters.
|
|
5937
5485
|
* @summary Validate LLM Endpoint
|
|
@@ -6027,14 +5575,6 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
6027
5575
|
* @throws {RequiredError}
|
|
6028
5576
|
*/
|
|
6029
5577
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
|
|
6030
|
-
/**
|
|
6031
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
6032
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
6033
|
-
* @param {SmartFunctionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
6034
|
-
* @param {*} [options] Override http request option.
|
|
6035
|
-
* @throws {RequiredError}
|
|
6036
|
-
*/
|
|
6037
|
-
createMemoryItem(requestParameters: SmartFunctionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6038
5578
|
/**
|
|
6039
5579
|
* Returns a list of Users who created any object for this workspace
|
|
6040
5580
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -6059,14 +5599,6 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
6059
5599
|
* @throws {RequiredError}
|
|
6060
5600
|
*/
|
|
6061
5601
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
6062
|
-
/**
|
|
6063
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
6064
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
6065
|
-
* @param {SmartFunctionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
6066
|
-
* @param {*} [options] Override http request option.
|
|
6067
|
-
* @throws {RequiredError}
|
|
6068
|
-
*/
|
|
6069
|
-
getMemoryItem(requestParameters: SmartFunctionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6070
5602
|
/**
|
|
6071
5603
|
* Returns metadata quality issues detected by the platform linter.
|
|
6072
5604
|
* @summary Get Quality Issues
|
|
@@ -6083,22 +5615,6 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
6083
5615
|
* @throws {RequiredError}
|
|
6084
5616
|
*/
|
|
6085
5617
|
getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<QualityIssuesCalculationStatusResponse>;
|
|
6086
|
-
/**
|
|
6087
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
6088
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
6089
|
-
* @param {SmartFunctionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
6090
|
-
* @param {*} [options] Override http request option.
|
|
6091
|
-
* @throws {RequiredError}
|
|
6092
|
-
*/
|
|
6093
|
-
listMemoryItems(requestParameters: SmartFunctionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
|
|
6094
|
-
/**
|
|
6095
|
-
* (EXPERIMENTAL) Removes memory item
|
|
6096
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
6097
|
-
* @param {SmartFunctionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
6098
|
-
* @param {*} [options] Override http request option.
|
|
6099
|
-
* @throws {RequiredError}
|
|
6100
|
-
*/
|
|
6101
|
-
removeMemoryItem(requestParameters: SmartFunctionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
6102
5618
|
/**
|
|
6103
5619
|
* Returns a list of available LLM Endpoints
|
|
6104
5620
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6123,14 +5639,6 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
6123
5639
|
* @throws {RequiredError}
|
|
6124
5640
|
*/
|
|
6125
5641
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
6126
|
-
/**
|
|
6127
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
6128
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
6129
|
-
* @param {SmartFunctionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
6130
|
-
* @param {*} [options] Override http request option.
|
|
6131
|
-
* @throws {RequiredError}
|
|
6132
|
-
*/
|
|
6133
|
-
updateMemoryItem(requestParameters: SmartFunctionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6134
5642
|
/**
|
|
6135
5643
|
* Validates LLM endpoint with provided parameters.
|
|
6136
5644
|
* @summary Validate LLM Endpoint
|
|
@@ -6235,15 +5743,6 @@ export interface SmartFunctionsApiInterface {
|
|
|
6235
5743
|
* @memberof SmartFunctionsApiInterface
|
|
6236
5744
|
*/
|
|
6237
5745
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
|
|
6238
|
-
/**
|
|
6239
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
6240
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
6241
|
-
* @param {SmartFunctionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
6242
|
-
* @param {*} [options] Override http request option.
|
|
6243
|
-
* @throws {RequiredError}
|
|
6244
|
-
* @memberof SmartFunctionsApiInterface
|
|
6245
|
-
*/
|
|
6246
|
-
createMemoryItem(requestParameters: SmartFunctionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6247
5746
|
/**
|
|
6248
5747
|
* Returns a list of Users who created any object for this workspace
|
|
6249
5748
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -6271,15 +5770,6 @@ export interface SmartFunctionsApiInterface {
|
|
|
6271
5770
|
* @memberof SmartFunctionsApiInterface
|
|
6272
5771
|
*/
|
|
6273
5772
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
6274
|
-
/**
|
|
6275
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
6276
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
6277
|
-
* @param {SmartFunctionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
6278
|
-
* @param {*} [options] Override http request option.
|
|
6279
|
-
* @throws {RequiredError}
|
|
6280
|
-
* @memberof SmartFunctionsApiInterface
|
|
6281
|
-
*/
|
|
6282
|
-
getMemoryItem(requestParameters: SmartFunctionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6283
5773
|
/**
|
|
6284
5774
|
* Returns metadata quality issues detected by the platform linter.
|
|
6285
5775
|
* @summary Get Quality Issues
|
|
@@ -6298,24 +5788,6 @@ export interface SmartFunctionsApiInterface {
|
|
|
6298
5788
|
* @memberof SmartFunctionsApiInterface
|
|
6299
5789
|
*/
|
|
6300
5790
|
getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<QualityIssuesCalculationStatusResponse>;
|
|
6301
|
-
/**
|
|
6302
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
6303
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
6304
|
-
* @param {SmartFunctionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
6305
|
-
* @param {*} [options] Override http request option.
|
|
6306
|
-
* @throws {RequiredError}
|
|
6307
|
-
* @memberof SmartFunctionsApiInterface
|
|
6308
|
-
*/
|
|
6309
|
-
listMemoryItems(requestParameters: SmartFunctionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
|
|
6310
|
-
/**
|
|
6311
|
-
* (EXPERIMENTAL) Removes memory item
|
|
6312
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
6313
|
-
* @param {SmartFunctionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
6314
|
-
* @param {*} [options] Override http request option.
|
|
6315
|
-
* @throws {RequiredError}
|
|
6316
|
-
* @memberof SmartFunctionsApiInterface
|
|
6317
|
-
*/
|
|
6318
|
-
removeMemoryItem(requestParameters: SmartFunctionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
6319
5791
|
/**
|
|
6320
5792
|
* Returns a list of available LLM Endpoints
|
|
6321
5793
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6343,15 +5815,6 @@ export interface SmartFunctionsApiInterface {
|
|
|
6343
5815
|
* @memberof SmartFunctionsApiInterface
|
|
6344
5816
|
*/
|
|
6345
5817
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
6346
|
-
/**
|
|
6347
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
6348
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
6349
|
-
* @param {SmartFunctionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
6350
|
-
* @param {*} [options] Override http request option.
|
|
6351
|
-
* @throws {RequiredError}
|
|
6352
|
-
* @memberof SmartFunctionsApiInterface
|
|
6353
|
-
*/
|
|
6354
|
-
updateMemoryItem(requestParameters: SmartFunctionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6355
5818
|
/**
|
|
6356
5819
|
* Validates LLM endpoint with provided parameters.
|
|
6357
5820
|
* @summary Validate LLM Endpoint
|
|
@@ -6584,25 +6047,6 @@ export interface SmartFunctionsApiClusteringResultRequest {
|
|
|
6584
6047
|
*/
|
|
6585
6048
|
readonly limit?: number;
|
|
6586
6049
|
}
|
|
6587
|
-
/**
|
|
6588
|
-
* Request parameters for createMemoryItem operation in SmartFunctionsApi.
|
|
6589
|
-
* @export
|
|
6590
|
-
* @interface SmartFunctionsApiCreateMemoryItemRequest
|
|
6591
|
-
*/
|
|
6592
|
-
export interface SmartFunctionsApiCreateMemoryItemRequest {
|
|
6593
|
-
/**
|
|
6594
|
-
* Workspace identifier
|
|
6595
|
-
* @type {string}
|
|
6596
|
-
* @memberof SmartFunctionsApiCreateMemoryItem
|
|
6597
|
-
*/
|
|
6598
|
-
readonly workspaceId: string;
|
|
6599
|
-
/**
|
|
6600
|
-
*
|
|
6601
|
-
* @type {MemoryItem}
|
|
6602
|
-
* @memberof SmartFunctionsApiCreateMemoryItem
|
|
6603
|
-
*/
|
|
6604
|
-
readonly memoryItem: MemoryItem;
|
|
6605
|
-
}
|
|
6606
6050
|
/**
|
|
6607
6051
|
* Request parameters for createdBy operation in SmartFunctionsApi.
|
|
6608
6052
|
* @export
|
|
@@ -6678,25 +6122,6 @@ export interface SmartFunctionsApiForecastResultRequest {
|
|
|
6678
6122
|
*/
|
|
6679
6123
|
readonly limit?: number;
|
|
6680
6124
|
}
|
|
6681
|
-
/**
|
|
6682
|
-
* Request parameters for getMemoryItem operation in SmartFunctionsApi.
|
|
6683
|
-
* @export
|
|
6684
|
-
* @interface SmartFunctionsApiGetMemoryItemRequest
|
|
6685
|
-
*/
|
|
6686
|
-
export interface SmartFunctionsApiGetMemoryItemRequest {
|
|
6687
|
-
/**
|
|
6688
|
-
* Workspace identifier
|
|
6689
|
-
* @type {string}
|
|
6690
|
-
* @memberof SmartFunctionsApiGetMemoryItem
|
|
6691
|
-
*/
|
|
6692
|
-
readonly workspaceId: string;
|
|
6693
|
-
/**
|
|
6694
|
-
*
|
|
6695
|
-
* @type {string}
|
|
6696
|
-
* @memberof SmartFunctionsApiGetMemoryItem
|
|
6697
|
-
*/
|
|
6698
|
-
readonly memoryId: string;
|
|
6699
|
-
}
|
|
6700
6125
|
/**
|
|
6701
6126
|
* Request parameters for getQualityIssues operation in SmartFunctionsApi.
|
|
6702
6127
|
* @export
|
|
@@ -6729,38 +6154,6 @@ export interface SmartFunctionsApiGetQualityIssuesCalculationStatusRequest {
|
|
|
6729
6154
|
*/
|
|
6730
6155
|
readonly processId: string;
|
|
6731
6156
|
}
|
|
6732
|
-
/**
|
|
6733
|
-
* Request parameters for listMemoryItems operation in SmartFunctionsApi.
|
|
6734
|
-
* @export
|
|
6735
|
-
* @interface SmartFunctionsApiListMemoryItemsRequest
|
|
6736
|
-
*/
|
|
6737
|
-
export interface SmartFunctionsApiListMemoryItemsRequest {
|
|
6738
|
-
/**
|
|
6739
|
-
* Workspace identifier
|
|
6740
|
-
* @type {string}
|
|
6741
|
-
* @memberof SmartFunctionsApiListMemoryItems
|
|
6742
|
-
*/
|
|
6743
|
-
readonly workspaceId: string;
|
|
6744
|
-
}
|
|
6745
|
-
/**
|
|
6746
|
-
* Request parameters for removeMemoryItem operation in SmartFunctionsApi.
|
|
6747
|
-
* @export
|
|
6748
|
-
* @interface SmartFunctionsApiRemoveMemoryItemRequest
|
|
6749
|
-
*/
|
|
6750
|
-
export interface SmartFunctionsApiRemoveMemoryItemRequest {
|
|
6751
|
-
/**
|
|
6752
|
-
* Workspace identifier
|
|
6753
|
-
* @type {string}
|
|
6754
|
-
* @memberof SmartFunctionsApiRemoveMemoryItem
|
|
6755
|
-
*/
|
|
6756
|
-
readonly workspaceId: string;
|
|
6757
|
-
/**
|
|
6758
|
-
*
|
|
6759
|
-
* @type {string}
|
|
6760
|
-
* @memberof SmartFunctionsApiRemoveMemoryItem
|
|
6761
|
-
*/
|
|
6762
|
-
readonly memoryId: string;
|
|
6763
|
-
}
|
|
6764
6157
|
/**
|
|
6765
6158
|
* Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
|
|
6766
6159
|
* @export
|
|
@@ -6800,31 +6193,6 @@ export interface SmartFunctionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
6800
6193
|
*/
|
|
6801
6194
|
readonly workspaceId: string;
|
|
6802
6195
|
}
|
|
6803
|
-
/**
|
|
6804
|
-
* Request parameters for updateMemoryItem operation in SmartFunctionsApi.
|
|
6805
|
-
* @export
|
|
6806
|
-
* @interface SmartFunctionsApiUpdateMemoryItemRequest
|
|
6807
|
-
*/
|
|
6808
|
-
export interface SmartFunctionsApiUpdateMemoryItemRequest {
|
|
6809
|
-
/**
|
|
6810
|
-
* Workspace identifier
|
|
6811
|
-
* @type {string}
|
|
6812
|
-
* @memberof SmartFunctionsApiUpdateMemoryItem
|
|
6813
|
-
*/
|
|
6814
|
-
readonly workspaceId: string;
|
|
6815
|
-
/**
|
|
6816
|
-
*
|
|
6817
|
-
* @type {string}
|
|
6818
|
-
* @memberof SmartFunctionsApiUpdateMemoryItem
|
|
6819
|
-
*/
|
|
6820
|
-
readonly memoryId: string;
|
|
6821
|
-
/**
|
|
6822
|
-
*
|
|
6823
|
-
* @type {MemoryItem}
|
|
6824
|
-
* @memberof SmartFunctionsApiUpdateMemoryItem
|
|
6825
|
-
*/
|
|
6826
|
-
readonly memoryItem: MemoryItem;
|
|
6827
|
-
}
|
|
6828
6196
|
/**
|
|
6829
6197
|
* Request parameters for validateLLMEndpoint operation in SmartFunctionsApi.
|
|
6830
6198
|
* @export
|
|
@@ -6945,15 +6313,6 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
6945
6313
|
* @memberof SmartFunctionsApi
|
|
6946
6314
|
*/
|
|
6947
6315
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusteringResult, any, {}>>;
|
|
6948
|
-
/**
|
|
6949
|
-
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
6950
|
-
* @summary (EXPERIMENTAL) Create new memory item
|
|
6951
|
-
* @param {SmartFunctionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
6952
|
-
* @param {*} [options] Override http request option.
|
|
6953
|
-
* @throws {RequiredError}
|
|
6954
|
-
* @memberof SmartFunctionsApi
|
|
6955
|
-
*/
|
|
6956
|
-
createMemoryItem(requestParameters: SmartFunctionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
|
|
6957
6316
|
/**
|
|
6958
6317
|
* Returns a list of Users who created any object for this workspace
|
|
6959
6318
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -6981,15 +6340,6 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
6981
6340
|
* @memberof SmartFunctionsApi
|
|
6982
6341
|
*/
|
|
6983
6342
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any, {}>>;
|
|
6984
|
-
/**
|
|
6985
|
-
* (EXPERIMENTAL) Get memory item by id
|
|
6986
|
-
* @summary (EXPERIMENTAL) Get memory item
|
|
6987
|
-
* @param {SmartFunctionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
6988
|
-
* @param {*} [options] Override http request option.
|
|
6989
|
-
* @throws {RequiredError}
|
|
6990
|
-
* @memberof SmartFunctionsApi
|
|
6991
|
-
*/
|
|
6992
|
-
getMemoryItem(requestParameters: SmartFunctionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
|
|
6993
6343
|
/**
|
|
6994
6344
|
* Returns metadata quality issues detected by the platform linter.
|
|
6995
6345
|
* @summary Get Quality Issues
|
|
@@ -7008,24 +6358,6 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
7008
6358
|
* @memberof SmartFunctionsApi
|
|
7009
6359
|
*/
|
|
7010
6360
|
getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QualityIssuesCalculationStatusResponse, any, {}>>;
|
|
7011
|
-
/**
|
|
7012
|
-
* (EXPERIMENTAL) Returns a list of memory items
|
|
7013
|
-
* @summary (EXPERIMENTAL) List all memory items
|
|
7014
|
-
* @param {SmartFunctionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
7015
|
-
* @param {*} [options] Override http request option.
|
|
7016
|
-
* @throws {RequiredError}
|
|
7017
|
-
* @memberof SmartFunctionsApi
|
|
7018
|
-
*/
|
|
7019
|
-
listMemoryItems(requestParameters: SmartFunctionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem[], any, {}>>;
|
|
7020
|
-
/**
|
|
7021
|
-
* (EXPERIMENTAL) Removes memory item
|
|
7022
|
-
* @summary (EXPERIMENTAL) Remove memory item
|
|
7023
|
-
* @param {SmartFunctionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
7024
|
-
* @param {*} [options] Override http request option.
|
|
7025
|
-
* @throws {RequiredError}
|
|
7026
|
-
* @memberof SmartFunctionsApi
|
|
7027
|
-
*/
|
|
7028
|
-
removeMemoryItem(requestParameters: SmartFunctionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
7029
6361
|
/**
|
|
7030
6362
|
* Returns a list of available LLM Endpoints
|
|
7031
6363
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -7053,15 +6385,6 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
7053
6385
|
* @memberof SmartFunctionsApi
|
|
7054
6386
|
*/
|
|
7055
6387
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TriggerQualityIssuesCalculationResponse, any, {}>>;
|
|
7056
|
-
/**
|
|
7057
|
-
* (EXPERIMENTAL) Updates memory item and returns it
|
|
7058
|
-
* @summary (EXPERIMENTAL) Update memory item
|
|
7059
|
-
* @param {SmartFunctionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
7060
|
-
* @param {*} [options] Override http request option.
|
|
7061
|
-
* @throws {RequiredError}
|
|
7062
|
-
* @memberof SmartFunctionsApi
|
|
7063
|
-
*/
|
|
7064
|
-
updateMemoryItem(requestParameters: SmartFunctionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
|
|
7065
6388
|
/**
|
|
7066
6389
|
* Validates LLM endpoint with provided parameters.
|
|
7067
6390
|
* @summary Validate LLM Endpoint
|