@salesforce/lds-adapters-industries-explainability 0.1.0-dev1
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/LICENSE.txt +82 -0
- package/dist/es/es2018/industries-explainability.js +878 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/getExplainabilityActionLogs.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/adapters/getExplainabilityDetailedActionLog.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/adapters/storeExplainabilityActionLog.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +6 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectDecisionExplainerActionLogs.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectDecisionExplainerDetailedActionLog.d.ts +20 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectDecisionExplainerActionLogs.d.ts +13 -0
- package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogCreateRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogDetailRepresentation.d.ts +67 -0
- package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogInputRepresentation.d.ts +52 -0
- package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogInputRepresentationWrapper.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogsRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/ExplainabilityDetailedActionLogDetailRepresentation.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +74 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +935 -0
- package/src/raml/api.raml +304 -0
- package/src/raml/luvio.raml +34 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } 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 function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
|
|
61
|
+
export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
|
|
62
|
+
export declare const keyPrefix = "explainability";
|
|
@@ -0,0 +1,38 @@
|
|
|
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_getConnectDecisionExplainerActionLogs_ResourceRequestConfig } from '../resources/getConnectDecisionExplainerActionLogs';
|
|
4
|
+
import { ExplainabilityActionLogsRepresentation as types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation } from '../types/ExplainabilityActionLogsRepresentation';
|
|
5
|
+
export declare const adapterName = "getExplainabilityActionLogs";
|
|
6
|
+
export declare const getExplainabilityActionLogs_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getExplainabilityActionLogs_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetExplainabilityActionLogsConfig {
|
|
9
|
+
actionContextCode?: string;
|
|
10
|
+
applicationSubType?: string;
|
|
11
|
+
applicationType?: string;
|
|
12
|
+
createdAfter?: string;
|
|
13
|
+
createdBefore?: string;
|
|
14
|
+
pageSize?: number;
|
|
15
|
+
processType?: string;
|
|
16
|
+
queryMore?: string;
|
|
17
|
+
primaryFilter?: string;
|
|
18
|
+
secondaryFilter?: string;
|
|
19
|
+
additionalFilter?: string;
|
|
20
|
+
sortDirection?: string;
|
|
21
|
+
}
|
|
22
|
+
export declare const createResourceParams: (config: GetExplainabilityActionLogsConfig) => resources_getConnectDecisionExplainerActionLogs_ResourceRequestConfig;
|
|
23
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig): string;
|
|
24
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
25
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetExplainabilityActionLogsConfig>): adapter$45$utils_Untrusted<GetExplainabilityActionLogsConfig>;
|
|
26
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetExplainabilityActionLogsConfig | null;
|
|
27
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig): $64$luvio_engine_Fragment;
|
|
28
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig): $64$luvio_engine_Snapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, any>;
|
|
29
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig, resourceParams: resources_getConnectDecisionExplainerActionLogs_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, any>>;
|
|
30
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig, resourceParams: resources_getConnectDecisionExplainerActionLogs_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
31
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityActionLogsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, any>>;
|
|
32
|
+
export type BuildSnapshotContext = {
|
|
33
|
+
luvio: $64$luvio_engine_Luvio;
|
|
34
|
+
config: GetExplainabilityActionLogsConfig;
|
|
35
|
+
};
|
|
36
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, any>>;
|
|
37
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation>): $64$luvio_engine_Snapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, any>;
|
|
38
|
+
export declare const getExplainabilityActionLogsAdapterFactory: $64$luvio_engine_AdapterFactory<GetExplainabilityActionLogsConfig, types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation>;
|
|
@@ -0,0 +1,32 @@
|
|
|
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_getConnectDecisionExplainerDetailedActionLog_ResourceRequestConfig } from '../resources/getConnectDecisionExplainerDetailedActionLog';
|
|
4
|
+
import { ExplainabilityDetailedActionLogDetailRepresentation as types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation } from '../types/ExplainabilityDetailedActionLogDetailRepresentation';
|
|
5
|
+
export declare const adapterName = "getExplainabilityDetailedActionLog";
|
|
6
|
+
export declare const getExplainabilityDetailedActionLog_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getExplainabilityDetailedActionLog_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetExplainabilityDetailedActionLogConfig {
|
|
9
|
+
actionContextCode: string;
|
|
10
|
+
applicationSubType: string;
|
|
11
|
+
applicationType: string;
|
|
12
|
+
actionLogDateTime: string;
|
|
13
|
+
processType: string;
|
|
14
|
+
uniqueIdentifier: string;
|
|
15
|
+
}
|
|
16
|
+
export declare const createResourceParams: (config: GetExplainabilityDetailedActionLogConfig) => resources_getConnectDecisionExplainerDetailedActionLog_ResourceRequestConfig;
|
|
17
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig): string;
|
|
18
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
19
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetExplainabilityDetailedActionLogConfig>): adapter$45$utils_Untrusted<GetExplainabilityDetailedActionLogConfig>;
|
|
20
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetExplainabilityDetailedActionLogConfig | null;
|
|
21
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig): $64$luvio_engine_Fragment;
|
|
22
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig): $64$luvio_engine_Snapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, any>;
|
|
23
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig, resourceParams: resources_getConnectDecisionExplainerDetailedActionLog_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, any>>;
|
|
24
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig, resourceParams: resources_getConnectDecisionExplainerDetailedActionLog_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
25
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetExplainabilityDetailedActionLogConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, any>>;
|
|
26
|
+
export type BuildSnapshotContext = {
|
|
27
|
+
luvio: $64$luvio_engine_Luvio;
|
|
28
|
+
config: GetExplainabilityDetailedActionLogConfig;
|
|
29
|
+
};
|
|
30
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, any>>;
|
|
31
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation>): $64$luvio_engine_Snapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, any>;
|
|
32
|
+
export declare const getExplainabilityDetailedActionLogAdapterFactory: $64$luvio_engine_AdapterFactory<GetExplainabilityDetailedActionLogConfig, types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, 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 { ExplainabilityActionLogInputRepresentation as types_ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation } from '../types/ExplainabilityActionLogInputRepresentation';
|
|
4
|
+
import { ResourceRequestConfig as resources_postConnectDecisionExplainerActionLogs_ResourceRequestConfig } from '../resources/postConnectDecisionExplainerActionLogs';
|
|
5
|
+
import { ExplainabilityActionLogCreateRepresentation as types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation } from '../types/ExplainabilityActionLogCreateRepresentation';
|
|
6
|
+
export declare const adapterName = "storeExplainabilityActionLog";
|
|
7
|
+
export declare const storeExplainabilityActionLog_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
8
|
+
export declare const storeExplainabilityActionLog_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
9
|
+
export interface StoreExplainabilityActionLogConfig {
|
|
10
|
+
explainabilityActionLogDefinition: types_ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: StoreExplainabilityActionLogConfig) => resources_postConnectDecisionExplainerActionLogs_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<StoreExplainabilityActionLogConfig>): adapter$45$utils_Untrusted<StoreExplainabilityActionLogConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): StoreExplainabilityActionLogConfig | null;
|
|
15
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: StoreExplainabilityActionLogConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation, any>>;
|
|
16
|
+
export declare const storeExplainabilityActionLogAdapterFactory: $64$luvio_engine_AdapterFactory<StoreExplainabilityActionLogConfig, types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { getExplainabilityActionLogsAdapterFactory } from '../adapters/getExplainabilityActionLogs';
|
|
2
|
+
export { storeExplainabilityActionLogAdapterFactory } from '../adapters/storeExplainabilityActionLog';
|
|
3
|
+
export { getExplainabilityDetailedActionLogAdapterFactory } from '../adapters/getExplainabilityDetailedActionLog';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare let getExplainabilityActionLogs: any;
|
|
2
|
+
declare let getExplainabilityDetailedActionLog: any;
|
|
3
|
+
declare let storeExplainabilityActionLog: any;
|
|
4
|
+
declare let getExplainabilityActionLogs_imperative: any;
|
|
5
|
+
declare let getExplainabilityDetailedActionLog_imperative: any;
|
|
6
|
+
export { getExplainabilityActionLogs, getExplainabilityDetailedActionLog, storeExplainabilityActionLog, getExplainabilityActionLogs_imperative, getExplainabilityDetailedActionLog_imperative, };
|
package/dist/es/es2018/types/src/generated/resources/getConnectDecisionExplainerActionLogs.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
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 { ExplainabilityActionLogsRepresentation as types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation } from '../types/ExplainabilityActionLogsRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
actionContextCode?: string;
|
|
6
|
+
applicationSubType?: string;
|
|
7
|
+
applicationType?: string;
|
|
8
|
+
createdAfter?: string;
|
|
9
|
+
createdBefore?: string;
|
|
10
|
+
pageSize?: number;
|
|
11
|
+
processType?: string;
|
|
12
|
+
queryMore?: string;
|
|
13
|
+
primaryFilter?: string;
|
|
14
|
+
secondaryFilter?: string;
|
|
15
|
+
additionalFilter?: string;
|
|
16
|
+
sortDirection?: string;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
20
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
21
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
22
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation): void;
|
|
23
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation, any>;
|
|
24
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExplainabilityActionLogsRepresentation_ExplainabilityActionLogsRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
25
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
26
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { ExplainabilityDetailedActionLogDetailRepresentation as types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation } from '../types/ExplainabilityDetailedActionLogDetailRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
actionContextCode: string;
|
|
6
|
+
applicationSubType: string;
|
|
7
|
+
applicationType: string;
|
|
8
|
+
actionLogDateTime: string;
|
|
9
|
+
processType: string;
|
|
10
|
+
uniqueIdentifier: string;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation): void;
|
|
17
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation, any>;
|
|
18
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ExplainabilityDetailedActionLogDetailRepresentation_ExplainabilityDetailedActionLogDetailRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
19
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
20
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/postConnectDecisionExplainerActionLogs.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ExplainabilityActionLogInputRepresentation as types_ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation } from '../types/ExplainabilityActionLogInputRepresentation';
|
|
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 { ExplainabilityActionLogCreateRepresentation as types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation } from '../types/ExplainabilityActionLogCreateRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: {
|
|
6
|
+
explainabilityActionLogDefinition: types_ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation;
|
|
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_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation): void;
|
|
11
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ExplainabilityActionLogCreateRepresentation_ExplainabilityActionLogCreateRepresentation, any>;
|
|
12
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
13
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogCreateRepresentation.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
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, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 10000;
|
|
3
|
+
export declare const VERSION = "0d45c6e4f0bafbddf9b0c6a50f5e1a25";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
id: string;
|
|
8
|
+
}
|
|
9
|
+
export type ExplainabilityActionLogCreateRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialExplainabilityActionLogCreateRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): ExplainabilityActionLogCreateRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: ExplainabilityActionLogCreateRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: ExplainabilityActionLogCreateRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: ExplainabilityActionLogCreateRepresentation, existing: ExplainabilityActionLogCreateRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExplainabilityActionLogCreateRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: ExplainabilityActionLogCreateRepresentationNormalized, incoming: ExplainabilityActionLogCreateRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ExplainabilityActionLogCreateRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Create represenation for ExplainabilityActionLog
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* id (string): uniqueIdentifier
|
|
25
|
+
*/
|
|
26
|
+
export interface ExplainabilityActionLogCreateRepresentationNormalized {
|
|
27
|
+
/** SequenceNumber of ExplainabilityActionLog */
|
|
28
|
+
sequenceNumber?: number;
|
|
29
|
+
/** uniqueIdentifier of ExplainabilityActionLog */
|
|
30
|
+
uniqueIdentifier: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Create represenation for ExplainabilityActionLog
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* id (string): uniqueIdentifier
|
|
37
|
+
*/
|
|
38
|
+
export interface ExplainabilityActionLogCreateRepresentation {
|
|
39
|
+
sequenceNumber?: number;
|
|
40
|
+
uniqueIdentifier: string;
|
|
41
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogDetailRepresentation.d.ts
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
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 = "676f634d55d88c3557a45090cc1413bb";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ExplainabilityActionLogDetailRepresentation, existing: ExplainabilityActionLogDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExplainabilityActionLogDetailRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ExplainabilityActionLogDetailRepresentationNormalized, incoming: ExplainabilityActionLogDetailRepresentationNormalized): 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: ExplainabilityActionLogDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents a Explainability Action Log details
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ExplainabilityActionLogDetailRepresentationNormalized {
|
|
17
|
+
/** The record ID within the context of the associated application's action that can be used to retrieve the action log */
|
|
18
|
+
actionContextCode: string;
|
|
19
|
+
/** The contents of the Explainability action log as a Json string */
|
|
20
|
+
actionLog?: string;
|
|
21
|
+
/** A string to be used as additional filter */
|
|
22
|
+
additionalFilter?: string;
|
|
23
|
+
/** The Calendar date and time at which the Explainability log was generated by the application's action */
|
|
24
|
+
applicationLogCalendarDate: string;
|
|
25
|
+
/** The date and time at which the Explainability action log was generated by the application's action */
|
|
26
|
+
applicationLogDate: string;
|
|
27
|
+
/** Specifies the subtype of the associated application for which the explainability log is generated. This would match one of the valid values for Explainability Action Specification table's ApplicationSubtype field */
|
|
28
|
+
applicationSubtype: string;
|
|
29
|
+
/** Specifies the name of the application for which the explainability service is run. This would match one of the valid values for Explainability Action Specification table's ApplicationType field */
|
|
30
|
+
applicationType: string;
|
|
31
|
+
/** A name to identify the Explainability specification name of the action log record */
|
|
32
|
+
explainabilitySpecName: string;
|
|
33
|
+
/** Indicates whether the action Log is chunked (true) or not (false). The default value is false. */
|
|
34
|
+
isChunked: boolean;
|
|
35
|
+
/** A name to identify the Explainability action log record to be created */
|
|
36
|
+
name: string;
|
|
37
|
+
/** A string to be used as primary filter */
|
|
38
|
+
primaryFilter?: string;
|
|
39
|
+
/** Specifies the process type, such as the business process, of the associated application for which the explainability action log is generated. This would match one of the valid values for Explainability Action Specification table's processType field */
|
|
40
|
+
processType: string;
|
|
41
|
+
/** A string to be used as secondary filter */
|
|
42
|
+
secondaryFilter?: string;
|
|
43
|
+
/** A string to be used as explainability unique identifier */
|
|
44
|
+
uniqueIdentifier: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Represents a Explainability Action Log details
|
|
48
|
+
*
|
|
49
|
+
* Keys:
|
|
50
|
+
* (none)
|
|
51
|
+
*/
|
|
52
|
+
export interface ExplainabilityActionLogDetailRepresentation {
|
|
53
|
+
actionContextCode: string;
|
|
54
|
+
actionLog?: string;
|
|
55
|
+
additionalFilter?: string;
|
|
56
|
+
applicationLogCalendarDate: string;
|
|
57
|
+
applicationLogDate: string;
|
|
58
|
+
applicationSubtype: string;
|
|
59
|
+
applicationType: string;
|
|
60
|
+
explainabilitySpecName: string;
|
|
61
|
+
isChunked: boolean;
|
|
62
|
+
name: string;
|
|
63
|
+
primaryFilter?: string;
|
|
64
|
+
processType: string;
|
|
65
|
+
secondaryFilter?: string;
|
|
66
|
+
uniqueIdentifier: string;
|
|
67
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ExplainabilityActionLogInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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 = "99d788a91e815cc9be3484b4355ac623";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ExplainabilityActionLogInputRepresentation, existing: ExplainabilityActionLogInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExplainabilityActionLogInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ExplainabilityActionLogInputRepresentationNormalized, incoming: ExplainabilityActionLogInputRepresentationNormalized): 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: ExplainabilityActionLogInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for ExplainabilityActionLog
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ExplainabilityActionLogInputRepresentationNormalized {
|
|
17
|
+
/** A valid Salesforce record-id that can later be used to retrieve the Explainability action log record */
|
|
18
|
+
actionContextCode: string;
|
|
19
|
+
/** The contents of the Explainability action log as a Json string */
|
|
20
|
+
actionLog: string;
|
|
21
|
+
/** The date and time at which the Explainability action log was generated by the application’s action */
|
|
22
|
+
actionLogDate: string;
|
|
23
|
+
/** The 18 character Salesforce user id of the user who will own the action log. If not specified, will default to the user in whose context the call is being made. */
|
|
24
|
+
actionLogOwnerId?: string;
|
|
25
|
+
/** A string to be used as additional filter */
|
|
26
|
+
additionalFilter?: string;
|
|
27
|
+
/** A name to identify the Explainability action log record to be created */
|
|
28
|
+
name?: string;
|
|
29
|
+
/** A string to be used as primary filter */
|
|
30
|
+
primaryFilter?: string;
|
|
31
|
+
/** A string to be used as secondary filter */
|
|
32
|
+
secondaryFilter?: string;
|
|
33
|
+
/** A name that uniquely identifies an active Explainability Action Specification record */
|
|
34
|
+
specificationName: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Input representation for ExplainabilityActionLog
|
|
38
|
+
*
|
|
39
|
+
* Keys:
|
|
40
|
+
* (none)
|
|
41
|
+
*/
|
|
42
|
+
export interface ExplainabilityActionLogInputRepresentation {
|
|
43
|
+
actionContextCode: string;
|
|
44
|
+
actionLog: string;
|
|
45
|
+
actionLogDate: string;
|
|
46
|
+
actionLogOwnerId?: string;
|
|
47
|
+
additionalFilter?: string;
|
|
48
|
+
name?: string;
|
|
49
|
+
primaryFilter?: string;
|
|
50
|
+
secondaryFilter?: string;
|
|
51
|
+
specificationName: string;
|
|
52
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ExplainabilityActionLogInputRepresentation as ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation } from './ExplainabilityActionLogInputRepresentation';
|
|
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 = "47cf3645263acbfa2cceb8fbfc19b6b1";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ExplainabilityActionLogInputRepresentationWrapper, existing: ExplainabilityActionLogInputRepresentationWrapperNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExplainabilityActionLogInputRepresentationWrapperNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ExplainabilityActionLogInputRepresentationWrapperNormalized, incoming: ExplainabilityActionLogInputRepresentationWrapperNormalized): 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: ExplainabilityActionLogInputRepresentationWrapper, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Wrapper Input Representation for ExplainabilityActionLogInputRepresentation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ExplainabilityActionLogInputRepresentationWrapperNormalized {
|
|
18
|
+
explainabilityActionLogDefinition: ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Wrapper Input Representation for ExplainabilityActionLogInputRepresentation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface ExplainabilityActionLogInputRepresentationWrapper {
|
|
27
|
+
explainabilityActionLogDefinition: ExplainabilityActionLogInputRepresentation_ExplainabilityActionLogInputRepresentation;
|
|
28
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ExplainabilityActionLogDetailRepresentation as ExplainabilityActionLogDetailRepresentation_ExplainabilityActionLogDetailRepresentation } from './ExplainabilityActionLogDetailRepresentation';
|
|
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';
|
|
3
|
+
export declare const TTL = 10000;
|
|
4
|
+
export declare const VERSION = "d0452c2b6e53e2a843a03bf30a275e18";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ExplainabilityActionLogsRepresentation, existing: ExplainabilityActionLogsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExplainabilityActionLogsRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: ExplainabilityActionLogsRepresentationNormalized, incoming: ExplainabilityActionLogsRepresentationNormalized): 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: ExplainabilityActionLogsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Representation of the list of Explainability Action Logs
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ExplainabilityActionLogsRepresentationNormalized {
|
|
19
|
+
/** A list of ExplainabilityActionLogRepresentation */
|
|
20
|
+
actionLogs: Array<ExplainabilityActionLogDetailRepresentation_ExplainabilityActionLogDetailRepresentation>;
|
|
21
|
+
/** A string that can be passed to the next call to fetch the next batch of Explainability Action Log records */
|
|
22
|
+
queryMore?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Representation of the list of Explainability Action Logs
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface ExplainabilityActionLogsRepresentation {
|
|
31
|
+
actionLogs: Array<ExplainabilityActionLogDetailRepresentation_ExplainabilityActionLogDetailRepresentation>;
|
|
32
|
+
queryMore?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
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
|
+
export declare const TTL = 10000;
|
|
3
|
+
export declare const VERSION = "2ead56c771f0c2cc2857826a85e490c8";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ExplainabilityDetailedActionLogDetailRepresentation, existing: ExplainabilityDetailedActionLogDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ExplainabilityDetailedActionLogDetailRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
8
|
+
export declare function equals(existing: ExplainabilityDetailedActionLogDetailRepresentationNormalized, incoming: ExplainabilityDetailedActionLogDetailRepresentationNormalized): 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: ExplainabilityDetailedActionLogDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Represents a Explainability Action Log details
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ExplainabilityDetailedActionLogDetailRepresentationNormalized {
|
|
18
|
+
/** The record ID within the context of the associated application's action that can be used to retrieve the action log */
|
|
19
|
+
actionContextCode: string;
|
|
20
|
+
/** The contents of the Explainability action log as a Json string */
|
|
21
|
+
actionLog: string;
|
|
22
|
+
/** A string to be used as additional filter */
|
|
23
|
+
additionalFilter?: string;
|
|
24
|
+
/** The date and time at which the Explainability action log was generated by the application's action */
|
|
25
|
+
applicationLogDate: string;
|
|
26
|
+
/** Specifies the subtype of the associated application for which the explainability log is generated. This would match one of the valid values for Explainability Action Specification table's ApplicationSubtype field */
|
|
27
|
+
applicationSubtype: string;
|
|
28
|
+
/** Specifies the name of the application for which the explainability service is run. This would match one of the valid values for Explainability Action Specification table's ApplicationType field */
|
|
29
|
+
applicationType: string;
|
|
30
|
+
/** A name to identify the Explainability specification name of the action log record */
|
|
31
|
+
explainabilitySpecName: string;
|
|
32
|
+
/** A name to identify the Explainability action log record to be created */
|
|
33
|
+
name: string;
|
|
34
|
+
/** A string to be used as primary filter */
|
|
35
|
+
primaryFilter?: string;
|
|
36
|
+
/** Specifies the process type, such as the business process, of the associated application for which the explainability action log is generated. This would match one of the valid values for Explainability Action Specification table's processType field */
|
|
37
|
+
processType: string;
|
|
38
|
+
/** A string to be used as secondary filter */
|
|
39
|
+
secondaryFilter?: string;
|
|
40
|
+
/** A string to be used as explainability unique identifier */
|
|
41
|
+
uniqueIdentifier: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Represents a Explainability Action Log details
|
|
45
|
+
*
|
|
46
|
+
* Keys:
|
|
47
|
+
* (none)
|
|
48
|
+
*/
|
|
49
|
+
export interface ExplainabilityDetailedActionLogDetailRepresentation {
|
|
50
|
+
actionContextCode: string;
|
|
51
|
+
actionLog: string;
|
|
52
|
+
additionalFilter?: string;
|
|
53
|
+
applicationLogDate: string;
|
|
54
|
+
applicationSubtype: string;
|
|
55
|
+
applicationType: string;
|
|
56
|
+
explainabilitySpecName: string;
|
|
57
|
+
name: string;
|
|
58
|
+
primaryFilter?: string;
|
|
59
|
+
processType: string;
|
|
60
|
+
secondaryFilter?: string;
|
|
61
|
+
uniqueIdentifier: string;
|
|
62
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectKeys: {
|
|
3
|
+
(o: object): string[];
|
|
4
|
+
(o: {}): string[];
|
|
5
|
+
}, ObjectCreate: {
|
|
6
|
+
(o: object | null): any;
|
|
7
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
8
|
+
}, ObjectAssign: {
|
|
9
|
+
<T extends {}, U>(target: T, source: U): T & U;
|
|
10
|
+
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
11
|
+
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
12
|
+
(target: object, ...sources: any[]): any;
|
|
13
|
+
};
|
|
14
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
15
|
+
export declare const JSONStringify: {
|
|
16
|
+
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
|
|
17
|
+
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
|
|
18
|
+
};
|
|
19
|
+
type AllowedPrimitives = boolean | string | number | Date | null;
|
|
20
|
+
type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
|
|
21
|
+
export type RecursivePartial<T> = null | {
|
|
22
|
+
[P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
|
|
23
|
+
};
|
|
24
|
+
export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
|
|
25
|
+
export declare function equalsObject<U, V extends {
|
|
26
|
+
[key: string]: U;
|
|
27
|
+
}>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
|
|
28
|
+
export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
|
|
29
|
+
__ref: string;
|
|
30
|
+
};
|
|
31
|
+
export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
32
|
+
export {};
|