@salesforce/lds-adapters-marketing-cdp 0.131.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/marketing-cdp.js +1056 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/adapters/createAdg.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/adapters/deleteAdg.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/adapters/getAdg.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/retryDataGraph.d.ts +14 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +7 -0
- package/dist/es/es2018/types/src/generated/resources/deleteSsotApplicationDataGraphsByAdgName.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/resources/getSsotApplicationDataGraphsByAdgName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotApplicationDataGraphs.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/putSsotApplicationDataGraphsRetry.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphDataRecencyInputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphFieldInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphFieldOutputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphInputRepresentation.d.ts +47 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphOutputRepresentation.d.ts +56 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphPathToParentInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphPathToParentOutputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphRecencyCriteriaOutputRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphSourceInputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphSourceObjectOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/CdpDataGraphRetryInputRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/CdpDataGraphRetryOutputRepresentation.d.ts +44 -0
- package/dist/es/es2018/types/src/generated/types/CdpObjectBaseInputRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/CdpObjectBaseOutputRepresentation.d.ts +65 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
- package/package.json +68 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1135 -0
- package/src/raml/api.raml +353 -0
- package/src/raml/luvio.raml +49 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectFreeze: {
|
|
7
|
+
<T extends Function>(f: T): T;
|
|
8
|
+
<T_1 extends {
|
|
9
|
+
[idx: string]: object | U | null | undefined;
|
|
10
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
|
+
}, ObjectCreate: {
|
|
13
|
+
(o: object | null): any;
|
|
14
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
+
};
|
|
16
|
+
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
+
export interface AdapterValidationConfig {
|
|
20
|
+
displayName: string;
|
|
21
|
+
parameters: {
|
|
22
|
+
required: string[];
|
|
23
|
+
optional: string[];
|
|
24
|
+
unsupported?: string[];
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Validates an adapter config is well-formed.
|
|
29
|
+
* @param config The config to validate.
|
|
30
|
+
* @param adapter The adapter validation configuration.
|
|
31
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
+
*/
|
|
34
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
+
[key in keyof Base]?: any;
|
|
38
|
+
}> = {
|
|
39
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
+
};
|
|
41
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
+
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>;
|
|
44
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
+
export declare const snapshotRefreshOptions: {
|
|
47
|
+
overrides: {
|
|
48
|
+
headers: {
|
|
49
|
+
'Cache-Control': string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
+
* JSON.stringify({a: 1, b: 2})
|
|
57
|
+
* "{"a":1,"b":2}"
|
|
58
|
+
* JSON.stringify({b: 2, a: 1})
|
|
59
|
+
* "{"b":2,"a":1}"
|
|
60
|
+
* @param data Data to be JSON-stringified.
|
|
61
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
+
*/
|
|
63
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
+
export declare const keyPrefix = "CDP";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_postSsotApplicationDataGraphs_ResourceRequestConfig } from '../resources/postSsotApplicationDataGraphs';
|
|
3
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
4
|
+
import { CdpApplicationDataGraphOutputRepresentation as types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation } from '../types/CdpApplicationDataGraphOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "createAdg";
|
|
6
|
+
export declare const createAdg_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface CreateAdgConfig {
|
|
8
|
+
dataspaceName?: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
label?: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
primaryObjectName: string;
|
|
13
|
+
primaryObjectType: string;
|
|
14
|
+
sourceObject: unknown;
|
|
15
|
+
}
|
|
16
|
+
export declare function createResourceParams(config: CreateAdgConfig): resources_postSsotApplicationDataGraphs_ResourceRequestConfig;
|
|
17
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateAdgConfig>): adapter$45$utils_Untrusted<CreateAdgConfig>;
|
|
18
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateAdgConfig | null;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateAdgConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>>;
|
|
20
|
+
export declare const createAdgAdapterFactory: $64$luvio_engine_AdapterFactory<CreateAdgConfig, types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_deleteSsotApplicationDataGraphsByAdgName_ResourceRequestConfig } from '../resources/deleteSsotApplicationDataGraphsByAdgName';
|
|
3
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, DeleteAdapterFactory as $64$luvio_engine_DeleteAdapterFactory } from '@luvio/engine';
|
|
4
|
+
export declare const adapterName = "deleteAdg";
|
|
5
|
+
export declare const deleteAdg_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
6
|
+
export interface DeleteAdgConfig {
|
|
7
|
+
adgName: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function createResourceParams(config: DeleteAdgConfig): resources_deleteSsotApplicationDataGraphsByAdgName_ResourceRequestConfig;
|
|
10
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<DeleteAdgConfig>): adapter$45$utils_Untrusted<DeleteAdgConfig>;
|
|
11
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): DeleteAdgConfig | null;
|
|
12
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: DeleteAdgConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<void>;
|
|
13
|
+
export declare const deleteAdgAdapterFactory: $64$luvio_engine_DeleteAdapterFactory<DeleteAdgConfig>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getSsotApplicationDataGraphsByAdgName_ResourceRequestConfig } from '../resources/getSsotApplicationDataGraphsByAdgName';
|
|
3
|
+
import { 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';
|
|
4
|
+
import { CdpApplicationDataGraphOutputRepresentation as types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation } from '../types/CdpApplicationDataGraphOutputRepresentation';
|
|
5
|
+
import { KeyParams as types_CdpObjectBaseOutputRepresentation_KeyParams } from '../types/CdpObjectBaseOutputRepresentation';
|
|
6
|
+
export declare const adapterName = "getAdg";
|
|
7
|
+
export declare const getAdg_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetAdgConfig {
|
|
9
|
+
adgName: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: GetAdgConfig): resources_getSsotApplicationDataGraphsByAdgName_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetAdgConfig>): adapter$45$utils_Untrusted<GetAdgConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetAdgConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig): $64$luvio_engine_Snapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig, resourceParams: resources_getSsotApplicationDataGraphsByAdgName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig, resourceParams: resources_getSsotApplicationDataGraphsByAdgName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetAdgConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetAdgConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_Snapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>;
|
|
27
|
+
export declare const getAdgAdapterFactory: $64$luvio_engine_AdapterFactory<GetAdgConfig, types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>;
|
|
28
|
+
export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_CdpObjectBaseOutputRepresentation_KeyParams, any>[]) => void;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_putSsotApplicationDataGraphsRetry_ResourceRequestConfig } from '../resources/putSsotApplicationDataGraphsRetry';
|
|
3
|
+
import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
4
|
+
import { CdpDataGraphRetryOutputRepresentation as types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation } from '../types/CdpDataGraphRetryOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "retryDataGraph";
|
|
6
|
+
export declare const retryDataGraph_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface RetryDataGraphConfig {
|
|
8
|
+
dataGraphName: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function createResourceParams(config: RetryDataGraphConfig): resources_putSsotApplicationDataGraphsRetry_ResourceRequestConfig;
|
|
11
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<RetryDataGraphConfig>): adapter$45$utils_Untrusted<RetryDataGraphConfig>;
|
|
12
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): RetryDataGraphConfig | null;
|
|
13
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: RetryDataGraphConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, any>>;
|
|
14
|
+
export declare const retryDataGraphAdapterFactory: $64$luvio_engine_AdapterFactory<RetryDataGraphConfig, types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare let createAdg: any;
|
|
2
|
+
declare let deleteAdg: any;
|
|
3
|
+
declare let getAdg: any;
|
|
4
|
+
declare let getAdgNotifyChange: any;
|
|
5
|
+
declare let retryDataGraph: any;
|
|
6
|
+
declare let getAdg_imperative: any;
|
|
7
|
+
export { createAdg, deleteAdg, getAdg, getAdgNotifyChange, retryDataGraph, getAdg_imperative };
|
package/dist/es/es2018/types/src/generated/resources/deleteSsotApplicationDataGraphsByAdgName.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
export interface ResourceRequestConfig {
|
|
3
|
+
urlParams: {
|
|
4
|
+
adgName: string;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
8
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
10
|
+
export declare function evictSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/getSsotApplicationDataGraphsByAdgName.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { CdpApplicationDataGraphOutputRepresentation as types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation } from '../types/CdpApplicationDataGraphOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
adgName: 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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
16
|
+
export declare function createResourceRequestFromRepresentation(representation: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation): $64$luvio_engine_ResourceRequest;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { CdpApplicationDataGraphOutputRepresentation as types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation } from '../types/CdpApplicationDataGraphOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
dataspaceName?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
label?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
primaryObjectName: string;
|
|
10
|
+
primaryObjectType: string;
|
|
11
|
+
sourceObject: unknown;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { CdpDataGraphRetryOutputRepresentation as types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation } from '../types/CdpDataGraphRetryOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
dataGraphName: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
10
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, any>;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "6d4541500722f010c61d36ef25eab423";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphDataRecencyInputRepresentation, existing: CdpApplicationDataGraphDataRecencyInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphDataRecencyInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphDataRecencyInputRepresentationNormalized, incoming: CdpApplicationDataGraphDataRecencyInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphDataRecencyInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphDataRecencyInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* ADG Recency Criteria input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphDataRecencyInputRepresentationNormalized {
|
|
18
|
+
/** field_name */
|
|
19
|
+
fieldName: string;
|
|
20
|
+
/** value */
|
|
21
|
+
value: number;
|
|
22
|
+
/** value_type */
|
|
23
|
+
valueType: string;
|
|
24
|
+
/** value_unit */
|
|
25
|
+
valueUnit: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* ADG Recency Criteria input representation
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface CdpApplicationDataGraphDataRecencyInputRepresentation {
|
|
34
|
+
fieldName: string;
|
|
35
|
+
value: number;
|
|
36
|
+
valueType: string;
|
|
37
|
+
valueUnit: string;
|
|
38
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "e3ca443a544f4139e56ecc2ecb3fda03";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphFieldInputRepresentation, existing: CdpApplicationDataGraphFieldInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphFieldInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphFieldInputRepresentationNormalized, incoming: CdpApplicationDataGraphFieldInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphFieldInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphFieldInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* ADG Field input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphFieldInputRepresentationNormalized {
|
|
18
|
+
/** is column a key */
|
|
19
|
+
isKeyColumn: boolean;
|
|
20
|
+
/** source field name */
|
|
21
|
+
sourceFieldName: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* ADG Field input representation
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface CdpApplicationDataGraphFieldInputRepresentation {
|
|
30
|
+
isKeyColumn: boolean;
|
|
31
|
+
sourceFieldName: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "5ccd85bcaf66b23d82f3af541d347b3e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphFieldOutputRepresentation, existing: CdpApplicationDataGraphFieldOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphFieldOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphFieldOutputRepresentationNormalized, incoming: CdpApplicationDataGraphFieldOutputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphFieldOutputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphFieldOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Represents Cdp Application Data Graph Field Output
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphFieldOutputRepresentationNormalized {
|
|
18
|
+
/** isKeyColumn */
|
|
19
|
+
isKeyColumn: boolean;
|
|
20
|
+
/** source_field_developer_name */
|
|
21
|
+
sourceFieldName: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Represents Cdp Application Data Graph Field Output
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface CdpApplicationDataGraphFieldOutputRepresentation {
|
|
30
|
+
isKeyColumn: boolean;
|
|
31
|
+
sourceFieldName: string;
|
|
32
|
+
}
|
package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "cd0031c5ca8a7c3216ce0436ed11566b";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphInputRepresentation, existing: CdpApplicationDataGraphInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphInputRepresentationNormalized, incoming: CdpApplicationDataGraphInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for creating CDP ADG
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphInputRepresentationNormalized {
|
|
18
|
+
/** dataspaceName */
|
|
19
|
+
dataspaceName?: string;
|
|
20
|
+
/** description */
|
|
21
|
+
description?: string;
|
|
22
|
+
/** label */
|
|
23
|
+
label?: string;
|
|
24
|
+
/** name */
|
|
25
|
+
name?: string;
|
|
26
|
+
/** Primary Object Name */
|
|
27
|
+
primaryObjectName: string;
|
|
28
|
+
/** primary object type */
|
|
29
|
+
primaryObjectType: string;
|
|
30
|
+
/** source object */
|
|
31
|
+
sourceObject: unknown;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Input representation for creating CDP ADG
|
|
35
|
+
*
|
|
36
|
+
* Keys:
|
|
37
|
+
* (none)
|
|
38
|
+
*/
|
|
39
|
+
export interface CdpApplicationDataGraphInputRepresentation {
|
|
40
|
+
dataspaceName?: string;
|
|
41
|
+
description?: string;
|
|
42
|
+
label?: string;
|
|
43
|
+
name?: string;
|
|
44
|
+
primaryObjectName: string;
|
|
45
|
+
primaryObjectType: string;
|
|
46
|
+
sourceObject: unknown;
|
|
47
|
+
}
|
package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { keyBuilder as CdpObjectBaseOutputRepresentation_keyBuilder, CdpObjectBaseOutputRepresentation as CdpObjectBaseOutputRepresentation_CdpObjectBaseOutputRepresentation } from './CdpObjectBaseOutputRepresentation';
|
|
2
|
+
import { CdpApplicationDataGraphSourceObjectOutputRepresentation as CdpApplicationDataGraphSourceObjectOutputRepresentation_CdpApplicationDataGraphSourceObjectOutputRepresentation } from './CdpApplicationDataGraphSourceObjectOutputRepresentation';
|
|
3
|
+
import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
+
export declare const VERSION = "4b0a63cfd4548d05f499d3b760f52560";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: Parameters<typeof CdpObjectBaseOutputRepresentation_keyBuilder>[1]): string;
|
|
8
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: CdpObjectBaseOutputRepresentation_CdpObjectBaseOutputRepresentation): string;
|
|
9
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: Parameters<typeof CdpObjectBaseOutputRepresentation_keyBuilder>[1]): $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: CdpObjectBaseOutputRepresentation_CdpObjectBaseOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function normalize(input: CdpApplicationDataGraphOutputRepresentation, existing: CdpApplicationDataGraphOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphOutputRepresentationNormalized;
|
|
12
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
13
|
+
export declare function equals(existing: CdpApplicationDataGraphOutputRepresentationNormalized, incoming: CdpApplicationDataGraphOutputRepresentationNormalized): boolean;
|
|
14
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphOutputRepresentation): void;
|
|
15
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
16
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
17
|
+
/**
|
|
18
|
+
* Represents Cdp Application Data Graph Output
|
|
19
|
+
*
|
|
20
|
+
* Keys:
|
|
21
|
+
* name (string): name
|
|
22
|
+
*/
|
|
23
|
+
export interface CdpApplicationDataGraphOutputRepresentationNormalized extends CdpObjectBaseOutputRepresentation_CdpObjectBaseOutputRepresentation {
|
|
24
|
+
/** extended properties */
|
|
25
|
+
extendedProperties: string;
|
|
26
|
+
/** id_dmo_name */
|
|
27
|
+
idDmoName: string;
|
|
28
|
+
/** primary object developer name */
|
|
29
|
+
primaryObjectName: string;
|
|
30
|
+
/** primary object type */
|
|
31
|
+
primaryObjectType: string;
|
|
32
|
+
/** object */
|
|
33
|
+
sourceObject: $64$luvio_engine_StoreLink;
|
|
34
|
+
/** status */
|
|
35
|
+
status: string;
|
|
36
|
+
/** values dmo name */
|
|
37
|
+
valuesDmoName: string;
|
|
38
|
+
/** version */
|
|
39
|
+
version: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Represents Cdp Application Data Graph Output
|
|
43
|
+
*
|
|
44
|
+
* Keys:
|
|
45
|
+
* name (string): name
|
|
46
|
+
*/
|
|
47
|
+
export interface CdpApplicationDataGraphOutputRepresentation extends CdpObjectBaseOutputRepresentation_CdpObjectBaseOutputRepresentation {
|
|
48
|
+
extendedProperties: string;
|
|
49
|
+
idDmoName: string;
|
|
50
|
+
primaryObjectName: string;
|
|
51
|
+
primaryObjectType: string;
|
|
52
|
+
sourceObject: CdpApplicationDataGraphSourceObjectOutputRepresentation_CdpApplicationDataGraphSourceObjectOutputRepresentation;
|
|
53
|
+
status: string;
|
|
54
|
+
valuesDmoName: string;
|
|
55
|
+
version: string;
|
|
56
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "508e41f135c86630b5eea6b00ecf7cff";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphPathToParentInputRepresentation, existing: CdpApplicationDataGraphPathToParentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphPathToParentInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphPathToParentInputRepresentationNormalized, incoming: CdpApplicationDataGraphPathToParentInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphPathToParentInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphPathToParentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* ADG Source Object Path input representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphPathToParentInputRepresentationNormalized {
|
|
18
|
+
/** field_name */
|
|
19
|
+
fieldName: string;
|
|
20
|
+
/** parent_field_name */
|
|
21
|
+
parentFieldName: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* ADG Source Object Path input representation
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface CdpApplicationDataGraphPathToParentInputRepresentation {
|
|
30
|
+
fieldName: string;
|
|
31
|
+
parentFieldName: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "1ebb46329fb1b73ed3254dc339c1f805";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphPathToParentOutputRepresentation, existing: CdpApplicationDataGraphPathToParentOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphPathToParentOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphPathToParentOutputRepresentationNormalized, incoming: CdpApplicationDataGraphPathToParentOutputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphPathToParentOutputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphPathToParentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Represents Cdp Application Data Graph Path to Parent Output
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphPathToParentOutputRepresentationNormalized {
|
|
18
|
+
/** field name */
|
|
19
|
+
fieldName: string;
|
|
20
|
+
/** parent_field_name */
|
|
21
|
+
parentFieldName: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Represents Cdp Application Data Graph Path to Parent Output
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface CdpApplicationDataGraphPathToParentOutputRepresentation {
|
|
30
|
+
fieldName: string;
|
|
31
|
+
parentFieldName: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "15caf3702bc23cdc6d330242bb483233";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpApplicationDataGraphRecencyCriteriaOutputRepresentation, existing: CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized, incoming: CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphRecencyCriteriaOutputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphRecencyCriteriaOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Represents Cdp Application Data Graph Recency Output
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized {
|
|
18
|
+
/** field_name */
|
|
19
|
+
fieldName: string;
|
|
20
|
+
/** value */
|
|
21
|
+
value: number;
|
|
22
|
+
/** value_type */
|
|
23
|
+
valueType: string;
|
|
24
|
+
/** value_unit */
|
|
25
|
+
valueUnit: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Represents Cdp Application Data Graph Recency Output
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface CdpApplicationDataGraphRecencyCriteriaOutputRepresentation {
|
|
34
|
+
fieldName: string;
|
|
35
|
+
value: number;
|
|
36
|
+
valueType: string;
|
|
37
|
+
valueUnit: string;
|
|
38
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { CdpObjectBaseInputRepresentation as CdpObjectBaseInputRepresentation_CdpObjectBaseInputRepresentation } from './CdpObjectBaseInputRepresentation';
|
|
2
|
+
import { CdpApplicationDataGraphFieldInputRepresentation as CdpApplicationDataGraphFieldInputRepresentation_CdpApplicationDataGraphFieldInputRepresentation } from './CdpApplicationDataGraphFieldInputRepresentation';
|
|
3
|
+
import { CdpApplicationDataGraphPathToParentInputRepresentation as CdpApplicationDataGraphPathToParentInputRepresentation_CdpApplicationDataGraphPathToParentInputRepresentation } from './CdpApplicationDataGraphPathToParentInputRepresentation';
|
|
4
|
+
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
5
|
+
export declare const VERSION = "6e89ba5bf3413349e1863e3d2d3d7bf9";
|
|
6
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
|
+
export declare const RepresentationType: string;
|
|
8
|
+
export declare function normalize(input: CdpApplicationDataGraphSourceInputRepresentation, existing: CdpApplicationDataGraphSourceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpApplicationDataGraphSourceInputRepresentationNormalized;
|
|
9
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
10
|
+
export declare function equals(existing: CdpApplicationDataGraphSourceInputRepresentationNormalized, incoming: CdpApplicationDataGraphSourceInputRepresentationNormalized): boolean;
|
|
11
|
+
export declare function deepFreeze(input: CdpApplicationDataGraphSourceInputRepresentation): void;
|
|
12
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
13
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphSourceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
14
|
+
/**
|
|
15
|
+
* ADG Source Object input representation
|
|
16
|
+
*
|
|
17
|
+
* Keys:
|
|
18
|
+
* (none)
|
|
19
|
+
*/
|
|
20
|
+
export interface CdpApplicationDataGraphSourceInputRepresentationNormalized extends CdpObjectBaseInputRepresentation_CdpObjectBaseInputRepresentation {
|
|
21
|
+
/** fields */
|
|
22
|
+
fields: Array<CdpApplicationDataGraphFieldInputRepresentation_CdpApplicationDataGraphFieldInputRepresentation>;
|
|
23
|
+
/** path */
|
|
24
|
+
path: Array<CdpApplicationDataGraphPathToParentInputRepresentation_CdpApplicationDataGraphPathToParentInputRepresentation>;
|
|
25
|
+
/** recencyCriteria */
|
|
26
|
+
recencyCriteria: unknown;
|
|
27
|
+
/** relatedObjects */
|
|
28
|
+
relatedObjects: Array<unknown>;
|
|
29
|
+
/** type */
|
|
30
|
+
type: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* ADG Source Object input representation
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface CdpApplicationDataGraphSourceInputRepresentation extends CdpObjectBaseInputRepresentation_CdpObjectBaseInputRepresentation {
|
|
39
|
+
fields: Array<CdpApplicationDataGraphFieldInputRepresentation_CdpApplicationDataGraphFieldInputRepresentation>;
|
|
40
|
+
path: Array<CdpApplicationDataGraphPathToParentInputRepresentation_CdpApplicationDataGraphPathToParentInputRepresentation>;
|
|
41
|
+
recencyCriteria: unknown;
|
|
42
|
+
relatedObjects: Array<unknown>;
|
|
43
|
+
type: string;
|
|
44
|
+
}
|