@salesforce/lds-adapters-industries-featurevalidation 1.124.1 → 1.124.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/industries-featurevalidation.js +495 -495
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/featureValidation.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +1 -1
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +2 -2
- package/dist/{types → es/es2018/types}/src/generated/resources/postConnectIndustriesFeatureValidation.d.ts +13 -13
- package/dist/{types → es/es2018/types}/src/generated/types/FeatureValidationFieldValuesRepresentation.d.ts +38 -38
- package/dist/{types → es/es2018/types}/src/generated/types/FeatureValidationInputDetailsRepresentation.d.ts +34 -34
- package/dist/{types → es/es2018/types}/src/generated/types/FeatureValidationInputRepresentation.d.ts +32 -32
- package/dist/{types → es/es2018/types}/src/generated/types/FeatureValidationOutputDetailsRepresentation.d.ts +39 -39
- package/dist/{types → es/es2018/types}/src/generated/types/FeatureValidationOutputRepresentation.d.ts +46 -46
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +1 -1
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +511 -511
- package/dist/umd/es2018/industries-featurevalidation.js +0 -526
- package/dist/umd/es5/industries-featurevalidation.js +0 -529
|
@@ -1,66 +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 = "featurevalidation";
|
|
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 = "featurevalidation";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ResourceRequestConfig as resources_postConnectIndustriesFeatureValidation_ResourceRequestConfig } from '../resources/postConnectIndustriesFeatureValidation';
|
|
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 { FeatureValidationOutputRepresentation as types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation } from '../types/FeatureValidationOutputRepresentation';
|
|
5
|
-
export declare const adapterName = "featureValidation";
|
|
6
|
-
export declare const featureValidation_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
-
export interface FeatureValidationConfig {
|
|
8
|
-
featureValidationInputDetails: Array<{}>;
|
|
9
|
-
useCase: string;
|
|
10
|
-
}
|
|
11
|
-
export declare function createResourceParams(config: FeatureValidationConfig): resources_postConnectIndustriesFeatureValidation_ResourceRequestConfig;
|
|
12
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<FeatureValidationConfig>): adapter$45$utils_Untrusted<FeatureValidationConfig>;
|
|
13
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): FeatureValidationConfig | null;
|
|
14
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: FeatureValidationConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, any>>;
|
|
15
|
-
export declare const featureValidationAdapterFactory: $64$luvio_engine_AdapterFactory<FeatureValidationConfig, types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_postConnectIndustriesFeatureValidation_ResourceRequestConfig } from '../resources/postConnectIndustriesFeatureValidation';
|
|
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 { FeatureValidationOutputRepresentation as types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation } from '../types/FeatureValidationOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "featureValidation";
|
|
6
|
+
export declare const featureValidation_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface FeatureValidationConfig {
|
|
8
|
+
featureValidationInputDetails: Array<{}>;
|
|
9
|
+
useCase: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: FeatureValidationConfig): resources_postConnectIndustriesFeatureValidation_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<FeatureValidationConfig>): adapter$45$utils_Untrusted<FeatureValidationConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): FeatureValidationConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: FeatureValidationConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, any>>;
|
|
15
|
+
export declare const featureValidationAdapterFactory: $64$luvio_engine_AdapterFactory<FeatureValidationConfig, types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { featureValidationAdapterFactory } from '../adapters/featureValidation';
|
|
1
|
+
export { featureValidationAdapterFactory } from '../adapters/featureValidation';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare let featureValidation: any;
|
|
2
|
-
export { featureValidation, };
|
|
1
|
+
declare let featureValidation: any;
|
|
2
|
+
export { featureValidation, };
|
|
@@ -1,13 +1,13 @@
|
|
|
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 { FeatureValidationOutputRepresentation as types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation } from '../types/FeatureValidationOutputRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
body: {
|
|
5
|
-
featureValidationInputDetails: Array<{}>;
|
|
6
|
-
useCase: string;
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, any>;
|
|
12
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
-
export default createResourceRequest;
|
|
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 { FeatureValidationOutputRepresentation as types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation } from '../types/FeatureValidationOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
body: {
|
|
5
|
+
featureValidationInputDetails: Array<{}>;
|
|
6
|
+
useCase: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
|
@@ -1,38 +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 = "631aec0cb3216fffb314c3734733f29b";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: FeatureValidationFieldValuesRepresentation, existing: FeatureValidationFieldValuesRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationFieldValuesRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: FeatureValidationFieldValuesRepresentationNormalized, incoming: FeatureValidationFieldValuesRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: FeatureValidationFieldValuesRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationFieldValuesRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Select fields that were validated as part of use-case implementation.
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface FeatureValidationFieldValuesRepresentationNormalized {
|
|
18
|
-
/** Field name */
|
|
19
|
-
fieldName: string;
|
|
20
|
-
/** Field value */
|
|
21
|
-
fieldValue: string;
|
|
22
|
-
/** Message related to the field. Example: Missing fls permissions. */
|
|
23
|
-
message: string;
|
|
24
|
-
/** true if field is required. false otherwise. */
|
|
25
|
-
required: boolean;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Select fields that were validated as part of use-case implementation.
|
|
29
|
-
*
|
|
30
|
-
* Keys:
|
|
31
|
-
* (none)
|
|
32
|
-
*/
|
|
33
|
-
export interface FeatureValidationFieldValuesRepresentation {
|
|
34
|
-
fieldName: string;
|
|
35
|
-
fieldValue: string;
|
|
36
|
-
message: string;
|
|
37
|
-
required: boolean;
|
|
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 = "631aec0cb3216fffb314c3734733f29b";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FeatureValidationFieldValuesRepresentation, existing: FeatureValidationFieldValuesRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationFieldValuesRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FeatureValidationFieldValuesRepresentationNormalized, incoming: FeatureValidationFieldValuesRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: FeatureValidationFieldValuesRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationFieldValuesRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Select fields that were validated as part of use-case implementation.
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FeatureValidationFieldValuesRepresentationNormalized {
|
|
18
|
+
/** Field name */
|
|
19
|
+
fieldName: string;
|
|
20
|
+
/** Field value */
|
|
21
|
+
fieldValue: string;
|
|
22
|
+
/** Message related to the field. Example: Missing fls permissions. */
|
|
23
|
+
message: string;
|
|
24
|
+
/** true if field is required. false otherwise. */
|
|
25
|
+
required: boolean;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Select fields that were validated as part of use-case implementation.
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface FeatureValidationFieldValuesRepresentation {
|
|
34
|
+
fieldName: string;
|
|
35
|
+
fieldValue: string;
|
|
36
|
+
message: string;
|
|
37
|
+
required: boolean;
|
|
38
|
+
}
|
|
@@ -1,34 +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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "c44e6bb91e9174cdf2f457aab34ebcf4";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: FeatureValidationInputDetailsRepresentation, existing: FeatureValidationInputDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationInputDetailsRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: FeatureValidationInputDetailsRepresentationNormalized, incoming: FeatureValidationInputDetailsRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: FeatureValidationInputDetailsRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationInputDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Holds BPO recordUsage and bpo recordId. example: {"recordUsage": "Facility",
|
|
13
|
-
"bpoRecordId": "0bSxx0000000005EAA"}
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface FeatureValidationInputDetailsRepresentationNormalized {
|
|
19
|
-
/** Input BPO record id */
|
|
20
|
-
bpoRecordId: string;
|
|
21
|
-
/** How record is used in the feature. Example value: Patient. Note: Account is a bpo name but Patient is a business usage of the patient's account */
|
|
22
|
-
recordUsage: string;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Holds BPO recordUsage and bpo recordId. example: {"recordUsage": "Facility",
|
|
26
|
-
"bpoRecordId": "0bSxx0000000005EAA"}
|
|
27
|
-
*
|
|
28
|
-
* Keys:
|
|
29
|
-
* (none)
|
|
30
|
-
*/
|
|
31
|
-
export interface FeatureValidationInputDetailsRepresentation {
|
|
32
|
-
bpoRecordId: string;
|
|
33
|
-
recordUsage: string;
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "c44e6bb91e9174cdf2f457aab34ebcf4";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FeatureValidationInputDetailsRepresentation, existing: FeatureValidationInputDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationInputDetailsRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FeatureValidationInputDetailsRepresentationNormalized, incoming: FeatureValidationInputDetailsRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: FeatureValidationInputDetailsRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationInputDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Holds BPO recordUsage and bpo recordId. example: {"recordUsage": "Facility",
|
|
13
|
+
"bpoRecordId": "0bSxx0000000005EAA"}
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface FeatureValidationInputDetailsRepresentationNormalized {
|
|
19
|
+
/** Input BPO record id */
|
|
20
|
+
bpoRecordId: string;
|
|
21
|
+
/** How record is used in the feature. Example value: Patient. Note: Account is a bpo name but Patient is a business usage of the patient's account */
|
|
22
|
+
recordUsage: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Holds BPO recordUsage and bpo recordId. example: {"recordUsage": "Facility",
|
|
26
|
+
"bpoRecordId": "0bSxx0000000005EAA"}
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface FeatureValidationInputDetailsRepresentation {
|
|
32
|
+
bpoRecordId: string;
|
|
33
|
+
recordUsage: string;
|
|
34
|
+
}
|
package/dist/{types → es/es2018/types}/src/generated/types/FeatureValidationInputRepresentation.d.ts
RENAMED
|
@@ -1,32 +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 = "48d9d6d93a46779d56d7eae66a5f2333";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: FeatureValidationInputRepresentation, existing: FeatureValidationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationInputRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: FeatureValidationInputRepresentationNormalized, incoming: FeatureValidationInputRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: FeatureValidationInputRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Feature validation input
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface FeatureValidationInputRepresentationNormalized {
|
|
18
|
-
/** Holds record usage and bpo recordId. */
|
|
19
|
-
featureValidationInputDetails: Array<{}>;
|
|
20
|
-
/** Use-case to validate the data. HealthCloudIAM needs user to pass on practitioner id, facility id, patient id, and worktype id in featureValidationInputDetails. */
|
|
21
|
-
useCase: string;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Feature validation input
|
|
25
|
-
*
|
|
26
|
-
* Keys:
|
|
27
|
-
* (none)
|
|
28
|
-
*/
|
|
29
|
-
export interface FeatureValidationInputRepresentation {
|
|
30
|
-
featureValidationInputDetails: Array<{}>;
|
|
31
|
-
useCase: string;
|
|
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 = "48d9d6d93a46779d56d7eae66a5f2333";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FeatureValidationInputRepresentation, existing: FeatureValidationInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FeatureValidationInputRepresentationNormalized, incoming: FeatureValidationInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: FeatureValidationInputRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Feature validation input
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FeatureValidationInputRepresentationNormalized {
|
|
18
|
+
/** Holds record usage and bpo recordId. */
|
|
19
|
+
featureValidationInputDetails: Array<{}>;
|
|
20
|
+
/** Use-case to validate the data. HealthCloudIAM needs user to pass on practitioner id, facility id, patient id, and worktype id in featureValidationInputDetails. */
|
|
21
|
+
useCase: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Feature validation input
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface FeatureValidationInputRepresentation {
|
|
30
|
+
featureValidationInputDetails: Array<{}>;
|
|
31
|
+
useCase: string;
|
|
32
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { FeatureValidationFieldValuesRepresentation as FeatureValidationFieldValuesRepresentation_FeatureValidationFieldValuesRepresentation } from './FeatureValidationFieldValuesRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "b2421cf8b77991983bf69e64a9fa0236";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: FeatureValidationOutputDetailsRepresentation, existing: FeatureValidationOutputDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationOutputDetailsRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: FeatureValidationOutputDetailsRepresentationNormalized, incoming: FeatureValidationOutputDetailsRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: FeatureValidationOutputDetailsRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationOutputDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Holds BPO name, bpoRecordId, select fields from the bpo and related error message.
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface FeatureValidationOutputDetailsRepresentationNormalized {
|
|
19
|
-
/** BPO name */
|
|
20
|
-
bpoName: string;
|
|
21
|
-
/** BPO record id */
|
|
22
|
-
bpoRecordId: string;
|
|
23
|
-
/** Select fields that were validated as part of use-case implementation. */
|
|
24
|
-
featureValidationFieldValues: Array<FeatureValidationFieldValuesRepresentation_FeatureValidationFieldValuesRepresentation>;
|
|
25
|
-
/** Message related to the bpo. Example: Invalid record Id. */
|
|
26
|
-
message: string;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Holds BPO name, bpoRecordId, select fields from the bpo and related error message.
|
|
30
|
-
*
|
|
31
|
-
* Keys:
|
|
32
|
-
* (none)
|
|
33
|
-
*/
|
|
34
|
-
export interface FeatureValidationOutputDetailsRepresentation {
|
|
35
|
-
bpoName: string;
|
|
36
|
-
bpoRecordId: string;
|
|
37
|
-
featureValidationFieldValues: Array<FeatureValidationFieldValuesRepresentation_FeatureValidationFieldValuesRepresentation>;
|
|
38
|
-
message: string;
|
|
39
|
-
}
|
|
1
|
+
import { FeatureValidationFieldValuesRepresentation as FeatureValidationFieldValuesRepresentation_FeatureValidationFieldValuesRepresentation } from './FeatureValidationFieldValuesRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "b2421cf8b77991983bf69e64a9fa0236";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FeatureValidationOutputDetailsRepresentation, existing: FeatureValidationOutputDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationOutputDetailsRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FeatureValidationOutputDetailsRepresentationNormalized, incoming: FeatureValidationOutputDetailsRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: FeatureValidationOutputDetailsRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationOutputDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Holds BPO name, bpoRecordId, select fields from the bpo and related error message.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface FeatureValidationOutputDetailsRepresentationNormalized {
|
|
19
|
+
/** BPO name */
|
|
20
|
+
bpoName: string;
|
|
21
|
+
/** BPO record id */
|
|
22
|
+
bpoRecordId: string;
|
|
23
|
+
/** Select fields that were validated as part of use-case implementation. */
|
|
24
|
+
featureValidationFieldValues: Array<FeatureValidationFieldValuesRepresentation_FeatureValidationFieldValuesRepresentation>;
|
|
25
|
+
/** Message related to the bpo. Example: Invalid record Id. */
|
|
26
|
+
message: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Holds BPO name, bpoRecordId, select fields from the bpo and related error message.
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface FeatureValidationOutputDetailsRepresentation {
|
|
35
|
+
bpoName: string;
|
|
36
|
+
bpoRecordId: string;
|
|
37
|
+
featureValidationFieldValues: Array<FeatureValidationFieldValuesRepresentation_FeatureValidationFieldValuesRepresentation>;
|
|
38
|
+
message: string;
|
|
39
|
+
}
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import { FeatureValidationOutputDetailsRepresentation as FeatureValidationOutputDetailsRepresentation_FeatureValidationOutputDetailsRepresentation } from './FeatureValidationOutputDetailsRepresentation';
|
|
2
|
-
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const TTL = 300;
|
|
4
|
-
export declare const VERSION = "cca11a8e3ab8424bcce64057aad4f46d";
|
|
5
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
-
export declare const RepresentationType: string;
|
|
7
|
-
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
-
isSuccess: boolean;
|
|
9
|
-
}
|
|
10
|
-
export type FeatureValidationOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
-
export type PartialFeatureValidationOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): FeatureValidationOutputRepresentationNormalizedKeyMetadata;
|
|
14
|
-
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: FeatureValidationOutputRepresentation): string;
|
|
15
|
-
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: FeatureValidationOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
-
export declare function normalize(input: FeatureValidationOutputRepresentation, existing: FeatureValidationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationOutputRepresentationNormalized;
|
|
17
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
-
export declare function equals(existing: FeatureValidationOutputRepresentationNormalized, incoming: FeatureValidationOutputRepresentationNormalized): boolean;
|
|
19
|
-
export declare function deepFreeze(input: FeatureValidationOutputRepresentation): void;
|
|
20
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
-
/**
|
|
23
|
-
* FeatureValidation output.
|
|
24
|
-
*
|
|
25
|
-
* Keys:
|
|
26
|
-
* isSuccess (boolean): isSuccess
|
|
27
|
-
*/
|
|
28
|
-
export interface FeatureValidationOutputRepresentationNormalized {
|
|
29
|
-
/** Get FeatureValidation error messages */
|
|
30
|
-
errorMessage?: string;
|
|
31
|
-
/** Holds BPO name, bpoRecordId, select fields from the bpo and related error message. */
|
|
32
|
-
featureValidationOutputDetails: Array<FeatureValidationOutputDetailsRepresentation_FeatureValidationOutputDetailsRepresentation>;
|
|
33
|
-
/** Get FeatureValidation success flag */
|
|
34
|
-
isSuccess: boolean;
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* FeatureValidation output.
|
|
38
|
-
*
|
|
39
|
-
* Keys:
|
|
40
|
-
* isSuccess (boolean): isSuccess
|
|
41
|
-
*/
|
|
42
|
-
export interface FeatureValidationOutputRepresentation {
|
|
43
|
-
errorMessage?: string;
|
|
44
|
-
featureValidationOutputDetails: Array<FeatureValidationOutputDetailsRepresentation_FeatureValidationOutputDetailsRepresentation>;
|
|
45
|
-
isSuccess: boolean;
|
|
46
|
-
}
|
|
1
|
+
import { FeatureValidationOutputDetailsRepresentation as FeatureValidationOutputDetailsRepresentation_FeatureValidationOutputDetailsRepresentation } from './FeatureValidationOutputDetailsRepresentation';
|
|
2
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 300;
|
|
4
|
+
export declare const VERSION = "cca11a8e3ab8424bcce64057aad4f46d";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
isSuccess: boolean;
|
|
9
|
+
}
|
|
10
|
+
export type FeatureValidationOutputRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialFeatureValidationOutputRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): FeatureValidationOutputRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: FeatureValidationOutputRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: FeatureValidationOutputRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: FeatureValidationOutputRepresentation, existing: FeatureValidationOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureValidationOutputRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
18
|
+
export declare function equals(existing: FeatureValidationOutputRepresentationNormalized, incoming: FeatureValidationOutputRepresentationNormalized): boolean;
|
|
19
|
+
export declare function deepFreeze(input: FeatureValidationOutputRepresentation): void;
|
|
20
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureValidationOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
22
|
+
/**
|
|
23
|
+
* FeatureValidation output.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* isSuccess (boolean): isSuccess
|
|
27
|
+
*/
|
|
28
|
+
export interface FeatureValidationOutputRepresentationNormalized {
|
|
29
|
+
/** Get FeatureValidation error messages */
|
|
30
|
+
errorMessage?: string;
|
|
31
|
+
/** Holds BPO name, bpoRecordId, select fields from the bpo and related error message. */
|
|
32
|
+
featureValidationOutputDetails: Array<FeatureValidationOutputDetailsRepresentation_FeatureValidationOutputDetailsRepresentation>;
|
|
33
|
+
/** Get FeatureValidation success flag */
|
|
34
|
+
isSuccess: boolean;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* FeatureValidation output.
|
|
38
|
+
*
|
|
39
|
+
* Keys:
|
|
40
|
+
* isSuccess (boolean): isSuccess
|
|
41
|
+
*/
|
|
42
|
+
export interface FeatureValidationOutputRepresentation {
|
|
43
|
+
errorMessage?: string;
|
|
44
|
+
featureValidationOutputDetails: Array<FeatureValidationOutputDetailsRepresentation_FeatureValidationOutputDetailsRepresentation>;
|
|
45
|
+
isSuccess: boolean;
|
|
46
|
+
}
|