@gooddata/sdk-model 10.13.0-alpha.9 → 10.14.0-alpha.0
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/automations/index.d.ts +7 -1
- package/esm/automations/index.d.ts.map +1 -1
- package/esm/automations/index.js.map +1 -1
- package/esm/entitlements/index.d.ts +1 -1
- package/esm/entitlements/index.d.ts.map +1 -1
- package/esm/genAI/chat.d.ts +195 -0
- package/esm/genAI/chat.d.ts.map +1 -0
- package/esm/genAI/{flexAI.js → chat.js} +1 -1
- package/esm/genAI/chat.js.map +1 -0
- package/esm/genAI/semanticSearch.d.ts +7 -7
- package/esm/genAI/semanticSearch.d.ts.map +1 -1
- package/esm/index.d.ts +3 -2
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/esm/llmEndpoints/index.d.ts +45 -0
- package/esm/llmEndpoints/index.d.ts.map +1 -0
- package/esm/llmEndpoints/index.js +3 -0
- package/esm/llmEndpoints/index.js.map +1 -0
- package/esm/sdk-model.d.ts +269 -136
- package/esm/settings/index.d.ts +51 -0
- package/esm/settings/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/esm/genAI/flexAI.d.ts +0 -165
- package/esm/genAI/flexAI.d.ts.map +0 -1
- package/esm/genAI/flexAI.js.map +0 -1
package/esm/sdk-model.d.ts
CHANGED
@@ -1371,6 +1371,16 @@ export declare type DrillTransition = "pop-up" | "in-place" | "new-window";
|
|
1371
1371
|
*/
|
1372
1372
|
export declare type DrillType = "drillToInsight" | "drillToDashboard" | "drillToLegacyDashboard" | "drillToCustomUrl" | "drillToAttributeUrl" | "crossFiltering";
|
1373
1373
|
|
1374
|
+
/**
|
1375
|
+
* @beta
|
1376
|
+
*/
|
1377
|
+
export declare type EarlyAccessFeatureContext = "WORKSPACE" | "ORGANIZATION";
|
1378
|
+
|
1379
|
+
/**
|
1380
|
+
* @beta
|
1381
|
+
*/
|
1382
|
+
export declare type EarlyAccessFeatureStatus = "EXPERIMENTAL" | "BETA";
|
1383
|
+
|
1374
1384
|
/**
|
1375
1385
|
* Creates new, empty execution definition for the provided workspace.
|
1376
1386
|
*
|
@@ -1507,90 +1517,10 @@ export declare type ForecastDataValue = {
|
|
1507
1517
|
};
|
1508
1518
|
|
1509
1519
|
/**
|
1510
|
-
*
|
1511
|
-
* @alpha
|
1512
|
-
*/
|
1513
|
-
export declare type GenAIActiveObject = {
|
1514
|
-
id: string;
|
1515
|
-
workspaceId: string;
|
1516
|
-
type: GenAIObjectType;
|
1517
|
-
};
|
1518
|
-
|
1519
|
-
/**
|
1520
|
-
* Base content of the chat interaction.
|
1521
|
-
* @alpha
|
1522
|
-
*/
|
1523
|
-
export declare type GenAIChatBaseInteractionContent = {
|
1524
|
-
includeToChatContext: boolean;
|
1525
|
-
userFeedback: "POSITIVE" | "NEGATIVE" | "NONE";
|
1526
|
-
};
|
1527
|
-
|
1528
|
-
/**
|
1529
|
-
* Visualization definition created by the assistant.
|
1530
|
-
* @alpha
|
1531
|
-
*/
|
1532
|
-
export declare type GenAIChatCreatedVisualization = {
|
1533
|
-
id: string;
|
1534
|
-
title: string;
|
1535
|
-
visualizationType: GenAIChatVisualizationType;
|
1536
|
-
metrics: GenAIChatCreatedVisualizationMetric[];
|
1537
|
-
dimensionality: GenAIChatCreatedVisualizationDimension[];
|
1538
|
-
};
|
1539
|
-
|
1540
|
-
/**
|
1541
|
-
* Dimension definition for the visualization.
|
1542
|
-
* @alpha
|
1543
|
-
*/
|
1544
|
-
export declare type GenAIChatCreatedVisualizationDimension = {
|
1545
|
-
id: string;
|
1546
|
-
type: "attribute";
|
1547
|
-
};
|
1548
|
-
|
1549
|
-
/**
|
1550
|
-
* Metric definition for the visualization.
|
1551
|
-
* @alpha
|
1552
|
-
*/
|
1553
|
-
export declare type GenAIChatCreatedVisualizationMetric = {
|
1554
|
-
id: string;
|
1555
|
-
type: GenAIChatMetricType;
|
1556
|
-
aggFunction: GenAIChatMetricAggregation;
|
1557
|
-
};
|
1558
|
-
|
1559
|
-
/**
|
1560
|
-
* Visualizations created by the assistant.
|
1520
|
+
* User feedback for the chat interaction.
|
1561
1521
|
* @alpha
|
1562
1522
|
*/
|
1563
|
-
export declare type
|
1564
|
-
objects?: GenAIChatCreatedVisualization[];
|
1565
|
-
reasoning: string;
|
1566
|
-
};
|
1567
|
-
|
1568
|
-
/**
|
1569
|
-
* Found objects related to the user question.
|
1570
|
-
* @alpha
|
1571
|
-
*/
|
1572
|
-
export declare type GenAIChatFoundObjects = {
|
1573
|
-
objects?: ISemanticSearchResultItem[];
|
1574
|
-
reasoning: string;
|
1575
|
-
};
|
1576
|
-
|
1577
|
-
/**
|
1578
|
-
* Content of the chat interaction.
|
1579
|
-
* @alpha
|
1580
|
-
*/
|
1581
|
-
export declare type GenAIChatInteractionContent = GenAIChatTextInteractionContent | GenAIChatSearchInteractionContent | GenAIChatVisualizationInteractionContent;
|
1582
|
-
|
1583
|
-
/**
|
1584
|
-
* Aggregation function for the metric.
|
1585
|
-
* @alpha
|
1586
|
-
*/
|
1587
|
-
export declare type GenAIChatMetricAggregation = "COUNT" | "SUM" | "MIN" | "MAX" | "AVG" | "MEDIAN";
|
1588
|
-
|
1589
|
-
/**
|
1590
|
-
* Type of the metric.
|
1591
|
-
* @alpha
|
1592
|
-
*/
|
1593
|
-
export declare type GenAIChatMetricType = "metric" | "fact" | "attribute";
|
1523
|
+
export declare type GenAIChatInteractionUserFeedback = "POSITIVE" | "NEGATIVE" | "NONE";
|
1594
1524
|
|
1595
1525
|
/**
|
1596
1526
|
* Role of the chat interaction.
|
@@ -1599,44 +1529,22 @@ export declare type GenAIChatMetricType = "metric" | "fact" | "attribute";
|
|
1599
1529
|
export declare type GenAIChatRole = "USER" | "AI";
|
1600
1530
|
|
1601
1531
|
/**
|
1602
|
-
*
|
1603
|
-
* @alpha
|
1604
|
-
*/
|
1605
|
-
export declare type GenAIChatSearchInteractionContent = GenAIChatBaseInteractionContent & {
|
1606
|
-
foundObject: ISemanticSearchResultItem;
|
1607
|
-
};
|
1608
|
-
|
1609
|
-
/**
|
1610
|
-
* Textual answer from the assistant.
|
1611
|
-
* @alpha
|
1612
|
-
*/
|
1613
|
-
export declare type GenAIChatTextInteractionContent = GenAIChatBaseInteractionContent & {
|
1614
|
-
text: string;
|
1615
|
-
};
|
1616
|
-
|
1617
|
-
/**
|
1618
|
-
* Use case for the chat evaluation.
|
1532
|
+
* A route that was detected by the assistant based on the user question.
|
1619
1533
|
* @alpha
|
1620
1534
|
*/
|
1621
|
-
export declare type
|
1622
|
-
useCase: string;
|
1623
|
-
exampleDescription?: string;
|
1624
|
-
score: number;
|
1625
|
-
};
|
1535
|
+
export declare type GenAIChatRoutingUseCase = "SEARCH_ALL" | "SEARCH_VISUALIZATIONS" | "SEARCH_DASHBOARDS" | "CREATE_VISUALIZATION" | "EXTEND_VISUALIZATION" | "GENERAL" | "INVALID";
|
1626
1536
|
|
1627
1537
|
/**
|
1628
|
-
*
|
1538
|
+
* Aggregation function for the metric.
|
1629
1539
|
* @alpha
|
1630
1540
|
*/
|
1631
|
-
export declare type
|
1632
|
-
createdVisualization: GenAIChatCreatedVisualization;
|
1633
|
-
};
|
1541
|
+
export declare type GenAIMetricAggregation = "COUNT" | "SUM" | "MIN" | "MAX" | "AVG" | "MEDIAN";
|
1634
1542
|
|
1635
1543
|
/**
|
1636
|
-
* Type of the
|
1544
|
+
* Type of the metric.
|
1637
1545
|
* @alpha
|
1638
1546
|
*/
|
1639
|
-
export declare type
|
1547
|
+
export declare type GenAIMetricType = "metric" | "fact" | "attribute";
|
1640
1548
|
|
1641
1549
|
/**
|
1642
1550
|
* Type of the object.
|
@@ -1651,6 +1559,12 @@ export declare type GenAIObjectType = "dataset" | "attribute" | "label" | "fact"
|
|
1651
1559
|
*/
|
1652
1560
|
export declare type GenAISemanticSearchType = GenAIObjectType;
|
1653
1561
|
|
1562
|
+
/**
|
1563
|
+
* Type of the visualization.
|
1564
|
+
* @alpha
|
1565
|
+
*/
|
1566
|
+
export declare type GenAIVisualizationType = "TABLE" | "HEADLINE" | "BAR" | "LINE" | "PIE" | "COLUMN";
|
1567
|
+
|
1654
1568
|
/**
|
1655
1569
|
* Gets the items from the {@link IAttributeElements}.
|
1656
1570
|
*
|
@@ -2374,7 +2288,12 @@ export declare type IAutomationAlertCondition = IAutomationAlertComparisonCondit
|
|
2374
2288
|
/**
|
2375
2289
|
* @alpha
|
2376
2290
|
*/
|
2377
|
-
export declare type IAutomationAlertExecutionDefinition = Pick<IExecutionDefinition, "attributes" | "measures" | "filters"
|
2291
|
+
export declare type IAutomationAlertExecutionDefinition = Pick<IExecutionDefinition, "attributes" | "measures" | "filters"> & {
|
2292
|
+
/**
|
2293
|
+
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
2294
|
+
*/
|
2295
|
+
readonly auxMeasures?: IMeasure[];
|
2296
|
+
};
|
2378
2297
|
|
2379
2298
|
/**
|
2380
2299
|
* @alpha
|
@@ -4284,6 +4203,25 @@ export declare interface IDrillToLegacyDashboard extends IDrill {
|
|
4284
4203
|
target: ObjRef;
|
4285
4204
|
}
|
4286
4205
|
|
4206
|
+
/**
|
4207
|
+
* @beta
|
4208
|
+
*/
|
4209
|
+
export declare interface IEarlyAccessFeatureConfig {
|
4210
|
+
title: string;
|
4211
|
+
description: string;
|
4212
|
+
docs?: string;
|
4213
|
+
earlyAccess: string;
|
4214
|
+
context: EarlyAccessFeatureContext;
|
4215
|
+
status: EarlyAccessFeatureStatus;
|
4216
|
+
}
|
4217
|
+
|
4218
|
+
/**
|
4219
|
+
* @beta
|
4220
|
+
*/
|
4221
|
+
export declare interface IEarlyAccessFeaturesConfig {
|
4222
|
+
features: IEarlyAccessFeatureConfig[];
|
4223
|
+
}
|
4224
|
+
|
4287
4225
|
/**
|
4288
4226
|
* Entitlement descriptor
|
4289
4227
|
*
|
@@ -4311,7 +4249,7 @@ export declare interface IEntitlementDescriptor {
|
|
4311
4249
|
*
|
4312
4250
|
* @public
|
4313
4251
|
*/
|
4314
|
-
export declare type IEntitlementsName = "CacheStrategy" | "Contract" | "CustomTheming" | "ExtraCache" | "ManagedOIDC" | "UiLocalization" | "Tier" | "UserCount" | "PdfExports" | "UnlimitedUsers" | "UnlimitedWorkspaces" | "WhiteLabeling" | "WorkspaceCount" | "Hipaa" | "UserTelemetryDisabled" | "AutomationCount" | "UnlimitedAutomations" | "AutomationRecipientCount" | "UnlimitedAutomationRecipients" | "DailyScheduledActionCount" | "UnlimitedDailyScheduledActions" | "ScheduledActionMinimumRecurrenceMinutes" | "FederatedIdentityManagement";
|
4252
|
+
export declare type IEntitlementsName = "CacheStrategy" | "Contract" | "CustomTheming" | "ExtraCache" | "ManagedOIDC" | "UiLocalization" | "Tier" | "UserCount" | "PdfExports" | "UnlimitedUsers" | "UnlimitedWorkspaces" | "WhiteLabeling" | "WorkspaceCount" | "Hipaa" | "DailyAlertActionCount" | "UnlimitedDailyAlertActions" | "UserTelemetryDisabled" | "AutomationCount" | "UnlimitedAutomations" | "AutomationRecipientCount" | "UnlimitedAutomationRecipients" | "DailyScheduledActionCount" | "UnlimitedDailyScheduledActions" | "ScheduledActionMinimumRecurrenceMinutes" | "FederatedIdentityManagement";
|
4315
4253
|
|
4316
4254
|
/**
|
4317
4255
|
* Contains any configiration that should be part of execution
|
@@ -4590,41 +4528,102 @@ export declare interface IFilterContextDefinition extends IFilterContextBase, Pa
|
|
4590
4528
|
}
|
4591
4529
|
|
4592
4530
|
/**
|
4593
|
-
*
|
4531
|
+
* Active object the user is interacting with.
|
4532
|
+
* @alpha
|
4533
|
+
*/
|
4534
|
+
export declare interface IGenAIActiveObject {
|
4535
|
+
/**
|
4536
|
+
* ID of the object.
|
4537
|
+
*/
|
4538
|
+
id: string;
|
4539
|
+
/**
|
4540
|
+
* ID of the workspace the object belongs to.
|
4541
|
+
*/
|
4542
|
+
workspaceId: string;
|
4543
|
+
/**
|
4544
|
+
* Type of the object.
|
4545
|
+
*/
|
4546
|
+
type: GenAIObjectType;
|
4547
|
+
}
|
4548
|
+
|
4549
|
+
/**
|
4550
|
+
* A singe user - assistant chat interaction.
|
4551
|
+
* @alpha
|
4552
|
+
*/
|
4553
|
+
export declare interface IGenAIChatInteraction {
|
4554
|
+
/**
|
4555
|
+
* User question.
|
4556
|
+
*/
|
4557
|
+
question: string;
|
4558
|
+
/**
|
4559
|
+
* ID of the interaction within the thread.
|
4560
|
+
*/
|
4561
|
+
chatHistoryInteractionId: number;
|
4562
|
+
/**
|
4563
|
+
* Flag indicating whether the interaction is finished.
|
4564
|
+
*/
|
4565
|
+
interactionFinished: boolean;
|
4566
|
+
/**
|
4567
|
+
* Routing for the interaction.
|
4568
|
+
*/
|
4569
|
+
routing: IGenAIChatRouting;
|
4570
|
+
/**
|
4571
|
+
* A generic text response from the assistant.
|
4572
|
+
*/
|
4573
|
+
textResponse?: string;
|
4574
|
+
/**
|
4575
|
+
* A list of found objects for the interaction.
|
4576
|
+
*/
|
4577
|
+
foundObjects?: IGenAIFoundObjects;
|
4578
|
+
/**
|
4579
|
+
* A list of created visualizations for the interaction.
|
4580
|
+
*/
|
4581
|
+
createdVisualizations?: IGenAICreatedVisualizations;
|
4582
|
+
}
|
4583
|
+
|
4584
|
+
/**
|
4585
|
+
* Routing for the chat interaction.
|
4594
4586
|
* @alpha
|
4595
4587
|
*/
|
4596
|
-
export declare interface
|
4588
|
+
export declare interface IGenAIChatRouting {
|
4597
4589
|
/**
|
4598
|
-
* Detected use
|
4590
|
+
* Detected use case for the routing.
|
4599
4591
|
*/
|
4600
|
-
|
4592
|
+
useCase: GenAIChatRoutingUseCase;
|
4601
4593
|
/**
|
4602
|
-
*
|
4594
|
+
* Assistant reasoning on why the use case was detected.
|
4603
4595
|
*/
|
4604
|
-
|
4596
|
+
reasoning: string;
|
4597
|
+
}
|
4598
|
+
|
4599
|
+
/**
|
4600
|
+
* A list of created visualizations for a given interaction
|
4601
|
+
* @alpha
|
4602
|
+
*/
|
4603
|
+
export declare interface IGenAICreatedVisualizations {
|
4605
4604
|
/**
|
4606
|
-
*
|
4605
|
+
* List of created visualizations.
|
4607
4606
|
*/
|
4608
|
-
|
4607
|
+
objects: IGenAIVisualization[];
|
4609
4608
|
/**
|
4610
|
-
*
|
4609
|
+
* Assistant reasoning on how the visualizations were created.
|
4611
4610
|
*/
|
4612
|
-
|
4611
|
+
reasoning: string;
|
4613
4612
|
}
|
4614
4613
|
|
4615
4614
|
/**
|
4616
|
-
* A
|
4615
|
+
* A list of found objects for a given interaction
|
4617
4616
|
* @alpha
|
4618
4617
|
*/
|
4619
|
-
export declare interface
|
4618
|
+
export declare interface IGenAIFoundObjects {
|
4620
4619
|
/**
|
4621
|
-
*
|
4620
|
+
* List of found objects.
|
4622
4621
|
*/
|
4623
|
-
|
4622
|
+
objects: ISemanticSearchResultItem[];
|
4624
4623
|
/**
|
4625
|
-
*
|
4624
|
+
* Assistant reasoning on how the objects were matched.
|
4626
4625
|
*/
|
4627
|
-
|
4626
|
+
reasoning: string;
|
4628
4627
|
}
|
4629
4628
|
|
4630
4629
|
/**
|
@@ -4635,7 +4634,68 @@ export declare interface IGenAIUserContext {
|
|
4635
4634
|
/**
|
4636
4635
|
* Active object the user is interacting with.
|
4637
4636
|
*/
|
4638
|
-
activeObject:
|
4637
|
+
activeObject: IGenAIActiveObject;
|
4638
|
+
}
|
4639
|
+
|
4640
|
+
/**
|
4641
|
+
* Visualization definition created by the assistant.
|
4642
|
+
* @alpha
|
4643
|
+
*/
|
4644
|
+
export declare interface IGenAIVisualization {
|
4645
|
+
/**
|
4646
|
+
* ID of the visualization.
|
4647
|
+
*/
|
4648
|
+
id: string;
|
4649
|
+
/**
|
4650
|
+
* Title of the visualization.
|
4651
|
+
*/
|
4652
|
+
title: string;
|
4653
|
+
/**
|
4654
|
+
* Type of the visualization.
|
4655
|
+
*/
|
4656
|
+
visualizationType: GenAIVisualizationType;
|
4657
|
+
/**
|
4658
|
+
* Metrics used in the visualization.
|
4659
|
+
*/
|
4660
|
+
metrics: IGenAIVisualizationMetric[];
|
4661
|
+
/**
|
4662
|
+
* Dimensions used in the visualization.
|
4663
|
+
*/
|
4664
|
+
dimensionality: IGenAIVisualizationDimension[];
|
4665
|
+
}
|
4666
|
+
|
4667
|
+
/**
|
4668
|
+
* Dimension definition for the visualization.
|
4669
|
+
* @alpha
|
4670
|
+
*/
|
4671
|
+
export declare interface IGenAIVisualizationDimension {
|
4672
|
+
/**
|
4673
|
+
* ID of the object used in dimension.
|
4674
|
+
*/
|
4675
|
+
id: string;
|
4676
|
+
/**
|
4677
|
+
* Type of the object used in the dimension.
|
4678
|
+
*/
|
4679
|
+
type: "attribute";
|
4680
|
+
}
|
4681
|
+
|
4682
|
+
/**
|
4683
|
+
* Metric definition for the visualization.
|
4684
|
+
* @alpha
|
4685
|
+
*/
|
4686
|
+
export declare interface IGenAIVisualizationMetric {
|
4687
|
+
/**
|
4688
|
+
* ID of the object used in metric.
|
4689
|
+
*/
|
4690
|
+
id: string;
|
4691
|
+
/**
|
4692
|
+
* Type of the object used in the metric.
|
4693
|
+
*/
|
4694
|
+
type: GenAIMetricType;
|
4695
|
+
/**
|
4696
|
+
* Aggregation function for the metric.
|
4697
|
+
*/
|
4698
|
+
aggFunction?: GenAIMetricAggregation;
|
4639
4699
|
}
|
4640
4700
|
|
4641
4701
|
/**
|
@@ -5106,6 +5166,46 @@ export declare interface IListedDashboard extends Readonly<Required<IAuditableDa
|
|
5106
5166
|
readonly availability: ListedDashboardAvailability;
|
5107
5167
|
}
|
5108
5168
|
|
5169
|
+
/**
|
5170
|
+
* Base endpoint interface
|
5171
|
+
*
|
5172
|
+
* @alpha
|
5173
|
+
*/
|
5174
|
+
export declare interface ILlmEndpointBase {
|
5175
|
+
/**
|
5176
|
+
* Endpoint identifier
|
5177
|
+
*/
|
5178
|
+
id: string;
|
5179
|
+
/**
|
5180
|
+
* Endpoint title
|
5181
|
+
*/
|
5182
|
+
title: string;
|
5183
|
+
/**
|
5184
|
+
* Endpoint description
|
5185
|
+
*/
|
5186
|
+
description?: string;
|
5187
|
+
}
|
5188
|
+
|
5189
|
+
/**
|
5190
|
+
* OpenAI endpoint interface
|
5191
|
+
*
|
5192
|
+
* @alpha
|
5193
|
+
*/
|
5194
|
+
export declare interface ILlmEndpointOpenAI extends ILlmEndpointBase {
|
5195
|
+
/**
|
5196
|
+
* A discriminating type of the endpoint
|
5197
|
+
*/
|
5198
|
+
provider: "OPENAI";
|
5199
|
+
/**
|
5200
|
+
* Optional organization identifier for OpenAI
|
5201
|
+
*/
|
5202
|
+
organization?: string;
|
5203
|
+
/**
|
5204
|
+
* A modal to use with OpenAI
|
5205
|
+
*/
|
5206
|
+
model: string;
|
5207
|
+
}
|
5208
|
+
|
5109
5209
|
/**
|
5110
5210
|
* Locators are used to identify slice of measure values to sort by.
|
5111
5211
|
*
|
@@ -7170,15 +7270,15 @@ export declare interface ISemanticSearchResultItem {
|
|
7170
7270
|
/**
|
7171
7271
|
* The description of the found metadata object
|
7172
7272
|
*/
|
7173
|
-
description
|
7273
|
+
description?: string;
|
7174
7274
|
/**
|
7175
7275
|
* The tags of the found metadata object
|
7176
7276
|
*/
|
7177
|
-
tags
|
7277
|
+
tags?: string[];
|
7178
7278
|
/**
|
7179
7279
|
* The creation date of the found metadata object
|
7180
7280
|
*/
|
7181
|
-
createdAt
|
7281
|
+
createdAt?: string;
|
7182
7282
|
/**
|
7183
7283
|
* The last modification date of the found metadata object
|
7184
7284
|
*/
|
@@ -7191,19 +7291,19 @@ export declare interface ISemanticSearchResultItem {
|
|
7191
7291
|
* Overall similarity score of the found item.
|
7192
7292
|
* Larger is more similar.
|
7193
7293
|
*/
|
7194
|
-
score
|
7294
|
+
score?: number;
|
7195
7295
|
/**
|
7196
7296
|
* Title score of the found item.
|
7197
7297
|
*/
|
7198
|
-
scoreTitle
|
7298
|
+
scoreTitle?: number;
|
7199
7299
|
/**
|
7200
7300
|
* Description score of the found item.
|
7201
7301
|
*/
|
7202
|
-
scoreDescriptor
|
7302
|
+
scoreDescriptor?: number;
|
7203
7303
|
/**
|
7204
7304
|
* 1000 if the found item is an exact match, 0 otherwise.
|
7205
7305
|
*/
|
7206
|
-
scoreExactMatch
|
7306
|
+
scoreExactMatch?: number;
|
7207
7307
|
}
|
7208
7308
|
|
7209
7309
|
/**
|
@@ -7474,6 +7574,10 @@ export declare interface ISettings {
|
|
7474
7574
|
* IANA identifier of time zone in which the platform metadata are stored.
|
7475
7575
|
*/
|
7476
7576
|
metadataTimeZone?: string;
|
7577
|
+
/**
|
7578
|
+
* Timezone
|
7579
|
+
*/
|
7580
|
+
timezone?: string;
|
7477
7581
|
/**
|
7478
7582
|
* Enable new max bucket size items limit for Pivot Table
|
7479
7583
|
*/
|
@@ -7580,6 +7684,10 @@ export declare interface ISettings {
|
|
7580
7684
|
enableSnowflakeKeyPairAuthentication?: boolean;
|
7581
7685
|
enableMotherDuckDataSource?: boolean;
|
7582
7686
|
enableSingleStoreDataSource?: boolean;
|
7687
|
+
/**
|
7688
|
+
* Enables new dashboard layout renderer with nesting support.
|
7689
|
+
*/
|
7690
|
+
enableDashboardFlexibleLayout?: boolean;
|
7583
7691
|
/**
|
7584
7692
|
* Enable GenAI-powered functionality, such as semantic-search.
|
7585
7693
|
* @deprecated Use separate flags for semantic search and GenAI chat below.
|
@@ -7621,6 +7729,24 @@ export declare interface ISettings {
|
|
7621
7729
|
* Enables the FlightRPC (FlexFunctions) data source.
|
7622
7730
|
*/
|
7623
7731
|
enableFlightRpcDataSource?: boolean;
|
7732
|
+
/**
|
7733
|
+
* Early access features configuration.
|
7734
|
+
* @beta
|
7735
|
+
*/
|
7736
|
+
earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
|
7737
|
+
/**
|
7738
|
+
* Enable early access features rollout.
|
7739
|
+
*/
|
7740
|
+
enableEarlyAccessFeaturesRollout?: boolean;
|
7741
|
+
/**
|
7742
|
+
* Enable the use of alias filter titles in cross filtering.
|
7743
|
+
* @internal
|
7744
|
+
*/
|
7745
|
+
enableCrossFilteringAliasTitles?: boolean;
|
7746
|
+
/**
|
7747
|
+
* Enable the use of default SMTP in destinations.
|
7748
|
+
*/
|
7749
|
+
enableDefaultSmtp?: boolean;
|
7624
7750
|
[key: string]: number | boolean | string | object | undefined;
|
7625
7751
|
}
|
7626
7752
|
|
@@ -9712,6 +9838,13 @@ export declare type KpiWidgetDescriptionSourceType = "kpi" | "metric";
|
|
9712
9838
|
*/
|
9713
9839
|
export declare type ListedDashboardAvailability = "full" | "viaLink";
|
9714
9840
|
|
9841
|
+
/**
|
9842
|
+
* Patched OpenAI endpoint interface. All fields except the `id` are optional.
|
9843
|
+
*
|
9844
|
+
* @alpha
|
9845
|
+
*/
|
9846
|
+
export declare type LlmEndpointOpenAIPatch = Partial<ILlmEndpointOpenAI> & Pick<ILlmEndpointOpenAI, "id">;
|
9847
|
+
|
9715
9848
|
/**
|
9716
9849
|
* Model object reference using object's local identifier.
|
9717
9850
|
*
|
package/esm/settings/index.d.ts
CHANGED
@@ -250,6 +250,10 @@ export interface ISettings {
|
|
250
250
|
* IANA identifier of time zone in which the platform metadata are stored.
|
251
251
|
*/
|
252
252
|
metadataTimeZone?: string;
|
253
|
+
/**
|
254
|
+
* Timezone
|
255
|
+
*/
|
256
|
+
timezone?: string;
|
253
257
|
/**
|
254
258
|
* Enable new max bucket size items limit for Pivot Table
|
255
259
|
*/
|
@@ -356,6 +360,10 @@ export interface ISettings {
|
|
356
360
|
enableSnowflakeKeyPairAuthentication?: boolean;
|
357
361
|
enableMotherDuckDataSource?: boolean;
|
358
362
|
enableSingleStoreDataSource?: boolean;
|
363
|
+
/**
|
364
|
+
* Enables new dashboard layout renderer with nesting support.
|
365
|
+
*/
|
366
|
+
enableDashboardFlexibleLayout?: boolean;
|
359
367
|
/**
|
360
368
|
* Enable GenAI-powered functionality, such as semantic-search.
|
361
369
|
* @deprecated Use separate flags for semantic search and GenAI chat below.
|
@@ -397,6 +405,24 @@ export interface ISettings {
|
|
397
405
|
* Enables the FlightRPC (FlexFunctions) data source.
|
398
406
|
*/
|
399
407
|
enableFlightRpcDataSource?: boolean;
|
408
|
+
/**
|
409
|
+
* Early access features configuration.
|
410
|
+
* @beta
|
411
|
+
*/
|
412
|
+
earlyAccessFeatures?: IEarlyAccessFeaturesConfig;
|
413
|
+
/**
|
414
|
+
* Enable early access features rollout.
|
415
|
+
*/
|
416
|
+
enableEarlyAccessFeaturesRollout?: boolean;
|
417
|
+
/**
|
418
|
+
* Enable the use of alias filter titles in cross filtering.
|
419
|
+
* @internal
|
420
|
+
*/
|
421
|
+
enableCrossFilteringAliasTitles?: boolean;
|
422
|
+
/**
|
423
|
+
* Enable the use of default SMTP in destinations.
|
424
|
+
*/
|
425
|
+
enableDefaultSmtp?: boolean;
|
400
426
|
[key: string]: number | boolean | string | object | undefined;
|
401
427
|
}
|
402
428
|
/**
|
@@ -479,4 +505,29 @@ export interface IOpenAiConfig {
|
|
479
505
|
* @public
|
480
506
|
*/
|
481
507
|
export type WeekStart = "Sunday" | "Monday";
|
508
|
+
/**
|
509
|
+
* @beta
|
510
|
+
*/
|
511
|
+
export type EarlyAccessFeatureContext = "WORKSPACE" | "ORGANIZATION";
|
512
|
+
/**
|
513
|
+
* @beta
|
514
|
+
*/
|
515
|
+
export type EarlyAccessFeatureStatus = "EXPERIMENTAL" | "BETA";
|
516
|
+
/**
|
517
|
+
* @beta
|
518
|
+
*/
|
519
|
+
export interface IEarlyAccessFeatureConfig {
|
520
|
+
title: string;
|
521
|
+
description: string;
|
522
|
+
docs?: string;
|
523
|
+
earlyAccess: string;
|
524
|
+
context: EarlyAccessFeatureContext;
|
525
|
+
status: EarlyAccessFeatureStatus;
|
526
|
+
}
|
527
|
+
/**
|
528
|
+
* @beta
|
529
|
+
*/
|
530
|
+
export interface IEarlyAccessFeaturesConfig {
|
531
|
+
features: IEarlyAccessFeatureConfig[];
|
532
|
+
}
|
482
533
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/settings/index.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/settings/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED