@salesforce/lds-adapters-service-einsteinllm 1.332.0-dev2 → 1.332.0-dev21
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/service-einsteinllm.js +1071 -369
- package/dist/es/es2018/types/src/generated/adapters/getOutputLanguages.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/getPromptTemplate.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/resources/getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/getEinsteinPromptTemplatesByPromptTemplateDevName.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptRecordCollectionOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptRecordRepresentation.d.ts +6 -5
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateAttachmentRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateGenerationsRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateSupportedLanguageErrorRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateSupportedLanguageRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateVersionOutputLanguagesRepresentation.d.ts +43 -0
- package/package.json +4 -4
- package/sfdc/index.js +1024 -302
- package/src/raml/api.raml +109 -2
- package/src/raml/luvio.raml +15 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName_ResourceRequestConfig } from '../resources/getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName';
|
|
4
|
+
import { EinsteinPromptTemplateVersionOutputLanguagesRepresentation as types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation } from '../types/EinsteinPromptTemplateVersionOutputLanguagesRepresentation';
|
|
5
|
+
export declare const adapterName = "getOutputLanguages";
|
|
6
|
+
export declare const getOutputLanguages_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getOutputLanguages_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetOutputLanguagesConfig {
|
|
9
|
+
promptTemplateDevName: string;
|
|
10
|
+
useStandardVersion?: boolean;
|
|
11
|
+
versionId?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: GetOutputLanguagesConfig) => resources_getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName_ResourceRequestConfig;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetOutputLanguagesConfig>): adapter$45$utils_Untrusted<GetOutputLanguagesConfig>;
|
|
17
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetOutputLanguagesConfig | null;
|
|
18
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig): $64$luvio_engine_Snapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, any>;
|
|
20
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig, resourceParams: resources_getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, any>>;
|
|
21
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig, resourceParams: resources_getEinsteinPromptTemplateOutputLanguagesByPromptTemplateDevName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
22
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOutputLanguagesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, any>>;
|
|
23
|
+
export type BuildSnapshotContext = {
|
|
24
|
+
luvio: $64$luvio_engine_Luvio;
|
|
25
|
+
config: GetOutputLanguagesConfig;
|
|
26
|
+
};
|
|
27
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, any>>;
|
|
28
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation>): $64$luvio_engine_Snapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, any>;
|
|
29
|
+
export declare const getOutputLanguagesAdapterFactory: $64$luvio_engine_AdapterFactory<GetOutputLanguagesConfig, types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getEinsteinPromptTemplatesByPromptTemplateDevName_ResourceRequestConfig } from '../resources/getEinsteinPromptTemplatesByPromptTemplateDevName';
|
|
4
|
+
import { EinsteinPromptRecordRepresentation as types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation } from '../types/EinsteinPromptRecordRepresentation';
|
|
5
|
+
export declare const adapterName = "getPromptTemplate";
|
|
6
|
+
export declare const getPromptTemplate_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getPromptTemplate_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetPromptTemplateConfig {
|
|
9
|
+
promptTemplateDevName: string;
|
|
10
|
+
versionId?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetPromptTemplateConfig) => resources_getEinsteinPromptTemplatesByPromptTemplateDevName_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetPromptTemplateConfig>): adapter$45$utils_Untrusted<GetPromptTemplateConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetPromptTemplateConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig): $64$luvio_engine_Snapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig, resourceParams: resources_getEinsteinPromptTemplatesByPromptTemplateDevName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig, resourceParams: resources_getEinsteinPromptTemplatesByPromptTemplateDevName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetPromptTemplateConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetPromptTemplateConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation>): $64$luvio_engine_Snapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, any>;
|
|
28
|
+
export declare const getPromptTemplateAdapterFactory: $64$luvio_engine_AdapterFactory<GetPromptTemplateConfig, types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation>;
|
|
@@ -2,4 +2,6 @@ export { createEmbeddingsAdapterFactory } from '../adapters/createEmbeddings';
|
|
|
2
2
|
export { createFeedbackAdapterFactory } from '../adapters/createFeedback';
|
|
3
3
|
export { createGenerationsAdapterFactory } from '../adapters/createGenerations';
|
|
4
4
|
export { getPromptTemplatesAdapterFactory } from '../adapters/getPromptTemplates';
|
|
5
|
+
export { getPromptTemplateAdapterFactory } from '../adapters/getPromptTemplate';
|
|
5
6
|
export { createGenerationsForPromptTemplateAdapterFactory } from '../adapters/createGenerationsForPromptTemplate';
|
|
7
|
+
export { getOutputLanguagesAdapterFactory } from '../adapters/getOutputLanguages';
|
|
@@ -2,7 +2,11 @@ declare let createEmbeddings: any;
|
|
|
2
2
|
declare let createFeedback: any;
|
|
3
3
|
declare let createGenerations: any;
|
|
4
4
|
declare let createGenerationsForPromptTemplate: any;
|
|
5
|
+
declare let getOutputLanguages: any;
|
|
6
|
+
declare let getPromptTemplate: any;
|
|
5
7
|
declare let getPromptTemplates: any;
|
|
6
8
|
declare let createEmbeddings_imperative: any;
|
|
9
|
+
declare let getOutputLanguages_imperative: any;
|
|
10
|
+
declare let getPromptTemplate_imperative: any;
|
|
7
11
|
declare let getPromptTemplates_imperative: any;
|
|
8
|
-
export { createEmbeddings, createFeedback, createGenerations, createGenerationsForPromptTemplate, getPromptTemplates, createEmbeddings_imperative, getPromptTemplates_imperative, };
|
|
12
|
+
export { createEmbeddings, createFeedback, createGenerations, createGenerationsForPromptTemplate, getOutputLanguages, getPromptTemplate, getPromptTemplates, createEmbeddings_imperative, getOutputLanguages_imperative, getPromptTemplate_imperative, getPromptTemplates_imperative, };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { EinsteinPromptTemplateVersionOutputLanguagesRepresentation as types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation } from '../types/EinsteinPromptTemplateVersionOutputLanguagesRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
promptTemplateDevName: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
useStandardVersion?: boolean;
|
|
9
|
+
versionId?: string;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation): void;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation, any>;
|
|
17
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_EinsteinPromptTemplateVersionOutputLanguagesRepresentation_EinsteinPromptTemplateVersionOutputLanguagesRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { EinsteinPromptRecordRepresentation as types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation } from '../types/EinsteinPromptRecordRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
promptTemplateDevName: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
versionId?: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation, any>;
|
|
16
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
export default createResourceRequest;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EinsteinPromptRecordRepresentation as EinsteinPromptRecordRepresentation_EinsteinPromptRecordRepresentation } from './EinsteinPromptRecordRepresentation';
|
|
2
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
3
|
export declare const TTL = 100;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "5fd7b8a03d155ba601bcb4ee725e0893";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: EinsteinPromptRecordCollectionOutputRepresentation, existing: EinsteinPromptRecordCollectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptRecordCollectionOutputRepresentationNormalized;
|
|
@@ -19,7 +19,7 @@ export interface EinsteinPromptRecordCollectionOutputRepresentationNormalized {
|
|
|
19
19
|
/** hasMoreRecords */
|
|
20
20
|
hasMoreRecords: boolean;
|
|
21
21
|
/** List of prompt templates that are available for selection. */
|
|
22
|
-
promptRecords?: Array
|
|
22
|
+
promptRecords?: Array<$64$luvio_engine_StoreLink>;
|
|
23
23
|
/** totalPromptRecords */
|
|
24
24
|
totalPromptRecords: number;
|
|
25
25
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { EinsteinPromptRecordFieldRepresentation as EinsteinPromptRecordFieldRepresentation_EinsteinPromptRecordFieldRepresentation } from './EinsteinPromptRecordFieldRepresentation';
|
|
2
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store,
|
|
3
|
-
export declare const
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 100;
|
|
4
|
+
export declare const VERSION = "2d1628544b54fc1701aa9b4eff05127b";
|
|
4
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
6
|
export declare const RepresentationType: string;
|
|
6
7
|
export declare function normalize(input: EinsteinPromptRecordRepresentation, existing: EinsteinPromptRecordRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptRecordRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
9
|
export declare function equals(existing: EinsteinPromptRecordRepresentationNormalized, incoming: EinsteinPromptRecordRepresentationNormalized): boolean;
|
|
9
10
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
11
|
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptRecordRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
@@ -19,7 +20,7 @@ export interface EinsteinPromptRecordRepresentationNormalized {
|
|
|
19
20
|
apiName?: string;
|
|
20
21
|
/** Prompt Record ChildRelationships */
|
|
21
22
|
childRelationships?: {
|
|
22
|
-
[key: string]:
|
|
23
|
+
[key: string]: Array<$64$luvio_engine_StoreLink>;
|
|
23
24
|
};
|
|
24
25
|
/** GenAiPromptTemplate Fields */
|
|
25
26
|
fields?: {
|
|
@@ -37,7 +38,7 @@ export interface EinsteinPromptRecordRepresentationNormalized {
|
|
|
37
38
|
export interface EinsteinPromptRecordRepresentation {
|
|
38
39
|
apiName?: string;
|
|
39
40
|
childRelationships?: {
|
|
40
|
-
[key: string]: EinsteinPromptRecordRepresentation
|
|
41
|
+
[key: string]: Array<EinsteinPromptRecordRepresentation>;
|
|
41
42
|
};
|
|
42
43
|
fields?: {
|
|
43
44
|
[key: string]: EinsteinPromptRecordFieldRepresentation_EinsteinPromptRecordFieldRepresentation;
|
package/dist/es/es2018/types/src/generated/types/EinsteinPromptTemplateAttachmentRepresentation.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
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 = "70b3261d05a4bf7da95cd5cabe9bd785";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: EinsteinPromptTemplateAttachmentRepresentation, existing: EinsteinPromptTemplateAttachmentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateAttachmentRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: EinsteinPromptTemplateAttachmentRepresentationNormalized, incoming: EinsteinPromptTemplateAttachmentRepresentationNormalized): 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: EinsteinPromptTemplateAttachmentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Representation of file data for prompt template attachments
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface EinsteinPromptTemplateAttachmentRepresentationNormalized {
|
|
17
|
+
/** extension of the file attachment */
|
|
18
|
+
fileExtension: string;
|
|
19
|
+
/** ContentDocument Id of file attached to prompt template */
|
|
20
|
+
id: string;
|
|
21
|
+
/** ContentVersion of the latest published version of the file attachment */
|
|
22
|
+
latestPublishedVersion: string;
|
|
23
|
+
/** title of the attachment file */
|
|
24
|
+
title: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Representation of file data for prompt template attachments
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface EinsteinPromptTemplateAttachmentRepresentation {
|
|
33
|
+
fileExtension: string;
|
|
34
|
+
id: string;
|
|
35
|
+
latestPublishedVersion: string;
|
|
36
|
+
title: string;
|
|
37
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EinsteinPromptTemplateAttachmentRepresentation as EinsteinPromptTemplateAttachmentRepresentation_EinsteinPromptTemplateAttachmentRepresentation } from './EinsteinPromptTemplateAttachmentRepresentation';
|
|
1
2
|
import { EinsteinPromptTemplateGenerationsErrorRepresentation as EinsteinPromptTemplateGenerationsErrorRepresentation_EinsteinPromptTemplateGenerationsErrorRepresentation } from './EinsteinPromptTemplateGenerationsErrorRepresentation';
|
|
2
3
|
import { EinsteinLlmGenerationItemRepresentation as EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation } from './EinsteinLlmGenerationItemRepresentation';
|
|
3
4
|
import { WrappedMap as WrappedMap_WrappedMap } from './WrappedMap';
|
|
@@ -5,7 +6,7 @@ import { EinsteinPromptTemplateMaskContentRepresentation as EinsteinPromptTempla
|
|
|
5
6
|
import { EinsteinPromptTemplateMaskDataRepresentation as EinsteinPromptTemplateMaskDataRepresentation_EinsteinPromptTemplateMaskDataRepresentation } from './EinsteinPromptTemplateMaskDataRepresentation';
|
|
6
7
|
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';
|
|
7
8
|
export declare const TTL = 100;
|
|
8
|
-
export declare const VERSION = "
|
|
9
|
+
export declare const VERSION = "1beba5cc950346499a8f4810c77e2b03";
|
|
9
10
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
10
11
|
export declare const RepresentationType: string;
|
|
11
12
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -29,6 +30,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
29
30
|
* requestId (string): requestId
|
|
30
31
|
*/
|
|
31
32
|
export interface EinsteinPromptTemplateGenerationsRepresentationNormalized {
|
|
33
|
+
/** file info of the input files used in generation */
|
|
34
|
+
fileData?: Array<EinsteinPromptTemplateAttachmentRepresentation_EinsteinPromptTemplateAttachmentRepresentation>;
|
|
32
35
|
/** generated prompt template generationErrors */
|
|
33
36
|
generationErrors?: Array<EinsteinPromptTemplateGenerationsErrorRepresentation_EinsteinPromptTemplateGenerationsErrorRepresentation>;
|
|
34
37
|
/** List of generated text */
|
|
@@ -55,6 +58,7 @@ export interface EinsteinPromptTemplateGenerationsRepresentationNormalized {
|
|
|
55
58
|
* requestId (string): requestId
|
|
56
59
|
*/
|
|
57
60
|
export interface EinsteinPromptTemplateGenerationsRepresentation {
|
|
61
|
+
fileData?: Array<EinsteinPromptTemplateAttachmentRepresentation_EinsteinPromptTemplateAttachmentRepresentation>;
|
|
58
62
|
generationErrors?: Array<EinsteinPromptTemplateGenerationsErrorRepresentation_EinsteinPromptTemplateGenerationsErrorRepresentation>;
|
|
59
63
|
generations: Array<EinsteinLlmGenerationItemRepresentation_EinsteinLlmGenerationItemRepresentation>;
|
|
60
64
|
parameters: WrappedMap_WrappedMap | null;
|
|
@@ -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 = "b513bbac1672327d8eaaf120660e94b5";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: EinsteinPromptTemplateSupportedLanguageErrorRepresentation, existing: EinsteinPromptTemplateSupportedLanguageErrorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateSupportedLanguageErrorRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: EinsteinPromptTemplateSupportedLanguageErrorRepresentationNormalized, incoming: EinsteinPromptTemplateSupportedLanguageErrorRepresentationNormalized): 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: EinsteinPromptTemplateSupportedLanguageErrorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Representation of an error encountered when returning the Prompt Template Version Supported Languages.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface EinsteinPromptTemplateSupportedLanguageErrorRepresentationNormalized {
|
|
17
|
+
/** Error message for this error */
|
|
18
|
+
errorMessage: string;
|
|
19
|
+
/** Message Code for this error. */
|
|
20
|
+
messageCode: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Representation of an error encountered when returning the Prompt Template Version Supported Languages.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface EinsteinPromptTemplateSupportedLanguageErrorRepresentation {
|
|
29
|
+
errorMessage: string;
|
|
30
|
+
messageCode: string;
|
|
31
|
+
}
|
|
@@ -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 = "65a17d345c28eeca91872a73d8ffe9fd";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: EinsteinPromptTemplateSupportedLanguageRepresentation, existing: EinsteinPromptTemplateSupportedLanguageRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateSupportedLanguageRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: EinsteinPromptTemplateSupportedLanguageRepresentationNormalized, incoming: EinsteinPromptTemplateSupportedLanguageRepresentationNormalized): 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: EinsteinPromptTemplateSupportedLanguageRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Representation of a single Prompt Template Version Supported Language
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface EinsteinPromptTemplateSupportedLanguageRepresentationNormalized {
|
|
17
|
+
/** Language Code */
|
|
18
|
+
languageCode: string;
|
|
19
|
+
/** Language Display Name */
|
|
20
|
+
languageDisplayName: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Representation of a single Prompt Template Version Supported Language
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface EinsteinPromptTemplateSupportedLanguageRepresentation {
|
|
29
|
+
languageCode: string;
|
|
30
|
+
languageDisplayName: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EinsteinPromptTemplateSupportedLanguageErrorRepresentation as EinsteinPromptTemplateSupportedLanguageErrorRepresentation_EinsteinPromptTemplateSupportedLanguageErrorRepresentation } from './EinsteinPromptTemplateSupportedLanguageErrorRepresentation';
|
|
2
|
+
import { EinsteinPromptTemplateSupportedLanguageRepresentation as EinsteinPromptTemplateSupportedLanguageRepresentation_EinsteinPromptTemplateSupportedLanguageRepresentation } from './EinsteinPromptTemplateSupportedLanguageRepresentation';
|
|
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 TTL = 100;
|
|
5
|
+
export declare const VERSION = "c635f260bce9a11f7c3bf31d60f42b53";
|
|
6
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
|
+
export declare const RepresentationType: string;
|
|
8
|
+
export declare function normalize(input: EinsteinPromptTemplateVersionOutputLanguagesRepresentation, existing: EinsteinPromptTemplateVersionOutputLanguagesRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): EinsteinPromptTemplateVersionOutputLanguagesRepresentationNormalized;
|
|
9
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
10
|
+
export declare function equals(existing: EinsteinPromptTemplateVersionOutputLanguagesRepresentationNormalized, incoming: EinsteinPromptTemplateVersionOutputLanguagesRepresentationNormalized): boolean;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: EinsteinPromptTemplateVersionOutputLanguagesRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
13
|
+
/**
|
|
14
|
+
* Representation of all supported output languages for a given Prompt Template Version
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface EinsteinPromptTemplateVersionOutputLanguagesRepresentationNormalized {
|
|
20
|
+
/** Supported Language Errors */
|
|
21
|
+
errors: Array<EinsteinPromptTemplateSupportedLanguageErrorRepresentation_EinsteinPromptTemplateSupportedLanguageErrorRepresentation>;
|
|
22
|
+
/** Did this call succeed or not. */
|
|
23
|
+
isSuccess: boolean;
|
|
24
|
+
/** Prompt Template Developer Name */
|
|
25
|
+
promptTemplateDevName: string;
|
|
26
|
+
/** Supported Languages */
|
|
27
|
+
supportedLanguages: Array<EinsteinPromptTemplateSupportedLanguageRepresentation_EinsteinPromptTemplateSupportedLanguageRepresentation>;
|
|
28
|
+
/** Prompt Template Version Id */
|
|
29
|
+
versionId: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Representation of all supported output languages for a given Prompt Template Version
|
|
33
|
+
*
|
|
34
|
+
* Keys:
|
|
35
|
+
* (none)
|
|
36
|
+
*/
|
|
37
|
+
export interface EinsteinPromptTemplateVersionOutputLanguagesRepresentation {
|
|
38
|
+
errors: Array<EinsteinPromptTemplateSupportedLanguageErrorRepresentation_EinsteinPromptTemplateSupportedLanguageErrorRepresentation>;
|
|
39
|
+
isSuccess: boolean;
|
|
40
|
+
promptTemplateDevName: string;
|
|
41
|
+
supportedLanguages: Array<EinsteinPromptTemplateSupportedLanguageRepresentation_EinsteinPromptTemplateSupportedLanguageRepresentation>;
|
|
42
|
+
versionId: string;
|
|
43
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-einsteinllm",
|
|
3
|
-
"version": "1.332.0-
|
|
3
|
+
"version": "1.332.0-dev21",
|
|
4
4
|
"description": "Connect family for Einstein LLM generations",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/service-einsteinllm.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest --config=./jest.config.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.332.0-
|
|
47
|
+
"@salesforce/lds-bindings": "^1.332.0-dev21"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.332.0-
|
|
51
|
-
"@salesforce/lds-karma": "^1.332.0-
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.332.0-dev21",
|
|
51
|
+
"@salesforce/lds-karma": "^1.332.0-dev21"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|