@salesforce/lds-adapters-industries-einstein-aiaccelerator 1.100.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/industries-einstein-aiaccelerator.js +3905 -0
  3. package/dist/types/src/generated/adapters/adapter-utils.d.ts +66 -0
  4. package/dist/types/src/generated/adapters/fetchRecommendations.d.ts +15 -0
  5. package/dist/types/src/generated/adapters/predictions.d.ts +15 -0
  6. package/dist/types/src/generated/artifacts/main.d.ts +2 -0
  7. package/dist/types/src/generated/artifacts/sfdc.d.ts +3 -0
  8. package/dist/types/src/generated/resources/postConnectAiacceleratorPredictions.d.ts +13 -0
  9. package/dist/types/src/generated/resources/postConnectAiacceleratorRecommendations.d.ts +13 -0
  10. package/dist/types/src/generated/types/Column.d.ts +38 -0
  11. package/dist/types/src/generated/types/ColumnMapWrap.d.ts +30 -0
  12. package/dist/types/src/generated/types/Error.d.ts +32 -0
  13. package/dist/types/src/generated/types/FeatureExtractionParametersList.d.ts +30 -0
  14. package/dist/types/src/generated/types/FeatureExtractionParametersMapValue.d.ts +30 -0
  15. package/dist/types/src/generated/types/Insight.d.ts +33 -0
  16. package/dist/types/src/generated/types/InsightsSettingsMap.d.ts +30 -0
  17. package/dist/types/src/generated/types/ModelFeature.d.ts +35 -0
  18. package/dist/types/src/generated/types/NullableColumnMap.d.ts +28 -0
  19. package/dist/types/src/generated/types/NullableFeatureExtractionParametersMapValue.d.ts +26 -0
  20. package/dist/types/src/generated/types/NullableInsightsSettingsMap.d.ts +28 -0
  21. package/dist/types/src/generated/types/NullableModel.d.ts +28 -0
  22. package/dist/types/src/generated/types/Prediction.d.ts +43 -0
  23. package/dist/types/src/generated/types/PredictionInputRepresentation.d.ts +106 -0
  24. package/dist/types/src/generated/types/PredictionInputWrapperRepresentation.d.ts +29 -0
  25. package/dist/types/src/generated/types/PredictionObject.d.ts +41 -0
  26. package/dist/types/src/generated/types/PredictionOutputRepresentation.d.ts +99 -0
  27. package/dist/types/src/generated/types/Prescription.d.ts +33 -0
  28. package/dist/types/src/generated/types/RawDataInputRepresentation.d.ts +29 -0
  29. package/dist/types/src/generated/types/RawDataInputWrap.d.ts +29 -0
  30. package/dist/types/src/generated/types/RawDataList.d.ts +30 -0
  31. package/dist/types/src/generated/types/RcmdStrategyResult.d.ts +46 -0
  32. package/dist/types/src/generated/types/Recommendation.d.ts +60 -0
  33. package/dist/types/src/generated/types/RecommendationActionParam.d.ts +35 -0
  34. package/dist/types/src/generated/types/RecommendationInputRepresentation.d.ts +54 -0
  35. package/dist/types/src/generated/types/RecommendationInputWrapperRepresentation.d.ts +29 -0
  36. package/dist/types/src/generated/types/RecommendationOutputRepresentation.d.ts +62 -0
  37. package/dist/types/src/generated/types/Status.d.ts +32 -0
  38. package/dist/types/src/generated/types/Suggestion.d.ts +33 -0
  39. package/dist/types/src/generated/types/WrappedList.d.ts +29 -0
  40. package/dist/types/src/generated/types/type-utils.d.ts +39 -0
  41. package/dist/umd/es2018/industries-einstein-aiaccelerator.js +3914 -0
  42. package/dist/umd/es5/industries-einstein-aiaccelerator.js +4056 -0
  43. package/package.json +66 -0
  44. package/sfdc/index.d.ts +1 -0
  45. package/sfdc/index.js +3935 -0
  46. package/src/raml/api.raml +705 -0
  47. package/src/raml/luvio.raml +31 -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 = "Einstein-AIAccelerator";
@@ -0,0 +1,15 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { RecommendationInputRepresentation as types_RecommendationInputRepresentation_RecommendationInputRepresentation } from '../types/RecommendationInputRepresentation';
3
+ import { ResourceRequestConfig as resources_postConnectAiacceleratorRecommendations_ResourceRequestConfig } from '../resources/postConnectAiacceleratorRecommendations';
4
+ import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
5
+ import { RecommendationOutputRepresentation as types_RecommendationOutputRepresentation_RecommendationOutputRepresentation } from '../types/RecommendationOutputRepresentation';
6
+ export declare const adapterName = "fetchRecommendations";
7
+ export declare const fetchRecommendations_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface FetchRecommendationsConfig {
9
+ recommendationInput: types_RecommendationInputRepresentation_RecommendationInputRepresentation;
10
+ }
11
+ export declare function createResourceParams(config: FetchRecommendationsConfig): resources_postConnectAiacceleratorRecommendations_ResourceRequestConfig;
12
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<FetchRecommendationsConfig>): adapter$45$utils_Untrusted<FetchRecommendationsConfig>;
13
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): FetchRecommendationsConfig | null;
14
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: FetchRecommendationsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation, any>>;
15
+ export declare const fetchRecommendationsAdapterFactory: $64$luvio_engine_AdapterFactory<FetchRecommendationsConfig, types_RecommendationOutputRepresentation_RecommendationOutputRepresentation>;
@@ -0,0 +1,15 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { PredictionInputRepresentation as types_PredictionInputRepresentation_PredictionInputRepresentation } from '../types/PredictionInputRepresentation';
3
+ import { ResourceRequestConfig as resources_postConnectAiacceleratorPredictions_ResourceRequestConfig } from '../resources/postConnectAiacceleratorPredictions';
4
+ import { Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
5
+ import { PredictionOutputRepresentation as types_PredictionOutputRepresentation_PredictionOutputRepresentation } from '../types/PredictionOutputRepresentation';
6
+ export declare const adapterName = "predictions";
7
+ export declare const predictions_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface PredictionsConfig {
9
+ predictionInput: types_PredictionInputRepresentation_PredictionInputRepresentation;
10
+ }
11
+ export declare function createResourceParams(config: PredictionsConfig): resources_postConnectAiacceleratorPredictions_ResourceRequestConfig;
12
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PredictionsConfig>): adapter$45$utils_Untrusted<PredictionsConfig>;
13
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PredictionsConfig | null;
14
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PredictionsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_PredictionOutputRepresentation_PredictionOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_PredictionOutputRepresentation_PredictionOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_PredictionOutputRepresentation_PredictionOutputRepresentation, any>>;
15
+ export declare const predictionsAdapterFactory: $64$luvio_engine_AdapterFactory<PredictionsConfig, types_PredictionOutputRepresentation_PredictionOutputRepresentation>;
@@ -0,0 +1,2 @@
1
+ export { predictionsAdapterFactory } from '../adapters/predictions';
2
+ export { fetchRecommendationsAdapterFactory } from '../adapters/fetchRecommendations';
@@ -0,0 +1,3 @@
1
+ declare let fetchRecommendations: any;
2
+ declare let predictions: any;
3
+ export { fetchRecommendations, predictions, };
@@ -0,0 +1,13 @@
1
+ import { PredictionInputRepresentation as types_PredictionInputRepresentation_PredictionInputRepresentation } from '../types/PredictionInputRepresentation';
2
+ 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';
3
+ import { PredictionOutputRepresentation as types_PredictionOutputRepresentation_PredictionOutputRepresentation } from '../types/PredictionOutputRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ body: {
6
+ predictionInput: types_PredictionInputRepresentation_PredictionInputRepresentation;
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_PredictionOutputRepresentation_PredictionOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PredictionOutputRepresentation_PredictionOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_PredictionOutputRepresentation_PredictionOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_PredictionOutputRepresentation_PredictionOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_PredictionOutputRepresentation_PredictionOutputRepresentation, any>;
12
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
13
+ export default createResourceRequest;
@@ -0,0 +1,13 @@
1
+ import { RecommendationInputRepresentation as types_RecommendationInputRepresentation_RecommendationInputRepresentation } from '../types/RecommendationInputRepresentation';
2
+ 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';
3
+ import { RecommendationOutputRepresentation as types_RecommendationOutputRepresentation_RecommendationOutputRepresentation } from '../types/RecommendationOutputRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ body: {
6
+ recommendationInput: types_RecommendationInputRepresentation_RecommendationInputRepresentation;
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_RecommendationOutputRepresentation_RecommendationOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_RecommendationOutputRepresentation_RecommendationOutputRepresentation, any>;
12
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
13
+ 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 = "891e4f58c988e1152f7da0ead81789af";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: Column, existing: ColumnNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ColumnNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ColumnNormalized, incoming: ColumnNormalized): boolean;
8
+ export declare function deepFreeze(input: Column): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: Column, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * .
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ColumnNormalized {
18
+ /** . */
19
+ columnLabel?: string | null;
20
+ /** . */
21
+ columnName?: string | null;
22
+ /** . */
23
+ columnValue?: string | null;
24
+ /** . */
25
+ initialValue?: string | null;
26
+ }
27
+ /**
28
+ * .
29
+ *
30
+ * Keys:
31
+ * (none)
32
+ */
33
+ export interface Column {
34
+ columnLabel?: string | null;
35
+ columnName?: string | null;
36
+ columnValue?: string | null;
37
+ initialValue?: string | null;
38
+ }
@@ -0,0 +1,30 @@
1
+ import { NullableColumnMap as NullableColumnMap_NullableColumnMap } from './NullableColumnMap';
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 = "39897a50b88c40101a148d8252475eb8";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: ColumnMapWrap, existing: ColumnMapWrapNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ColumnMapWrapNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: ColumnMapWrapNormalized, incoming: ColumnMapWrapNormalized): boolean;
9
+ export declare function deepFreeze(input: ColumnMapWrap): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ColumnMapWrap, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * ColumnMapWrap wrapper object for use in PredictionInputRepresentation.
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ColumnMapWrapNormalized {
19
+ /** Map of the Field Map. */
20
+ columnMap: NullableColumnMap_NullableColumnMap | null;
21
+ }
22
+ /**
23
+ * ColumnMapWrap wrapper object for use in PredictionInputRepresentation.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ColumnMapWrap {
29
+ columnMap: NullableColumnMap_NullableColumnMap | null;
30
+ }
@@ -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 = "084d9246e8a459002bb171c4c8ca7e18";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: Error, existing: ErrorNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ErrorNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ErrorNormalized, incoming: ErrorNormalized): boolean;
8
+ export declare function deepFreeze(input: Error): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: Error, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * .
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ErrorNormalized {
18
+ /** The message that’s displayed for the error. */
19
+ message?: string | null;
20
+ /** The status code that indicates error. */
21
+ statusCode?: string | null;
22
+ }
23
+ /**
24
+ * .
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface Error {
30
+ message?: string | null;
31
+ statusCode?: string | null;
32
+ }
@@ -0,0 +1,30 @@
1
+ import { FeatureExtractionParametersMapValue as FeatureExtractionParametersMapValue_FeatureExtractionParametersMapValue } from './FeatureExtractionParametersMapValue';
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 = "e533b6f70967181f3409e9f4a3709f11";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: FeatureExtractionParametersList, existing: FeatureExtractionParametersListNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureExtractionParametersListNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: FeatureExtractionParametersListNormalized, incoming: FeatureExtractionParametersListNormalized): boolean;
9
+ export declare function deepFreeze(input: FeatureExtractionParametersList): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureExtractionParametersList, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * featureExtractionParametersList wrapper object for use in PredictionInputRepresentation.
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface FeatureExtractionParametersListNormalized {
19
+ /** FeatureExtractionParameters */
20
+ featureExtractionParameters?: Array<FeatureExtractionParametersMapValue_FeatureExtractionParametersMapValue | null>;
21
+ }
22
+ /**
23
+ * featureExtractionParametersList wrapper object for use in PredictionInputRepresentation.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface FeatureExtractionParametersList {
29
+ featureExtractionParameters?: Array<FeatureExtractionParametersMapValue_FeatureExtractionParametersMapValue | null>;
30
+ }
@@ -0,0 +1,30 @@
1
+ import { NullableFeatureExtractionParametersMapValue as NullableFeatureExtractionParametersMapValue_NullableFeatureExtractionParametersMapValue } from './NullableFeatureExtractionParametersMapValue';
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 = "f90960269723c2624d1ca3f129c1bae4";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: FeatureExtractionParametersMapValue, existing: FeatureExtractionParametersMapValueNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FeatureExtractionParametersMapValueNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: FeatureExtractionParametersMapValueNormalized, incoming: FeatureExtractionParametersMapValueNormalized): boolean;
9
+ export declare function deepFreeze(input: FeatureExtractionParametersMapValue): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FeatureExtractionParametersMapValue, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * featureExtractionParameterMapValue wrapper object for use as child wrapper of FeatureExtractionParametersMap.
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface FeatureExtractionParametersMapValueNormalized {
19
+ /** Map of the Field Map. */
20
+ featureExtractionParametersMapValue?: NullableFeatureExtractionParametersMapValue_NullableFeatureExtractionParametersMapValue | null;
21
+ }
22
+ /**
23
+ * featureExtractionParameterMapValue wrapper object for use as child wrapper of FeatureExtractionParametersMap.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface FeatureExtractionParametersMapValue {
29
+ featureExtractionParametersMapValue?: NullableFeatureExtractionParametersMapValue_NullableFeatureExtractionParametersMapValue | null;
30
+ }
@@ -0,0 +1,33 @@
1
+ import { Column as Column_Column } from './Column';
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 = "62f43071a3b1700b664f94821d9d5813";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: Insight, existing: InsightNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InsightNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: InsightNormalized, incoming: InsightNormalized): boolean;
9
+ export declare function deepFreeze(input: Insight): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: Insight, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * .
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface InsightNormalized {
19
+ /** . */
20
+ columns?: Array<Column_Column | null>;
21
+ /** . */
22
+ value?: number;
23
+ }
24
+ /**
25
+ * .
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface Insight {
31
+ columns?: Array<Column_Column | null>;
32
+ value?: number;
33
+ }
@@ -0,0 +1,30 @@
1
+ import { NullableInsightsSettingsMap as NullableInsightsSettingsMap_NullableInsightsSettingsMap } from './NullableInsightsSettingsMap';
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 = "d19a446831b94a8486f99ba7ddbe6bd0";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: InsightsSettingsMap, existing: InsightsSettingsMapNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): InsightsSettingsMapNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: InsightsSettingsMapNormalized, incoming: InsightsSettingsMapNormalized): boolean;
9
+ export declare function deepFreeze(input: InsightsSettingsMap): void;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InsightsSettingsMap, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * InsightsSettingsMap wrapper object for use in PredictionInputRepresentation.
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface InsightsSettingsMapNormalized {
19
+ /** insightsSettings */
20
+ insightsSettings?: NullableInsightsSettingsMap_NullableInsightsSettingsMap | null;
21
+ }
22
+ /**
23
+ * InsightsSettingsMap wrapper object for use in PredictionInputRepresentation.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface InsightsSettingsMap {
29
+ insightsSettings?: NullableInsightsSettingsMap_NullableInsightsSettingsMap | null;
30
+ }
@@ -0,0 +1,35 @@
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 = "2391d313628499ae91421820db631aad";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ModelFeature, existing: ModelFeatureNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ModelFeatureNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ModelFeatureNormalized, incoming: ModelFeatureNormalized): boolean;
8
+ export declare function deepFreeze(input: ModelFeature): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ModelFeature, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * .
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface ModelFeatureNormalized {
18
+ /** Model field label */
19
+ label?: string | null;
20
+ /** Model field name */
21
+ name?: string | null;
22
+ /** Model field type */
23
+ type?: string | null;
24
+ }
25
+ /**
26
+ * .
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface ModelFeature {
32
+ label?: string | null;
33
+ name?: string | null;
34
+ type?: string | null;
35
+ }
@@ -0,0 +1,28 @@
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 = "4d72a0be32c821912c7079c765253af6";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: NullableColumnMap, existing: NullableColumnMapNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NullableColumnMapNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: NullableColumnMapNormalized, incoming: NullableColumnMapNormalized): boolean;
8
+ export declare function deepFreeze(input: NullableColumnMap): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NullableColumnMap, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * ColumnMapWrap wrapper object for use in PredictionInputRepresentation.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface NullableColumnMapNormalized {
18
+ [key: string]: string | null;
19
+ }
20
+ /**
21
+ * ColumnMapWrap wrapper object for use in PredictionInputRepresentation.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface NullableColumnMap {
27
+ [key: string]: string | null;
28
+ }
@@ -0,0 +1,26 @@
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 = "93e96c7f3e0663306e7f4647cfd3c5f1";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: NullableFeatureExtractionParametersMapValue, existing: NullableFeatureExtractionParametersMapValueNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NullableFeatureExtractionParametersMapValueNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: NullableFeatureExtractionParametersMapValueNormalized, incoming: NullableFeatureExtractionParametersMapValueNormalized): boolean;
8
+ export declare function deepFreeze(input: NullableFeatureExtractionParametersMapValue): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NullableFeatureExtractionParametersMapValue, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Wrapper to make the object null
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface NullableFeatureExtractionParametersMapValueNormalized {
18
+ }
19
+ /**
20
+ * Wrapper to make the object null
21
+ *
22
+ * Keys:
23
+ * (none)
24
+ */
25
+ export interface NullableFeatureExtractionParametersMapValue {
26
+ }
@@ -0,0 +1,28 @@
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 = "a1bf7208ed8f8eaa8c3c3d8d7a49558d";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: NullableInsightsSettingsMap, existing: NullableInsightsSettingsMapNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NullableInsightsSettingsMapNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: NullableInsightsSettingsMapNormalized, incoming: NullableInsightsSettingsMapNormalized): boolean;
8
+ export declare function deepFreeze(input: NullableInsightsSettingsMap): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NullableInsightsSettingsMap, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * Wrapper for Nullable Map Object.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface NullableInsightsSettingsMapNormalized {
18
+ [key: string]: number | null;
19
+ }
20
+ /**
21
+ * Wrapper for Nullable Map Object.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface NullableInsightsSettingsMap {
27
+ [key: string]: number | null;
28
+ }
@@ -0,0 +1,28 @@
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 = "deb76ebadf836326b696ab39d3cbed7b";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: NullableModel, existing: NullableModelNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NullableModelNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: NullableModelNormalized, incoming: NullableModelNormalized): boolean;
8
+ export declare function deepFreeze(input: NullableModel): void;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: NullableModel, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
+ /**
12
+ * .
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface NullableModelNormalized {
18
+ [key: string]: string | null;
19
+ }
20
+ /**
21
+ * .
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface NullableModel {
27
+ [key: string]: string | null;
28
+ }
@@ -0,0 +1,43 @@
1
+ import { Insight as Insight_Insight } from './Insight';
2
+ import { Column as Column_Column } from './Column';
3
+ 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';
4
+ export declare const VERSION = "f2062ae8e5785cf390bf5879410b38c1";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: Prediction, existing: PredictionNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PredictionNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: PredictionNormalized, incoming: PredictionNormalized): boolean;
10
+ export declare function deepFreeze(input: Prediction): void;
11
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
12
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: Prediction, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
13
+ /**
14
+ * .
15
+ *
16
+ * Keys:
17
+ * (none)
18
+ */
19
+ export interface PredictionNormalized {
20
+ /** . */
21
+ historyRefPointScore?: number;
22
+ /** . */
23
+ insights?: Array<Insight_Insight | null>;
24
+ /** . */
25
+ missingColumns?: Array<string | null>;
26
+ /** . */
27
+ outOfBoundsColumns?: Array<Column_Column | null>;
28
+ /** . */
29
+ score?: number;
30
+ }
31
+ /**
32
+ * .
33
+ *
34
+ * Keys:
35
+ * (none)
36
+ */
37
+ export interface Prediction {
38
+ historyRefPointScore?: number;
39
+ insights?: Array<Insight_Insight | null>;
40
+ missingColumns?: Array<string | null>;
41
+ outOfBoundsColumns?: Array<Column_Column | null>;
42
+ score?: number;
43
+ }