@salesforce/lds-adapters-cdp-semantic-authoring 1.334.0 → 1.335.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/dist/es/es2018/cdp-semantic-authoring.js +870 -716
- package/dist/es/es2018/types/src/generated/adapters/deleteGoalFromSubMetric.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/adapters/getSemanticMetricsByIds.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/patchSemanticMetricGoal.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/deleteSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticMetricsByMetricIds.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +4 -4
- package/dist/es/es2018/types/src/generated/resources/patchSsotSemanticModelsSubMetricsGoalByModelApiNameOrIdAndSubMetricNameOrId.d.ts +3 -5
- package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalInputRepresentation.d.ts +8 -12
- package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalOutputRepresentation.d.ts +4 -12
- package/package.json +3 -3
- package/sfdc/index.js +818 -658
- package/src/raml/api.raml +74 -60
- package/src/raml/luvio.raml +9 -0
- package/dist/es/es2018/types/src/generated/types/SemanticGoalDateRangeInputRepresentation.d.ts +0 -31
- package/dist/es/es2018/types/src/generated/types/SemanticGoalDateRangeOutputRepresentation.d.ts +0 -31
- package/dist/es/es2018/types/src/generated/types/SemanticGoalValueInputRepresentation.d.ts +0 -28
- 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,8 @@ export declare const getSemanticMetricsByIds_ConfigPropertyMetadata: $64$luvio_e
|
|
|
7
7
|
export declare const getSemanticMetricsByIds_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetSemanticMetricsByIdsConfig {
|
|
9
9
|
metricIds: string;
|
|
10
|
+
sortBy?: string;
|
|
11
|
+
sortOrder?: string;
|
|
10
12
|
}
|
|
11
13
|
export declare const createResourceParams: (config: GetSemanticMetricsByIdsConfig) => resources_getSsotSemanticMetricsByMetricIds_ResourceRequestConfig;
|
|
12
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsByIdsConfig): 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,10 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
metricIds: string;
|
|
6
6
|
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
sortBy?: string;
|
|
9
|
+
sortOrder?: string;
|
|
10
|
+
};
|
|
7
11
|
}
|
|
8
12
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
13
|
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 {
|
|
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:
|
|
13
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<
|
|
14
|
-
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<
|
|
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 {
|
|
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
|
-
|
|
12
|
-
|
|
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;
|
package/dist/es/es2018/types/src/generated/types/SemanticGoalStatusConditionInputRepresentation.d.ts
ADDED
|
@@ -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 {
|
|
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 = "
|
|
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
|
|
20
|
-
|
|
21
|
-
/** The
|
|
22
|
-
|
|
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
|
-
|
|
34
|
-
|
|
35
|
-
value?: SemanticGoalValueInputRepresentation_SemanticGoalValueInputRepresentation;
|
|
30
|
+
forecasting?: boolean;
|
|
31
|
+
statusConditions?: Array<SemanticGoalStatusConditionInputRepresentation_SemanticGoalStatusConditionInputRepresentation>;
|
|
36
32
|
}
|
package/dist/es/es2018/types/src/generated/types/SemanticMetricGoalOutputRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import { SemanticGoalDateRangeOutputRepresentation as SemanticGoalDateRangeOutputRepresentation_SemanticGoalDateRangeOutputRepresentation } from './SemanticGoalDateRangeOutputRepresentation';
|
|
2
|
-
import { SemanticGoalValueOutputRepresentation as SemanticGoalValueOutputRepresentation_SemanticGoalValueOutputRepresentation } from './SemanticGoalValueOutputRepresentation';
|
|
3
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';
|
|
4
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "e36b27d6368b66b9eeeaaa1b7af39484";
|
|
5
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
4
|
export declare const RepresentationType: string;
|
|
7
5
|
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 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
16
14
|
* (none)
|
|
17
15
|
*/
|
|
18
16
|
export interface SemanticMetricGoalOutputRepresentationNormalized {
|
|
19
|
-
/** The
|
|
20
|
-
|
|
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;
|
|
17
|
+
/** The forecasting state of the semantic metric goal. */
|
|
18
|
+
forecasting: boolean;
|
|
25
19
|
}
|
|
26
20
|
/**
|
|
27
21
|
* A semantic Metric Goal.
|
|
@@ -30,7 +24,5 @@ export interface SemanticMetricGoalOutputRepresentationNormalized {
|
|
|
30
24
|
* (none)
|
|
31
25
|
*/
|
|
32
26
|
export interface SemanticMetricGoalOutputRepresentation {
|
|
33
|
-
|
|
34
|
-
goalType: string;
|
|
35
|
-
value: SemanticGoalValueOutputRepresentation_SemanticGoalValueOutputRepresentation;
|
|
27
|
+
forecasting: boolean;
|
|
36
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cdp-semantic-authoring",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.335.0",
|
|
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.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.335.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.335.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|