@salesforce/lds-adapters-platform-interaction-orchestrator 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-interaction-orchestrator.js +1066 -1066
- package/dist/{types → es/es2018/types}/src/generated/adapters/adapter-utils.d.ts +66 -66
- package/dist/{types → es/es2018/types}/src/generated/adapters/getOrchestrationInstanceCollection.d.ts +27 -27
- 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/getConnectInteractionOrchestrationInstances.d.ts +16 -16
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationInstanceCollectionRepresentation.d.ts +31 -31
- 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/FlowOrchestrationWorkAssignmentRepresentation.d.ts +26 -26
- package/dist/{types → es/es2018/types}/src/generated/types/FlowOrchestrationWorkItemRepresentation.d.ts +53 -53
- 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 +1086 -1086
- package/dist/umd/es2018/platform-interaction-orchestrator.js +0 -1101
- package/dist/umd/es5/platform-interaction-orchestrator.js +0 -1106
|
@@ -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 = "InteractionOrchestrator";
|
|
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 = "InteractionOrchestrator";
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
-
import { ResourceRequestConfig as resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig } from '../resources/getConnectInteractionOrchestrationInstances';
|
|
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 { FlowOrchestrationInstanceCollectionRepresentation as types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation } from '../types/FlowOrchestrationInstanceCollectionRepresentation';
|
|
5
|
-
export declare const adapterName = "getOrchestrationInstanceCollection";
|
|
6
|
-
export declare const getOrchestrationInstanceCollection_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
-
export interface GetOrchestrationInstanceCollectionConfig {
|
|
8
|
-
contextRecordId?: string;
|
|
9
|
-
relatedRecordId?: string;
|
|
10
|
-
}
|
|
11
|
-
export declare function createResourceParams(config: GetOrchestrationInstanceCollectionConfig): resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig;
|
|
12
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): string;
|
|
13
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
-
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetOrchestrationInstanceCollectionConfig>): adapter$45$utils_Untrusted<GetOrchestrationInstanceCollectionConfig>;
|
|
15
|
-
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetOrchestrationInstanceCollectionConfig | null;
|
|
16
|
-
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_Fragment;
|
|
17
|
-
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
|
|
18
|
-
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig, resourceParams: resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): Promise<import("@luvio/engine").
|
|
19
|
-
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig, resourceParams: resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
-
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>>;
|
|
21
|
-
export type BuildSnapshotContext = {
|
|
22
|
-
luvio: $64$luvio_engine_Luvio;
|
|
23
|
-
config: GetOrchestrationInstanceCollectionConfig;
|
|
24
|
-
};
|
|
25
|
-
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>>;
|
|
26
|
-
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
|
|
27
|
-
export declare const getOrchestrationInstanceCollectionAdapterFactory: $64$luvio_engine_AdapterFactory<GetOrchestrationInstanceCollectionConfig, types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>;
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig } from '../resources/getConnectInteractionOrchestrationInstances';
|
|
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 { FlowOrchestrationInstanceCollectionRepresentation as types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation } from '../types/FlowOrchestrationInstanceCollectionRepresentation';
|
|
5
|
+
export declare const adapterName = "getOrchestrationInstanceCollection";
|
|
6
|
+
export declare const getOrchestrationInstanceCollection_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetOrchestrationInstanceCollectionConfig {
|
|
8
|
+
contextRecordId?: string;
|
|
9
|
+
relatedRecordId?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: GetOrchestrationInstanceCollectionConfig): resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetOrchestrationInstanceCollectionConfig>): adapter$45$utils_Untrusted<GetOrchestrationInstanceCollectionConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetOrchestrationInstanceCollectionConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig, resourceParams: resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig, resourceParams: resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetOrchestrationInstanceCollectionConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
|
|
27
|
+
export declare const getOrchestrationInstanceCollectionAdapterFactory: $64$luvio_engine_AdapterFactory<GetOrchestrationInstanceCollectionConfig, types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { getOrchestrationInstanceCollectionAdapterFactory } from '../adapters/getOrchestrationInstanceCollection';
|
|
1
|
+
export { getOrchestrationInstanceCollectionAdapterFactory } from '../adapters/getOrchestrationInstanceCollection';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare let getOrchestrationInstanceCollection: any;
|
|
2
|
-
declare let getOrchestrationInstanceCollection_imperative: any;
|
|
3
|
-
export { getOrchestrationInstanceCollection, getOrchestrationInstanceCollection_imperative };
|
|
1
|
+
declare let getOrchestrationInstanceCollection: any;
|
|
2
|
+
declare let getOrchestrationInstanceCollection_imperative: any;
|
|
3
|
+
export { getOrchestrationInstanceCollection, getOrchestrationInstanceCollection_imperative };
|
|
@@ -1,16 +1,16 @@
|
|
|
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
|
-
contextRecordId?: string;
|
|
6
|
-
relatedRecordId?: string;
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
-
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
-
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
-
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>;
|
|
14
|
-
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;
|
|
15
|
-
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
-
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
|
+
contextRecordId?: string;
|
|
6
|
+
relatedRecordId?: string;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
10
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
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>;
|
|
14
|
+
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;
|
|
15
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
16
|
+
export default createResourceRequest;
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { FlowOrchestrationInstanceRepresentation as FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation } from './FlowOrchestrationInstanceRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const TTL = 100;
|
|
4
|
-
export declare const VERSION = "ff1028f6e4a6a9aeed322135fdf518b5";
|
|
5
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
-
export declare const RepresentationType: string;
|
|
7
|
-
export declare function normalize(input: FlowOrchestrationInstanceCollectionRepresentation, existing: FlowOrchestrationInstanceCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationInstanceCollectionRepresentationNormalized;
|
|
8
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
-
export declare function equals(existing: FlowOrchestrationInstanceCollectionRepresentationNormalized, incoming: FlowOrchestrationInstanceCollectionRepresentationNormalized): boolean;
|
|
10
|
-
export declare function deepFreeze(input: FlowOrchestrationInstanceCollectionRepresentation): void;
|
|
11
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationInstanceCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
-
/**
|
|
14
|
-
* Information about a collection of Orchestration instances.
|
|
15
|
-
*
|
|
16
|
-
* Keys:
|
|
17
|
-
* (none)
|
|
18
|
-
*/
|
|
19
|
-
export interface FlowOrchestrationInstanceCollectionRepresentationNormalized {
|
|
20
|
-
/** Collection of Orchestration instances */
|
|
21
|
-
instances: Array<FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Information about a collection of Orchestration instances.
|
|
25
|
-
*
|
|
26
|
-
* Keys:
|
|
27
|
-
* (none)
|
|
28
|
-
*/
|
|
29
|
-
export interface FlowOrchestrationInstanceCollectionRepresentation {
|
|
30
|
-
instances: Array<FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
|
|
31
|
-
}
|
|
1
|
+
import { FlowOrchestrationInstanceRepresentation as FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation } from './FlowOrchestrationInstanceRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 100;
|
|
4
|
+
export declare const VERSION = "ff1028f6e4a6a9aeed322135fdf518b5";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: FlowOrchestrationInstanceCollectionRepresentation, existing: FlowOrchestrationInstanceCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationInstanceCollectionRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: FlowOrchestrationInstanceCollectionRepresentationNormalized, incoming: FlowOrchestrationInstanceCollectionRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: FlowOrchestrationInstanceCollectionRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationInstanceCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* Information about a collection of Orchestration instances.
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface FlowOrchestrationInstanceCollectionRepresentationNormalized {
|
|
20
|
+
/** Collection of Orchestration instances */
|
|
21
|
+
instances: Array<FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Information about a collection of Orchestration instances.
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface FlowOrchestrationInstanceCollectionRepresentation {
|
|
30
|
+
instances: Array<FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
|
|
31
|
+
}
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
import { FlowOrchestrationStageInstanceRepresentation as FlowOrchestrationStageInstanceRepresentation_FlowOrchestrationStageInstanceRepresentation } from './FlowOrchestrationStageInstanceRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "5cd09fe6e4e088f4787a6cf1b9ab7a2a";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: FlowOrchestrationInstanceRepresentation, existing: FlowOrchestrationInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationInstanceRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: FlowOrchestrationInstanceRepresentationNormalized, incoming: FlowOrchestrationInstanceRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: FlowOrchestrationInstanceRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Information about an Orchestration instance.
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface FlowOrchestrationInstanceRepresentationNormalized {
|
|
19
|
-
/** Developer name of the flow definition */
|
|
20
|
-
flowDefinitionDeveloperName: string | null;
|
|
21
|
-
/** Id of the flow definition */
|
|
22
|
-
flowDefinitionId: string | null;
|
|
23
|
-
/** Name of the flow definition */
|
|
24
|
-
flowDefinitionName: string | null;
|
|
25
|
-
/** Orchestrator instance id */
|
|
26
|
-
id: string;
|
|
27
|
-
/** Id of the interview to resume */
|
|
28
|
-
interviewId: string | null;
|
|
29
|
-
/** The Orchestrator Instance stages */
|
|
30
|
-
stageInstances: Array<FlowOrchestrationStageInstanceRepresentation_FlowOrchestrationStageInstanceRepresentation>;
|
|
31
|
-
/** The Orchestrator Instance status */
|
|
32
|
-
status: string;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* Information about an Orchestration instance.
|
|
36
|
-
*
|
|
37
|
-
* Keys:
|
|
38
|
-
* (none)
|
|
39
|
-
*/
|
|
40
|
-
export interface FlowOrchestrationInstanceRepresentation {
|
|
41
|
-
flowDefinitionDeveloperName: string | null;
|
|
42
|
-
flowDefinitionId: string | null;
|
|
43
|
-
flowDefinitionName: string | null;
|
|
44
|
-
id: string;
|
|
45
|
-
interviewId: string | null;
|
|
46
|
-
stageInstances: Array<FlowOrchestrationStageInstanceRepresentation_FlowOrchestrationStageInstanceRepresentation>;
|
|
47
|
-
status: string;
|
|
48
|
-
}
|
|
1
|
+
import { FlowOrchestrationStageInstanceRepresentation as FlowOrchestrationStageInstanceRepresentation_FlowOrchestrationStageInstanceRepresentation } from './FlowOrchestrationStageInstanceRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "5cd09fe6e4e088f4787a6cf1b9ab7a2a";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FlowOrchestrationInstanceRepresentation, existing: FlowOrchestrationInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationInstanceRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FlowOrchestrationInstanceRepresentationNormalized, incoming: FlowOrchestrationInstanceRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: FlowOrchestrationInstanceRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Information about an Orchestration instance.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface FlowOrchestrationInstanceRepresentationNormalized {
|
|
19
|
+
/** Developer name of the flow definition */
|
|
20
|
+
flowDefinitionDeveloperName: string | null;
|
|
21
|
+
/** Id of the flow definition */
|
|
22
|
+
flowDefinitionId: string | null;
|
|
23
|
+
/** Name of the flow definition */
|
|
24
|
+
flowDefinitionName: string | null;
|
|
25
|
+
/** Orchestrator instance id */
|
|
26
|
+
id: string;
|
|
27
|
+
/** Id of the interview to resume */
|
|
28
|
+
interviewId: string | null;
|
|
29
|
+
/** The Orchestrator Instance stages */
|
|
30
|
+
stageInstances: Array<FlowOrchestrationStageInstanceRepresentation_FlowOrchestrationStageInstanceRepresentation>;
|
|
31
|
+
/** The Orchestrator Instance status */
|
|
32
|
+
status: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Information about an Orchestration instance.
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* (none)
|
|
39
|
+
*/
|
|
40
|
+
export interface FlowOrchestrationInstanceRepresentation {
|
|
41
|
+
flowDefinitionDeveloperName: string | null;
|
|
42
|
+
flowDefinitionId: string | null;
|
|
43
|
+
flowDefinitionName: string | null;
|
|
44
|
+
id: string;
|
|
45
|
+
interviewId: string | null;
|
|
46
|
+
stageInstances: Array<FlowOrchestrationStageInstanceRepresentation_FlowOrchestrationStageInstanceRepresentation>;
|
|
47
|
+
status: string;
|
|
48
|
+
}
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { FlowOrchestrationStepInstanceRepresentation as FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation } from './FlowOrchestrationStepInstanceRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "4d586ae3293b53e776853c9b4e1ad36b";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: FlowOrchestrationStageInstanceRepresentation, existing: FlowOrchestrationStageInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationStageInstanceRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: FlowOrchestrationStageInstanceRepresentationNormalized, incoming: FlowOrchestrationStageInstanceRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: FlowOrchestrationStageInstanceRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationStageInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Information about an Orchestration stage instance.
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface FlowOrchestrationStageInstanceRepresentationNormalized {
|
|
19
|
-
/** Orchestration stage instance id */
|
|
20
|
-
id: string;
|
|
21
|
-
/** Orchestration stage instance label */
|
|
22
|
-
label: string | null;
|
|
23
|
-
/** Orchestration stage instance name */
|
|
24
|
-
name: string | null;
|
|
25
|
-
/** The Orchestration Stage Instance status */
|
|
26
|
-
status: string;
|
|
27
|
-
/** Orchestration stage instance steps */
|
|
28
|
-
stepInstances: Array<FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation>;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Information about an Orchestration stage instance.
|
|
32
|
-
*
|
|
33
|
-
* Keys:
|
|
34
|
-
* (none)
|
|
35
|
-
*/
|
|
36
|
-
export interface FlowOrchestrationStageInstanceRepresentation {
|
|
37
|
-
id: string;
|
|
38
|
-
label: string | null;
|
|
39
|
-
name: string | null;
|
|
40
|
-
status: string;
|
|
41
|
-
stepInstances: Array<FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation>;
|
|
42
|
-
}
|
|
1
|
+
import { FlowOrchestrationStepInstanceRepresentation as FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation } from './FlowOrchestrationStepInstanceRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "4d586ae3293b53e776853c9b4e1ad36b";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FlowOrchestrationStageInstanceRepresentation, existing: FlowOrchestrationStageInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationStageInstanceRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FlowOrchestrationStageInstanceRepresentationNormalized, incoming: FlowOrchestrationStageInstanceRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: FlowOrchestrationStageInstanceRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationStageInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Information about an Orchestration stage instance.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface FlowOrchestrationStageInstanceRepresentationNormalized {
|
|
19
|
+
/** Orchestration stage instance id */
|
|
20
|
+
id: string;
|
|
21
|
+
/** Orchestration stage instance label */
|
|
22
|
+
label: string | null;
|
|
23
|
+
/** Orchestration stage instance name */
|
|
24
|
+
name: string | null;
|
|
25
|
+
/** The Orchestration Stage Instance status */
|
|
26
|
+
status: string;
|
|
27
|
+
/** Orchestration stage instance steps */
|
|
28
|
+
stepInstances: Array<FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation>;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Information about an Orchestration stage instance.
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface FlowOrchestrationStageInstanceRepresentation {
|
|
37
|
+
id: string;
|
|
38
|
+
label: string | null;
|
|
39
|
+
name: string | null;
|
|
40
|
+
status: string;
|
|
41
|
+
stepInstances: Array<FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation>;
|
|
42
|
+
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import { FlowOrchestrationWorkItemRepresentation as FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation } from './FlowOrchestrationWorkItemRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "9817b563e81370d761a0d7f4b18410e4";
|
|
4
|
-
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
-
export declare const RepresentationType: string;
|
|
6
|
-
export declare function normalize(input: FlowOrchestrationStepInstanceRepresentation, existing: FlowOrchestrationStepInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationStepInstanceRepresentationNormalized;
|
|
7
|
-
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
-
export declare function equals(existing: FlowOrchestrationStepInstanceRepresentationNormalized, incoming: FlowOrchestrationStepInstanceRepresentationNormalized): boolean;
|
|
9
|
-
export declare function deepFreeze(input: FlowOrchestrationStepInstanceRepresentation): void;
|
|
10
|
-
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationStepInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
-
/**
|
|
13
|
-
* Information about an Orchestration step instance.
|
|
14
|
-
*
|
|
15
|
-
* Keys:
|
|
16
|
-
* (none)
|
|
17
|
-
*/
|
|
18
|
-
export interface FlowOrchestrationStepInstanceRepresentationNormalized {
|
|
19
|
-
/** Orchestration step instance id */
|
|
20
|
-
id: string;
|
|
21
|
-
/** Orchestration step instance label */
|
|
22
|
-
label: string | null;
|
|
23
|
-
/** Orchestration step instance name */
|
|
24
|
-
name: string | null;
|
|
25
|
-
/** The Orchestration Step Instance status */
|
|
26
|
-
status: string;
|
|
27
|
-
/** The Orchestration Step Instance step type */
|
|
28
|
-
stepType: string;
|
|
29
|
-
/** Orchestration step instance work items */
|
|
30
|
-
workItems: Array<FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation>;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Information about an Orchestration step instance.
|
|
34
|
-
*
|
|
35
|
-
* Keys:
|
|
36
|
-
* (none)
|
|
37
|
-
*/
|
|
38
|
-
export interface FlowOrchestrationStepInstanceRepresentation {
|
|
39
|
-
id: string;
|
|
40
|
-
label: string | null;
|
|
41
|
-
name: string | null;
|
|
42
|
-
status: string;
|
|
43
|
-
stepType: string;
|
|
44
|
-
workItems: Array<FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation>;
|
|
45
|
-
}
|
|
1
|
+
import { FlowOrchestrationWorkItemRepresentation as FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation } from './FlowOrchestrationWorkItemRepresentation';
|
|
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "9817b563e81370d761a0d7f4b18410e4";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: FlowOrchestrationStepInstanceRepresentation, existing: FlowOrchestrationStepInstanceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationStepInstanceRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: FlowOrchestrationStepInstanceRepresentationNormalized, incoming: FlowOrchestrationStepInstanceRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: FlowOrchestrationStepInstanceRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationStepInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Information about an Orchestration step instance.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface FlowOrchestrationStepInstanceRepresentationNormalized {
|
|
19
|
+
/** Orchestration step instance id */
|
|
20
|
+
id: string;
|
|
21
|
+
/** Orchestration step instance label */
|
|
22
|
+
label: string | null;
|
|
23
|
+
/** Orchestration step instance name */
|
|
24
|
+
name: string | null;
|
|
25
|
+
/** The Orchestration Step Instance status */
|
|
26
|
+
status: string;
|
|
27
|
+
/** The Orchestration Step Instance step type */
|
|
28
|
+
stepType: string;
|
|
29
|
+
/** Orchestration step instance work items */
|
|
30
|
+
workItems: Array<FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation>;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Information about an Orchestration step instance.
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface FlowOrchestrationStepInstanceRepresentation {
|
|
39
|
+
id: string;
|
|
40
|
+
label: string | null;
|
|
41
|
+
name: string | null;
|
|
42
|
+
status: string;
|
|
43
|
+
stepType: string;
|
|
44
|
+
workItems: Array<FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation>;
|
|
45
|
+
}
|