@salesforce/lds-adapters-cdp-semantic-authoring 1.332.0-dev4 → 1.332.0-dev5

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.
Files changed (24) hide show
  1. package/dist/es/es2018/cdp-semantic-authoring.js +951 -692
  2. package/dist/es/es2018/types/src/generated/adapters/deleteGoalFromSubMetric.d.ts +15 -0
  3. package/dist/es/es2018/types/src/generated/adapters/getSemanticSubMetrics.d.ts +1 -0
  4. package/dist/es/es2018/types/src/generated/adapters/patchSemanticMetricGoal.d.ts +19 -0
  5. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
  7. package/dist/es/es2018/types/src/generated/resources/deleteSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +1 -0
  8. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsByModelApiNameOrId.d.ts +3 -0
  9. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +4 -4
  10. package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +3 -5
  11. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedDimensionOutputRepresentation.d.ts +4 -1
  12. package/dist/es/es2018/types/src/generated/types/SemanticCalculatedMeasurementOutputRepresentation.d.ts +4 -1
  13. package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionInputRepresentation.d.ts +43 -0
  14. package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionOutputRepresentation.d.ts +43 -0
  15. package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalInputRepresentation.d.ts +8 -12
  16. package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalOutputRepresentation.d.ts +8 -12
  17. package/package.json +3 -3
  18. package/sfdc/index.js +945 -680
  19. package/src/raml/api.raml +136 -57
  20. package/src/raml/luvio.raml +9 -0
  21. package/dist/es/es2018/types/src/generated/types/SemanticGoalDateRangeInputRepresentation.d.ts +0 -31
  22. package/dist/es/es2018/types/src/generated/types/SemanticGoalDateRangeOutputRepresentation.d.ts +0 -31
  23. package/dist/es/es2018/types/src/generated/types/SemanticGoalValueInputRepresentation.d.ts +0 -28
  24. package/dist/es/es2018/types/src/generated/types/SemanticGoalValueOutputRepresentation.d.ts +0 -28
@@ -0,0 +1,15 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, DeleteAdapterFactory as $64$luvio_engine_DeleteAdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_deleteSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig } from '../resources/deleteSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId';
4
+ export declare const adapterName = "deleteGoalFromSubMetric";
5
+ export declare const deleteGoalFromSubMetric_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
6
+ export declare const deleteGoalFromSubMetric_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
7
+ export interface DeleteGoalFromSubMetricConfig {
8
+ modelApiNameOrId: string;
9
+ subMetricNameOrId: string;
10
+ }
11
+ export declare const createResourceParams: (config: DeleteGoalFromSubMetricConfig) => resources_deleteSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig;
12
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<DeleteGoalFromSubMetricConfig>): adapter$45$utils_Untrusted<DeleteGoalFromSubMetricConfig>;
13
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): DeleteGoalFromSubMetricConfig | null;
14
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: DeleteGoalFromSubMetricConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<void>;
15
+ export declare const deleteGoalFromSubMetricAdapterFactory: $64$luvio_engine_DeleteAdapterFactory<DeleteGoalFromSubMetricConfig>;
@@ -7,6 +7,7 @@ export declare const getSemanticSubMetrics_ConfigPropertyMetadata: $64$luvio_eng
7
7
  export declare const getSemanticSubMetrics_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
8
  export interface GetSemanticSubMetricsConfig {
9
9
  modelApiNameOrId: string;
10
+ hasGoal?: boolean;
10
11
  }
11
12
  export declare const createResourceParams: (config: GetSemanticSubMetricsConfig) => resources_getSsotSemanticModelsSubMetricsByModelApiNameOrId_ResourceRequestConfig;
12
13
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig): string;
@@ -0,0 +1,19 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { SemanticGoalStatusConditionInputRepresentation as types_SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation } from '../types/SemanticGoalStatusConditionInputRepresentation';
4
+ import { ResourceRequestConfig as resources_patchSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig } from '../resources/patchSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId';
5
+ import { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from '../types/SemanticSubMetricOutputRepresentation';
6
+ export declare const adapterName = "patchSemanticMetricGoal";
7
+ export declare const patchSemanticMetricGoal_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
8
+ export declare const patchSemanticMetricGoal_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
9
+ export interface PatchSemanticMetricGoalConfig {
10
+ modelApiNameOrId: string;
11
+ subMetricNameOrId: string;
12
+ forecasting?: boolean;
13
+ statusConditions?: Array<types_SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation>;
14
+ }
15
+ export declare const createResourceParams: (config: PatchSemanticMetricGoalConfig) => resources_patchSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig;
16
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PatchSemanticMetricGoalConfig>): adapter$45$utils_Untrusted<PatchSemanticMetricGoalConfig>;
17
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PatchSemanticMetricGoalConfig | null;
18
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PatchSemanticMetricGoalConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>>;
19
+ export declare const patchSemanticMetricGoalAdapterFactory: $64$luvio_engine_AdapterFactory<PatchSemanticMetricGoalConfig, types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>;
@@ -10,4 +10,6 @@ export { getSemanticSubMetricsAdapterFactory } from '../adapters/getSemanticSubM
10
10
  export { createSemanticSubMetricAdapterFactory } from '../adapters/createSemanticSubMetric';
11
11
  export { deleteSemanticSubMetricAdapterFactory } from '../adapters/deleteSemanticSubMetric';
12
12
  export { getSemanticSubMetricAdapterFactory } from '../adapters/getSemanticSubMetric';
13
+ export { deleteGoalFromSubMetricAdapterFactory } from '../adapters/deleteGoalFromSubMetric';
14
+ export { patchSemanticMetricGoalAdapterFactory } from '../adapters/patchSemanticMetricGoal';
13
15
  export { getSemanticSubMetricsByIdAdapterFactory } from '../adapters/getSemanticSubMetricsById';
@@ -1,5 +1,6 @@
1
1
  declare let createSemanticModel: any;
2
2
  declare let createSemanticSubMetric: any;
3
+ declare let deleteGoalFromSubMetric: any;
3
4
  declare let deleteSemanticSubMetric: any;
4
5
  declare let getSemanticMetric: any;
5
6
  declare let getSemanticMetricNotifyChange: any;
@@ -13,6 +14,7 @@ declare let getSemanticSubMetric: any;
13
14
  declare let getSemanticSubMetricNotifyChange: any;
14
15
  declare let getSemanticSubMetrics: any;
15
16
  declare let getSemanticSubMetricsById: any;
17
+ declare let patchSemanticMetricGoal: any;
16
18
  declare let patchSemanticModel: any;
17
19
  declare let getSemanticMetric_imperative: any;
18
20
  declare let getSemanticMetrics_imperative: any;
@@ -23,4 +25,4 @@ declare let getSemanticModels_imperative: any;
23
25
  declare let getSemanticSubMetric_imperative: any;
24
26
  declare let getSemanticSubMetrics_imperative: any;
25
27
  declare let getSemanticSubMetricsById_imperative: any;
26
- export { createSemanticModel, createSemanticSubMetric, deleteSemanticSubMetric, getSemanticMetric, getSemanticMetricNotifyChange, getSemanticMetrics, getSemanticMetricsByIds, getSemanticMetricsToSubMetrics, getSemanticModel, getSemanticModelNotifyChange, getSemanticModels, getSemanticSubMetric, getSemanticSubMetricNotifyChange, getSemanticSubMetrics, getSemanticSubMetricsById, patchSemanticModel, getSemanticMetric_imperative, getSemanticMetrics_imperative, getSemanticMetricsByIds_imperative, getSemanticMetricsToSubMetrics_imperative, getSemanticModel_imperative, getSemanticModels_imperative, getSemanticSubMetric_imperative, getSemanticSubMetrics_imperative, getSemanticSubMetricsById_imperative, };
28
+ export { createSemanticModel, createSemanticSubMetric, deleteGoalFromSubMetric, deleteSemanticSubMetric, getSemanticMetric, getSemanticMetricNotifyChange, getSemanticMetrics, getSemanticMetricsByIds, getSemanticMetricsToSubMetrics, getSemanticModel, getSemanticModelNotifyChange, getSemanticModels, getSemanticSubMetric, getSemanticSubMetricNotifyChange, getSemanticSubMetrics, getSemanticSubMetricsById, patchSemanticMetricGoal, patchSemanticModel, getSemanticMetric_imperative, getSemanticMetrics_imperative, getSemanticMetricsByIds_imperative, getSemanticMetricsToSubMetrics_imperative, getSemanticModel_imperative, getSemanticModels_imperative, getSemanticSubMetric_imperative, getSemanticSubMetrics_imperative, getSemanticSubMetricsById_imperative, };
@@ -8,5 +8,6 @@ export interface ResourceRequestConfig {
8
8
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
9
9
  export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
10
10
  export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
11
+ export declare function evictSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
11
12
  export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
12
13
  export default createResourceRequest;
@@ -4,6 +4,9 @@ export interface ResourceRequestConfig {
4
4
  urlParams: {
5
5
  modelApiNameOrId: string;
6
6
  };
7
+ queryParams: {
8
+ hasGoal?: boolean;
9
+ };
7
10
  }
8
11
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
9
12
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
@@ -1,5 +1,5 @@
1
1
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
- import { SemanticSubMetricCollectionOutputRepresentation as types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation } from '../types/SemanticSubMetricCollectionOutputRepresentation';
2
+ import { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from '../types/SemanticSubMetricOutputRepresentation';
3
3
  export interface ResourceRequestConfig {
4
4
  urlParams: {
5
5
  modelApiNameOrId: string;
@@ -9,8 +9,8 @@ export interface ResourceRequestConfig {
9
9
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
10
10
  export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
11
11
  export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
12
- export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation): void;
13
- export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, any>;
14
- export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
12
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation): void;
13
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>;
14
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
15
15
  export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
16
16
  export default createResourceRequest;
@@ -1,5 +1,4 @@
1
- import { SemanticGoalDateRangeInputRepresentation as types_SemanticGoalDateRangeInputRepresentation_SemanticGoalDateRangeInputRepresentation } from '../types/SemanticGoalDateRangeInputRepresentation';
2
- import { SemanticGoalValueInputRepresentation as types_SemanticGoalValueInputRepresentation_SemanticGoalValueInputRepresentation } from '../types/SemanticGoalValueInputRepresentation';
1
+ import { SemanticGoalStatusConditionInputRepresentation as types_SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation } from '../types/SemanticGoalStatusConditionInputRepresentation';
3
2
  import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
4
3
  import { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from '../types/SemanticSubMetricOutputRepresentation';
5
4
  export interface ResourceRequestConfig {
@@ -8,9 +7,8 @@ export interface ResourceRequestConfig {
8
7
  subMetricNameOrId: string;
9
8
  };
10
9
  body: {
11
- date?: types_SemanticGoalDateRangeInputRepresentation_SemanticGoalDateRangeInputRepresentation;
12
- goalType?: string;
13
- value?: types_SemanticGoalValueInputRepresentation_SemanticGoalValueInputRepresentation;
10
+ forecasting?: boolean;
11
+ statusConditions?: Array<types_SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation>;
14
12
  };
15
13
  }
16
14
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,6 +1,6 @@
1
1
  import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
- export declare const VERSION = "51514a172af5e420504a2143725b4528";
3
+ export declare const VERSION = "8137018d7bcc1592081ebddf74ddd42a";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -58,6 +58,8 @@ export interface SemanticCalculatedDimensionOutputRepresentationNormalized {
58
58
  lastModifiedBy?: string;
59
59
  /** The date in which the semantic entity was last modified. */
60
60
  lastModifiedDate?: string;
61
+ /** The calculated measurement level */
62
+ level?: string;
61
63
  /** The Semantic Data Type determines the type of data being displayed in specific Semantic Data Fields in association with native Salesforce Data Types. Valid Semantic Data Types include Image URL, Web URL, Latitude, Longitude, and None. The default is "None". */
62
64
  semanticDataType?: string;
63
65
  /** Sort order of the Semantic Calculated Dimension. Valid values are Ascending, Descending, and None. */
@@ -89,6 +91,7 @@ export interface SemanticCalculatedDimensionOutputRepresentation {
89
91
  label?: string;
90
92
  lastModifiedBy?: string;
91
93
  lastModifiedDate?: string;
94
+ level?: string;
92
95
  semanticDataType?: string;
93
96
  sortOrder?: string;
94
97
  syntax?: string;
@@ -1,6 +1,6 @@
1
1
  import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
2
2
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
3
- export declare const VERSION = "6c8d910667cf399d3aa6e5a57e1fdd61";
3
+ export declare const VERSION = "4dc83d3583b0937db8808447abe03505";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -64,6 +64,8 @@ export interface SemanticCalculatedMeasurementOutputRepresentationNormalized {
64
64
  lastModifiedBy?: string;
65
65
  /** The date in which the semantic entity was last modified. */
66
66
  lastModifiedDate?: string;
67
+ /** The calculated measurement level */
68
+ level?: string;
67
69
  /** The Semantic Data Type determines the type of data being displayed in specific Semantic Data Fields in association with native Salesforce Data Types. Valid Semantic Data Types include Image URL, Web URL, Latitude, Longitude, and None. The default is "None". */
68
70
  semanticDataType?: string;
69
71
  /** Indicates the Sentiment of the Semantic Calculated Measurement by establishing whether an upward or a downward trend is seen as positive (Up) or negative (Down). */
@@ -104,6 +106,7 @@ export interface SemanticCalculatedMeasurementOutputRepresentation {
104
106
  label?: string;
105
107
  lastModifiedBy?: string;
106
108
  lastModifiedDate?: string;
109
+ level?: string;
107
110
  semanticDataType?: string;
108
111
  sentiment?: string;
109
112
  shouldTreatNullsAsZeros?: boolean;
@@ -0,0 +1,43 @@
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "080bafd52ed6472088d6795ec8dee975";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: SemanticGoalStatusConditionInputRepresentation, existing: SemanticGoalStatusConditionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticGoalStatusConditionInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: SemanticGoalStatusConditionInputRepresentationNormalized, incoming: SemanticGoalStatusConditionInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticGoalStatusConditionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for specifying a semantic metric goal status condition
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface SemanticGoalStatusConditionInputRepresentationNormalized {
17
+ /** The Color of the Goal Status Condition */
18
+ color?: string;
19
+ /** The Currency ISO code of the Goal Status Condition */
20
+ currencyIsoCode?: string;
21
+ /** The Operator of the Goal Status Condition */
22
+ operator?: string;
23
+ /** The Primary state of the Goal Status Condition */
24
+ primary?: boolean;
25
+ /** The Status Name of the Goal Status Condition */
26
+ statusName?: string;
27
+ /** The Value of the Goal Status Condition */
28
+ value?: string;
29
+ }
30
+ /**
31
+ * Input representation for specifying a semantic metric goal status condition
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface SemanticGoalStatusConditionInputRepresentation {
37
+ color?: string;
38
+ currencyIsoCode?: string;
39
+ operator?: string;
40
+ primary?: boolean;
41
+ statusName?: string;
42
+ value?: string;
43
+ }
@@ -0,0 +1,43 @@
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "77130f1cc25bfe67384d6074027e3f3c";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: SemanticGoalStatusConditionOutputRepresentation, existing: SemanticGoalStatusConditionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticGoalStatusConditionOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: SemanticGoalStatusConditionOutputRepresentationNormalized, incoming: SemanticGoalStatusConditionOutputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticGoalStatusConditionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Output representation for specifying a semantic metric goal status condition
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface SemanticGoalStatusConditionOutputRepresentationNormalized {
17
+ /** The Color of the Goal Status Condition */
18
+ color: string;
19
+ /** The Currency ISO code of the Goal Status Condition */
20
+ currencyIsoCode?: string;
21
+ /** The Operator of the Goal Status Condition */
22
+ operator: string;
23
+ /** The Primary state of the Goal Status Condition */
24
+ primary: boolean;
25
+ /** The Status Name of the Goal Status Condition */
26
+ statusName: string;
27
+ /** The Value of the Goal Status Condition */
28
+ value: string;
29
+ }
30
+ /**
31
+ * Output representation for specifying a semantic metric goal status condition
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface SemanticGoalStatusConditionOutputRepresentation {
37
+ color: string;
38
+ currencyIsoCode?: string;
39
+ operator: string;
40
+ primary: boolean;
41
+ statusName: string;
42
+ value: string;
43
+ }
@@ -1,7 +1,6 @@
1
- import { SemanticGoalDateRangeInputRepresentation as SemanticGoalDateRangeInputRepresentation_SemanticGoalDateRangeInputRepresentation } from './SemanticGoalDateRangeInputRepresentation';
2
- import { SemanticGoalValueInputRepresentation as SemanticGoalValueInputRepresentation_SemanticGoalValueInputRepresentation } from './SemanticGoalValueInputRepresentation';
1
+ import { SemanticGoalStatusConditionInputRepresentation as SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation } from './SemanticGoalStatusConditionInputRepresentation';
3
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';
4
- export declare const VERSION = "0108f1ce5aaff383d2eab41a5c89b2d0";
3
+ export declare const VERSION = "147ddd9c7bf0eb30716423b2284b2a0b";
5
4
  export declare function validate(obj: any, path?: string): TypeError | null;
6
5
  export declare const RepresentationType: string;
7
6
  export declare function normalize(input: SemanticMetricGoalInputRepresentation, existing: SemanticMetricGoalInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticMetricGoalInputRepresentationNormalized;
@@ -16,12 +15,10 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
15
  * (none)
17
16
  */
18
17
  export interface SemanticMetricGoalInputRepresentationNormalized {
19
- /** The Date property of the semantic metric goal. */
20
- date?: SemanticGoalDateRangeInputRepresentation_SemanticGoalDateRangeInputRepresentation;
21
- /** The Type property of the semantic metric goal. */
22
- goalType?: string;
23
- /** The Value property of the semantic metric goal. */
24
- value?: SemanticGoalValueInputRepresentation_SemanticGoalValueInputRepresentation;
18
+ /** The forecasting state of the semantic metric goal. */
19
+ forecasting?: boolean;
20
+ /** The Status Condition list of the semantic metric goal. */
21
+ statusConditions?: Array<SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation>;
25
22
  }
26
23
  /**
27
24
  * Input representation for specifying a semantic metric goal
@@ -30,7 +27,6 @@ export interface SemanticMetricGoalInputRepresentationNormalized {
30
27
  * (none)
31
28
  */
32
29
  export interface SemanticMetricGoalInputRepresentation {
33
- date?: SemanticGoalDateRangeInputRepresentation_SemanticGoalDateRangeInputRepresentation;
34
- goalType?: string;
35
- value?: SemanticGoalValueInputRepresentation_SemanticGoalValueInputRepresentation;
30
+ forecasting?: boolean;
31
+ statusConditions?: Array<SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation>;
36
32
  }
@@ -1,7 +1,6 @@
1
- import { SemanticGoalDateRangeOutputRepresentation as SemanticGoalDateRangeOutputRepresentation_SemanticGoalDateRangeOutputRepresentation } from './SemanticGoalDateRangeOutputRepresentation';
2
- import { SemanticGoalValueOutputRepresentation as SemanticGoalValueOutputRepresentation_SemanticGoalValueOutputRepresentation } from './SemanticGoalValueOutputRepresentation';
1
+ import { SemanticGoalStatusConditionOutputRepresentation as SemanticGoalStatusConditionOutputRepresentation_SemanticGoalStatusConditionOutputRepresentation } from './SemanticGoalStatusConditionOutputRepresentation';
3
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';
4
- export declare const VERSION = "e47d902a0a6a0d4e3854a2c475b963b0";
3
+ export declare const VERSION = "f3f6abdce08e8dc319fe535f25fb8c1a";
5
4
  export declare function validate(obj: any, path?: string): TypeError | null;
6
5
  export declare const RepresentationType: string;
7
6
  export declare function normalize(input: SemanticMetricGoalOutputRepresentation, existing: SemanticMetricGoalOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticMetricGoalOutputRepresentationNormalized;
@@ -16,12 +15,10 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
16
15
  * (none)
17
16
  */
18
17
  export interface SemanticMetricGoalOutputRepresentationNormalized {
19
- /** The Date range of the semantic metric goal. */
20
- date: SemanticGoalDateRangeOutputRepresentation_SemanticGoalDateRangeOutputRepresentation;
21
- /** The Goal Type of the semantic metric goal type. */
22
- goalType: string;
23
- /** The API name of the semantic metric goal. */
24
- value: SemanticGoalValueOutputRepresentation_SemanticGoalValueOutputRepresentation;
18
+ /** The forecasting state of the semantic metric goal. */
19
+ forecasting: boolean;
20
+ /** The status condition list of the semantic metric goal. */
21
+ statusConditions: Array<SemanticGoalStatusConditionOutputRepresentation_SemanticGoalStatusConditionOutputRepresentation>;
25
22
  }
26
23
  /**
27
24
  * A semantic Metric Goal.
@@ -30,7 +27,6 @@ export interface SemanticMetricGoalOutputRepresentationNormalized {
30
27
  * (none)
31
28
  */
32
29
  export interface SemanticMetricGoalOutputRepresentation {
33
- date: SemanticGoalDateRangeOutputRepresentation_SemanticGoalDateRangeOutputRepresentation;
34
- goalType: string;
35
- value: SemanticGoalValueOutputRepresentation_SemanticGoalValueOutputRepresentation;
30
+ forecasting: boolean;
31
+ statusConditions: Array<SemanticGoalStatusConditionOutputRepresentation_SemanticGoalStatusConditionOutputRepresentation>;
36
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-cdp-semantic-authoring",
3
- "version": "1.332.0-dev4",
3
+ "version": "1.332.0-dev5",
4
4
  "description": "Semantic Authoring",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/cdp-semantic-authoring.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.332.0-dev4"
43
+ "@salesforce/lds-bindings": "^1.332.0-dev5"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.332.0-dev4"
46
+ "@salesforce/lds-compiler-plugins": "^1.332.0-dev5"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {