@salesforce/lds-adapters-platform-flow-builder 1.124.2 → 1.124.4
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/platform-flow-builder.js +856 -856
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/getRules.d.ts +28 -28
- package/dist/{types → es/es2018/types}/src/generated/artifacts/main.d.ts +1 -1
- package/dist/{types → es/es2018/types}/src/generated/artifacts/sfdc.d.ts +3 -3
- package/dist/{types → es/es2018/types}/src/generated/resources/getConnectInteractionBuilderRules.d.ts +17 -17
- package/dist/{types → es/es2018/types}/src/generated/resources/getConnectInteractionOrchestrationInstances.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/resources/postConnectInteractionRuntimeNavigateFlowByFlowDevName.d.ts +22 -22
- package/dist/{types → es/es2018/types}/src/generated/resources/postConnectInteractionRuntimeResumeFlowByFlowDevName.d.ts +15 -15
- package/dist/{types → es/es2018/types}/src/generated/resources/postConnectInteractionRuntimeStartFlowByFlowDevName.d.ts +19 -19
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOperatorParameterRepresentation.d.ts +53 -53
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOperatorRepresentation.d.ts +29 -29
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOperatorRuleCollectionRepresentation.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOperatorRuleRepresentation.d.ts +52 -52
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationInstanceCollectionRepresentation.d.ts +30 -30
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationInstanceRepresentation.d.ts +48 -48
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationStageInstanceRepresentation.d.ts +42 -42
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationStepInstanceRepresentation.d.ts +45 -45
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationWorkItemRepresentation.d.ts +53 -53
- package/dist/{types → es/es2018/types}/src/generated/types/FlowRuntimeNavigateRequestRepresentation.d.ts +48 -48
- package/dist/{types → es/es2018/types}/src/generated/types/FlowRuntimeNavigationFieldValueRepresentation.d.ts +35 -35
- package/dist/{types → es/es2018/types}/src/generated/types/FlowRuntimeResponseRepresentation.d.ts +32 -32
- package/dist/{types → es/es2018/types}/src/generated/types/type-utils.d.ts +39 -39
- package/package.json +5 -5
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +876 -876
- package/dist/umd/es2018/platform-flow-builder.js +0 -889
- package/dist/umd/es5/platform-flow-builder.js +0 -893
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
-
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
-
declare const ObjectKeys: {
|
|
4
|
-
(o: object): string[];
|
|
5
|
-
(o: {}): string[];
|
|
6
|
-
}, ObjectFreeze: {
|
|
7
|
-
<T extends Function>(f: T): T;
|
|
8
|
-
<T_1 extends {
|
|
9
|
-
[idx: string]: object | U | null | undefined;
|
|
10
|
-
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
-
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
|
-
}, ObjectCreate: {
|
|
13
|
-
(o: object | null): any;
|
|
14
|
-
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
-
};
|
|
16
|
-
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
-
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
-
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
-
export interface AdapterValidationConfig {
|
|
20
|
-
displayName: string;
|
|
21
|
-
parameters: {
|
|
22
|
-
required: string[];
|
|
23
|
-
optional: string[];
|
|
24
|
-
unsupported?: string[];
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Validates an adapter config is well-formed.
|
|
29
|
-
* @param config The config to validate.
|
|
30
|
-
* @param adapter The adapter validation configuration.
|
|
31
|
-
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
-
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
-
*/
|
|
34
|
-
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
-
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
-
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
-
[key in keyof Base]?: any;
|
|
38
|
-
}> = {
|
|
39
|
-
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
-
};
|
|
41
|
-
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
-
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
-
export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
|
|
44
|
-
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
-
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
-
export declare const snapshotRefreshOptions: {
|
|
47
|
-
overrides: {
|
|
48
|
-
headers: {
|
|
49
|
-
'Cache-Control': string;
|
|
50
|
-
};
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
-
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
-
* JSON.stringify({a: 1, b: 2})
|
|
57
|
-
* "{"a":1,"b":2}"
|
|
58
|
-
* JSON.stringify({b: 2, a: 1})
|
|
59
|
-
* "{"b":2,"a":1}"
|
|
60
|
-
* @param data Data to be JSON-stringified.
|
|
61
|
-
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
-
*/
|
|
63
|
-
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
-
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
-
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
-
export declare const keyPrefix = "flow-builder";
|
|
1
|
+
import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot } from '@luvio/engine';
|
|
2
|
+
export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
|
|
3
|
+
declare const ObjectKeys: {
|
|
4
|
+
(o: object): string[];
|
|
5
|
+
(o: {}): string[];
|
|
6
|
+
}, ObjectFreeze: {
|
|
7
|
+
<T extends Function>(f: T): T;
|
|
8
|
+
<T_1 extends {
|
|
9
|
+
[idx: string]: object | U | null | undefined;
|
|
10
|
+
}, U extends string | number | bigint | boolean | symbol>(o: T_1): Readonly<T_1>;
|
|
11
|
+
<T_2>(o: T_2): Readonly<T_2>;
|
|
12
|
+
}, ObjectCreate: {
|
|
13
|
+
(o: object | null): any;
|
|
14
|
+
(o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
|
|
15
|
+
};
|
|
16
|
+
export { ObjectFreeze, ObjectCreate, ObjectKeys };
|
|
17
|
+
export declare const ArrayIsArray: (arg: any) => arg is any[];
|
|
18
|
+
export declare const ArrayPrototypePush: (...items: any[]) => number;
|
|
19
|
+
export interface AdapterValidationConfig {
|
|
20
|
+
displayName: string;
|
|
21
|
+
parameters: {
|
|
22
|
+
required: string[];
|
|
23
|
+
optional: string[];
|
|
24
|
+
unsupported?: string[];
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Validates an adapter config is well-formed.
|
|
29
|
+
* @param config The config to validate.
|
|
30
|
+
* @param adapter The adapter validation configuration.
|
|
31
|
+
* @param oneOf The keys the config must contain at least one of.
|
|
32
|
+
* @throws A TypeError if config doesn't satisfy the adapter's config validation.
|
|
33
|
+
*/
|
|
34
|
+
export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
|
|
35
|
+
export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
|
|
36
|
+
export type UncoercedConfiguration<Base, Options extends {
|
|
37
|
+
[key in keyof Base]?: any;
|
|
38
|
+
}> = {
|
|
39
|
+
[Key in keyof Base]?: Base[Key] | Options[Key];
|
|
40
|
+
};
|
|
41
|
+
export type Untrusted<Base> = Partial<Base>;
|
|
42
|
+
export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
|
|
43
|
+
export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
|
|
44
|
+
export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
|
|
45
|
+
export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
|
|
46
|
+
export declare const snapshotRefreshOptions: {
|
|
47
|
+
overrides: {
|
|
48
|
+
headers: {
|
|
49
|
+
'Cache-Control': string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
|
|
55
|
+
* This is needed because insertion order for JSON.stringify(object) affects output:
|
|
56
|
+
* JSON.stringify({a: 1, b: 2})
|
|
57
|
+
* "{"a":1,"b":2}"
|
|
58
|
+
* JSON.stringify({b: 2, a: 1})
|
|
59
|
+
* "{"b":2,"a":1}"
|
|
60
|
+
* @param data Data to be JSON-stringified.
|
|
61
|
+
* @returns JSON.stringified value with consistent ordering of keys.
|
|
62
|
+
*/
|
|
63
|
+
export declare function stableJSONStringify(node: any): string | undefined;
|
|
64
|
+
export declare function getFetchResponseStatusText(status: number): string;
|
|
65
|
+
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
66
|
+
export declare const keyPrefix = "flow-builder";
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ResourceRequestConfig as resources_getConnectInteractionBuilderRules_ResourceRequestConfig } from '../resources/getConnectInteractionBuilderRules';
|
|
3
|
-
import { 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';
|
|
4
|
-
import { FlowOperatorRuleCollectionRepresentation as types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation } from '../types/FlowOperatorRuleCollectionRepresentation';
|
|
5
|
-
export declare const adapterName = "getRules";
|
|
6
|
-
export declare const getRules_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
-
export interface GetRulesConfig {
|
|
8
|
-
flowProcessType?: string;
|
|
9
|
-
flowTriggerType?: string;
|
|
10
|
-
recordTriggerType?: string;
|
|
11
|
-
}
|
|
12
|
-
export declare function createResourceParams(config: GetRulesConfig): resources_getConnectInteractionBuilderRules_ResourceRequestConfig;
|
|
13
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): string;
|
|
14
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetRulesConfig>): adapter$45$utils_Untrusted<GetRulesConfig>;
|
|
16
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetRulesConfig | null;
|
|
17
|
-
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): $64$luvio_engine_Fragment;
|
|
18
|
-
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): $64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>;
|
|
19
|
-
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig, resourceParams: resources_getConnectInteractionBuilderRules_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): Promise<import("@luvio/engine").
|
|
20
|
-
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig, resourceParams: resources_getConnectInteractionBuilderRules_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>>;
|
|
22
|
-
export type BuildSnapshotContext = {
|
|
23
|
-
luvio: $64$luvio_engine_Luvio;
|
|
24
|
-
config: GetRulesConfig;
|
|
25
|
-
};
|
|
26
|
-
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>>;
|
|
27
|
-
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): $64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>;
|
|
28
|
-
export declare const getRulesAdapterFactory: $64$luvio_engine_AdapterFactory<GetRulesConfig, types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectInteractionBuilderRules_ResourceRequestConfig } from '../resources/getConnectInteractionBuilderRules';
|
|
3
|
+
import { 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';
|
|
4
|
+
import { FlowOperatorRuleCollectionRepresentation as types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation } from '../types/FlowOperatorRuleCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getRules";
|
|
6
|
+
export declare const getRules_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetRulesConfig {
|
|
8
|
+
flowProcessType?: string;
|
|
9
|
+
flowTriggerType?: string;
|
|
10
|
+
recordTriggerType?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function createResourceParams(config: GetRulesConfig): resources_getConnectInteractionBuilderRules_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetRulesConfig>): adapter$45$utils_Untrusted<GetRulesConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetRulesConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig): $64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig, resourceParams: resources_getConnectInteractionBuilderRules_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig, resourceParams: resources_getConnectInteractionBuilderRules_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetRulesConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetRulesConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): $64$luvio_engine_Snapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>;
|
|
28
|
+
export declare const getRulesAdapterFactory: $64$luvio_engine_AdapterFactory<GetRulesConfig, types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { getRulesAdapterFactory } from '../adapters/getRules';
|
|
1
|
+
export { getRulesAdapterFactory } from '../adapters/getRules';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare let getRules: any;
|
|
2
|
-
declare let getRules_imperative: any;
|
|
3
|
-
export { getRules, getRules_imperative };
|
|
1
|
+
declare let getRules: any;
|
|
2
|
+
declare let getRules_imperative: any;
|
|
3
|
+
export { getRules, getRules_imperative };
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowOperatorRuleCollectionRepresentation as types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation } from '../types/FlowOperatorRuleCollectionRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
queryParams: {
|
|
5
|
-
flowProcessType?: string;
|
|
6
|
-
flowTriggerType?: string;
|
|
7
|
-
recordTriggerType?: string;
|
|
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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
14
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>;
|
|
15
|
-
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
16
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowOperatorRuleCollectionRepresentation as types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation } from '../types/FlowOperatorRuleCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
flowProcessType?: string;
|
|
6
|
+
flowTriggerType?: string;
|
|
7
|
+
recordTriggerType?: string;
|
|
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(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
14
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation, any>;
|
|
15
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOperatorRuleCollectionRepresentation_FlowOperatorRuleCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
16
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
17
|
+
export default createResourceRequest;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowOrchestrationInstanceCollectionRepresentation as types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation } from '../types/FlowOrchestrationInstanceCollectionRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
queryParams: {
|
|
5
|
-
relatedRecordId?: string;
|
|
6
|
-
};
|
|
7
|
-
}
|
|
8
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
|
|
13
|
-
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, 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 { FlowOrchestrationInstanceCollectionRepresentation as types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation } from '../types/FlowOrchestrationInstanceCollectionRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
relatedRecordId?: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
-
import { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
urlParams: {
|
|
5
|
-
flowDevName: string;
|
|
6
|
-
};
|
|
7
|
-
body: {
|
|
8
|
-
action: string;
|
|
9
|
-
enableTrace: boolean;
|
|
10
|
-
fields: Array<{}>;
|
|
11
|
-
lcErrors: {
|
|
12
|
-
[key: string]: {};
|
|
13
|
-
};
|
|
14
|
-
serializedState: string;
|
|
15
|
-
uiElementVisited: boolean;
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
19
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
|
|
21
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
22
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
flowDevName: string;
|
|
6
|
+
};
|
|
7
|
+
body: {
|
|
8
|
+
action: string;
|
|
9
|
+
enableTrace: boolean;
|
|
10
|
+
fields: Array<{}>;
|
|
11
|
+
lcErrors: {
|
|
12
|
+
[key: string]: {};
|
|
13
|
+
};
|
|
14
|
+
serializedState: string;
|
|
15
|
+
uiElementVisited: boolean;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
20
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
|
|
21
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
22
|
+
export default createResourceRequest;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
-
import { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
urlParams: {
|
|
5
|
-
flowDevName: string;
|
|
6
|
-
};
|
|
7
|
-
queryParams: {
|
|
8
|
-
pausedInterviewId?: string;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
|
|
14
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
flowDevName: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
pausedInterviewId?: string;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
-
import { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
|
|
3
|
-
export interface ResourceRequestConfig {
|
|
4
|
-
urlParams: {
|
|
5
|
-
flowDevName: string;
|
|
6
|
-
};
|
|
7
|
-
queryParams: {
|
|
8
|
-
arguments?: string;
|
|
9
|
-
debugAsUserId?: string;
|
|
10
|
-
enableRollbackMode?: boolean;
|
|
11
|
-
enableTrace?: boolean;
|
|
12
|
-
flowVersionId?: string;
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
16
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
17
|
-
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
|
|
18
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
-
export default createResourceRequest;
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { FlowRuntimeResponseRepresentation as types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation } from '../types/FlowRuntimeResponseRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
flowDevName: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
arguments?: string;
|
|
9
|
+
debugAsUserId?: string;
|
|
10
|
+
enableRollbackMode?: boolean;
|
|
11
|
+
enableTrace?: boolean;
|
|
12
|
+
flowVersionId?: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
17
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowRuntimeResponseRepresentation_FlowRuntimeResponseRepresentation, any>;
|
|
18
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
+
export default createResourceRequest;
|
package/dist/{types → es/es2018/types}/src/generated/types/FlowOperatorParameterRepresentation.d.ts
RENAMED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "1fbcf3729a54064347b98620da65caee";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: FlowOperatorParameterRepresentation, existing: FlowOperatorParameterRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOperatorParameterRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: FlowOperatorParameterRepresentationNormalized, incoming: FlowOperatorParameterRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: FlowOperatorParameterRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOperatorParameterRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Parameter on the left or right hand side of an operation
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface FlowOperatorParameterRepresentationNormalized {
|
|
18
|
-
/** Whether or not this parameter can be an Apex property */
|
|
19
|
-
canBeApexProperty: string | null;
|
|
20
|
-
/** Whether or not this parameter can be an SObject field */
|
|
21
|
-
canBeSobjectField: string | null;
|
|
22
|
-
/** Whether or not this parameter can be a System variable */
|
|
23
|
-
canBeSystemVariable: string | null;
|
|
24
|
-
/** List of elements this parameter cannot be */
|
|
25
|
-
cannotBeElements: Array<string>;
|
|
26
|
-
/** Parameter Data type (if param type is Data) */
|
|
27
|
-
dataType: string | null;
|
|
28
|
-
/** Whether or not this parameter is a collection */
|
|
29
|
-
isCollection: boolean;
|
|
30
|
-
/** Whether or not this parameter is nullable */
|
|
31
|
-
isNull: boolean;
|
|
32
|
-
/** List of elements this parameter must be */
|
|
33
|
-
mustBeElements: Array<string>;
|
|
34
|
-
/** Parameter type (Data, Element) */
|
|
35
|
-
paramType: string | null;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Parameter on the left or right hand side of an operation
|
|
39
|
-
*
|
|
40
|
-
* Keys:
|
|
41
|
-
* (none)
|
|
42
|
-
*/
|
|
43
|
-
export interface FlowOperatorParameterRepresentation {
|
|
44
|
-
canBeApexProperty: string | null;
|
|
45
|
-
canBeSobjectField: string | null;
|
|
46
|
-
canBeSystemVariable: string | null;
|
|
47
|
-
cannotBeElements: Array<string>;
|
|
48
|
-
dataType: string | null;
|
|
49
|
-
isCollection: boolean;
|
|
50
|
-
isNull: boolean;
|
|
51
|
-
mustBeElements: Array<string>;
|
|
52
|
-
paramType: string | null;
|
|
53
|
-
}
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "1fbcf3729a54064347b98620da65caee";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FlowOperatorParameterRepresentation, existing: FlowOperatorParameterRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOperatorParameterRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FlowOperatorParameterRepresentationNormalized, incoming: FlowOperatorParameterRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: FlowOperatorParameterRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOperatorParameterRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Parameter on the left or right hand side of an operation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FlowOperatorParameterRepresentationNormalized {
|
|
18
|
+
/** Whether or not this parameter can be an Apex property */
|
|
19
|
+
canBeApexProperty: string | null;
|
|
20
|
+
/** Whether or not this parameter can be an SObject field */
|
|
21
|
+
canBeSobjectField: string | null;
|
|
22
|
+
/** Whether or not this parameter can be a System variable */
|
|
23
|
+
canBeSystemVariable: string | null;
|
|
24
|
+
/** List of elements this parameter cannot be */
|
|
25
|
+
cannotBeElements: Array<string>;
|
|
26
|
+
/** Parameter Data type (if param type is Data) */
|
|
27
|
+
dataType: string | null;
|
|
28
|
+
/** Whether or not this parameter is a collection */
|
|
29
|
+
isCollection: boolean;
|
|
30
|
+
/** Whether or not this parameter is nullable */
|
|
31
|
+
isNull: boolean;
|
|
32
|
+
/** List of elements this parameter must be */
|
|
33
|
+
mustBeElements: Array<string>;
|
|
34
|
+
/** Parameter type (Data, Element) */
|
|
35
|
+
paramType: string | null;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Parameter on the left or right hand side of an operation
|
|
39
|
+
*
|
|
40
|
+
* Keys:
|
|
41
|
+
* (none)
|
|
42
|
+
*/
|
|
43
|
+
export interface FlowOperatorParameterRepresentation {
|
|
44
|
+
canBeApexProperty: string | null;
|
|
45
|
+
canBeSobjectField: string | null;
|
|
46
|
+
canBeSystemVariable: string | null;
|
|
47
|
+
cannotBeElements: Array<string>;
|
|
48
|
+
dataType: string | null;
|
|
49
|
+
isCollection: boolean;
|
|
50
|
+
isNull: boolean;
|
|
51
|
+
mustBeElements: Array<string>;
|
|
52
|
+
paramType: string | null;
|
|
53
|
+
}
|
|
@@ -1,29 +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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "f21baf31691a4049568a8fd0232f6f99";
|
|
3
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
-
export declare const RepresentationType: string;
|
|
5
|
-
export declare function normalize(input: FlowOperatorRepresentation, existing: FlowOperatorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOperatorRepresentationNormalized;
|
|
6
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
-
export declare function equals(existing: FlowOperatorRepresentationNormalized, incoming: FlowOperatorRepresentationNormalized): boolean;
|
|
8
|
-
export declare function deepFreeze(input: FlowOperatorRepresentation): void;
|
|
9
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOperatorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
-
/**
|
|
12
|
-
* Operator in rules
|
|
13
|
-
*
|
|
14
|
-
* Keys:
|
|
15
|
-
* (none)
|
|
16
|
-
*/
|
|
17
|
-
export interface FlowOperatorRepresentationNormalized {
|
|
18
|
-
/** Operator value */
|
|
19
|
-
value: string | null;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Operator in rules
|
|
23
|
-
*
|
|
24
|
-
* Keys:
|
|
25
|
-
* (none)
|
|
26
|
-
*/
|
|
27
|
-
export interface FlowOperatorRepresentation {
|
|
28
|
-
value: string | null;
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "f21baf31691a4049568a8fd0232f6f99";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FlowOperatorRepresentation, existing: FlowOperatorRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOperatorRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FlowOperatorRepresentationNormalized, incoming: FlowOperatorRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: FlowOperatorRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOperatorRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Operator in rules
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface FlowOperatorRepresentationNormalized {
|
|
18
|
+
/** Operator value */
|
|
19
|
+
value: string | null;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Operator in rules
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface FlowOperatorRepresentation {
|
|
28
|
+
value: string | null;
|
|
29
|
+
}
|