@gooddata/sdk-model 10.7.0-alpha.27 → 10.7.0-alpha.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/genAI/index.d.ts +13 -1
- package/esm/genAI/index.d.ts.map +1 -1
- package/esm/sdk-model.d.ts +13 -1
- package/package.json +1 -1
package/esm/genAI/index.d.ts
CHANGED
|
@@ -3,14 +3,26 @@
|
|
|
3
3
|
* @alpha
|
|
4
4
|
*/
|
|
5
5
|
export interface ISemanticSearchResultItem {
|
|
6
|
+
/**
|
|
7
|
+
* The type of the found metadata object
|
|
8
|
+
*/
|
|
6
9
|
type: GenAISemanticSearchType;
|
|
10
|
+
/**
|
|
11
|
+
* The identifier of the found metadata object
|
|
12
|
+
*/
|
|
7
13
|
id: string;
|
|
14
|
+
/**
|
|
15
|
+
* The title of the found metadata object
|
|
16
|
+
*/
|
|
8
17
|
title: string;
|
|
18
|
+
/**
|
|
19
|
+
* The description of the found metadata object
|
|
20
|
+
*/
|
|
9
21
|
description: string;
|
|
10
22
|
}
|
|
11
23
|
/**
|
|
12
24
|
* Type of the searchable object.
|
|
13
25
|
* @alpha
|
|
14
26
|
*/
|
|
15
|
-
export type GenAISemanticSearchType = "
|
|
27
|
+
export type GenAISemanticSearchType = "dataset" | "attribute" | "label" | "fact" | "date" | "metric" | "visualization" | "dashboard";
|
|
16
28
|
//# sourceMappingURL=index.d.ts.map
|
package/esm/genAI/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/genAI/index.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,MAAM,WAAW,yBAAyB;IACtC,IAAI,EAAE,uBAAuB,CAAC;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAC7B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/genAI/index.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,IAAI,EAAE,uBAAuB,CAAC;IAC9B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAC7B,SAAS,GACT,WAAW,GACX,OAAO,GACP,MAAM,GACN,MAAM,GACN,QAAQ,GACR,eAAe,GACf,WAAW,CAAC"}
|
package/esm/sdk-model.d.ts
CHANGED
|
@@ -1496,7 +1496,7 @@ export declare type ForecastDataValue = {
|
|
|
1496
1496
|
* Type of the searchable object.
|
|
1497
1497
|
* @alpha
|
|
1498
1498
|
*/
|
|
1499
|
-
export declare type GenAISemanticSearchType = "
|
|
1499
|
+
export declare type GenAISemanticSearchType = "dataset" | "attribute" | "label" | "fact" | "date" | "metric" | "visualization" | "dashboard";
|
|
1500
1500
|
|
|
1501
1501
|
/**
|
|
1502
1502
|
* Gets the items from the {@link IAttributeElements}.
|
|
@@ -6506,9 +6506,21 @@ export declare function isDrillToLegacyDashboard(obj: unknown): obj is IDrillToL
|
|
|
6506
6506
|
* @alpha
|
|
6507
6507
|
*/
|
|
6508
6508
|
export declare interface ISemanticSearchResultItem {
|
|
6509
|
+
/**
|
|
6510
|
+
* The type of the found metadata object
|
|
6511
|
+
*/
|
|
6509
6512
|
type: GenAISemanticSearchType;
|
|
6513
|
+
/**
|
|
6514
|
+
* The identifier of the found metadata object
|
|
6515
|
+
*/
|
|
6510
6516
|
id: string;
|
|
6517
|
+
/**
|
|
6518
|
+
* The title of the found metadata object
|
|
6519
|
+
*/
|
|
6511
6520
|
title: string;
|
|
6521
|
+
/**
|
|
6522
|
+
* The description of the found metadata object
|
|
6523
|
+
*/
|
|
6512
6524
|
description: string;
|
|
6513
6525
|
}
|
|
6514
6526
|
|
package/package.json
CHANGED