@salesforce/lds-adapters-service-einsteinllm 1.204.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.
Files changed (27) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/service-einsteinllm.js +981 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +60 -0
  4. package/dist/es/es2018/types/src/generated/adapters/createGenerateMessages.d.ts +15 -0
  5. package/dist/es/es2018/types/src/generated/adapters/createGenerateMessagesForPromptTemplate.d.ts +16 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -0
  8. package/dist/es/es2018/types/src/generated/resources/postEinsteinLlmPromptGenerations.d.ts +13 -0
  9. package/dist/es/es2018/types/src/generated/resources/postEinsteinPromptTemplatesGenerationsByPromptTemplateDevName.d.ts +16 -0
  10. package/dist/es/es2018/types/src/generated/types/EinsteinLlmAdditionalConfigInputRepresentation.d.ts +59 -0
  11. package/dist/es/es2018/types/src/generated/types/EinsteinLlmGenerationItemRepresentation.d.ts +31 -0
  12. package/dist/es/es2018/types/src/generated/types/EinsteinLlmGenerationsInputRepresentation.d.ts +35 -0
  13. package/dist/es/es2018/types/src/generated/types/EinsteinLlmGenerationsInputWrapperRepresentation.d.ts +28 -0
  14. package/dist/es/es2018/types/src/generated/types/EinsteinLlmGenerationsRepresentation.d.ts +49 -0
  15. package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateGenerationsInputRepresentation.d.ts +39 -0
  16. package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateGenerationsInputWrapperRepresentation.d.ts +28 -0
  17. package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateGenerationsRepresentation.d.ts +52 -0
  18. package/dist/es/es2018/types/src/generated/types/WrappedListString.d.ts +28 -0
  19. package/dist/es/es2018/types/src/generated/types/WrappedMap.d.ts +32 -0
  20. package/dist/es/es2018/types/src/generated/types/WrappedValue.d.ts +28 -0
  21. package/dist/es/es2018/types/src/generated/types/WrappedValueMap.d.ts +32 -0
  22. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  23. package/package.json +68 -0
  24. package/sfdc/index.d.ts +1 -0
  25. package/sfdc/index.js +1011 -0
  26. package/src/raml/api.raml +275 -0
  27. package/src/raml/luvio.raml +27 -0
@@ -0,0 +1,60 @@
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
+ }, ObjectCreate: {
7
+ (o: object | null): any;
8
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
9
+ };
10
+ export { ObjectCreate, ObjectKeys };
11
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
12
+ export declare const ArrayPrototypePush: (...items: any[]) => number;
13
+ export interface AdapterValidationConfig {
14
+ displayName: string;
15
+ parameters: {
16
+ required: string[];
17
+ optional: string[];
18
+ unsupported?: string[];
19
+ };
20
+ }
21
+ /**
22
+ * Validates an adapter config is well-formed.
23
+ * @param config The config to validate.
24
+ * @param adapter The adapter validation configuration.
25
+ * @param oneOf The keys the config must contain at least one of.
26
+ * @throws A TypeError if config doesn't satisfy the adapter's config validation.
27
+ */
28
+ export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
29
+ export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
30
+ export type UncoercedConfiguration<Base, Options extends {
31
+ [key in keyof Base]?: any;
32
+ }> = {
33
+ [Key in keyof Base]?: Base[Key] | Options[Key];
34
+ };
35
+ export type Untrusted<Base> = Partial<Base>;
36
+ export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
37
+ export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
38
+ export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
39
+ export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
40
+ export declare const snapshotRefreshOptions: {
41
+ overrides: {
42
+ headers: {
43
+ 'Cache-Control': string;
44
+ };
45
+ };
46
+ };
47
+ /**
48
+ * A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
49
+ * This is needed because insertion order for JSON.stringify(object) affects output:
50
+ * JSON.stringify({a: 1, b: 2})
51
+ * "{"a":1,"b":2}"
52
+ * JSON.stringify({b: 2, a: 1})
53
+ * "{"b":2,"a":1}"
54
+ * @param data Data to be JSON-stringified.
55
+ * @returns JSON.stringified value with consistent ordering of keys.
56
+ */
57
+ export declare function stableJSONStringify(node: any): string | undefined;
58
+ export declare function getFetchResponseStatusText(status: number): string;
59
+ export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
60
+ export declare const keyPrefix = "EinsteinLLM";
@@ -0,0 +1,15 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { EinsteinLlmGenerationsInputRepresentation as types_EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation } from '../types/EinsteinLlmGenerationsInputRepresentation';
3
+ import { ResourceRequestConfig as resources_postEinsteinLlmPromptGenerations_ResourceRequestConfig } from '../resources/postEinsteinLlmPromptGenerations';
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 { EinsteinLlmGenerationsRepresentation as types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation } from '../types/EinsteinLlmGenerationsRepresentation';
6
+ export declare const adapterName = "createGenerateMessages";
7
+ export declare const createGenerateMessages_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface CreateGenerateMessagesConfig {
9
+ generationsInput: types_EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation;
10
+ }
11
+ export declare function createResourceParams(config: CreateGenerateMessagesConfig): resources_postEinsteinLlmPromptGenerations_ResourceRequestConfig;
12
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateGenerateMessagesConfig>): adapter$45$utils_Untrusted<CreateGenerateMessagesConfig>;
13
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateGenerateMessagesConfig | null;
14
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateGenerateMessagesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation, any>>;
15
+ export declare const createGenerateMessagesAdapterFactory: $64$luvio_engine_AdapterFactory<CreateGenerateMessagesConfig, types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation>;
@@ -0,0 +1,16 @@
1
+ import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
2
+ import { EinsteinPromptTemplateGenerationsInputRepresentation as types_EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation } from '../types/EinsteinPromptTemplateGenerationsInputRepresentation';
3
+ import { ResourceRequestConfig as resources_postEinsteinPromptTemplatesGenerationsByPromptTemplateDevName_ResourceRequestConfig } from '../resources/postEinsteinPromptTemplatesGenerationsByPromptTemplateDevName';
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 { EinsteinPromptTemplateGenerationsRepresentation as types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation } from '../types/EinsteinPromptTemplateGenerationsRepresentation';
6
+ export declare const adapterName = "createGenerateMessagesForPromptTemplate";
7
+ export declare const createGenerateMessagesForPromptTemplate_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface CreateGenerateMessagesForPromptTemplateConfig {
9
+ promptTemplateDevName: string;
10
+ promptTemplateGenerationsInput: types_EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation;
11
+ }
12
+ export declare function createResourceParams(config: CreateGenerateMessagesForPromptTemplateConfig): resources_postEinsteinPromptTemplatesGenerationsByPromptTemplateDevName_ResourceRequestConfig;
13
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateGenerateMessagesForPromptTemplateConfig>): adapter$45$utils_Untrusted<CreateGenerateMessagesForPromptTemplateConfig>;
14
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateGenerateMessagesForPromptTemplateConfig | null;
15
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateGenerateMessagesForPromptTemplateConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation, any>>;
16
+ export declare const createGenerateMessagesForPromptTemplateAdapterFactory: $64$luvio_engine_AdapterFactory<CreateGenerateMessagesForPromptTemplateConfig, types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation>;
@@ -0,0 +1,2 @@
1
+ export { createGenerateMessagesAdapterFactory } from '../adapters/createGenerateMessages';
2
+ export { createGenerateMessagesForPromptTemplateAdapterFactory } from '../adapters/createGenerateMessagesForPromptTemplate';
@@ -0,0 +1,3 @@
1
+ declare let createGenerateMessages: any;
2
+ declare let createGenerateMessagesForPromptTemplate: any;
3
+ export { createGenerateMessages, createGenerateMessagesForPromptTemplate, };
@@ -0,0 +1,13 @@
1
+ import { EinsteinLlmGenerationsInputRepresentation as types_EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation } from '../types/EinsteinLlmGenerationsInputRepresentation';
2
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, 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 { EinsteinLlmGenerationsRepresentation as types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation } from '../types/EinsteinLlmGenerationsRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ body: {
6
+ generationsInput: types_EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation;
7
+ };
8
+ }
9
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
10
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation): void;
11
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_EinsteinLlmGenerationsRepresentation_EinsteinLlmGenerationsRepresentation, any>;
12
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
13
+ export default createResourceRequest;
@@ -0,0 +1,16 @@
1
+ import { EinsteinPromptTemplateGenerationsInputRepresentation as types_EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation } from '../types/EinsteinPromptTemplateGenerationsInputRepresentation';
2
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, 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 { EinsteinPromptTemplateGenerationsRepresentation as types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation } from '../types/EinsteinPromptTemplateGenerationsRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ urlParams: {
6
+ promptTemplateDevName: string;
7
+ };
8
+ body: {
9
+ promptTemplateGenerationsInput: types_EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation;
10
+ };
11
+ }
12
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
13
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation): void;
14
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_EinsteinPromptTemplateGenerationsRepresentation_EinsteinPromptTemplateGenerationsRepresentation, any>;
15
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
16
+ export default createResourceRequest;
@@ -0,0 +1,59 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "9c88636788b841dfdd0ee1eb2f5ff8a3";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinLlmAdditionalConfigInputRepresentation, existing: EinsteinLlmAdditionalConfigInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmAdditionalConfigInputRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinLlmAdditionalConfigInputRepresentationNormalized, incoming: EinsteinLlmAdditionalConfigInputRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmAdditionalConfigInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Input representation for additional configurations for Einstein LLM generations
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinLlmAdditionalConfigInputRepresentationNormalized {
17
+ /** Dictionary of any other parameters that are required by the specific provider. The values will be passed as is to the provider. This is to allow parameters that are unique to each provider to be specified as part of the request. */
18
+ additionalParameters?: {
19
+ [key: string]: {};
20
+ };
21
+ /** Salesforce Hawking Application Name */
22
+ applicationName?: string;
23
+ /** Whether to mask PII for this request. Defaults is provider specific. */
24
+ enablePiiMasking?: boolean;
25
+ /** Defaults to 0.0, min value of 0.0, max value of 1.0. Can be used to reduce repetitiveness of generated tokens. The higher the value, the stronger a penalty is applied to previously present tokens, proportional to how many times they have already appeared in the prompt or prior generation. */
26
+ frequencyPenalty?: number;
27
+ /** Maximum number of tokens to be generated */
28
+ maxTokens?: number;
29
+ /** The model to be used for the generations request. Defaults to provider specific model. */
30
+ model?: string;
31
+ /** Number of completions to be generated for this prompt */
32
+ numGenerations?: number;
33
+ /** Defaults to 0.0, min value of 0.0, max value of 1.0. Can be used to reduce repetitiveness of generated tokens. Similar to frequency_penalty, except that this penalty is applied equally to all tokens that have already appeared, regardless of their exact frequencies. */
34
+ presencePenalty?: number;
35
+ /** The generated text will be cut at the end of the earliest occurence of a stop sequence. */
36
+ stopSequences?: Array<string>;
37
+ /** Sampling temperature to be used. Higher values means the model will take more risks. Lower temperatures mean less random generations. Min value of 0 and max value of 1.0 */
38
+ temperature?: number;
39
+ }
40
+ /**
41
+ * Input representation for additional configurations for Einstein LLM generations
42
+ *
43
+ * Keys:
44
+ * (none)
45
+ */
46
+ export interface EinsteinLlmAdditionalConfigInputRepresentation {
47
+ additionalParameters?: {
48
+ [key: string]: {};
49
+ };
50
+ applicationName?: string;
51
+ enablePiiMasking?: boolean;
52
+ frequencyPenalty?: number;
53
+ maxTokens?: number;
54
+ model?: string;
55
+ numGenerations?: number;
56
+ presencePenalty?: number;
57
+ stopSequences?: Array<string>;
58
+ temperature?: number;
59
+ }
@@ -0,0 +1,31 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "e87ca68f9dcf9550fb4dc9fd91df91ae";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: EinsteinLlmGenerationItemRepresentation, existing: EinsteinLlmGenerationItemRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationItemRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: EinsteinLlmGenerationItemRepresentationNormalized, incoming: EinsteinLlmGenerationItemRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmGenerationItemRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Output of a einstein llm generation item response
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface EinsteinLlmGenerationItemRepresentationNormalized {
17
+ /** Any provider specific attributes will be included as part of this object */
18
+ parameters: string;
19
+ /** Text */
20
+ text: string;
21
+ }
22
+ /**
23
+ * Output of a einstein llm generation item response
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface EinsteinLlmGenerationItemRepresentation {
29
+ parameters: string;
30
+ text: string;
31
+ }
@@ -0,0 +1,35 @@
1
+ import { EinsteinLlmAdditionalConfigInputRepresentation as EinsteinLlmAdditionalConfigInputRepresentation_EinsteinLlmAdditionalConfigInputRepresentation } from './EinsteinLlmAdditionalConfigInputRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "65f576fc6fd3a5305a45ec9144cc60b2";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: EinsteinLlmGenerationsInputRepresentation, existing: EinsteinLlmGenerationsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationsInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: EinsteinLlmGenerationsInputRepresentationNormalized, incoming: EinsteinLlmGenerationsInputRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmGenerationsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Input representation for generating responses with Einstein LLM
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface EinsteinLlmGenerationsInputRepresentationNormalized {
18
+ /** Additional configuration to fine tune model parameters */
19
+ additionalConfig?: EinsteinLlmAdditionalConfigInputRepresentation_EinsteinLlmAdditionalConfigInputRepresentation;
20
+ /** Represents the promptTextorId or text to be completed. */
21
+ promptTextorId: string;
22
+ /** LLM Provider */
23
+ provider?: string;
24
+ }
25
+ /**
26
+ * Input representation for generating responses with Einstein LLM
27
+ *
28
+ * Keys:
29
+ * (none)
30
+ */
31
+ export interface EinsteinLlmGenerationsInputRepresentation {
32
+ additionalConfig?: EinsteinLlmAdditionalConfigInputRepresentation_EinsteinLlmAdditionalConfigInputRepresentation;
33
+ promptTextorId: string;
34
+ provider?: string;
35
+ }
@@ -0,0 +1,28 @@
1
+ import { EinsteinLlmGenerationsInputRepresentation as EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation } from './EinsteinLlmGenerationsInputRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "f0da83ffe3f1b23666390735ca82f6f1";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: EinsteinLlmGenerationsInputWrapperRepresentation, existing: EinsteinLlmGenerationsInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationsInputWrapperRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: EinsteinLlmGenerationsInputWrapperRepresentationNormalized, incoming: EinsteinLlmGenerationsInputWrapperRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmGenerationsInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Input wrapper for generations input representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface EinsteinLlmGenerationsInputWrapperRepresentationNormalized {
18
+ generationsInput: EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation;
19
+ }
20
+ /**
21
+ * Input wrapper for generations input representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface EinsteinLlmGenerationsInputWrapperRepresentation {
27
+ generationsInput: EinsteinLlmGenerationsInputRepresentation_EinsteinLlmGenerationsInputRepresentation;
28
+ }
@@ -0,0 +1,49 @@
1
+ import { EinsteinLlmGenerationItemRepresentation as EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation } from './EinsteinLlmGenerationItemRepresentation';
2
+ import { WrappedMap as WrappedMap_WrappedMap } from './WrappedMap';
3
+ 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';
4
+ export declare const TTL = 100;
5
+ export declare const VERSION = "d8abd72a42e842b253da1c38954dafbc";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
9
+ requestId: string;
10
+ }
11
+ export type EinsteinLlmGenerationsRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
12
+ export type PartialEinsteinLlmGenerationsRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): EinsteinLlmGenerationsRepresentationNormalizedKeyMetadata;
15
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: EinsteinLlmGenerationsRepresentation): string;
16
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: EinsteinLlmGenerationsRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function normalize(input: EinsteinLlmGenerationsRepresentation, existing: EinsteinLlmGenerationsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinLlmGenerationsRepresentationNormalized;
18
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
19
+ export declare function equals(existing: EinsteinLlmGenerationsRepresentationNormalized, incoming: EinsteinLlmGenerationsRepresentationNormalized): boolean;
20
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
21
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinLlmGenerationsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
22
+ /**
23
+ * Output of a einstein llm generations response
24
+ *
25
+ * Keys:
26
+ * requestId (string): requestId
27
+ */
28
+ export interface EinsteinLlmGenerationsRepresentationNormalized {
29
+ /** List of generated text */
30
+ generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
31
+ /** Any provider specific attributes will be included as part of this object */
32
+ parameters: WrappedMap_WrappedMap | null;
33
+ /** Prompt used for the generation */
34
+ prompt: string | null;
35
+ /** ID of the generation request */
36
+ requestId: string;
37
+ }
38
+ /**
39
+ * Output of a einstein llm generations response
40
+ *
41
+ * Keys:
42
+ * requestId (string): requestId
43
+ */
44
+ export interface EinsteinLlmGenerationsRepresentation {
45
+ generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
46
+ parameters: WrappedMap_WrappedMap | null;
47
+ prompt: string | null;
48
+ requestId: string;
49
+ }
@@ -0,0 +1,39 @@
1
+ import { EinsteinLlmAdditionalConfigInputRepresentation as EinsteinLlmAdditionalConfigInputRepresentation_EinsteinLlmAdditionalConfigInputRepresentation } from './EinsteinLlmAdditionalConfigInputRepresentation';
2
+ import { WrappedValueMap as WrappedValueMap_WrappedValueMap } from './WrappedValueMap';
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
4
+ export declare const VERSION = "8334d4ba5b617ae9ca9f82a1ab3a56dc";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: EinsteinPromptTemplateGenerationsInputRepresentation, existing: EinsteinPromptTemplateGenerationsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateGenerationsInputRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: EinsteinPromptTemplateGenerationsInputRepresentationNormalized, incoming: EinsteinPromptTemplateGenerationsInputRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateGenerationsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Input representation for generating prompt template responses with Einstein LLM
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface EinsteinPromptTemplateGenerationsInputRepresentationNormalized {
19
+ /** Additional configuration to fine tune model parameters */
20
+ additionalConfig?: EinsteinLlmAdditionalConfigInputRepresentation_EinsteinLlmAdditionalConfigInputRepresentation;
21
+ /** Dictionary of input parameters to generate prompt from prompt template. */
22
+ inputParams: WrappedValueMap_WrappedValueMap;
23
+ /** Whether to generate prompt template preview by resolving merge fields */
24
+ isPreview: boolean;
25
+ /** LLM Provider */
26
+ provider?: string;
27
+ }
28
+ /**
29
+ * Input representation for generating prompt template responses with Einstein LLM
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface EinsteinPromptTemplateGenerationsInputRepresentation {
35
+ additionalConfig?: EinsteinLlmAdditionalConfigInputRepresentation_EinsteinLlmAdditionalConfigInputRepresentation;
36
+ inputParams: WrappedValueMap_WrappedValueMap;
37
+ isPreview: boolean;
38
+ provider?: string;
39
+ }
@@ -0,0 +1,28 @@
1
+ import { EinsteinPromptTemplateGenerationsInputRepresentation as EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation } from './EinsteinPromptTemplateGenerationsInputRepresentation';
2
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "0aed7a000488d7cbb2dc18d8d5900f16";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: EinsteinPromptTemplateGenerationsInputWrapperRepresentation, existing: EinsteinPromptTemplateGenerationsInputWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateGenerationsInputWrapperRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: EinsteinPromptTemplateGenerationsInputWrapperRepresentationNormalized, incoming: EinsteinPromptTemplateGenerationsInputWrapperRepresentationNormalized): boolean;
9
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateGenerationsInputWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Input wrapper for prompt template generations input representation
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface EinsteinPromptTemplateGenerationsInputWrapperRepresentationNormalized {
18
+ promptTemplateGenerationsInput: EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation;
19
+ }
20
+ /**
21
+ * Input wrapper for prompt template generations input representation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface EinsteinPromptTemplateGenerationsInputWrapperRepresentation {
27
+ promptTemplateGenerationsInput: EinsteinPromptTemplateGenerationsInputRepresentation_EinsteinPromptTemplateGenerationsInputRepresentation;
28
+ }
@@ -0,0 +1,52 @@
1
+ import { EinsteinLlmGenerationItemRepresentation as EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation } from './EinsteinLlmGenerationItemRepresentation';
2
+ import { WrappedMap as WrappedMap_WrappedMap } from './WrappedMap';
3
+ 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';
4
+ export declare const TTL = 100;
5
+ export declare const VERSION = "72c96c11855d430a55c0a79c239c0838";
6
+ export declare function validate(obj: any, path?: string): TypeError | null;
7
+ export declare const RepresentationType: string;
8
+ export interface KeyParams extends $64$luvio_engine_KeyMetadata {
9
+ requestId: string;
10
+ }
11
+ export type EinsteinPromptTemplateGenerationsRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
12
+ export type PartialEinsteinPromptTemplateGenerationsRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): EinsteinPromptTemplateGenerationsRepresentationNormalizedKeyMetadata;
15
+ export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: EinsteinPromptTemplateGenerationsRepresentation): string;
16
+ export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: EinsteinPromptTemplateGenerationsRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
17
+ export declare function normalize(input: EinsteinPromptTemplateGenerationsRepresentation, existing: EinsteinPromptTemplateGenerationsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateGenerationsRepresentationNormalized;
18
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
19
+ export declare function equals(existing: EinsteinPromptTemplateGenerationsRepresentationNormalized, incoming: EinsteinPromptTemplateGenerationsRepresentationNormalized): boolean;
20
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
21
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateGenerationsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
22
+ /**
23
+ * Output of a einstein llm generations response for given prompt template
24
+ *
25
+ * Keys:
26
+ * requestId (string): requestId
27
+ */
28
+ export interface EinsteinPromptTemplateGenerationsRepresentationNormalized {
29
+ /** List of generated text */
30
+ generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
31
+ /** Any provider specific attributes will be included as part of this object */
32
+ parameters: WrappedMap_WrappedMap | null;
33
+ /** Prompt used for the generation */
34
+ prompt: string | null;
35
+ /** generated prompt template promptTemplateDevName */
36
+ promptTemplateDevName: string;
37
+ /** ID of the generation request */
38
+ requestId: string;
39
+ }
40
+ /**
41
+ * Output of a einstein llm generations response for given prompt template
42
+ *
43
+ * Keys:
44
+ * requestId (string): requestId
45
+ */
46
+ export interface EinsteinPromptTemplateGenerationsRepresentation {
47
+ generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
48
+ parameters: WrappedMap_WrappedMap | null;
49
+ prompt: string | null;
50
+ promptTemplateDevName: string;
51
+ requestId: string;
52
+ }
@@ -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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "36e0bc78478f06f83ff646da90591620";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WrappedListString, existing: WrappedListStringNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WrappedListStringNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WrappedListStringNormalized, incoming: WrappedListStringNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WrappedListString, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Wrapped list of String for use in Apex.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WrappedListStringNormalized {
17
+ /** wrappedListString */
18
+ wrappedListString: Array<string>;
19
+ }
20
+ /**
21
+ * Wrapped list of String for use in Apex.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface WrappedListString {
27
+ wrappedListString: Array<string>;
28
+ }
@@ -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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "4656c961c9d093a9e206c1db7d4de0b0";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WrappedMap, existing: WrappedMapNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WrappedMapNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WrappedMapNormalized, incoming: WrappedMapNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WrappedMap, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Wrapped map for use in Connect API.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WrappedMapNormalized {
17
+ /** wrapped map */
18
+ wrappedMap: {
19
+ [key: string]: {};
20
+ };
21
+ }
22
+ /**
23
+ * Wrapped map for use in Connect API.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WrappedMap {
29
+ wrappedMap: {
30
+ [key: string]: {};
31
+ };
32
+ }
@@ -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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "1859aca6e99b7492eb470463a950993c";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WrappedValue, existing: WrappedValueNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WrappedValueNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WrappedValueNormalized, incoming: WrappedValueNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WrappedValue, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Wrapped Object for use in Einstein LLM.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WrappedValueNormalized {
17
+ /** Value */
18
+ value: {};
19
+ }
20
+ /**
21
+ * Wrapped Object for use in Einstein LLM.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface WrappedValue {
27
+ value: {};
28
+ }
@@ -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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "1c947d6e476584a98dd28b6908476eee";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: WrappedValueMap, existing: WrappedValueMapNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): WrappedValueMapNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: WrappedValueMapNormalized, incoming: WrappedValueMapNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: WrappedValueMap, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Wrapped Map of Object for use in Apex.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface WrappedValueMapNormalized {
17
+ /** Wrapped Value Map */
18
+ valueMap: {
19
+ [key: string]: {};
20
+ };
21
+ }
22
+ /**
23
+ * Wrapped Map of Object for use in Apex.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface WrappedValueMap {
29
+ valueMap: {
30
+ [key: string]: {};
31
+ };
32
+ }