@salesforce/lds-adapters-service-einstein-copilot-bot 1.287.0-dev14 → 1.287.0-dev16

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.
@@ -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 { FollowUpActionsInputRepresentation as types_FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation } from '../types/FollowUpActionsInputRepresentation';
4
+ import { ResourceRequestConfig as resources_postConnectFollowUpActions_ResourceRequestConfig } from '../resources/postConnectFollowUpActions';
5
+ import { CopilotFollowUpActionsRepresentation as types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation } from '../types/CopilotFollowUpActionsRepresentation';
6
+ export declare const adapterName = "getFollowUpActions";
7
+ export declare const getFollowUpActions_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
8
+ export declare const getFollowUpActions_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
9
+ export interface GetFollowUpActionsConfig {
10
+ language?: string;
11
+ followUpActionsInputs: Array<types_FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation>;
12
+ }
13
+ export declare const createResourceParams: (config: GetFollowUpActionsConfig) => resources_postConnectFollowUpActions_ResourceRequestConfig;
14
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig): string;
15
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig): $64$luvio_engine_NormalizedKeyMetadata;
16
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetFollowUpActionsConfig>): adapter$45$utils_Untrusted<GetFollowUpActionsConfig>;
17
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetFollowUpActionsConfig | null;
18
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig): $64$luvio_engine_Fragment;
19
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig): $64$luvio_engine_Snapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, any>;
20
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig, resourceParams: resources_postConnectFollowUpActions_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, any>>;
21
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig, resourceParams: resources_postConnectFollowUpActions_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
22
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetFollowUpActionsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, any>>;
23
+ export type BuildSnapshotContext = {
24
+ luvio: $64$luvio_engine_Luvio;
25
+ config: GetFollowUpActionsConfig;
26
+ };
27
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, any>>;
28
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation>): $64$luvio_engine_Snapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, any>;
29
+ export declare const getFollowUpActionsAdapterFactory: $64$luvio_engine_AdapterFactory<GetFollowUpActionsConfig, types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation>;
@@ -2,4 +2,5 @@ export { getBotIdAdapterFactory } from '../adapters/getBotId';
2
2
  export { sendMessageAdapterFactory } from '../adapters/sendMessage';
3
3
  export { getRecommendedPlanTemplatesAdapterFactory } from '../adapters/getRecommendedPlanTemplates';
4
4
  export { submitFeedbackAdapterFactory } from '../adapters/submitFeedback';
5
+ export { getFollowUpActionsAdapterFactory } from '../adapters/getFollowUpActions';
5
6
  export { getRecommendedActionsAdapterFactory } from '../adapters/getRecommendedActions';
@@ -1,9 +1,11 @@
1
1
  declare let getBotId: any;
2
+ declare let getFollowUpActions: any;
2
3
  declare let getRecommendedActions: any;
3
4
  declare let getRecommendedPlanTemplates: any;
4
5
  declare let sendMessage: any;
5
6
  declare let submitFeedback: any;
6
7
  declare let getBotId_imperative: any;
8
+ declare let getFollowUpActions_imperative: any;
7
9
  declare let getRecommendedActions_imperative: any;
8
10
  declare let getRecommendedPlanTemplates_imperative: any;
9
- export { getBotId, getRecommendedActions, getRecommendedPlanTemplates, sendMessage, submitFeedback, getBotId_imperative, getRecommendedActions_imperative, getRecommendedPlanTemplates_imperative, };
11
+ export { getBotId, getFollowUpActions, getRecommendedActions, getRecommendedPlanTemplates, sendMessage, submitFeedback, getBotId_imperative, getFollowUpActions_imperative, getRecommendedActions_imperative, getRecommendedPlanTemplates_imperative, };
@@ -0,0 +1,17 @@
1
+ import { FollowUpActionsInputRepresentation as types_FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation } from '../types/FollowUpActionsInputRepresentation';
2
+ 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';
3
+ import { CopilotFollowUpActionsRepresentation as types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation } from '../types/CopilotFollowUpActionsRepresentation';
4
+ export interface ResourceRequestConfig {
5
+ body: {
6
+ language?: string;
7
+ followUpActionsInputs: Array<types_FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation>;
8
+ };
9
+ }
10
+ export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
11
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
12
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
13
+ export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation): void;
14
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation, any>;
15
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CopilotFollowUpActionsRepresentation_CopilotFollowUpActionsRepresentation>): $64$luvio_engine_ErrorSnapshot;
16
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
17
+ export default createResourceRequest;
@@ -0,0 +1,36 @@
1
+ import { FollowUpActionsRepresentation as FollowUpActionsRepresentation_FollowUpActionsRepresentation } from './FollowUpActionsRepresentation';
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 TTL = 900000;
4
+ export declare const VERSION = "280b43a12fefd5d1adb432fd664b7def";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: CopilotFollowUpActionsRepresentation, existing: CopilotFollowUpActionsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CopilotFollowUpActionsRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: CopilotFollowUpActionsRepresentationNormalized, incoming: CopilotFollowUpActionsRepresentationNormalized): 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: CopilotFollowUpActionsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Copilot FollowUp Actions resource output
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface CopilotFollowUpActionsRepresentationNormalized {
19
+ /** list of actions. position in this list matches position of query in input FollowUpActionsListInputRepresentation. nil unless isSuccess = true. */
20
+ actions: Array<FollowUpActionsRepresentation_FollowUpActionsRepresentation>;
21
+ /** optional error message. present only if isSuccess = false. */
22
+ errorMessage?: string;
23
+ /** indicates success or failure */
24
+ isSuccess: boolean;
25
+ }
26
+ /**
27
+ * Copilot FollowUp Actions resource output
28
+ *
29
+ * Keys:
30
+ * (none)
31
+ */
32
+ export interface CopilotFollowUpActionsRepresentation {
33
+ actions: Array<FollowUpActionsRepresentation_FollowUpActionsRepresentation>;
34
+ errorMessage?: string;
35
+ isSuccess: boolean;
36
+ }
@@ -0,0 +1,29 @@
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 = "681cc1256570292c1a12195b8d95adb1";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FollowUpActionsDesignConfigRepresentation, existing: FollowUpActionsDesignConfigRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsDesignConfigRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FollowUpActionsDesignConfigRepresentationNormalized, incoming: FollowUpActionsDesignConfigRepresentationNormalized): 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: FollowUpActionsDesignConfigRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * similar to ExperienceModelDesignConfigRendition
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FollowUpActionsDesignConfigRepresentationNormalized {
17
+ subViewDefinitions?: boolean;
18
+ target?: string;
19
+ }
20
+ /**
21
+ * similar to ExperienceModelDesignConfigRendition
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface FollowUpActionsDesignConfigRepresentation {
27
+ subViewDefinitions?: boolean;
28
+ target?: string;
29
+ }
@@ -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 = "1a56a897a6b725ab71964fdc9099b402";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FollowUpActionsFilterConfigRepresentation, existing: FollowUpActionsFilterConfigRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsFilterConfigRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FollowUpActionsFilterConfigRepresentationNormalized, incoming: FollowUpActionsFilterConfigRepresentationNormalized): 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: FollowUpActionsFilterConfigRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * similar to ExperienceModelFilterConfigRepresentation.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FollowUpActionsFilterConfigRepresentationNormalized {
17
+ /** list of fields */
18
+ propertyNames?: Array<string>;
19
+ }
20
+ /**
21
+ * similar to ExperienceModelFilterConfigRepresentation.
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface FollowUpActionsFilterConfigRepresentation {
27
+ propertyNames?: Array<string>;
28
+ }
@@ -0,0 +1,40 @@
1
+ import { FollowUpActionsDesignConfigRepresentation as FollowUpActionsDesignConfigRepresentation_FollowUpActionsDesignConfigRepresentation } from './FollowUpActionsDesignConfigRepresentation';
2
+ import { FollowUpActionsRenditionConfigRepresentation as FollowUpActionsRenditionConfigRepresentation_FollowUpActionsRenditionConfigRepresentation } from './FollowUpActionsRenditionConfigRepresentation';
3
+ import { FollowUpActionsSchemaConfigRepresentation as FollowUpActionsSchemaConfigRepresentation_FollowUpActionsSchemaConfigRepresentation } from './FollowUpActionsSchemaConfigRepresentation';
4
+ import { FollowUpActionsSourceDescriptorRepresentation as FollowUpActionsSourceDescriptorRepresentation_FollowUpActionsSourceDescriptorRepresentation } from './FollowUpActionsSourceDescriptorRepresentation';
5
+ 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';
6
+ export declare const VERSION = "2f59b5c4a07ba07277f2145ab6233d94";
7
+ export declare function validate(obj: any, path?: string): TypeError | null;
8
+ export declare const RepresentationType: string;
9
+ export declare function normalize(input: FollowUpActionsInputRepresentation, existing: FollowUpActionsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsInputRepresentationNormalized;
10
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
11
+ export declare function equals(existing: FollowUpActionsInputRepresentationNormalized, incoming: FollowUpActionsInputRepresentationNormalized): boolean;
12
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
13
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FollowUpActionsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
14
+ /**
15
+ * a query to EM getType for follow-up actions
16
+ *
17
+ * Keys:
18
+ * (none)
19
+ */
20
+ export interface FollowUpActionsInputRepresentationNormalized {
21
+ /** query descriptor for EM getType call */
22
+ descriptor: string;
23
+ designConfig?: FollowUpActionsDesignConfigRepresentation_FollowUpActionsDesignConfigRepresentation;
24
+ renditionConfig?: FollowUpActionsRenditionConfigRepresentation_FollowUpActionsRenditionConfigRepresentation;
25
+ schemaConfig?: FollowUpActionsSchemaConfigRepresentation_FollowUpActionsSchemaConfigRepresentation;
26
+ sourceDescriptor?: FollowUpActionsSourceDescriptorRepresentation_FollowUpActionsSourceDescriptorRepresentation;
27
+ }
28
+ /**
29
+ * a query to EM getType for follow-up actions
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface FollowUpActionsInputRepresentation {
35
+ descriptor: string;
36
+ designConfig?: FollowUpActionsDesignConfigRepresentation_FollowUpActionsDesignConfigRepresentation;
37
+ renditionConfig?: FollowUpActionsRenditionConfigRepresentation_FollowUpActionsRenditionConfigRepresentation;
38
+ schemaConfig?: FollowUpActionsSchemaConfigRepresentation_FollowUpActionsSchemaConfigRepresentation;
39
+ sourceDescriptor?: FollowUpActionsSourceDescriptorRepresentation_FollowUpActionsSourceDescriptorRepresentation;
40
+ }
@@ -0,0 +1,32 @@
1
+ import { FollowUpActionsInputRepresentation as FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation } from './FollowUpActionsInputRepresentation';
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 = "6d5c62ade2db09c703f4c8e77693ee35";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: FollowUpActionsListInputRepresentation, existing: FollowUpActionsListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsListInputRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: FollowUpActionsListInputRepresentationNormalized, incoming: FollowUpActionsListInputRepresentationNormalized): 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: FollowUpActionsListInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * top-level input type to FollowUp Actions endpoint
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface FollowUpActionsListInputRepresentationNormalized {
18
+ /** list of queries for actions */
19
+ followUpActionsInputs: Array<FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation>;
20
+ /** human language to localize to */
21
+ language?: string;
22
+ }
23
+ /**
24
+ * top-level input type to FollowUp Actions endpoint
25
+ *
26
+ * Keys:
27
+ * (none)
28
+ */
29
+ export interface FollowUpActionsListInputRepresentation {
30
+ followUpActionsInputs: Array<FollowUpActionsInputRepresentation_FollowUpActionsInputRepresentation>;
31
+ language?: string;
32
+ }
@@ -0,0 +1,29 @@
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 = "45b8461963a62b283a6cb7fff282b58e";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FollowUpActionsRenditionConfigRepresentation, existing: FollowUpActionsRenditionConfigRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsRenditionConfigRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FollowUpActionsRenditionConfigRepresentationNormalized, incoming: FollowUpActionsRenditionConfigRepresentationNormalized): 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: FollowUpActionsRenditionConfigRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * similar to ExperienceModelRenditiionConfigRendition
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FollowUpActionsRenditionConfigRepresentationNormalized {
17
+ subViewDefinitions?: boolean;
18
+ target?: string;
19
+ }
20
+ /**
21
+ * similar to ExperienceModelRenditiionConfigRendition
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface FollowUpActionsRenditionConfigRepresentation {
27
+ subViewDefinitions?: boolean;
28
+ target?: string;
29
+ }
@@ -0,0 +1,29 @@
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 = "f3b8da658dda1468e0357f1fad159c79";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FollowUpActionsRepresentation, existing: FollowUpActionsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FollowUpActionsRepresentationNormalized, incoming: FollowUpActionsRepresentationNormalized): 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: FollowUpActionsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * basic output item type of /connect/follow-up-actions endpoint
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FollowUpActionsRepresentationNormalized {
17
+ actions: unknown;
18
+ blockRenderers: unknown;
19
+ }
20
+ /**
21
+ * basic output item type of /connect/follow-up-actions endpoint
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface FollowUpActionsRepresentation {
27
+ actions: unknown;
28
+ blockRenderers: unknown;
29
+ }
@@ -0,0 +1,31 @@
1
+ import { FollowUpActionsFilterConfigRepresentation as FollowUpActionsFilterConfigRepresentation_FollowUpActionsFilterConfigRepresentation } from './FollowUpActionsFilterConfigRepresentation';
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 = "e634181c09ed446d8276bde59ed821df";
4
+ export declare function validate(obj: any, path?: string): TypeError | null;
5
+ export declare const RepresentationType: string;
6
+ export declare function normalize(input: FollowUpActionsSchemaConfigRepresentation, existing: FollowUpActionsSchemaConfigRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsSchemaConfigRepresentationNormalized;
7
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
8
+ export declare function equals(existing: FollowUpActionsSchemaConfigRepresentationNormalized, incoming: FollowUpActionsSchemaConfigRepresentationNormalized): 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: FollowUpActionsSchemaConfigRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * similar to ExperienceModelSchemaConfig
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface FollowUpActionsSchemaConfigRepresentationNormalized {
18
+ filterConfig?: FollowUpActionsFilterConfigRepresentation_FollowUpActionsFilterConfigRepresentation;
19
+ /** whether to include sub-schema definitions or not */
20
+ subSchemaDefinitions?: boolean;
21
+ }
22
+ /**
23
+ * similar to ExperienceModelSchemaConfig
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface FollowUpActionsSchemaConfigRepresentation {
29
+ filterConfig?: FollowUpActionsFilterConfigRepresentation_FollowUpActionsFilterConfigRepresentation;
30
+ subSchemaDefinitions?: boolean;
31
+ }
@@ -0,0 +1,29 @@
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 = "dabe5a9d66c8c47b36396825572e2ca5";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FollowUpActionsSourceDescriptorRepresentation, existing: FollowUpActionsSourceDescriptorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FollowUpActionsSourceDescriptorRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FollowUpActionsSourceDescriptorRepresentationNormalized, incoming: FollowUpActionsSourceDescriptorRepresentationNormalized): 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: FollowUpActionsSourceDescriptorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * similar to ExperienceModelSourceDescriptorRepresentation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FollowUpActionsSourceDescriptorRepresentationNormalized {
17
+ descriptor?: string;
18
+ propertyName?: string;
19
+ }
20
+ /**
21
+ * similar to ExperienceModelSourceDescriptorRepresentation
22
+ *
23
+ * Keys:
24
+ * (none)
25
+ */
26
+ export interface FollowUpActionsSourceDescriptorRepresentation {
27
+ descriptor?: string;
28
+ propertyName?: string;
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-service-einstein-copilot-bot",
3
- "version": "1.287.0-dev14",
3
+ "version": "1.287.0-dev16",
4
4
  "description": "Einstein Copilot Bot API Family",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "dist/es/es2018/service-einstein-copilot-bot.js",
@@ -40,10 +40,10 @@
40
40
  "test:unit": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "@salesforce/lds-bindings": "^1.287.0-dev14"
43
+ "@salesforce/lds-bindings": "^1.287.0-dev16"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.287.0-dev14"
46
+ "@salesforce/lds-compiler-plugins": "^1.287.0-dev16"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {