@salesforce/lds-adapters-analytics-wave 1.176.0 → 1.178.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VariableTypeRepresentation as VariableTypeRepresentation_VariableTypeRepresentation } from './VariableTypeRepresentation';
|
|
2
2
|
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "0ce22a2cc70e96d4aa53bf9ba934f0ae";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: NumberTypeRepresentation, existing: NumberTypeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NumberTypeRepresentationNormalized;
|
|
@@ -19,10 +19,14 @@ export interface NumberTypeRepresentationNormalized extends VariableTypeRepresen
|
|
|
19
19
|
enums: Array<number>;
|
|
20
20
|
/** The optional display labels for the enumerated values. */
|
|
21
21
|
enumsLabels?: Array<string | null>;
|
|
22
|
+
/** The display format for the number (Decimal, Currency, Percent, PercentFixed). */
|
|
23
|
+
format: string | null;
|
|
22
24
|
/** The maximum allowed value of the number. */
|
|
23
25
|
max: number | null;
|
|
24
26
|
/** The minimum allowed value of the number. */
|
|
25
27
|
min: number | null;
|
|
28
|
+
/** The maximum scale of the number (digits after the decimal point). */
|
|
29
|
+
scale: number | null;
|
|
26
30
|
}
|
|
27
31
|
/**
|
|
28
32
|
* Representation for numeric variable types.
|
|
@@ -33,7 +37,9 @@ export interface NumberTypeRepresentationNormalized extends VariableTypeRepresen
|
|
|
33
37
|
export interface NumberTypeRepresentation extends VariableTypeRepresentation_VariableTypeRepresentation {
|
|
34
38
|
enums: Array<number>;
|
|
35
39
|
enumsLabels?: Array<string | null>;
|
|
40
|
+
format: string | null;
|
|
36
41
|
max: number | null;
|
|
37
42
|
min: number | null;
|
|
43
|
+
scale: number | null;
|
|
38
44
|
type: 'NumberType';
|
|
39
45
|
}
|
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
|
@@ -32148,4 +32148,4 @@ withDefaultLuvio((luvio) => {
|
|
|
32148
32148
|
});
|
|
32149
32149
|
|
|
32150
32150
|
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 };
|
|
32151
|
-
// version: 1.
|
|
32151
|
+
// version: 1.178.0-2e30c899e
|
package/src/raml/api.raml
CHANGED
|
@@ -2232,6 +2232,19 @@ types:
|
|
|
2232
2232
|
description: The minimum allowed value of the number.
|
|
2233
2233
|
#format: double # Hand-rolled format not allowed with union type
|
|
2234
2234
|
type: number | nil
|
|
2235
|
+
format:
|
|
2236
|
+
description: The display format for the number (Decimal, Currency, Percent,
|
|
2237
|
+
PercentFixed).
|
|
2238
|
+
type: string | nil
|
|
2239
|
+
enum:
|
|
2240
|
+
- Currency
|
|
2241
|
+
- Decimal
|
|
2242
|
+
- Percent
|
|
2243
|
+
- PercentFixed
|
|
2244
|
+
scale:
|
|
2245
|
+
description: The maximum scale of the number (digits after the decimal
|
|
2246
|
+
point).
|
|
2247
|
+
type: integer | nil
|
|
2235
2248
|
ObjectCoverageRepresentation:
|
|
2236
2249
|
description: Security coverage for an object
|
|
2237
2250
|
type: object
|