@gooddata/sdk-backend-tiger 11.41.0-alpha.1 → 11.41.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.js +1 -1
- package/esm/backend/organization/genAI/ObservabilityService.d.ts +12 -0
- package/esm/backend/organization/genAI/ObservabilityService.js +17 -0
- package/esm/backend/organization/genAI/index.d.ts +2 -1
- package/esm/backend/organization/genAI/index.js +4 -0
- package/esm/backend/uiFeatures.js +1 -1
- package/esm/backend/workspace/genAI/ChatConversations.js +8 -1
- package/esm/backend/workspace/genAI/ChatThread.js +8 -1
- package/package.json +11 -11
package/esm/__version.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "11.41.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "11.41.0-alpha.2";
|
|
2
2
|
export declare const LIB_DESCRIPTION = "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN";
|
|
3
3
|
export declare const LIB_NAME = "@gooddata/sdk-backend-tiger";
|
package/esm/__version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "11.41.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.41.0-alpha.2";
|
|
4
4
|
export const LIB_DESCRIPTION = "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN";
|
|
5
5
|
export const LIB_NAME = "@gooddata/sdk-backend-tiger";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { IOrganizationAIObservabilityOverview, IOrganizationAIObservabilityService } from "@gooddata/sdk-backend-spi";
|
|
2
|
+
import { type TigerAuthenticatedCallGuard } from "../../../types/index.js";
|
|
3
|
+
/**
|
|
4
|
+
* Organization-level AI observability service.
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export declare class OrganizationAIObservabilityService implements IOrganizationAIObservabilityService {
|
|
9
|
+
private readonly authCall;
|
|
10
|
+
constructor(authCall: TigerAuthenticatedCallGuard);
|
|
11
|
+
getOverview(): Promise<IOrganizationAIObservabilityOverview>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// (C) 2026 GoodData Corporation
|
|
2
|
+
import { GenAiApi_GetObservabilityOverview } from "@gooddata/api-client-tiger/endpoints/genAI";
|
|
3
|
+
/**
|
|
4
|
+
* Organization-level AI observability service.
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export class OrganizationAIObservabilityService {
|
|
9
|
+
authCall;
|
|
10
|
+
constructor(authCall) {
|
|
11
|
+
this.authCall = authCall;
|
|
12
|
+
}
|
|
13
|
+
async getOverview() {
|
|
14
|
+
const response = await this.authCall((client) => GenAiApi_GetObservabilityOverview(client.axios, client.basePath));
|
|
15
|
+
return response.data;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { IKnowledgeDocumentsService, IOrganizationGenAIService } from "@gooddata/sdk-backend-spi";
|
|
1
|
+
import type { IKnowledgeDocumentsService, IOrganizationAIObservabilityService, IOrganizationGenAIService } from "@gooddata/sdk-backend-spi";
|
|
2
2
|
import { type TigerAuthenticatedCallGuard } from "../../../types/index.js";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -7,4 +7,5 @@ export declare class TigerOrganizationGenAIService implements IOrganizationGenAI
|
|
|
7
7
|
private readonly authCall;
|
|
8
8
|
constructor(authCall: TigerAuthenticatedCallGuard);
|
|
9
9
|
getKnowledgeDocuments(): IKnowledgeDocumentsService;
|
|
10
|
+
getObservability(): IOrganizationAIObservabilityService;
|
|
10
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// (C) 2026 GoodData Corporation
|
|
2
2
|
import { OrganizationKnowledgeDocumentsService } from "./KnowledgeDocumentsService.js";
|
|
3
|
+
import { OrganizationAIObservabilityService } from "./ObservabilityService.js";
|
|
3
4
|
/**
|
|
4
5
|
* @internal
|
|
5
6
|
*/
|
|
@@ -11,4 +12,7 @@ export class TigerOrganizationGenAIService {
|
|
|
11
12
|
getKnowledgeDocuments() {
|
|
12
13
|
return new OrganizationKnowledgeDocumentsService(this.authCall);
|
|
13
14
|
}
|
|
15
|
+
getObservability() {
|
|
16
|
+
return new OrganizationAIObservabilityService(this.authCall);
|
|
17
|
+
}
|
|
14
18
|
}
|
|
@@ -335,7 +335,7 @@ export const DefaultFeatureFlags = {
|
|
|
335
335
|
enableArbitraryFilterAD: true,
|
|
336
336
|
enableMatchFilterKD: true,
|
|
337
337
|
enableArbitraryFilterKD: true,
|
|
338
|
-
enableMeasureValueFilterKD:
|
|
338
|
+
enableMeasureValueFilterKD: true,
|
|
339
339
|
enableFilterControlInDrillingConfiguration: true,
|
|
340
340
|
enableShellApplication: true,
|
|
341
341
|
enableShellApplication_catalog: false,
|
|
@@ -421,7 +421,14 @@ function convertUserContext(userContext) {
|
|
|
421
421
|
widgetType: w.widgetType,
|
|
422
422
|
...(w.insightRef
|
|
423
423
|
? w.widgetType === "visualizationSwitcher"
|
|
424
|
-
? {
|
|
424
|
+
? {
|
|
425
|
+
activeVisualizationId: objRefToString(w.insightRef),
|
|
426
|
+
...(w.visualizationRefs
|
|
427
|
+
? {
|
|
428
|
+
visualizationIds: w.visualizationRefs.map(objRefToString),
|
|
429
|
+
}
|
|
430
|
+
: {}),
|
|
431
|
+
}
|
|
425
432
|
: { visualizationId: objRefToString(w.insightRef) }
|
|
426
433
|
: {}),
|
|
427
434
|
...(w.resultId ? { resultId: w.resultId } : {}),
|
|
@@ -454,7 +454,14 @@ function convertUserContext(userContext) {
|
|
|
454
454
|
widgetType: w.widgetType,
|
|
455
455
|
...(w.insightRef
|
|
456
456
|
? w.widgetType === "visualizationSwitcher"
|
|
457
|
-
? {
|
|
457
|
+
? {
|
|
458
|
+
activeVisualizationId: objRefToString(w.insightRef),
|
|
459
|
+
...(w.visualizationRefs
|
|
460
|
+
? {
|
|
461
|
+
visualizationIds: w.visualizationRefs.map(objRefToString),
|
|
462
|
+
}
|
|
463
|
+
: {}),
|
|
464
|
+
}
|
|
458
465
|
: { visualizationId: objRefToString(w.insightRef) }
|
|
459
466
|
: {}),
|
|
460
467
|
...(w.resultId ? { resultId: w.resultId } : {}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-tiger",
|
|
3
|
-
"version": "11.41.0-alpha.
|
|
3
|
+
"version": "11.41.0-alpha.2",
|
|
4
4
|
"description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"ts-invariant": "0.10.3",
|
|
34
34
|
"tslib": "2.8.1",
|
|
35
35
|
"uuid": "11.1.0",
|
|
36
|
-
"@gooddata/api-client-tiger": "11.41.0-alpha.
|
|
37
|
-
"@gooddata/sdk-backend-base": "11.41.0-alpha.
|
|
38
|
-
"@gooddata/sdk-backend-spi": "11.41.0-alpha.
|
|
39
|
-
"@gooddata/sdk-code-convertors": "11.41.0-alpha.
|
|
40
|
-
"@gooddata/sdk-model": "11.41.0-alpha.
|
|
41
|
-
"@gooddata/util": "11.41.0-alpha.
|
|
36
|
+
"@gooddata/api-client-tiger": "11.41.0-alpha.2",
|
|
37
|
+
"@gooddata/sdk-backend-base": "11.41.0-alpha.2",
|
|
38
|
+
"@gooddata/sdk-backend-spi": "11.41.0-alpha.2",
|
|
39
|
+
"@gooddata/sdk-code-convertors": "11.41.0-alpha.2",
|
|
40
|
+
"@gooddata/sdk-model": "11.41.0-alpha.2",
|
|
41
|
+
"@gooddata/util": "11.41.0-alpha.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@gooddata/fixtures": "3.3.12",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"oxlint-tsgolint": "0.15.0",
|
|
66
66
|
"typescript": "5.9.3",
|
|
67
67
|
"vitest": "4.1.8",
|
|
68
|
-
"@gooddata/catalog-export": "11.41.0-alpha.
|
|
69
|
-
"@gooddata/eslint-config": "11.41.0-alpha.
|
|
70
|
-
"@gooddata/oxlint-config": "11.41.0-alpha.
|
|
71
|
-
"@gooddata/reference-workspace": "11.41.0-alpha.
|
|
68
|
+
"@gooddata/catalog-export": "11.41.0-alpha.2",
|
|
69
|
+
"@gooddata/eslint-config": "11.41.0-alpha.2",
|
|
70
|
+
"@gooddata/oxlint-config": "11.41.0-alpha.2",
|
|
71
|
+
"@gooddata/reference-workspace": "11.41.0-alpha.2"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"_phase:build": "npm run build",
|