@salesforce/lds-adapters-industries-actionplan 0.131.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/industries-actionplan.js +1205 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +66 -0
- package/dist/es/es2018/types/src/generated/adapters/getActionPlanItems.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/getActionPlanStatusInfo.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/adapters/getActionPlans.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +7 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectActionPlan.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectActionPlanActionPlanItemsByActionPlanId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectActionPlanStatusInfoByActionPlanId.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemCollectionRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemDetailedRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemListRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemTaskRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemsWrapperRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanListRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlanStatusInfoOutputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/ActionPlansWrapperOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ComputedFieldsWrapperRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/FieldRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/TaskProgressRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +39 -0
- package/package.json +68 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +1253 -0
- package/src/raml/api.raml +262 -0
- package/src/raml/luvio.raml +38 -0
|
@@ -0,0 +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 = "ActionPlan";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectActionPlanActionPlanItemsByActionPlanId_ResourceRequestConfig } from '../resources/getConnectActionPlanActionPlanItemsByActionPlanId';
|
|
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 { ActionPlanItemsWrapperRepresentation as types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation } from '../types/ActionPlanItemsWrapperRepresentation';
|
|
5
|
+
export declare const adapterName = "getActionPlanItems";
|
|
6
|
+
export declare const getActionPlanItems_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetActionPlanItemsConfig {
|
|
8
|
+
actionPlanId: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
}
|
|
11
|
+
export declare function createResourceParams(config: GetActionPlanItemsConfig): resources_getConnectActionPlanActionPlanItemsByActionPlanId_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetActionPlanItemsConfig>): adapter$45$utils_Untrusted<GetActionPlanItemsConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetActionPlanItemsConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig): $64$luvio_engine_Snapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig, resourceParams: resources_getConnectActionPlanActionPlanItemsByActionPlanId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig, resourceParams: resources_getConnectActionPlanActionPlanItemsByActionPlanId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetActionPlanItemsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetActionPlanItemsConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>): $64$luvio_engine_Snapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>;
|
|
27
|
+
export declare const getActionPlanItemsAdapterFactory: $64$luvio_engine_AdapterFactory<GetActionPlanItemsConfig, types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectActionPlanStatusInfoByActionPlanId_ResourceRequestConfig } from '../resources/getConnectActionPlanStatusInfoByActionPlanId';
|
|
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 { ActionPlanStatusInfoOutputRepresentation as types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation } from '../types/ActionPlanStatusInfoOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getActionPlanStatusInfo";
|
|
6
|
+
export declare const getActionPlanStatusInfo_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetActionPlanStatusInfoConfig {
|
|
8
|
+
actionPlanId: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function createResourceParams(config: GetActionPlanStatusInfoConfig): resources_getConnectActionPlanStatusInfoByActionPlanId_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetActionPlanStatusInfoConfig>): adapter$45$utils_Untrusted<GetActionPlanStatusInfoConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetActionPlanStatusInfoConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig): $64$luvio_engine_Snapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig, resourceParams: resources_getConnectActionPlanStatusInfoByActionPlanId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig, resourceParams: resources_getConnectActionPlanStatusInfoByActionPlanId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetActionPlanStatusInfoConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetActionPlanStatusInfoConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>): $64$luvio_engine_Snapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, any>;
|
|
26
|
+
export declare const getActionPlanStatusInfoAdapterFactory: $64$luvio_engine_AdapterFactory<GetActionPlanStatusInfoConfig, types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
|
+
import { ResourceRequestConfig as resources_getConnectActionPlan_ResourceRequestConfig } from '../resources/getConnectActionPlan';
|
|
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 { ActionPlansWrapperOutputRepresentation as types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation } from '../types/ActionPlansWrapperOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getActionPlans";
|
|
6
|
+
export declare const getActionPlans_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
|
+
export interface GetActionPlansConfig {
|
|
8
|
+
actionPlanType?: string;
|
|
9
|
+
limit?: number;
|
|
10
|
+
order?: string;
|
|
11
|
+
orderingParam?: string;
|
|
12
|
+
targetId?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare function createResourceParams(config: GetActionPlansConfig): resources_getConnectActionPlan_ResourceRequestConfig;
|
|
15
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig): string;
|
|
16
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetActionPlansConfig>): adapter$45$utils_Untrusted<GetActionPlansConfig>;
|
|
18
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetActionPlansConfig | null;
|
|
19
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig): $64$luvio_engine_Fragment;
|
|
20
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig): $64$luvio_engine_Snapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>;
|
|
21
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig, resourceParams: resources_getConnectActionPlan_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>>;
|
|
22
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig, resourceParams: resources_getConnectActionPlan_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
23
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetActionPlansConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>>;
|
|
24
|
+
export type BuildSnapshotContext = {
|
|
25
|
+
luvio: $64$luvio_engine_Luvio;
|
|
26
|
+
config: GetActionPlansConfig;
|
|
27
|
+
};
|
|
28
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>>;
|
|
29
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>): $64$luvio_engine_Snapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>;
|
|
30
|
+
export declare const getActionPlansAdapterFactory: $64$luvio_engine_AdapterFactory<GetActionPlansConfig, types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare let getActionPlanItems: any;
|
|
2
|
+
declare let getActionPlanStatusInfo: any;
|
|
3
|
+
declare let getActionPlans: any;
|
|
4
|
+
declare let getActionPlanItems_imperative: any;
|
|
5
|
+
declare let getActionPlanStatusInfo_imperative: any;
|
|
6
|
+
declare let getActionPlans_imperative: any;
|
|
7
|
+
export { getActionPlanItems, getActionPlanStatusInfo, getActionPlans, getActionPlanItems_imperative, getActionPlanStatusInfo_imperative, getActionPlans_imperative };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, 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 { ActionPlansWrapperOutputRepresentation as types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation } from '../types/ActionPlansWrapperOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
actionPlanType?: string;
|
|
6
|
+
limit?: number;
|
|
7
|
+
order?: string;
|
|
8
|
+
orderingParam?: string;
|
|
9
|
+
targetId?: string;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>;
|
|
17
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, 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 { ActionPlanItemsWrapperRepresentation as types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation } from '../types/ActionPlanItemsWrapperRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
actionPlanId: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
limit?: number;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>;
|
|
16
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
export default createResourceRequest;
|
|
@@ -0,0 +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 { ActionPlanStatusInfoOutputRepresentation as types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation } from '../types/ActionPlanStatusInfoOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
actionPlanId: 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_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ActionPlanItemDetailedRepresentation as ActionPlanItemDetailedRepresentation_ActionPlanItemDetailedRepresentation } from './ActionPlanItemDetailedRepresentation';
|
|
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 = "d1ceccf690b553566994e6a7881d37b7";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ActionPlanItemCollectionRepresentation, existing: ActionPlanItemCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanItemCollectionRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ActionPlanItemCollectionRepresentationNormalized, incoming: ActionPlanItemCollectionRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ActionPlanItemCollectionRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Record Representation of Collection of ActionPlanItems
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ActionPlanItemCollectionRepresentationNormalized {
|
|
19
|
+
/** Specifies the collection of records of ActionPlanItem */
|
|
20
|
+
records: Array<ActionPlanItemDetailedRepresentation_ActionPlanItemDetailedRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Record Representation of Collection of ActionPlanItems
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ActionPlanItemCollectionRepresentation {
|
|
29
|
+
records: Array<ActionPlanItemDetailedRepresentation_ActionPlanItemDetailedRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ActionPlanItemTaskRepresentation as ActionPlanItemTaskRepresentation_ActionPlanItemTaskRepresentation } from './ActionPlanItemTaskRepresentation';
|
|
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 = "83edfb6bebbcebd5f3f3c4f1d486a7b4";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ActionPlanItemDetailedRepresentation, existing: ActionPlanItemDetailedRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanItemDetailedRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ActionPlanItemDetailedRepresentationNormalized, incoming: ActionPlanItemDetailedRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ActionPlanItemDetailedRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemDetailedRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Record Representation of ActionPlanItem
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ActionPlanItemDetailedRepresentationNormalized {
|
|
19
|
+
actionPlanItemTask?: ActionPlanItemTaskRepresentation_ActionPlanItemTaskRepresentation;
|
|
20
|
+
/** ID of this record. */
|
|
21
|
+
id: string;
|
|
22
|
+
/** Returns if the ActionPlanItem is mandatory or not */
|
|
23
|
+
isRequired: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Record Representation of ActionPlanItem
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface ActionPlanItemDetailedRepresentation {
|
|
32
|
+
actionPlanItemTask?: ActionPlanItemTaskRepresentation_ActionPlanItemTaskRepresentation;
|
|
33
|
+
id: string;
|
|
34
|
+
isRequired: boolean;
|
|
35
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ActionPlanItemRepresentation as ActionPlanItemRepresentation_ActionPlanItemRepresentation } from './ActionPlanItemRepresentation';
|
|
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 = "8ab927b9fab7062d2921dfde74fbee76";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ActionPlanItemListRepresentation, existing: ActionPlanItemListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanItemListRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ActionPlanItemListRepresentationNormalized, incoming: ActionPlanItemListRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ActionPlanItemListRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Representation for list of mandatory Action Plan Items that are pending
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ActionPlanItemListRepresentationNormalized {
|
|
19
|
+
/** List of mandatory action plan items that are pending */
|
|
20
|
+
records: Array<ActionPlanItemRepresentation_ActionPlanItemRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Representation for list of mandatory Action Plan Items that are pending
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ActionPlanItemListRepresentation {
|
|
29
|
+
records: Array<ActionPlanItemRepresentation_ActionPlanItemRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "8aeaa3fead4123554df295b53be96919";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ActionPlanItemRepresentation, existing: ActionPlanItemRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanItemRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ActionPlanItemRepresentationNormalized, incoming: ActionPlanItemRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ActionPlanItemRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Representation of Action Plan Item
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ActionPlanItemRepresentationNormalized {
|
|
18
|
+
/** ID of the Action Plan Item */
|
|
19
|
+
id: string;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Representation of Action Plan Item
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface ActionPlanItemRepresentation {
|
|
28
|
+
id: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ComputedFieldsWrapperRepresentation as ComputedFieldsWrapperRepresentation_ComputedFieldsWrapperRepresentation } from './ComputedFieldsWrapperRepresentation';
|
|
2
|
+
import { FieldRepresentation as FieldRepresentation_FieldRepresentation } from './FieldRepresentation';
|
|
3
|
+
import { TaskProgressRepresentation as TaskProgressRepresentation_TaskProgressRepresentation } from './TaskProgressRepresentation';
|
|
4
|
+
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';
|
|
5
|
+
export declare const VERSION = "9278fc2539f1657efd47c4c4c8b2b305";
|
|
6
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
|
+
export declare const RepresentationType: string;
|
|
8
|
+
export declare function normalize(input: ActionPlanItemTaskRepresentation, existing: ActionPlanItemTaskRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanItemTaskRepresentationNormalized;
|
|
9
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
10
|
+
export declare function equals(existing: ActionPlanItemTaskRepresentationNormalized, incoming: ActionPlanItemTaskRepresentationNormalized): boolean;
|
|
11
|
+
export declare function deepFreeze(input: ActionPlanItemTaskRepresentation): void;
|
|
12
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
13
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemTaskRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
14
|
+
/**
|
|
15
|
+
* Record Representation of ActionPlanItemTask
|
|
16
|
+
*
|
|
17
|
+
* Keys:
|
|
18
|
+
* (none)
|
|
19
|
+
*/
|
|
20
|
+
export interface ActionPlanItemTaskRepresentationNormalized {
|
|
21
|
+
computedFields?: ComputedFieldsWrapperRepresentation_ComputedFieldsWrapperRepresentation;
|
|
22
|
+
/** The fields for the task */
|
|
23
|
+
fields?: Array<FieldRepresentation_FieldRepresentation>;
|
|
24
|
+
/** ID of this record. */
|
|
25
|
+
id: string;
|
|
26
|
+
progress?: TaskProgressRepresentation_TaskProgressRepresentation;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Record Representation of ActionPlanItemTask
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface ActionPlanItemTaskRepresentation {
|
|
35
|
+
computedFields?: ComputedFieldsWrapperRepresentation_ComputedFieldsWrapperRepresentation;
|
|
36
|
+
fields?: Array<FieldRepresentation_FieldRepresentation>;
|
|
37
|
+
id: string;
|
|
38
|
+
progress?: TaskProgressRepresentation_TaskProgressRepresentation;
|
|
39
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ActionPlanItemCollectionRepresentation as ActionPlanItemCollectionRepresentation_ActionPlanItemCollectionRepresentation } from './ActionPlanItemCollectionRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "01f1998519e78c50e1b67804b6fcb652";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ActionPlanItemsWrapperRepresentation, existing: ActionPlanItemsWrapperRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanItemsWrapperRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: ActionPlanItemsWrapperRepresentationNormalized, incoming: ActionPlanItemsWrapperRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: ActionPlanItemsWrapperRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemsWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* Record Representation of ActionPlanItemsWrapper
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface ActionPlanItemsWrapperRepresentationNormalized {
|
|
20
|
+
/** Specifies the wrapper of records of ActionPlanItems */
|
|
21
|
+
actionPlanItems: ActionPlanItemCollectionRepresentation_ActionPlanItemCollectionRepresentation;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Record Representation of ActionPlanItemsWrapper
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ActionPlanItemsWrapperRepresentation {
|
|
30
|
+
actionPlanItems: ActionPlanItemCollectionRepresentation_ActionPlanItemCollectionRepresentation;
|
|
31
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ActionPlanRepresentation as ActionPlanRepresentation_ActionPlanRepresentation } from './ActionPlanRepresentation';
|
|
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 = "caa14bb8a47a6551000c3a888ed201ac";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ActionPlanListRepresentation, existing: ActionPlanListRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanListRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ActionPlanListRepresentationNormalized, incoming: ActionPlanListRepresentationNormalized): boolean;
|
|
9
|
+
export declare function deepFreeze(input: ActionPlanListRepresentation): void;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
12
|
+
/**
|
|
13
|
+
* Representation of Action Plan List
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface ActionPlanListRepresentationNormalized {
|
|
19
|
+
/** List of action plan records */
|
|
20
|
+
records: Array<ActionPlanRepresentation_ActionPlanRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Representation of Action Plan List
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ActionPlanListRepresentation {
|
|
29
|
+
records: Array<ActionPlanRepresentation_ActionPlanRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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 = "c3b9765da8aaf3ca71fd8168149aa2f6";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ActionPlanRepresentation, existing: ActionPlanRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ActionPlanRepresentationNormalized, incoming: ActionPlanRepresentationNormalized): boolean;
|
|
8
|
+
export declare function deepFreeze(input: ActionPlanRepresentation): void;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
11
|
+
/**
|
|
12
|
+
* Representation of Action Plan
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ActionPlanRepresentationNormalized {
|
|
18
|
+
/** ID of the Action Plan */
|
|
19
|
+
id: string;
|
|
20
|
+
/** Total number of Action Plan Item present in Action Plan */
|
|
21
|
+
itemCount?: number;
|
|
22
|
+
/** Name of the Action Plan */
|
|
23
|
+
name: string;
|
|
24
|
+
/** Status Code for the Action Plan */
|
|
25
|
+
statusCode?: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Representation of Action Plan
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface ActionPlanRepresentation {
|
|
34
|
+
id: string;
|
|
35
|
+
itemCount?: number;
|
|
36
|
+
name: string;
|
|
37
|
+
statusCode?: string;
|
|
38
|
+
}
|
package/dist/es/es2018/types/src/generated/types/ActionPlanStatusInfoOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ActionPlanItemListRepresentation as ActionPlanItemListRepresentation_ActionPlanItemListRepresentation } from './ActionPlanItemListRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "8d866f38a882381bbdafb2496aa6f6b8";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ActionPlanStatusInfoOutputRepresentation, existing: ActionPlanStatusInfoOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlanStatusInfoOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: ActionPlanStatusInfoOutputRepresentationNormalized, incoming: ActionPlanStatusInfoOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: ActionPlanStatusInfoOutputRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanStatusInfoOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* Representation for Action Plan Status which tells whether all mandatory tasks are completed
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface ActionPlanStatusInfoOutputRepresentationNormalized {
|
|
20
|
+
/** Whether all mandatory Items are completed */
|
|
21
|
+
mandatoryItemsCompleted: boolean;
|
|
22
|
+
/** List of Mandatory Action Plan Items that are pending */
|
|
23
|
+
mandatoryItemsPending?: ActionPlanItemListRepresentation_ActionPlanItemListRepresentation;
|
|
24
|
+
/** Whether all optional items are completed */
|
|
25
|
+
optionalItemsCompleted: boolean;
|
|
26
|
+
/** Current status code of Action Plan */
|
|
27
|
+
statusCode?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Representation for Action Plan Status which tells whether all mandatory tasks are completed
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface ActionPlanStatusInfoOutputRepresentation {
|
|
36
|
+
mandatoryItemsCompleted: boolean;
|
|
37
|
+
mandatoryItemsPending?: ActionPlanItemListRepresentation_ActionPlanItemListRepresentation;
|
|
38
|
+
optionalItemsCompleted: boolean;
|
|
39
|
+
statusCode?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ActionPlanListRepresentation as ActionPlanListRepresentation_ActionPlanListRepresentation } from './ActionPlanListRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "0ec040ec594b42ffdf6182e2b338e7ff";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: ActionPlansWrapperOutputRepresentation, existing: ActionPlansWrapperOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionPlansWrapperOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: ActionPlansWrapperOutputRepresentationNormalized, incoming: ActionPlansWrapperOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare function deepFreeze(input: ActionPlansWrapperOutputRepresentation): void;
|
|
11
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
+
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlansWrapperOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
13
|
+
/**
|
|
14
|
+
* Representation of Action Plans List Api Output
|
|
15
|
+
*
|
|
16
|
+
* Keys:
|
|
17
|
+
* (none)
|
|
18
|
+
*/
|
|
19
|
+
export interface ActionPlansWrapperOutputRepresentationNormalized {
|
|
20
|
+
/** List of Action Plans */
|
|
21
|
+
actionPlan: ActionPlanListRepresentation_ActionPlanListRepresentation;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Representation of Action Plans List Api Output
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ActionPlansWrapperOutputRepresentation {
|
|
30
|
+
actionPlan: ActionPlanListRepresentation_ActionPlanListRepresentation;
|
|
31
|
+
}
|