@salesforce/lds-adapters-cdp-metadata 0.1.0-dev1

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/LICENSE.txt +82 -0
  2. package/dist/es/es2018/cdp-metadata.js +885 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getAllMetadata.d.ts +30 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getDataGraphMetadata.d.ts +28 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -0
  8. package/dist/es/es2018/types/src/generated/resources/getSsotDataGraphsMetadata.d.ts +16 -0
  9. package/dist/es/es2018/types/src/generated/resources/getSsotMetadata.d.ts +18 -0
  10. package/dist/es/es2018/types/src/generated/types/CdpDgMetadataRepresentation.d.ts +29 -0
  11. package/dist/es/es2018/types/src/generated/types/CdpQueryDataGraphMetadataRepresentation.d.ts +64 -0
  12. package/dist/es/es2018/types/src/generated/types/CdpQueryMetadataOutputRepresentation.d.ts +28 -0
  13. package/dist/es/es2018/types/src/generated/types/DataGraphFieldRepresentation.d.ts +55 -0
  14. package/dist/es/es2018/types/src/generated/types/DataGraphIdsDmoFieldRepresentation.d.ts +34 -0
  15. package/dist/es/es2018/types/src/generated/types/DataGraphIdsDmoRepresentation.d.ts +32 -0
  16. package/dist/es/es2018/types/src/generated/types/DataGraphObjectDataRepresentation.d.ts +55 -0
  17. package/dist/es/es2018/types/src/generated/types/DataGraphRelationshipRepresentation.d.ts +34 -0
  18. package/dist/es/es2018/types/src/generated/types/DataGraphValuesDmoFieldRepresentation.d.ts +34 -0
  19. package/dist/es/es2018/types/src/generated/types/DataGraphValuesDmoRepresentation.d.ts +32 -0
  20. package/dist/es/es2018/types/src/generated/types/RecencyCriteriaRepresentation.d.ts +37 -0
  21. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  22. package/package.json +66 -0
  23. package/sfdc/index.d.ts +1 -0
  24. package/sfdc/index.js +927 -0
  25. package/src/raml/api.raml +288 -0
  26. package/src/raml/luvio.raml +24 -0
@@ -0,0 +1,62 @@
1
+ import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } from '@luvio/engine';
2
+ export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
3
+ declare const ObjectKeys: {
4
+ (o: object): string[];
5
+ (o: {}): string[];
6
+ }, ObjectCreate: {
7
+ (o: object | null): any;
8
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
9
+ };
10
+ export { ObjectCreate, ObjectKeys };
11
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
12
+ export declare const ArrayPrototypePush: (...items: any[]) => number;
13
+ export interface AdapterValidationConfig {
14
+ displayName: string;
15
+ parameters: {
16
+ required: string[];
17
+ optional: string[];
18
+ unsupported?: string[];
19
+ };
20
+ }
21
+ /**
22
+ * Validates an adapter config is well-formed.
23
+ * @param config The config to validate.
24
+ * @param adapter The adapter validation configuration.
25
+ * @param oneOf The keys the config must contain at least one of.
26
+ * @throws A TypeError if config doesn't satisfy the adapter's config validation.
27
+ */
28
+ export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
29
+ export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
30
+ export type UncoercedConfiguration<Base, Options extends {
31
+ [key in keyof Base]?: any;
32
+ }> = {
33
+ [Key in keyof Base]?: Base[Key] | Options[Key];
34
+ };
35
+ export type Untrusted<Base> = Partial<Base>;
36
+ export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
37
+ export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
38
+ export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
39
+ export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
40
+ export declare const snapshotRefreshOptions: {
41
+ overrides: {
42
+ headers: {
43
+ 'Cache-Control': string;
44
+ };
45
+ };
46
+ };
47
+ /**
48
+ * A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
49
+ * This is needed because insertion order for JSON.stringify(object) affects output:
50
+ * JSON.stringify({a: 1, b: 2})
51
+ * "{"a":1,"b":2}"
52
+ * JSON.stringify({b: 2, a: 1})
53
+ * "{"b":2,"a":1}"
54
+ * @param data Data to be JSON-stringified.
55
+ * @returns JSON.stringified value with consistent ordering of keys.
56
+ */
57
+ export declare function stableJSONStringify(node: any): string | undefined;
58
+ export declare function getFetchResponseStatusText(status: number): string;
59
+ export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
60
+ export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
61
+ export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
62
+ export declare const keyPrefix = "cdp-metadata";
@@ -0,0 +1,30 @@
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_getSsotMetadata_ResourceRequestConfig } from '../resources/getSsotMetadata';
4
+ import { CdpQueryMetadataOutputRepresentation as types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation } from '../types/CdpQueryMetadataOutputRepresentation';
5
+ export declare const adapterName = "getAllMetadata";
6
+ export declare const getAllMetadata_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getAllMetadata_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetAllMetadataConfig {
9
+ dataspace?: string;
10
+ entityCategory?: string;
11
+ entityName?: string;
12
+ entityType?: string;
13
+ }
14
+ export declare const createResourceParams: (config: GetAllMetadataConfig) => resources_getSsotMetadata_ResourceRequestConfig;
15
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig): string;
16
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetAllMetadataConfig>): adapter$45$utils_Untrusted<GetAllMetadataConfig>;
18
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetAllMetadataConfig | null;
19
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig): $64$luvio_engine_Fragment;
20
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig): $64$luvio_engine_Snapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, any>;
21
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig, resourceParams: resources_getSsotMetadata_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, any>>;
22
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig, resourceParams: resources_getSsotMetadata_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
23
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetAllMetadataConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, any>>;
24
+ export type BuildSnapshotContext = {
25
+ luvio: $64$luvio_engine_Luvio;
26
+ config: GetAllMetadataConfig;
27
+ };
28
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, any>>;
29
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation>): $64$luvio_engine_Snapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, any>;
30
+ export declare const getAllMetadataAdapterFactory: $64$luvio_engine_AdapterFactory<GetAllMetadataConfig, types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation>;
@@ -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_getSsotDataGraphsMetadata_ResourceRequestConfig } from '../resources/getSsotDataGraphsMetadata';
4
+ import { CdpDgMetadataRepresentation as types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation } from '../types/CdpDgMetadataRepresentation';
5
+ export declare const adapterName = "getDataGraphMetadata";
6
+ export declare const getDataGraphMetadata_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getDataGraphMetadata_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetDataGraphMetadataConfig {
9
+ dataGraphEntityName?: string;
10
+ dataspace?: string;
11
+ }
12
+ export declare const createResourceParams: (config: GetDataGraphMetadataConfig) => resources_getSsotDataGraphsMetadata_ResourceRequestConfig;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataGraphMetadataConfig>): adapter$45$utils_Untrusted<GetDataGraphMetadataConfig>;
16
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataGraphMetadataConfig | null;
17
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): $64$luvio_engine_Fragment;
18
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): $64$luvio_engine_Snapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, any>;
19
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig, resourceParams: resources_getSsotDataGraphsMetadata_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, any>>;
20
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig, resourceParams: resources_getSsotDataGraphsMetadata_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
21
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, any>>;
22
+ export type BuildSnapshotContext = {
23
+ luvio: $64$luvio_engine_Luvio;
24
+ config: GetDataGraphMetadataConfig;
25
+ };
26
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, any>>;
27
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation>): $64$luvio_engine_Snapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, any>;
28
+ export declare const getDataGraphMetadataAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataGraphMetadataConfig, types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation>;
@@ -0,0 +1,2 @@
1
+ export { getAllMetadataAdapterFactory } from '../adapters/getAllMetadata';
2
+ export { getDataGraphMetadataAdapterFactory } from '../adapters/getDataGraphMetadata';
@@ -0,0 +1,5 @@
1
+ declare let getAllMetadata: any;
2
+ declare let getDataGraphMetadata: any;
3
+ declare let getAllMetadata_imperative: any;
4
+ declare let getDataGraphMetadata_imperative: any;
5
+ export { getAllMetadata, getDataGraphMetadata, getAllMetadata_imperative, getDataGraphMetadata_imperative, };
@@ -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 { CdpDgMetadataRepresentation as types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation } from '../types/CdpDgMetadataRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ queryParams: {
5
+ dataGraphEntityName?: string;
6
+ dataspace?: 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_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation): void;
13
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation, any>;
14
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpDgMetadataRepresentation_CdpDgMetadataRepresentation>): $64$luvio_engine_ErrorSnapshot;
15
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
16
+ export default createResourceRequest;
@@ -0,0 +1,18 @@
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 { CdpQueryMetadataOutputRepresentation as types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation } from '../types/CdpQueryMetadataOutputRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ queryParams: {
5
+ dataspace?: string;
6
+ entityCategory?: string;
7
+ entityName?: string;
8
+ entityType?: string;
9
+ };
10
+ }
11
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation): void;
15
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation, any>;
16
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpQueryMetadataOutputRepresentation_CdpQueryMetadataOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
17
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
18
+ export default createResourceRequest;
@@ -0,0 +1,29 @@
1
+ import { CdpQueryDataGraphMetadataRepresentation as CdpQueryDataGraphMetadataRepresentation_CdpQueryDataGraphMetadataRepresentation } from './CdpQueryDataGraphMetadataRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "d39db1870f5b57ce6e726950714a32cd";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: CdpDgMetadataRepresentation, existing: CdpDgMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpDgMetadataRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_BaseFragment;
8
+ export declare function equals(existing: CdpDgMetadataRepresentationNormalized, incoming: CdpDgMetadataRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpDgMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents Cdp DataGraph Metadata output
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface CdpDgMetadataRepresentationNormalized {
18
+ /** DataGraph Metadata */
19
+ dataGraphMetadata: Array<CdpQueryDataGraphMetadataRepresentation_CdpQueryDataGraphMetadataRepresentation>;
20
+ }
21
+ /**
22
+ * Represents Cdp DataGraph Metadata output
23
+ *
24
+ * Keys:
25
+ * (none)
26
+ */
27
+ export interface CdpDgMetadataRepresentation {
28
+ dataGraphMetadata: Array<CdpQueryDataGraphMetadataRepresentation_CdpQueryDataGraphMetadataRepresentation>;
29
+ }
@@ -0,0 +1,64 @@
1
+ import { DataGraphObjectDataRepresentation as DataGraphObjectDataRepresentation_DataGraphObjectDataRepresentation } from './DataGraphObjectDataRepresentation';
2
+ import { DataGraphIdsDmoRepresentation as DataGraphIdsDmoRepresentation_DataGraphIdsDmoRepresentation } from './DataGraphIdsDmoRepresentation';
3
+ import { DataGraphValuesDmoRepresentation as DataGraphValuesDmoRepresentation_DataGraphValuesDmoRepresentation } from './DataGraphValuesDmoRepresentation';
4
+ 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';
5
+ export declare const VERSION = "8453f63a675e9f9c0f898771954f09ef";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: CdpQueryDataGraphMetadataRepresentation, existing: CdpQueryDataGraphMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpQueryDataGraphMetadataRepresentationNormalized;
9
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
10
+ export declare function equals(existing: CdpQueryDataGraphMetadataRepresentationNormalized, incoming: CdpQueryDataGraphMetadataRepresentationNormalized): boolean;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpQueryDataGraphMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
13
+ /**
14
+ * Represents Cdp DataGraph Metadata output
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface CdpQueryDataGraphMetadataRepresentationNormalized {
20
+ /** DataGraphMetadata dataspaceName */
21
+ dataspaceName: string;
22
+ /** DataGraphMetadata description */
23
+ description: string;
24
+ /** DataGraphMetadata name */
25
+ developerName: string;
26
+ dgObject: DataGraphObjectDataRepresentation_DataGraphObjectDataRepresentation;
27
+ /** DataGraphMetadata extendedProperties */
28
+ extendedProperties?: {};
29
+ /** DataGraphMetadata idDmoName */
30
+ idDmoName: string;
31
+ idsDmo: DataGraphIdsDmoRepresentation_DataGraphIdsDmoRepresentation;
32
+ /** DataGraphMetadata primaryObjectName */
33
+ primaryObjectName: string;
34
+ /** DataGraphMetadata primaryObjectType */
35
+ primaryObjectType: string;
36
+ /** DataGraphMetadata status */
37
+ status: string;
38
+ valuesDmo: DataGraphValuesDmoRepresentation_DataGraphValuesDmoRepresentation;
39
+ /** DataGraphMetadata valuesDmoName */
40
+ valuesDmoName: string;
41
+ /** DataGraphMetadata version */
42
+ version: string;
43
+ }
44
+ /**
45
+ * Represents Cdp DataGraph Metadata output
46
+ *
47
+ * Keys:
48
+ * (none)
49
+ */
50
+ export interface CdpQueryDataGraphMetadataRepresentation {
51
+ dataspaceName: string;
52
+ description: string;
53
+ developerName: string;
54
+ dgObject: DataGraphObjectDataRepresentation_DataGraphObjectDataRepresentation;
55
+ extendedProperties?: {};
56
+ idDmoName: string;
57
+ idsDmo: DataGraphIdsDmoRepresentation_DataGraphIdsDmoRepresentation;
58
+ primaryObjectName: string;
59
+ primaryObjectType: string;
60
+ status: string;
61
+ valuesDmo: DataGraphValuesDmoRepresentation_DataGraphValuesDmoRepresentation;
62
+ valuesDmoName: string;
63
+ version: string;
64
+ }
@@ -0,0 +1,28 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, 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 = "21dc23f3b30fa0daeb25fca386243e68";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: CdpQueryMetadataOutputRepresentation, existing: CdpQueryMetadataOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpQueryMetadataOutputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_BaseFragment;
7
+ export declare function equals(existing: CdpQueryMetadataOutputRepresentationNormalized, incoming: CdpQueryMetadataOutputRepresentationNormalized): 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: CdpQueryMetadataOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents Cdp Query Metadata Output
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface CdpQueryMetadataOutputRepresentationNormalized {
17
+ /** Result metadata set */
18
+ metadata: Array<unknown>;
19
+ }
20
+ /**
21
+ * Represents Cdp Query Metadata Output
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface CdpQueryMetadataOutputRepresentation {
27
+ metadata: Array<unknown>;
28
+ }
@@ -0,0 +1,55 @@
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 = "e94401bb38d1bb632380baefaba6abe3";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DataGraphFieldRepresentation, existing: DataGraphFieldRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphFieldRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DataGraphFieldRepresentationNormalized, incoming: DataGraphFieldRepresentationNormalized): 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: DataGraphFieldRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents DataGraphFields
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DataGraphFieldRepresentationNormalized {
17
+ /** DataGraphField ciFieldType */
18
+ ciFieldType?: string;
19
+ /** DataGraphField fieldDevName */
20
+ dataGraphFieldDevName: string;
21
+ /** DataGraphField dataType */
22
+ dataType: string;
23
+ /** DataGraphField developerName */
24
+ developerName: string;
25
+ /** DataGraphField isProjected */
26
+ isProjected: string;
27
+ /** DataGraphField keyCol */
28
+ keyCol: string;
29
+ /** DataGraphField keyQualifierName */
30
+ keyQualifierName: string;
31
+ /** DataGraphField length */
32
+ length: string;
33
+ /** DataGraphField lookupCol */
34
+ lookupCol: string;
35
+ /** DataGraphField usageTag */
36
+ usageTag: string;
37
+ }
38
+ /**
39
+ * Represents DataGraphFields
40
+ *
41
+ * Keys:
42
+ * (none)
43
+ */
44
+ export interface DataGraphFieldRepresentation {
45
+ ciFieldType?: string;
46
+ dataGraphFieldDevName: string;
47
+ dataType: string;
48
+ developerName: string;
49
+ isProjected: string;
50
+ keyCol: string;
51
+ keyQualifierName: string;
52
+ length: string;
53
+ lookupCol: string;
54
+ usageTag: string;
55
+ }
@@ -0,0 +1,34 @@
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 = "032a26f43d2282da7fa8a3d26d8fbbff";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DataGraphIdsDmoFieldRepresentation, existing: DataGraphIdsDmoFieldRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphIdsDmoFieldRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DataGraphIdsDmoFieldRepresentationNormalized, incoming: DataGraphIdsDmoFieldRepresentationNormalized): 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: DataGraphIdsDmoFieldRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents DataGraphIdsDmoField data
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DataGraphIdsDmoFieldRepresentationNormalized {
17
+ /** DataGraphIdsDmoField capabilities */
18
+ capabilities: Array<number>;
19
+ /** DataGraphIdsDmoField dataType */
20
+ dataType: string;
21
+ /** DataGraphIdsDmoField developerName */
22
+ developerName: string;
23
+ }
24
+ /**
25
+ * Represents DataGraphIdsDmoField data
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface DataGraphIdsDmoFieldRepresentation {
31
+ capabilities: Array<number>;
32
+ dataType: string;
33
+ developerName: string;
34
+ }
@@ -0,0 +1,32 @@
1
+ import { DataGraphIdsDmoFieldRepresentation as DataGraphIdsDmoFieldRepresentation_DataGraphIdsDmoFieldRepresentation } from './DataGraphIdsDmoFieldRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "21b83490bcd15eff26510f647a9834ef";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DataGraphIdsDmoRepresentation, existing: DataGraphIdsDmoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphIdsDmoRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: DataGraphIdsDmoRepresentationNormalized, incoming: DataGraphIdsDmoRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataGraphIdsDmoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents DataGraphIdsDmo data
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DataGraphIdsDmoRepresentationNormalized {
18
+ /** DataGraphIdsDmo developerName */
19
+ developerName: string;
20
+ /** DataGraphIdsDmo fields */
21
+ fields: Array<DataGraphIdsDmoFieldRepresentation_DataGraphIdsDmoFieldRepresentation>;
22
+ }
23
+ /**
24
+ * Represents DataGraphIdsDmo data
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface DataGraphIdsDmoRepresentation {
30
+ developerName: string;
31
+ fields: Array<DataGraphIdsDmoFieldRepresentation_DataGraphIdsDmoFieldRepresentation>;
32
+ }
@@ -0,0 +1,55 @@
1
+ import { DataGraphFieldRepresentation as DataGraphFieldRepresentation_DataGraphFieldRepresentation } from './DataGraphFieldRepresentation';
2
+ import { DataGraphRelationshipRepresentation as DataGraphRelationshipRepresentation_DataGraphRelationshipRepresentation } from './DataGraphRelationshipRepresentation';
3
+ import { RecencyCriteriaRepresentation as RecencyCriteriaRepresentation_RecencyCriteriaRepresentation } from './RecencyCriteriaRepresentation';
4
+ 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';
5
+ export declare const VERSION = "e10a520c6fe3a61deaca8c33ccdd6a6e";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export declare function normalize(input: DataGraphObjectDataRepresentation, existing: DataGraphObjectDataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphObjectDataRepresentationNormalized;
9
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
10
+ export declare function equals(existing: DataGraphObjectDataRepresentationNormalized, incoming: DataGraphObjectDataRepresentationNormalized): boolean;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataGraphObjectDataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
13
+ /**
14
+ * Represents DataGraphObject data
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface DataGraphObjectDataRepresentationNormalized {
20
+ /** DataObject sourceDevName */
21
+ dataGraphSourceDevName: string;
22
+ /** DataObject data developerName */
23
+ developerName: string;
24
+ /** DataObject data fields */
25
+ fields: Array<DataGraphFieldRepresentation_DataGraphFieldRepresentation>;
26
+ /** DataObject data filterCriteria */
27
+ filterCriteria: string;
28
+ /** DataObject data memberDmoName */
29
+ memberDmoName: string;
30
+ /** DataObject data paths */
31
+ paths: Array<DataGraphRelationshipRepresentation_DataGraphRelationshipRepresentation>;
32
+ /** DataObject data recencyCriteria */
33
+ recencyCriteria: Array<RecencyCriteriaRepresentation_RecencyCriteriaRepresentation>;
34
+ /** Data Lake data relatedObjects */
35
+ relatedObjects: Array<unknown>;
36
+ /** DataObject data type */
37
+ type: string;
38
+ }
39
+ /**
40
+ * Represents DataGraphObject data
41
+ *
42
+ * Keys:
43
+ * (none)
44
+ */
45
+ export interface DataGraphObjectDataRepresentation {
46
+ dataGraphSourceDevName: string;
47
+ developerName: string;
48
+ fields: Array<DataGraphFieldRepresentation_DataGraphFieldRepresentation>;
49
+ filterCriteria: string;
50
+ memberDmoName: string;
51
+ paths: Array<DataGraphRelationshipRepresentation_DataGraphRelationshipRepresentation>;
52
+ recencyCriteria: Array<RecencyCriteriaRepresentation_RecencyCriteriaRepresentation>;
53
+ relatedObjects: Array<unknown>;
54
+ type: string;
55
+ }
@@ -0,0 +1,34 @@
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 = "69e89560662a9423805ebfbd2118ed79";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DataGraphRelationshipRepresentation, existing: DataGraphRelationshipRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphRelationshipRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DataGraphRelationshipRepresentationNormalized, incoming: DataGraphRelationshipRepresentationNormalized): 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: DataGraphRelationshipRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents DataGraphRelationship
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DataGraphRelationshipRepresentationNormalized {
17
+ /** DataGraphRelationship cardinality */
18
+ cardinality: string;
19
+ /** DataGraphRelationship fieldName */
20
+ fieldName: string;
21
+ /** DataGraphRelationship parentFieldName */
22
+ parentFieldName: string;
23
+ }
24
+ /**
25
+ * Represents DataGraphRelationship
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface DataGraphRelationshipRepresentation {
31
+ cardinality: string;
32
+ fieldName: string;
33
+ parentFieldName: string;
34
+ }
@@ -0,0 +1,34 @@
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 = "dd897e6b6c61aad2d054e0c729e78948";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: DataGraphValuesDmoFieldRepresentation, existing: DataGraphValuesDmoFieldRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphValuesDmoFieldRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: DataGraphValuesDmoFieldRepresentationNormalized, incoming: DataGraphValuesDmoFieldRepresentationNormalized): 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: DataGraphValuesDmoFieldRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents DataGraphValuesDmoField data
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface DataGraphValuesDmoFieldRepresentationNormalized {
17
+ /** DataGraphValuesDmoField capabilities */
18
+ capabilities: Array<number>;
19
+ /** DataGraphValuesDmoField dataType */
20
+ dataType: string;
21
+ /** DataGraphValuesDmoField developerName */
22
+ developerName: string;
23
+ }
24
+ /**
25
+ * Represents DataGraphValuesDmoField data
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface DataGraphValuesDmoFieldRepresentation {
31
+ capabilities: Array<number>;
32
+ dataType: string;
33
+ developerName: string;
34
+ }
@@ -0,0 +1,32 @@
1
+ import { DataGraphValuesDmoFieldRepresentation as DataGraphValuesDmoFieldRepresentation_DataGraphValuesDmoFieldRepresentation } from './DataGraphValuesDmoFieldRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "90447b8411ecb3988e00a1b732e2dcfe";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: DataGraphValuesDmoRepresentation, existing: DataGraphValuesDmoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphValuesDmoRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: DataGraphValuesDmoRepresentationNormalized, incoming: DataGraphValuesDmoRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataGraphValuesDmoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Represents DataGraphValuesDmo data
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface DataGraphValuesDmoRepresentationNormalized {
18
+ /** DataGraphValuesDmo developerName */
19
+ developerName: string;
20
+ /** DataGraphValuesDmo fields */
21
+ fields: Array<DataGraphValuesDmoFieldRepresentation_DataGraphValuesDmoFieldRepresentation>;
22
+ }
23
+ /**
24
+ * Represents DataGraphValuesDmo data
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface DataGraphValuesDmoRepresentation {
30
+ developerName: string;
31
+ fields: Array<DataGraphValuesDmoFieldRepresentation_DataGraphValuesDmoFieldRepresentation>;
32
+ }
@@ -0,0 +1,37 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "d8938b4133881ae36e2ffe8a8c83c36e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: RecencyCriteriaRepresentation, existing: RecencyCriteriaRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RecencyCriteriaRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: RecencyCriteriaRepresentationNormalized, incoming: RecencyCriteriaRepresentationNormalized): 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: RecencyCriteriaRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Represents RecencyCriteria data
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface RecencyCriteriaRepresentationNormalized {
17
+ /** RecencyCriteria fieldName */
18
+ fieldName: string;
19
+ /** RecencyCriteria value */
20
+ value: string;
21
+ /** RecencyCriteria valueType */
22
+ valueType: string;
23
+ /** RecencyCriteria valueUnit */
24
+ valueUnit: string;
25
+ }
26
+ /**
27
+ * Represents RecencyCriteria data
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface RecencyCriteriaRepresentation {
33
+ fieldName: string;
34
+ value: string;
35
+ valueType: string;
36
+ valueUnit: string;
37
+ }