@salesforce/lds-adapters-cdp-semantic-authoring 1.302.0 → 1.304.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.
Files changed (26) hide show
  1. package/dist/es/es2018/cdp-semantic-authoring.js +1837 -390
  2. package/dist/es/es2018/types/src/generated/adapters/getSemanticMetricsToSubMetrics.d.ts +28 -0
  3. package/dist/es/es2018/types/src/generated/adapters/getSemanticSubMetric.d.ts +29 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getSemanticSubMetrics.d.ts +27 -0
  5. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +8 -1
  7. package/dist/es/es2018/types/src/generated/resources/deleteSsotSemanticModelsMetricsByMetricNameOrIdAndModelApiNameOrId.d.ts +12 -0
  8. package/dist/es/es2018/types/src/generated/resources/deleteSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId.d.ts +12 -0
  9. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsMetricApiNamesSubMetricsByMetricApiNamesAndModelApiNameOrId.d.ts +16 -0
  10. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsByModelApiNameOrId.d.ts +15 -0
  11. package/dist/es/es2018/types/src/generated/resources/getSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId.d.ts +17 -0
  12. package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsMetricsByModelApiNameOrId.d.ts +25 -0
  13. package/dist/es/es2018/types/src/generated/resources/postSsotSemanticModelsSubMetricsByModelApiNameOrId.d.ts +22 -0
  14. package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsMetricsByMetricNameOrIdAndModelApiNameOrId.d.ts +26 -0
  15. package/dist/es/es2018/types/src/generated/resources/putSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId.d.ts +23 -0
  16. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricCollectionOutputRepresentation.d.ts +38 -0
  17. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricInputRepresentation.d.ts +49 -0
  18. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricOutputRepresentation.d.ts +75 -0
  19. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricsByMetricCollectionOutputRepresentation.d.ts +38 -0
  20. package/dist/es/es2018/types/src/generated/types/SemanticSubMetricsByMetricOutputRepresentation.d.ts +41 -0
  21. package/dist/es/es2018/types/src/generated/types/SemanticTimeRangeInputRepresentation.d.ts +34 -0
  22. package/dist/es/es2018/types/src/generated/types/SemanticTimeRangeOutputRepresentation.d.ts +34 -0
  23. package/package.json +3 -3
  24. package/sfdc/index.js +5125 -3606
  25. package/src/raml/api.raml +280 -10
  26. package/src/raml/luvio.raml +17 -0
@@ -0,0 +1,28 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, 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 { ResourceRequestConfig as resources_getSsotSemanticModelsMetricApiNamesSubMetricsByMetricApiNamesAndModelApiNameOrId_ResourceRequestConfig } from '../resources/getSsotSemanticModelsMetricApiNamesSubMetricsByMetricApiNamesAndModelApiNameOrId';
4
+ import { SemanticSubMetricsByMetricCollectionOutputRepresentation as types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation } from '../types/SemanticSubMetricsByMetricCollectionOutputRepresentation';
5
+ export declare const adapterName = "getSemanticMetricsToSubMetrics";
6
+ export declare const getSemanticMetricsToSubMetrics_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getSemanticMetricsToSubMetrics_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetSemanticMetricsToSubMetricsConfig {
9
+ metricApiNames: string;
10
+ modelApiNameOrId: string;
11
+ }
12
+ export declare const createResourceParams: (config: GetSemanticMetricsToSubMetricsConfig) => resources_getSsotSemanticModelsMetricApiNamesSubMetricsByMetricApiNamesAndModelApiNameOrId_ResourceRequestConfig;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetSemanticMetricsToSubMetricsConfig>): adapter$45$utils_Untrusted<GetSemanticMetricsToSubMetricsConfig>;
16
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetSemanticMetricsToSubMetricsConfig | null;
17
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig): $64$luvio_engine_Fragment;
18
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig): $64$luvio_engine_Snapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, any>;
19
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig, resourceParams: resources_getSsotSemanticModelsMetricApiNamesSubMetricsByMetricApiNamesAndModelApiNameOrId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, any>>;
20
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig, resourceParams: resources_getSsotSemanticModelsMetricApiNamesSubMetricsByMetricApiNamesAndModelApiNameOrId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
21
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSemanticMetricsToSubMetricsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, any>>;
22
+ export type BuildSnapshotContext = {
23
+ luvio: $64$luvio_engine_Luvio;
24
+ config: GetSemanticMetricsToSubMetricsConfig;
25
+ };
26
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, any>>;
27
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation>): $64$luvio_engine_Snapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, any>;
28
+ export declare const getSemanticMetricsToSubMetricsAdapterFactory: $64$luvio_engine_AdapterFactory<GetSemanticMetricsToSubMetricsConfig, types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation>;
@@ -0,0 +1,29 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_getSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig } from '../resources/getSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId';
4
+ import { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, KeyParams as types_SemanticSubMetricOutputRepresentation_KeyParams } from '../types/SemanticSubMetricOutputRepresentation';
5
+ export declare const adapterName = "getSemanticSubMetric";
6
+ export declare const getSemanticSubMetric_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getSemanticSubMetric_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetSemanticSubMetricConfig {
9
+ modelApiNameOrId: string;
10
+ subMetricNameOrId: string;
11
+ }
12
+ export declare const createResourceParams: (config: GetSemanticSubMetricConfig) => resources_getSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetSemanticSubMetricConfig>): adapter$45$utils_Untrusted<GetSemanticSubMetricConfig>;
16
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetSemanticSubMetricConfig | null;
17
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig): $64$luvio_engine_Fragment;
18
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig): $64$luvio_engine_Snapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>;
19
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig, resourceParams: resources_getSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>>;
20
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig, resourceParams: resources_getSsotSemanticModelsSubMetricsByModelApiNameOrIdAndSubMetricNameOrId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
21
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>>;
22
+ export type BuildSnapshotContext = {
23
+ luvio: $64$luvio_engine_Luvio;
24
+ config: GetSemanticSubMetricConfig;
25
+ };
26
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>>;
27
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>): $64$luvio_engine_Snapshot<types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation, any>;
28
+ export declare const getSemanticSubMetricAdapterFactory: $64$luvio_engine_AdapterFactory<GetSemanticSubMetricConfig, types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>;
29
+ export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_SemanticSubMetricOutputRepresentation_KeyParams, any>[]) => void;
@@ -0,0 +1,27 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, 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 { ResourceRequestConfig as resources_getSsotSemanticModelsSubMetricsByModelApiNameOrId_ResourceRequestConfig } from '../resources/getSsotSemanticModelsSubMetricsByModelApiNameOrId';
4
+ import { SemanticSubMetricCollectionOutputRepresentation as types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation } from '../types/SemanticSubMetricCollectionOutputRepresentation';
5
+ export declare const adapterName = "getSemanticSubMetrics";
6
+ export declare const getSemanticSubMetrics_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getSemanticSubMetrics_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetSemanticSubMetricsConfig {
9
+ modelApiNameOrId: string;
10
+ }
11
+ export declare const createResourceParams: (config: GetSemanticSubMetricsConfig) => resources_getSsotSemanticModelsSubMetricsByModelApiNameOrId_ResourceRequestConfig;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetSemanticSubMetricsConfig>): adapter$45$utils_Untrusted<GetSemanticSubMetricsConfig>;
15
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetSemanticSubMetricsConfig | null;
16
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig): $64$luvio_engine_Fragment;
17
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig): $64$luvio_engine_Snapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, any>;
18
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig, resourceParams: resources_getSsotSemanticModelsSubMetricsByModelApiNameOrId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, any>>;
19
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig, resourceParams: resources_getSsotSemanticModelsSubMetricsByModelApiNameOrId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
20
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSemanticSubMetricsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, any>>;
21
+ export type BuildSnapshotContext = {
22
+ luvio: $64$luvio_engine_Luvio;
23
+ config: GetSemanticSubMetricsConfig;
24
+ };
25
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, any>>;
26
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation>): $64$luvio_engine_Snapshot<types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation, any>;
27
+ export declare const getSemanticSubMetricsAdapterFactory: $64$luvio_engine_AdapterFactory<GetSemanticSubMetricsConfig, types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation>;
@@ -1,4 +1,7 @@
1
1
  export { getSemanticModelsAdapterFactory } from '../adapters/getSemanticModels';
2
2
  export { getSemanticModelAdapterFactory } from '../adapters/getSemanticModel';
3
+ export { getSemanticMetricsToSubMetricsAdapterFactory } from '../adapters/getSemanticMetricsToSubMetrics';
3
4
  export { getSemanticMetricsAdapterFactory } from '../adapters/getSemanticMetrics';
4
5
  export { getSemanticMetricAdapterFactory } from '../adapters/getSemanticMetric';
6
+ export { getSemanticSubMetricsAdapterFactory } from '../adapters/getSemanticSubMetrics';
7
+ export { getSemanticSubMetricAdapterFactory } from '../adapters/getSemanticSubMetric';
@@ -1,11 +1,18 @@
1
1
  declare let getSemanticMetric: any;
2
2
  declare let getSemanticMetricNotifyChange: any;
3
3
  declare let getSemanticMetrics: any;
4
+ declare let getSemanticMetricsToSubMetrics: any;
4
5
  declare let getSemanticModel: any;
5
6
  declare let getSemanticModelNotifyChange: any;
6
7
  declare let getSemanticModels: any;
8
+ declare let getSemanticSubMetric: any;
9
+ declare let getSemanticSubMetricNotifyChange: any;
10
+ declare let getSemanticSubMetrics: any;
7
11
  declare let getSemanticMetric_imperative: any;
8
12
  declare let getSemanticMetrics_imperative: any;
13
+ declare let getSemanticMetricsToSubMetrics_imperative: any;
9
14
  declare let getSemanticModel_imperative: any;
10
15
  declare let getSemanticModels_imperative: any;
11
- export { getSemanticMetric, getSemanticMetricNotifyChange, getSemanticMetrics, getSemanticModel, getSemanticModelNotifyChange, getSemanticModels, getSemanticMetric_imperative, getSemanticMetrics_imperative, getSemanticModel_imperative, getSemanticModels_imperative, };
16
+ declare let getSemanticSubMetric_imperative: any;
17
+ declare let getSemanticSubMetrics_imperative: any;
18
+ export { getSemanticMetric, getSemanticMetricNotifyChange, getSemanticMetrics, getSemanticMetricsToSubMetrics, getSemanticModel, getSemanticModelNotifyChange, getSemanticModels, getSemanticSubMetric, getSemanticSubMetricNotifyChange, getSemanticSubMetrics, getSemanticMetric_imperative, getSemanticMetrics_imperative, getSemanticMetricsToSubMetrics_imperative, getSemanticModel_imperative, getSemanticModels_imperative, getSemanticSubMetric_imperative, getSemanticSubMetrics_imperative, };
@@ -0,0 +1,12 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ export interface ResourceRequestConfig {
3
+ urlParams: {
4
+ metricNameOrId: string;
5
+ modelApiNameOrId: string;
6
+ };
7
+ }
8
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
9
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
10
+ export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
11
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
12
+ export default createResourceRequest;
@@ -0,0 +1,12 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ export interface ResourceRequestConfig {
3
+ urlParams: {
4
+ modelApiNameOrId: string;
5
+ subMetricNameOrId: string;
6
+ };
7
+ }
8
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
9
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
10
+ export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
11
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
12
+ export default createResourceRequest;
@@ -0,0 +1,16 @@
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 { SemanticSubMetricsByMetricCollectionOutputRepresentation as types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation } from '../types/SemanticSubMetricsByMetricCollectionOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ metricApiNames: string;
6
+ modelApiNameOrId: string;
7
+ };
8
+ }
9
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
10
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
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_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation): void;
13
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation, any>;
14
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SemanticSubMetricsByMetricCollectionOutputRepresentation_SemanticSubMetricsByMetricCollectionOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
15
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
16
+ export default createResourceRequest;
@@ -0,0 +1,15 @@
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';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ modelApiNameOrId: string;
6
+ };
7
+ }
8
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
9
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
10
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
11
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticSubMetricCollectionOutputRepresentation_SemanticSubMetricCollectionOutputRepresentation): void;
12
+ 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>;
13
+ 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;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
@@ -0,0 +1,17 @@
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 { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from '../types/SemanticSubMetricOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ modelApiNameOrId: string;
6
+ subMetricNameOrId: string;
7
+ };
8
+ }
9
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
10
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
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_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
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
16
+ export default createResourceRequest;
17
+ export declare function createResourceRequestFromRepresentation(representation: types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation): $64$luvio_engine_ResourceRequest;
@@ -0,0 +1,25 @@
1
+ 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';
2
+ import { SemanticMetricOutputRepresentation as types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation } from '../types/SemanticMetricOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ modelApiNameOrId: string;
6
+ };
7
+ body: {
8
+ apiName: string;
9
+ dataspace: string | null;
10
+ description: string | null;
11
+ label: string | null;
12
+ adjustableFilters: Array<{}>;
13
+ filterLogic: string | null;
14
+ filters: Array<{}>;
15
+ insightsSettings: {};
16
+ measurementReference: {};
17
+ timeDimensionReference: {};
18
+ timeGrains: Array<string>;
19
+ };
20
+ }
21
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
22
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation): void;
23
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation, any>;
24
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
25
+ export default createResourceRequest;
@@ -0,0 +1,22 @@
1
+ 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';
2
+ import { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from '../types/SemanticSubMetricOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ modelApiNameOrId: string;
6
+ };
7
+ body: {
8
+ apiName: string;
9
+ dataspace: string | null;
10
+ description: string | null;
11
+ label: string | null;
12
+ filterLogic: string | null;
13
+ filters: Array<{}>;
14
+ semanticMetricDefinitionApiName: string;
15
+ timeRange: {};
16
+ };
17
+ }
18
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
19
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation): void;
20
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<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>;
21
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
22
+ export default createResourceRequest;
@@ -0,0 +1,26 @@
1
+ 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';
2
+ import { SemanticMetricOutputRepresentation as types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation } from '../types/SemanticMetricOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ metricNameOrId: string;
6
+ modelApiNameOrId: string;
7
+ };
8
+ body: {
9
+ apiName: string;
10
+ dataspace: string | null;
11
+ description: string | null;
12
+ label: string | null;
13
+ adjustableFilters: Array<{}>;
14
+ filterLogic: string | null;
15
+ filters: Array<{}>;
16
+ insightsSettings: {};
17
+ measurementReference: {};
18
+ timeDimensionReference: {};
19
+ timeGrains: Array<string>;
20
+ };
21
+ }
22
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
23
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation): void;
24
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SemanticMetricOutputRepresentation_SemanticMetricOutputRepresentation, any>;
25
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
26
+ export default createResourceRequest;
@@ -0,0 +1,23 @@
1
+ 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';
2
+ import { SemanticSubMetricOutputRepresentation as types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from '../types/SemanticSubMetricOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ urlParams: {
5
+ modelApiNameOrId: string;
6
+ subMetricNameOrId: string;
7
+ };
8
+ body: {
9
+ apiName: string;
10
+ dataspace: string | null;
11
+ description: string | null;
12
+ label: string | null;
13
+ filterLogic: string | null;
14
+ filters: Array<{}>;
15
+ semanticMetricDefinitionApiName: string;
16
+ timeRange: {};
17
+ };
18
+ }
19
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
20
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation): void;
21
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<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>;
22
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
23
+ export default createResourceRequest;
@@ -0,0 +1,38 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ import { SemanticSubMetricOutputRepresentation as SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from './SemanticSubMetricOutputRepresentation';
3
+ export declare const VERSION = "542f239a7dc422c67d6cdffb0ff866eb";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: SemanticSubMetricCollectionOutputRepresentation, existing: SemanticSubMetricCollectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticSubMetricCollectionOutputRepresentationNormalized;
7
+ export interface DynamicIngestParams {
8
+ items: $64$luvio_engine_ResourceIngest;
9
+ }
10
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: SemanticSubMetricCollectionOutputRepresentation, existing: SemanticSubMetricCollectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => SemanticSubMetricCollectionOutputRepresentationNormalized;
11
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
12
+ export interface DynamicSelectParams {
13
+ items?: $64$luvio_engine_LinkSelection;
14
+ }
15
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: SemanticSubMetricCollectionOutputRepresentationNormalized, incoming: SemanticSubMetricCollectionOutputRepresentationNormalized): boolean;
17
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
18
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticSubMetricCollectionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
20
+ /**
21
+ * Semantic Sub Metrics collection representation.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface SemanticSubMetricCollectionOutputRepresentationNormalized {
27
+ /** The list of semantic SubMetrics. */
28
+ items?: Array<$64$luvio_engine_StoreLink>;
29
+ }
30
+ /**
31
+ * Semantic Sub Metrics collection representation.
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface SemanticSubMetricCollectionOutputRepresentation {
37
+ items?: Array<SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>;
38
+ }
@@ -0,0 +1,49 @@
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 = "88f6eda8a00270726dea873ff4fb7539";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: SemanticSubMetricInputRepresentation, existing: SemanticSubMetricInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticSubMetricInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: SemanticSubMetricInputRepresentationNormalized, incoming: SemanticSubMetricInputRepresentationNormalized): 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: SemanticSubMetricInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for specifying a semantic sub-metric
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface SemanticSubMetricInputRepresentationNormalized {
17
+ /** The API name of the semantic entity. */
18
+ apiName: string;
19
+ /** An optional dataspace in which the entity is located. */
20
+ dataspace: string | null;
21
+ /** An optional description of the semantic entity. */
22
+ description: string | null;
23
+ /** The filter logic of the sub-metric. */
24
+ filterLogic: string | null;
25
+ /** The filters of the sub-metric. */
26
+ filters: Array<{}>;
27
+ /** The display name of the semantic entity. Optional, if not specified will use the same as the api name but instead of “_” will use spaces. */
28
+ label: string | null;
29
+ /** The API name of the semantic metric definition. */
30
+ semanticMetricDefinitionApiName: string;
31
+ /** The time range of the sub-metric. */
32
+ timeRange: {};
33
+ }
34
+ /**
35
+ * Input representation for specifying a semantic sub-metric
36
+ *
37
+ * Keys:
38
+ * (none)
39
+ */
40
+ export interface SemanticSubMetricInputRepresentation {
41
+ apiName: string;
42
+ dataspace: string | null;
43
+ description: string | null;
44
+ filterLogic: string | null;
45
+ filters: Array<{}>;
46
+ label: string | null;
47
+ semanticMetricDefinitionApiName: string;
48
+ timeRange: {};
49
+ }
@@ -0,0 +1,75 @@
1
+ import { SemanticFilterOutputRepresentation as SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation } from './SemanticFilterOutputRepresentation';
2
+ import { SemanticTimeRangeOutputRepresentation as SemanticTimeRangeOutputRepresentation_SemanticTimeRangeOutputRepresentation } from './SemanticTimeRangeOutputRepresentation';
3
+ 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';
4
+ export declare const VERSION = "ed3364f5079040e53fbc5d2980bbcaa4";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
8
+ name: string;
9
+ }
10
+ export type SemanticSubMetricOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
11
+ export type PartialSemanticSubMetricOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): SemanticSubMetricOutputRepresentationNormalizedKeyMetadata;
14
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: SemanticSubMetricOutputRepresentation): string;
15
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: SemanticSubMetricOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
16
+ export declare function normalize(input: SemanticSubMetricOutputRepresentation, existing: SemanticSubMetricOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticSubMetricOutputRepresentationNormalized;
17
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
18
+ export declare function equals(existing: SemanticSubMetricOutputRepresentationNormalized, incoming: SemanticSubMetricOutputRepresentationNormalized): boolean;
19
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
20
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticSubMetricOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
21
+ /**
22
+ * A semantic Sub Metric.
23
+ *
24
+ * Keys:
25
+ * name (string): apiName
26
+ */
27
+ export interface SemanticSubMetricOutputRepresentationNormalized {
28
+ /** The API name of the semantic entity. */
29
+ apiName: string;
30
+ /** The baseModelApiName of the semantic entity. */
31
+ baseModelApiName?: string;
32
+ /** The user who created the semantic entity. */
33
+ createdBy: string;
34
+ /** The date in which the semantic entity was created. */
35
+ createdDate: string;
36
+ /** The Description of the semantic entity. */
37
+ description?: string | null;
38
+ /** The filter logic of the Sub Metric. */
39
+ filterLogic?: string | null;
40
+ /** The filters of the Sub Metric. */
41
+ filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
42
+ /** The object ID of the semantic entity. */
43
+ id?: string;
44
+ /** The display name of the semantic entity to be used in the ui. */
45
+ label: string | null;
46
+ /** The user who last modified the semantic entity. */
47
+ lastModifiedBy?: string | null;
48
+ /** The date in which the semantic entity was last modified. */
49
+ lastModifiedDate?: string | null;
50
+ /** The API name of the semantic metric definition. */
51
+ semanticMetricDefinitionApiName?: string | null;
52
+ /** The time range of the Sub Metric. */
53
+ timeRange?: SemanticTimeRangeOutputRepresentation_SemanticTimeRangeOutputRepresentation | null;
54
+ }
55
+ /**
56
+ * A semantic Sub Metric.
57
+ *
58
+ * Keys:
59
+ * name (string): apiName
60
+ */
61
+ export interface SemanticSubMetricOutputRepresentation {
62
+ apiName: string;
63
+ baseModelApiName?: string;
64
+ createdBy: string;
65
+ createdDate: string;
66
+ description?: string | null;
67
+ filterLogic?: string | null;
68
+ filters?: Array<SemanticFilterOutputRepresentation_SemanticFilterOutputRepresentation>;
69
+ id?: string;
70
+ label: string | null;
71
+ lastModifiedBy?: string | null;
72
+ lastModifiedDate?: string | null;
73
+ semanticMetricDefinitionApiName?: string | null;
74
+ timeRange?: SemanticTimeRangeOutputRepresentation_SemanticTimeRangeOutputRepresentation | null;
75
+ }
@@ -0,0 +1,38 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ import { SemanticSubMetricsByMetricOutputRepresentation as SemanticSubMetricsByMetricOutputRepresentation_SemanticSubMetricsByMetricOutputRepresentation } from './SemanticSubMetricsByMetricOutputRepresentation';
3
+ export declare const VERSION = "6fbd75e1a154b08c14ba6560c06488db";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: SemanticSubMetricsByMetricCollectionOutputRepresentation, existing: SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized;
7
+ export interface DynamicIngestParams {
8
+ items: $64$luvio_engine_ResourceIngest;
9
+ }
10
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: SemanticSubMetricsByMetricCollectionOutputRepresentation, existing: SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized;
11
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
12
+ export interface DynamicSelectParams {
13
+ items?: $64$luvio_engine_LinkSelection;
14
+ }
15
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized, incoming: SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized): boolean;
17
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
18
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticSubMetricsByMetricCollectionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
20
+ /**
21
+ * Collection of metric to sub metrics.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface SemanticSubMetricsByMetricCollectionOutputRepresentationNormalized {
27
+ /** The list of semantic metric to sub metrics. */
28
+ items?: Array<$64$luvio_engine_StoreLink>;
29
+ }
30
+ /**
31
+ * Collection of metric to sub metrics.
32
+ *
33
+ * Keys:
34
+ * (none)
35
+ */
36
+ export interface SemanticSubMetricsByMetricCollectionOutputRepresentation {
37
+ items?: Array<SemanticSubMetricsByMetricOutputRepresentation_SemanticSubMetricsByMetricOutputRepresentation>;
38
+ }
@@ -0,0 +1,41 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ import { SemanticSubMetricOutputRepresentation as SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation } from './SemanticSubMetricOutputRepresentation';
3
+ export declare const VERSION = "386f507f0ce3151b9b2009eae0ea1d99";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: SemanticSubMetricsByMetricOutputRepresentation, existing: SemanticSubMetricsByMetricOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SemanticSubMetricsByMetricOutputRepresentationNormalized;
7
+ export interface DynamicIngestParams {
8
+ subMetrics: $64$luvio_engine_ResourceIngest;
9
+ }
10
+ export declare function dynamicNormalize(ingestParams: DynamicIngestParams): (input: SemanticSubMetricsByMetricOutputRepresentation, existing: SemanticSubMetricsByMetricOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number) => SemanticSubMetricsByMetricOutputRepresentationNormalized;
11
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
12
+ export interface DynamicSelectParams {
13
+ subMetrics?: $64$luvio_engine_LinkSelection;
14
+ }
15
+ export declare const dynamicSelect: (params: DynamicSelectParams) => $64$luvio_engine_FragmentSelection;
16
+ export declare function equals(existing: SemanticSubMetricsByMetricOutputRepresentationNormalized, incoming: SemanticSubMetricsByMetricOutputRepresentationNormalized): boolean;
17
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
18
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SemanticSubMetricsByMetricOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
19
+ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$luvio_engine_ResourceIngest;
20
+ /**
21
+ * contain metric data with it's sub metrics.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface SemanticSubMetricsByMetricOutputRepresentationNormalized {
27
+ /** The API name of the metric. */
28
+ metricApiName?: string | null;
29
+ /** The sub metrics that depend on the metric */
30
+ subMetrics?: Array<$64$luvio_engine_StoreLink>;
31
+ }
32
+ /**
33
+ * contain metric data with it's sub metrics.
34
+ *
35
+ * Keys:
36
+ * (none)
37
+ */
38
+ export interface SemanticSubMetricsByMetricOutputRepresentation {
39
+ metricApiName?: string | null;
40
+ subMetrics?: Array<SemanticSubMetricOutputRepresentation_SemanticSubMetricOutputRepresentation>;
41
+ }