@salesforce/lds-adapters-analytics-wave 1.152.0 → 1.152.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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PanelItemRepresentation as PanelItemRepresentation_PanelItemRepresentation } from './PanelItemRepresentation';
|
|
2
|
+
import { VariableItemTileRepresentation as VariableItemTileRepresentation_VariableItemTileRepresentation } from './VariableItemTileRepresentation';
|
|
2
3
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "e7e9ed8f3ec37e7f6e19f9dfeeb813d5";
|
|
4
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
6
|
export declare const RepresentationType: string;
|
|
6
7
|
export declare function normalize(input: VariableItemRepresentation, existing: VariableItemRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): VariableItemRepresentationNormalized;
|
|
@@ -17,6 +18,12 @@ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: V
|
|
|
17
18
|
export interface VariableItemRepresentationNormalized extends PanelItemRepresentation_PanelItemRepresentation {
|
|
18
19
|
/** The variable name. */
|
|
19
20
|
name: string;
|
|
21
|
+
/** The checkbox tiles' details for the CheckboxTiles variant. */
|
|
22
|
+
tiles?: {
|
|
23
|
+
[key: string]: VariableItemTileRepresentation_VariableItemTileRepresentation;
|
|
24
|
+
};
|
|
25
|
+
/** The optional variable variant. The valid values are: CheckboxTiles */
|
|
26
|
+
variant?: string;
|
|
20
27
|
}
|
|
21
28
|
/**
|
|
22
29
|
* Variable.
|
|
@@ -26,5 +33,9 @@ export interface VariableItemRepresentationNormalized extends PanelItemRepresent
|
|
|
26
33
|
*/
|
|
27
34
|
export interface VariableItemRepresentation extends PanelItemRepresentation_PanelItemRepresentation {
|
|
28
35
|
name: string;
|
|
36
|
+
tiles?: {
|
|
37
|
+
[key: string]: VariableItemTileRepresentation_VariableItemTileRepresentation;
|
|
38
|
+
};
|
|
39
|
+
variant?: string;
|
|
29
40
|
type: 'Variable';
|
|
30
41
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "9f42a67284671edeb50605b662f3ffff";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: VariableItemTileRepresentation, existing: VariableItemTileRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): VariableItemTileRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: VariableItemTileRepresentationNormalized, incoming: VariableItemTileRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: VariableItemTileRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
10
|
+
/**
|
|
11
|
+
* Checkbox tile details.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface VariableItemTileRepresentationNormalized {
|
|
17
|
+
/** The optional badge text text to display in a pill in the tile. */
|
|
18
|
+
badge?: string;
|
|
19
|
+
/** The optional description text. This will override the description defined in the variable definition. */
|
|
20
|
+
description?: string;
|
|
21
|
+
/** The optional SLDS icon to display. */
|
|
22
|
+
iconName?: string;
|
|
23
|
+
/** The optional label. This will override the label defined in the variable definition. */
|
|
24
|
+
label?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Checkbox tile details.
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface VariableItemTileRepresentation {
|
|
33
|
+
badge?: string;
|
|
34
|
+
description?: string;
|
|
35
|
+
iconName?: string;
|
|
36
|
+
label?: string;
|
|
37
|
+
}
|
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
|
@@ -32397,4 +32397,4 @@ withDefaultLuvio((luvio) => {
|
|
|
32397
32397
|
});
|
|
32398
32398
|
|
|
32399
32399
|
export { createDataConnector, createDataflowJob, createDataset, createDatasetVersion, createReplicatedDataset, deleteDataConnector, deleteDataset, deleteRecipe, deleteReplicatedDataset, executeQuery, executeQuery_imperative, getActions, getActions_imperative, getAnalyticsLimits, getAnalyticsLimits_imperative, getDataConnector, getDataConnectorNotifyChange, getDataConnectorSourceFields, getDataConnectorSourceFieldsNotifyChange, getDataConnectorSourceFields_imperative, getDataConnectorSourceObject, getDataConnectorSourceObjectDataPreviewWithFields, getDataConnectorSourceObjectDataPreviewWithFields_imperative, getDataConnectorSourceObjectNotifyChange, getDataConnectorSourceObject_imperative, getDataConnectorSourceObjects, getDataConnectorSourceObjects_imperative, getDataConnectorStatus, getDataConnectorStatus_imperative, getDataConnectorTypes, getDataConnectorTypes_imperative, getDataConnector_imperative, getDataConnectors, getDataConnectors_imperative, getDataflowJob, getDataflowJobNode, getDataflowJobNodeNotifyChange, getDataflowJobNode_imperative, getDataflowJobNodes, getDataflowJobNodes_imperative, getDataflowJobNotifyChange, getDataflowJob_imperative, getDataflowJobs, getDataflowJobs_imperative, getDataflows, getDataflows_imperative, getDataset, getDatasetNotifyChange, getDatasetVersion, getDatasetVersionNotifyChange, getDatasetVersion_imperative, getDatasetVersions, getDatasetVersions_imperative, getDataset_imperative, getDatasets, getDatasets_imperative, getDependencies, getDependencies_imperative, getRecipe, getRecipeNotification, getRecipeNotificationNotifyChange, getRecipeNotification_imperative, getRecipeNotifyChange, getRecipe_imperative, getRecipes, getRecipes_imperative, getReplicatedDataset, getReplicatedDatasetNotifyChange, getReplicatedDataset_imperative, getReplicatedDatasets, getReplicatedDatasets_imperative, getReplicatedFields, getReplicatedFieldsNotifyChange, getReplicatedFields_imperative, getSchedule, getScheduleNotifyChange, getSchedule_imperative, getSecurityCoverageDatasetVersion, getSecurityCoverageDatasetVersion_imperative, getWaveFolders, getWaveFolders_imperative, getWaveTemplate, getWaveTemplateConfig, getWaveTemplateConfigNotifyChange, getWaveTemplateConfig_imperative, getWaveTemplateNotifyChange, getWaveTemplateReleaseNotes, getWaveTemplateReleaseNotesNotifyChange, getWaveTemplateReleaseNotes_imperative, getWaveTemplate_imperative, getWaveTemplates, getWaveTemplates_imperative, getXmd, getXmd_imperative, ingestDataConnector, updateDataConnector, updateDataflowJob, updateDataset, updateDatasetVersion, updateRecipe, updateRecipeNotification, updateReplicatedDataset, updateReplicatedFields, updateSchedule, updateXmd, validateWaveTemplate };
|
|
32400
|
-
// version: 1.152.
|
|
32400
|
+
// version: 1.152.2-0ed20fd21
|
package/src/raml/api.raml
CHANGED
|
@@ -4395,6 +4395,39 @@ types:
|
|
|
4395
4395
|
name:
|
|
4396
4396
|
description: The variable name.
|
|
4397
4397
|
type: string
|
|
4398
|
+
tiles:
|
|
4399
|
+
description: The checkbox tiles' details for the CheckboxTiles variant.
|
|
4400
|
+
type: object
|
|
4401
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4402
|
+
properties:
|
|
4403
|
+
//:
|
|
4404
|
+
type: VariableItemTileRepresentation
|
|
4405
|
+
variant:
|
|
4406
|
+
description: 'The optional variable variant. The valid values are: CheckboxTiles'
|
|
4407
|
+
type: string
|
|
4408
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4409
|
+
VariableItemTileRepresentation:
|
|
4410
|
+
description: Checkbox tile details.
|
|
4411
|
+
type: object
|
|
4412
|
+
properties:
|
|
4413
|
+
badge:
|
|
4414
|
+
description: The optional badge text text to display in a pill in the tile.
|
|
4415
|
+
type: string
|
|
4416
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4417
|
+
description:
|
|
4418
|
+
description: The optional description text. This will override the description
|
|
4419
|
+
defined in the variable definition.
|
|
4420
|
+
type: string
|
|
4421
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4422
|
+
iconName:
|
|
4423
|
+
description: The optional SLDS icon to display.
|
|
4424
|
+
type: string
|
|
4425
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4426
|
+
label:
|
|
4427
|
+
description: The optional label. This will override the label defined in the
|
|
4428
|
+
variable definition.
|
|
4429
|
+
type: string
|
|
4430
|
+
required: false # TODO Hand-rolled W-8253396
|
|
4398
4431
|
VariableTypeRepresentation:
|
|
4399
4432
|
description: Abstractly describes the type of variable definition.
|
|
4400
4433
|
discriminator: type
|