@salesforce/lds-adapters-industries-timeline 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.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/industries-timeline.js +2552 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataGraphMetadata.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataModelObjects.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getEngagementEvents.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/getTimelineData.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/adapters/getTimelineMetadata.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +11 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectTimelineCustDataPfrmDataGraphMetadata.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectTimelineCustDataPfrmDataModelObjects.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectTimelineMetadataConfigurations.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectTimelineTimelineDefinitionsCustDataPfrmEventsByTimelineConfigFullNameAndTimelineObjRecordId.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectTimelineTimelineDefinitionsEventsByTimelineConfigFullNameAndTimelineObjRecordId.d.ts +23 -0
- package/dist/es/es2018/types/src/generated/types/CdpMetadataOutputRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/DGObjectOutputRepresentation.d.ts +55 -0
- package/dist/es/es2018/types/src/generated/types/DataGraphMetadataRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/DataGraphOutputRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/DmoFieldsOutputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/DmoOutputRepresentation.d.ts +45 -0
- package/dist/es/es2018/types/src/generated/types/DmoRelationshipsOutputRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/EngagementEventTimelineDataRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/EngagementEventsRelatedListFieldsRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/EngagementEventsRelatedListRecordsRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/PathToDmoRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/RelationshipTypeOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/TimelineDataCloudEventRepresentation.d.ts +48 -0
- package/dist/es/es2018/types/src/generated/types/TimelineDataGetResultRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/TimelineElementRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/TimelineEngagementRelatedListEventsRepresentation.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/types/TimelineEntityRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/TimelineErrorRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/TimelineEventFieldRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/TimelineEventRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/TimelineEventTypeMetadataRepresentation.d.ts +60 -0
- package/dist/es/es2018/types/src/generated/types/TimelineEventTypeRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/TimelineMetadataDefinitionRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/TimelineMetadataResultRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +71 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +2634 -0
- package/src/raml/api.raml +611 -0
- package/src/raml/luvio.raml +164 -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 = "Timeline";
|
|
@@ -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_getConnectTimelineCustDataPfrmDataGraphMetadata_ResourceRequestConfig } from '../resources/getConnectTimelineCustDataPfrmDataGraphMetadata';
|
|
4
|
+
import { DataGraphMetadataRepresentation as types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation } from '../types/DataGraphMetadataRepresentation';
|
|
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
|
+
dataSpaceApiName?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetDataGraphMetadataConfig) => resources_getConnectTimelineCustDataPfrmDataGraphMetadata_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataGraphMetadataConfig>): adapter$45$utils_Untrusted<GetDataGraphMetadataConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataGraphMetadataConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig): $64$luvio_engine_Snapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig, resourceParams: resources_getConnectTimelineCustDataPfrmDataGraphMetadata_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig, resourceParams: resources_getConnectTimelineCustDataPfrmDataGraphMetadata_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataGraphMetadataConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetDataGraphMetadataConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation>): $64$luvio_engine_Snapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, any>;
|
|
27
|
+
export declare const getDataGraphMetadataAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataGraphMetadataConfig, types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation>;
|
|
@@ -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_getConnectTimelineCustDataPfrmDataModelObjects_ResourceRequestConfig } from '../resources/getConnectTimelineCustDataPfrmDataModelObjects';
|
|
4
|
+
import { CdpMetadataOutputRepresentation as types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation } from '../types/CdpMetadataOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataModelObjects";
|
|
6
|
+
export declare const getDataModelObjects_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataModelObjects_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataModelObjectsConfig {
|
|
9
|
+
dataSpaceApiName?: string;
|
|
10
|
+
objectCategory?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetDataModelObjectsConfig) => resources_getConnectTimelineCustDataPfrmDataModelObjects_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataModelObjectsConfig>): adapter$45$utils_Untrusted<GetDataModelObjectsConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataModelObjectsConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig): $64$luvio_engine_Snapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig, resourceParams: resources_getConnectTimelineCustDataPfrmDataModelObjects_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig, resourceParams: resources_getConnectTimelineCustDataPfrmDataModelObjects_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataModelObjectsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetDataModelObjectsConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation>): $64$luvio_engine_Snapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, any>;
|
|
28
|
+
export declare const getDataModelObjectsAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataModelObjectsConfig, types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation>;
|
|
@@ -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 } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getConnectTimelineTimelineDefinitionsCustDataPfrmEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig } from '../resources/getConnectTimelineTimelineDefinitionsCustDataPfrmEventsByTimelineConfigFullNameAndTimelineObjRecordId';
|
|
4
|
+
import { EngagementEventTimelineDataRepresentation as types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation } from '../types/EngagementEventTimelineDataRepresentation';
|
|
5
|
+
export declare const adapterName = "getEngagementEvents";
|
|
6
|
+
export declare const getEngagementEvents_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getEngagementEvents_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetEngagementEventsConfig {
|
|
9
|
+
timelineConfigFullName: string;
|
|
10
|
+
timelineObjRecordId: string;
|
|
11
|
+
dataCloudEventSource?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: GetEngagementEventsConfig) => resources_getConnectTimelineTimelineDefinitionsCustDataPfrmEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetEngagementEventsConfig>): adapter$45$utils_Untrusted<GetEngagementEventsConfig>;
|
|
17
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetEngagementEventsConfig | null;
|
|
18
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig): $64$luvio_engine_Snapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, any>;
|
|
20
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig, resourceParams: resources_getConnectTimelineTimelineDefinitionsCustDataPfrmEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, any>>;
|
|
21
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig, resourceParams: resources_getConnectTimelineTimelineDefinitionsCustDataPfrmEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
22
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetEngagementEventsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, any>>;
|
|
23
|
+
export type BuildSnapshotContext = {
|
|
24
|
+
luvio: $64$luvio_engine_Luvio;
|
|
25
|
+
config: GetEngagementEventsConfig;
|
|
26
|
+
};
|
|
27
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, any>>;
|
|
28
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation>): $64$luvio_engine_Snapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, any>;
|
|
29
|
+
export declare const getEngagementEventsAdapterFactory: $64$luvio_engine_AdapterFactory<GetEngagementEventsConfig, types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation>;
|
|
@@ -0,0 +1,33 @@
|
|
|
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_getConnectTimelineTimelineDefinitionsEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig } from '../resources/getConnectTimelineTimelineDefinitionsEventsByTimelineConfigFullNameAndTimelineObjRecordId';
|
|
4
|
+
import { TimelineDataGetResultRepresentation as types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation } from '../types/TimelineDataGetResultRepresentation';
|
|
5
|
+
export declare const adapterName = "getTimelineData";
|
|
6
|
+
export declare const getTimelineData_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getTimelineData_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetTimelineDataConfig {
|
|
9
|
+
timelineConfigFullName: string;
|
|
10
|
+
timelineObjRecordId: string;
|
|
11
|
+
direction?: string;
|
|
12
|
+
endDate?: string;
|
|
13
|
+
eventTypeOffsets?: string;
|
|
14
|
+
eventTypes?: string;
|
|
15
|
+
startDate?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare const createResourceParams: (config: GetTimelineDataConfig) => resources_getConnectTimelineTimelineDefinitionsEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig;
|
|
18
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig): string;
|
|
19
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
20
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetTimelineDataConfig>): adapter$45$utils_Untrusted<GetTimelineDataConfig>;
|
|
21
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetTimelineDataConfig | null;
|
|
22
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig): $64$luvio_engine_Fragment;
|
|
23
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig): $64$luvio_engine_Snapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, any>;
|
|
24
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig, resourceParams: resources_getConnectTimelineTimelineDefinitionsEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, any>>;
|
|
25
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig, resourceParams: resources_getConnectTimelineTimelineDefinitionsEventsByTimelineConfigFullNameAndTimelineObjRecordId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
26
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetTimelineDataConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, any>>;
|
|
27
|
+
export type BuildSnapshotContext = {
|
|
28
|
+
luvio: $64$luvio_engine_Luvio;
|
|
29
|
+
config: GetTimelineDataConfig;
|
|
30
|
+
};
|
|
31
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, any>>;
|
|
32
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation>): $64$luvio_engine_Snapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, any>;
|
|
33
|
+
export declare const getTimelineDataAdapterFactory: $64$luvio_engine_AdapterFactory<GetTimelineDataConfig, types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation>;
|
|
@@ -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_getConnectTimelineMetadataConfigurations_ResourceRequestConfig } from '../resources/getConnectTimelineMetadataConfigurations';
|
|
4
|
+
import { TimelineMetadataResultRepresentation as types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation } from '../types/TimelineMetadataResultRepresentation';
|
|
5
|
+
export declare const adapterName = "getTimelineMetadata";
|
|
6
|
+
export declare const getTimelineMetadata_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getTimelineMetadata_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetTimelineMetadataConfig {
|
|
9
|
+
fullNames?: Array<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetTimelineMetadataConfig) => resources_getConnectTimelineMetadataConfigurations_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetTimelineMetadataConfig>): adapter$45$utils_Untrusted<GetTimelineMetadataConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetTimelineMetadataConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig): $64$luvio_engine_Snapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig, resourceParams: resources_getConnectTimelineMetadataConfigurations_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig, resourceParams: resources_getConnectTimelineMetadataConfigurations_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetTimelineMetadataConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetTimelineMetadataConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation>): $64$luvio_engine_Snapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, any>;
|
|
27
|
+
export declare const getTimelineMetadataAdapterFactory: $64$luvio_engine_AdapterFactory<GetTimelineMetadataConfig, types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { getEngagementEventsAdapterFactory } from '../adapters/getEngagementEvents';
|
|
2
|
+
export { getTimelineDataAdapterFactory } from '../adapters/getTimelineData';
|
|
3
|
+
export { getDataGraphMetadataAdapterFactory } from '../adapters/getDataGraphMetadata';
|
|
4
|
+
export { getDataModelObjectsAdapterFactory } from '../adapters/getDataModelObjects';
|
|
5
|
+
export { getTimelineMetadataAdapterFactory } from '../adapters/getTimelineMetadata';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare let getDataGraphMetadata: any;
|
|
2
|
+
declare let getDataModelObjects: any;
|
|
3
|
+
declare let getEngagementEvents: any;
|
|
4
|
+
declare let getTimelineData: any;
|
|
5
|
+
declare let getTimelineMetadata: any;
|
|
6
|
+
declare let getDataGraphMetadata_imperative: any;
|
|
7
|
+
declare let getDataModelObjects_imperative: any;
|
|
8
|
+
declare let getEngagementEvents_imperative: any;
|
|
9
|
+
declare let getTimelineData_imperative: any;
|
|
10
|
+
declare let getTimelineMetadata_imperative: any;
|
|
11
|
+
export { getDataGraphMetadata, getDataModelObjects, getEngagementEvents, getTimelineData, getTimelineMetadata, getDataGraphMetadata_imperative, getDataModelObjects_imperative, getEngagementEvents_imperative, getTimelineData_imperative, getTimelineMetadata_imperative, };
|
|
@@ -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 { DataGraphMetadataRepresentation as types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation } from '../types/DataGraphMetadataRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
dataSpaceApiName?: 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_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataGraphMetadataRepresentation_DataGraphMetadataRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
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 { CdpMetadataOutputRepresentation as types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation } from '../types/CdpMetadataOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
dataSpaceApiName?: string;
|
|
6
|
+
objectCategory?: 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_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation): void;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation, any>;
|
|
14
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpMetadataOutputRepresentation_CdpMetadataOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/getConnectTimelineMetadataConfigurations.d.ts
ADDED
|
@@ -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 { TimelineMetadataResultRepresentation as types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation } from '../types/TimelineMetadataResultRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
fullNames?: Array<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_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TimelineMetadataResultRepresentation_TimelineMetadataResultRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { EngagementEventTimelineDataRepresentation as types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation } from '../types/EngagementEventTimelineDataRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
timelineConfigFullName: string;
|
|
6
|
+
timelineObjRecordId: string;
|
|
7
|
+
};
|
|
8
|
+
queryParams: {
|
|
9
|
+
dataCloudEventSource?: string;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation): void;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation, any>;
|
|
17
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_EngagementEventTimelineDataRepresentation_EngagementEventTimelineDataRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 { TimelineDataGetResultRepresentation as types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation } from '../types/TimelineDataGetResultRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
timelineConfigFullName: string;
|
|
6
|
+
timelineObjRecordId: string;
|
|
7
|
+
};
|
|
8
|
+
queryParams: {
|
|
9
|
+
direction?: string;
|
|
10
|
+
endDate?: string;
|
|
11
|
+
eventTypeOffsets?: string;
|
|
12
|
+
eventTypes?: string;
|
|
13
|
+
startDate?: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
18
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
19
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation): void;
|
|
20
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation, any>;
|
|
21
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TimelineDataGetResultRepresentation_TimelineDataGetResultRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
22
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
23
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DmoOutputRepresentation as DmoOutputRepresentation_DmoOutputRepresentation } from './DmoOutputRepresentation';
|
|
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 TTL = 600000;
|
|
4
|
+
export declare const VERSION = "84ccc17f91013e292e7b01a291dd0322";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: CdpMetadataOutputRepresentation, existing: CdpMetadataOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMetadataOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: CdpMetadataOutputRepresentationNormalized, incoming: CdpMetadataOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpMetadataOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Output representation to fetch all engagement dmos
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface CdpMetadataOutputRepresentationNormalized {
|
|
19
|
+
/** get all dmos */
|
|
20
|
+
dmos: Array<DmoOutputRepresentation_DmoOutputRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output representation to fetch all engagement dmos
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface CdpMetadataOutputRepresentation {
|
|
29
|
+
dmos: Array<DmoOutputRepresentation_DmoOutputRepresentation>;
|
|
30
|
+
}
|
|
@@ -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 = "5e96c68fdfd040ef414bfe4594ba2e8e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DGObjectOutputRepresentation, existing: DGObjectOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DGObjectOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DGObjectOutputRepresentationNormalized, incoming: DGObjectOutputRepresentationNormalized): 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: DGObjectOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of DMO node in Datagraph
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DGObjectOutputRepresentationNormalized {
|
|
17
|
+
/** get category */
|
|
18
|
+
category: string;
|
|
19
|
+
/** get developer name */
|
|
20
|
+
developerName: string;
|
|
21
|
+
/** get dmo display name */
|
|
22
|
+
displayName: string;
|
|
23
|
+
/** get fields */
|
|
24
|
+
fields: Array<unknown>;
|
|
25
|
+
/** get filter criteria */
|
|
26
|
+
filterCriteria?: string;
|
|
27
|
+
/** get member dmo name */
|
|
28
|
+
memberDmoName: string;
|
|
29
|
+
/** get paths */
|
|
30
|
+
paths: Array<unknown>;
|
|
31
|
+
/** get recency criteria */
|
|
32
|
+
recencyCriteria: Array<unknown>;
|
|
33
|
+
/** get related objects */
|
|
34
|
+
relatedObjects: Array<DGObjectOutputRepresentation>;
|
|
35
|
+
/** get creation type */
|
|
36
|
+
type: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Output representation of DMO node in Datagraph
|
|
40
|
+
*
|
|
41
|
+
* Keys:
|
|
42
|
+
* (none)
|
|
43
|
+
*/
|
|
44
|
+
export interface DGObjectOutputRepresentation {
|
|
45
|
+
category: string;
|
|
46
|
+
developerName: string;
|
|
47
|
+
displayName: string;
|
|
48
|
+
fields: Array<unknown>;
|
|
49
|
+
filterCriteria?: string;
|
|
50
|
+
memberDmoName: string;
|
|
51
|
+
paths: Array<unknown>;
|
|
52
|
+
recencyCriteria: Array<unknown>;
|
|
53
|
+
relatedObjects: Array<DGObjectOutputRepresentation>;
|
|
54
|
+
type: string;
|
|
55
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DataGraphOutputRepresentation as DataGraphOutputRepresentation_DataGraphOutputRepresentation } from './DataGraphOutputRepresentation';
|
|
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 TTL = 300000;
|
|
4
|
+
export declare const VERSION = "44b2bb1d9b3f3da028d27540301a3b52";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataGraphMetadataRepresentation, existing: DataGraphMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphMetadataRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: DataGraphMetadataRepresentationNormalized, incoming: DataGraphMetadataRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataGraphMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Output representation to fetch all datagraphs and their metadata.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataGraphMetadataRepresentationNormalized {
|
|
19
|
+
/** get all datagraphs */
|
|
20
|
+
dataGraphMetadata: Array<DataGraphOutputRepresentation_DataGraphOutputRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Output representation to fetch all datagraphs and their metadata.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataGraphMetadataRepresentation {
|
|
29
|
+
dataGraphMetadata: Array<DataGraphOutputRepresentation_DataGraphOutputRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { DGObjectOutputRepresentation as DGObjectOutputRepresentation_DGObjectOutputRepresentation } from './DGObjectOutputRepresentation';
|
|
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 = "ffb7687bff51f58a65c7518b0388f86f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: DataGraphOutputRepresentation, existing: DataGraphOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataGraphOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: DataGraphOutputRepresentationNormalized, incoming: DataGraphOutputRepresentationNormalized): 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: DataGraphOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Output representation of a single datagraph
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface DataGraphOutputRepresentationNormalized {
|
|
18
|
+
/** get dataspace name */
|
|
19
|
+
dataspaceName: string;
|
|
20
|
+
/** get description of a datagraph */
|
|
21
|
+
description?: string;
|
|
22
|
+
/** get developer name */
|
|
23
|
+
developerName: string;
|
|
24
|
+
/** get data graph object */
|
|
25
|
+
dgObject: DGObjectOutputRepresentation_DGObjectOutputRepresentation;
|
|
26
|
+
/** get display name */
|
|
27
|
+
displayName: string;
|
|
28
|
+
/** get id dmo name */
|
|
29
|
+
idDmoName: string;
|
|
30
|
+
/** get primary dmo name */
|
|
31
|
+
primaryObjectName: string;
|
|
32
|
+
/** get value dmo name */
|
|
33
|
+
valuesDmoName: string;
|
|
34
|
+
/** get version */
|
|
35
|
+
version: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Output representation of a single datagraph
|
|
39
|
+
*
|
|
40
|
+
* Keys:
|
|
41
|
+
* (none)
|
|
42
|
+
*/
|
|
43
|
+
export interface DataGraphOutputRepresentation {
|
|
44
|
+
dataspaceName: string;
|
|
45
|
+
description?: string;
|
|
46
|
+
developerName: string;
|
|
47
|
+
dgObject: DGObjectOutputRepresentation_DGObjectOutputRepresentation;
|
|
48
|
+
displayName: string;
|
|
49
|
+
idDmoName: string;
|
|
50
|
+
primaryObjectName: string;
|
|
51
|
+
valuesDmoName: string;
|
|
52
|
+
version: string;
|
|
53
|
+
}
|
|
@@ -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 = "3de3d025c0a0af44f39305af7a738239";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DmoFieldsOutputRepresentation, existing: DmoFieldsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DmoFieldsOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DmoFieldsOutputRepresentationNormalized, incoming: DmoFieldsOutputRepresentationNormalized): 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: DmoFieldsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of each field of DMO
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DmoFieldsOutputRepresentationNormalized {
|
|
17
|
+
/** get display name of a dmo */
|
|
18
|
+
displayName: string;
|
|
19
|
+
/** get name of a dmo */
|
|
20
|
+
name: string;
|
|
21
|
+
/** get type of fields */
|
|
22
|
+
type: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Output representation of each field of DMO
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface DmoFieldsOutputRepresentation {
|
|
31
|
+
displayName: string;
|
|
32
|
+
name: string;
|
|
33
|
+
type: string;
|
|
34
|
+
}
|