@salesforce/lds-adapters-platform-interaction-orchestrator 0.1.0-dev1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/es/es2018/platform-interaction-orchestrator.js +1548 -0
  3. package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
  4. package/dist/es/es2018/types/src/generated/adapters/getOrchestrationInstance.d.ts +27 -0
  5. package/dist/es/es2018/types/src/generated/adapters/getOrchestrationInstanceCollection.d.ts +28 -0
  6. package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
  7. package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -0
  8. package/dist/es/es2018/types/src/generated/resources/getConnectInteractionOrchestrationInstanceDetail.d.ts +15 -0
  9. package/dist/es/es2018/types/src/generated/resources/getConnectInteractionOrchestrationInstances.d.ts +16 -0
  10. package/dist/es/es2018/types/src/generated/types/FlowOrchestrationInstanceCollectionRepresentation.d.ts +30 -0
  11. package/dist/es/es2018/types/src/generated/types/FlowOrchestrationInstanceRepresentation.d.ts +48 -0
  12. package/dist/es/es2018/types/src/generated/types/FlowOrchestrationStageInstanceRepresentation.d.ts +44 -0
  13. package/dist/es/es2018/types/src/generated/types/FlowOrchestrationStepInstanceRepresentation.d.ts +62 -0
  14. package/dist/es/es2018/types/src/generated/types/FlowOrchestrationWorkAssignmentRepresentation.d.ts +25 -0
  15. package/dist/es/es2018/types/src/generated/types/FlowOrchestrationWorkItemRepresentation.d.ts +61 -0
  16. package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
  17. package/package.json +72 -0
  18. package/sfdc/index.d.ts +1 -0
  19. package/sfdc/index.js +1598 -0
  20. package/src/raml/api.raml +244 -0
  21. package/src/raml/luvio.raml +29 -0
@@ -0,0 +1,62 @@
1
+ import { Adapter as $64$luvio_engine_Adapter, Snapshot as $64$luvio_engine_Snapshot, UnfulfilledSnapshot as $64$luvio_engine_UnfulfilledSnapshot, AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata } from '@luvio/engine';
2
+ export declare const ObjectPrototypeHasOwnProperty: (v: PropertyKey) => boolean;
3
+ declare const ObjectKeys: {
4
+ (o: object): string[];
5
+ (o: {}): string[];
6
+ }, ObjectCreate: {
7
+ (o: object | null): any;
8
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
9
+ };
10
+ export { ObjectCreate, ObjectKeys };
11
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
12
+ export declare const ArrayPrototypePush: (...items: any[]) => number;
13
+ export interface AdapterValidationConfig {
14
+ displayName: string;
15
+ parameters: {
16
+ required: string[];
17
+ optional: string[];
18
+ unsupported?: string[];
19
+ };
20
+ }
21
+ /**
22
+ * Validates an adapter config is well-formed.
23
+ * @param config The config to validate.
24
+ * @param adapter The adapter validation configuration.
25
+ * @param oneOf The keys the config must contain at least one of.
26
+ * @throws A TypeError if config doesn't satisfy the adapter's config validation.
27
+ */
28
+ export declare function validateConfig<T>(config: Untrusted<T>, adapter: AdapterValidationConfig, oneOf?: string[]): void;
29
+ export declare function untrustedIsObject<Base>(untrusted: unknown): untrusted is Untrusted<Base>;
30
+ export type UncoercedConfiguration<Base, Options extends {
31
+ [key in keyof Base]?: any;
32
+ }> = {
33
+ [Key in keyof Base]?: Base[Key] | Options[Key];
34
+ };
35
+ export type Untrusted<Base> = Partial<Base>;
36
+ export declare function areRequiredParametersPresent<T>(config: any, configPropertyNames: AdapterValidationConfig): config is T;
37
+ export declare function refreshable<C, D, R>(adapter: $64$luvio_engine_Adapter<C, D>, resolve: (config: unknown) => Promise<$64$luvio_engine_Snapshot<R>>): $64$luvio_engine_Adapter<C, D>;
38
+ export declare const SNAPSHOT_STATE_FULFILLED = "Fulfilled";
39
+ export declare const SNAPSHOT_STATE_UNFULFILLED = "Unfulfilled";
40
+ export declare const snapshotRefreshOptions: {
41
+ overrides: {
42
+ headers: {
43
+ 'Cache-Control': string;
44
+ };
45
+ };
46
+ };
47
+ /**
48
+ * A deterministic JSON stringify implementation. Heavily adapted from https://github.com/epoberezkin/fast-json-stable-stringify.
49
+ * This is needed because insertion order for JSON.stringify(object) affects output:
50
+ * JSON.stringify({a: 1, b: 2})
51
+ * "{"a":1,"b":2}"
52
+ * JSON.stringify({b: 2, a: 1})
53
+ * "{"b":2,"a":1}"
54
+ * @param data Data to be JSON-stringified.
55
+ * @returns JSON.stringified value with consistent ordering of keys.
56
+ */
57
+ export declare function stableJSONStringify(node: any): string | undefined;
58
+ export declare function getFetchResponseStatusText(status: number): string;
59
+ export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
60
+ export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
61
+ export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
62
+ export declare const keyPrefix = "InteractionOrchestrator";
@@ -0,0 +1,27 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_getConnectInteractionOrchestrationInstanceDetail_ResourceRequestConfig } from '../resources/getConnectInteractionOrchestrationInstanceDetail';
4
+ import { FlowOrchestrationInstanceRepresentation as types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation } from '../types/FlowOrchestrationInstanceRepresentation';
5
+ export declare const adapterName = "getOrchestrationInstance";
6
+ export declare const getOrchestrationInstance_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getOrchestrationInstance_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetOrchestrationInstanceConfig {
9
+ instanceId?: string;
10
+ }
11
+ export declare const createResourceParams: (config: GetOrchestrationInstanceConfig) => resources_getConnectInteractionOrchestrationInstanceDetail_ResourceRequestConfig;
12
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig): string;
13
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig): $64$luvio_engine_NormalizedKeyMetadata;
14
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetOrchestrationInstanceConfig>): adapter$45$utils_Untrusted<GetOrchestrationInstanceConfig>;
15
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetOrchestrationInstanceConfig | null;
16
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig): $64$luvio_engine_Fragment;
17
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, any>;
18
+ export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig, resourceParams: resources_getConnectInteractionOrchestrationInstanceDetail_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, any>>;
19
+ export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig, resourceParams: resources_getConnectInteractionOrchestrationInstanceDetail_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
20
+ export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, any>>;
21
+ export type BuildSnapshotContext = {
22
+ luvio: $64$luvio_engine_Luvio;
23
+ config: GetOrchestrationInstanceConfig;
24
+ };
25
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, any>>;
26
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, any>;
27
+ export declare const getOrchestrationInstanceAdapterFactory: $64$luvio_engine_AdapterFactory<GetOrchestrationInstanceConfig, types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
@@ -0,0 +1,28 @@
1
+ import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
2
+ import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
3
+ import { ResourceRequestConfig as resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig } from '../resources/getConnectInteractionOrchestrationInstances';
4
+ import { FlowOrchestrationInstanceCollectionRepresentation as types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation } from '../types/FlowOrchestrationInstanceCollectionRepresentation';
5
+ export declare const adapterName = "getOrchestrationInstanceCollection";
6
+ export declare const getOrchestrationInstanceCollection_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
7
+ export declare const getOrchestrationInstanceCollection_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
8
+ export interface GetOrchestrationInstanceCollectionConfig {
9
+ contextRecordId?: string;
10
+ relatedRecordId?: string;
11
+ }
12
+ export declare const createResourceParams: (config: GetOrchestrationInstanceCollectionConfig) => resources_getConnectInteractionOrchestrationInstances_ResourceRequestConfig;
13
+ export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): string;
14
+ export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_NormalizedKeyMetadata;
15
+ export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetOrchestrationInstanceCollectionConfig>): adapter$45$utils_Untrusted<GetOrchestrationInstanceCollectionConfig>;
16
+ export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetOrchestrationInstanceCollectionConfig | null;
17
+ export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_Fragment;
18
+ export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetOrchestrationInstanceCollectionConfig): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
19
+ 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>>;
20
+ 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>;
21
+ 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>>;
22
+ export type BuildSnapshotContext = {
23
+ luvio: $64$luvio_engine_Luvio;
24
+ config: GetOrchestrationInstanceCollectionConfig;
25
+ };
26
+ export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>>;
27
+ export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>): $64$luvio_engine_Snapshot<types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation, any>;
28
+ export declare const getOrchestrationInstanceCollectionAdapterFactory: $64$luvio_engine_AdapterFactory<GetOrchestrationInstanceCollectionConfig, types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation>;
@@ -0,0 +1,2 @@
1
+ export { getOrchestrationInstanceAdapterFactory } from '../adapters/getOrchestrationInstance';
2
+ export { getOrchestrationInstanceCollectionAdapterFactory } from '../adapters/getOrchestrationInstanceCollection';
@@ -0,0 +1,5 @@
1
+ declare let getOrchestrationInstance: any;
2
+ declare let getOrchestrationInstanceCollection: any;
3
+ declare let getOrchestrationInstance_imperative: any;
4
+ declare let getOrchestrationInstanceCollection_imperative: any;
5
+ export { getOrchestrationInstance, getOrchestrationInstanceCollection, getOrchestrationInstance_imperative, getOrchestrationInstanceCollection_imperative, };
@@ -0,0 +1,15 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ import { FlowOrchestrationInstanceRepresentation as types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation } from '../types/FlowOrchestrationInstanceRepresentation';
3
+ export interface ResourceRequestConfig {
4
+ queryParams: {
5
+ instanceId?: 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(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation): void;
12
+ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation, any>;
13
+ export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>): $64$luvio_engine_ErrorSnapshot;
14
+ export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
15
+ export default createResourceRequest;
@@ -0,0 +1,16 @@
1
+ import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
2
+ import { 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(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_FlowOrchestrationInstanceCollectionRepresentation_FlowOrchestrationInstanceCollectionRepresentation): void;
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;
@@ -0,0 +1,30 @@
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } 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 const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationInstanceCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
12
+ /**
13
+ * Information about a collection of Orchestration instances.
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface FlowOrchestrationInstanceCollectionRepresentationNormalized {
19
+ /** Collection of Orchestration instances */
20
+ instances: Array<FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
21
+ }
22
+ /**
23
+ * Information about a collection of Orchestration instances.
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface FlowOrchestrationInstanceCollectionRepresentation {
29
+ instances: Array<FlowOrchestrationInstanceRepresentation_FlowOrchestrationInstanceRepresentation>;
30
+ }
@@ -0,0 +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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const TTL = 100;
4
+ export declare const VERSION = "5cd09fe6e4e088f4787a6cf1b9ab7a2a";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ 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;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: FlowOrchestrationInstanceRepresentationNormalized, incoming: FlowOrchestrationInstanceRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
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
+ }
@@ -0,0 +1,44 @@
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "34c2ae0baf31e5cef069324398009d09";
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 const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationStageInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Information about an Orchestration stage instance.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface FlowOrchestrationStageInstanceRepresentationNormalized {
18
+ /** Orchestration stage instance completion time in seconds */
19
+ completionTime: string | null;
20
+ /** Orchestration stage instance id */
21
+ id: string;
22
+ /** Orchestration stage instance label */
23
+ label: string | null;
24
+ /** Orchestration stage instance name */
25
+ name: string | null;
26
+ /** The Orchestration Stage Instance status */
27
+ status: string;
28
+ /** Orchestration stage instance steps */
29
+ stepInstances: Array<FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation>;
30
+ }
31
+ /**
32
+ * Information about an Orchestration stage instance.
33
+ *
34
+ * Keys:
35
+ * (none)
36
+ */
37
+ export interface FlowOrchestrationStageInstanceRepresentation {
38
+ completionTime: string | null;
39
+ id: string;
40
+ label: string | null;
41
+ name: string | null;
42
+ status: string;
43
+ stepInstances: Array<FlowOrchestrationStepInstanceRepresentation_FlowOrchestrationStepInstanceRepresentation>;
44
+ }
@@ -0,0 +1,62 @@
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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
+ export declare const VERSION = "6d8faa2a100e935ff20990303f8da309";
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 const ingest: $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationStepInstanceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
11
+ /**
12
+ * Information about an Orchestration step instance.
13
+ *
14
+ * Keys:
15
+ * (none)
16
+ */
17
+ export interface FlowOrchestrationStepInstanceRepresentationNormalized {
18
+ /** Orchestration step assignee */
19
+ assignedTo: string | null;
20
+ /** Orchestration step assignee type */
21
+ assigneeType: string | null;
22
+ /** Orchestration step instance comments */
23
+ comments: string | null;
24
+ /** Orchestration step completed by */
25
+ completedBy: string | null;
26
+ /** Orchestration step instance completion time in seconds */
27
+ completionTime: string | null;
28
+ /** Orchestration step instance description */
29
+ description: string | null;
30
+ /** Orchestration step instance id */
31
+ id: string;
32
+ /** Orchestration step instance label */
33
+ label: string | null;
34
+ /** Orchestration step instance name */
35
+ name: string | null;
36
+ /** The Orchestration Step Instance status */
37
+ status: string;
38
+ /** The Orchestration Step Instance step type */
39
+ stepType: string;
40
+ /** Orchestration step instance work items */
41
+ workItems: Array<FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation>;
42
+ }
43
+ /**
44
+ * Information about an Orchestration step instance.
45
+ *
46
+ * Keys:
47
+ * (none)
48
+ */
49
+ export interface FlowOrchestrationStepInstanceRepresentation {
50
+ assignedTo: string | null;
51
+ assigneeType: string | null;
52
+ comments: string | null;
53
+ completedBy: string | null;
54
+ completionTime: string | null;
55
+ description: string | null;
56
+ id: string;
57
+ label: string | null;
58
+ name: string | null;
59
+ status: string;
60
+ stepType: string;
61
+ workItems: Array<FlowOrchestrationWorkItemRepresentation_FlowOrchestrationWorkItemRepresentation>;
62
+ }
@@ -0,0 +1,25 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "985f4771e87efceea3364e5e2d064bcb";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FlowOrchestrationWorkAssignmentRepresentation, existing: FlowOrchestrationWorkAssignmentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationWorkAssignmentRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FlowOrchestrationWorkAssignmentRepresentationNormalized, incoming: FlowOrchestrationWorkAssignmentRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationWorkAssignmentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Information about an Orchestration work assignment.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FlowOrchestrationWorkAssignmentRepresentationNormalized {
17
+ }
18
+ /**
19
+ * Information about an Orchestration work assignment.
20
+ *
21
+ * Keys:
22
+ * (none)
23
+ */
24
+ export interface FlowOrchestrationWorkAssignmentRepresentation {
25
+ }
@@ -0,0 +1,61 @@
1
+ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const VERSION = "b69d8daaed2eb1f7100d21944f59f208";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: FlowOrchestrationWorkItemRepresentation, existing: FlowOrchestrationWorkItemRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FlowOrchestrationWorkItemRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: FlowOrchestrationWorkItemRepresentationNormalized, incoming: FlowOrchestrationWorkItemRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FlowOrchestrationWorkItemRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
10
+ /**
11
+ * Information about an Orchestration work item.
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface FlowOrchestrationWorkItemRepresentationNormalized {
17
+ /** The assignee for this Orchestrator work item */
18
+ assigneeId: string;
19
+ /** Date the work item was created */
20
+ createdDate: string;
21
+ /** Description for this Orchestration work item */
22
+ description: string | null;
23
+ /** The flow type of the orchestration that created the orchestration work item */
24
+ flowType: string | null;
25
+ /** Orchestration work item id */
26
+ id: string;
27
+ /** Label key for this work item */
28
+ label: string | null;
29
+ /** Date the work item was last modified */
30
+ lastModifiedDate: string;
31
+ /** The record this work item is related to */
32
+ relatedRecordId: string | null;
33
+ /** Developer name of the screen flow to start when assignees work on this work item */
34
+ screenFlowDeveloperName: string;
35
+ /** Id of the screen flow to start when assignees work on this work item */
36
+ screenFlowId: string;
37
+ /** Input parameters for the screen flow */
38
+ screenFlowInputs: string;
39
+ /** This work item status */
40
+ status: string;
41
+ }
42
+ /**
43
+ * Information about an Orchestration work item.
44
+ *
45
+ * Keys:
46
+ * (none)
47
+ */
48
+ export interface FlowOrchestrationWorkItemRepresentation {
49
+ assigneeId: string;
50
+ createdDate: string;
51
+ description: string | null;
52
+ flowType: string | null;
53
+ id: string;
54
+ label: string | null;
55
+ lastModifiedDate: string;
56
+ relatedRecordId: string | null;
57
+ screenFlowDeveloperName: string;
58
+ screenFlowId: string;
59
+ screenFlowInputs: string;
60
+ status: string;
61
+ }
@@ -0,0 +1,32 @@
1
+ import { NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
2
+ export declare const ObjectKeys: {
3
+ (o: object): string[];
4
+ (o: {}): string[];
5
+ }, ObjectCreate: {
6
+ (o: object | null): any;
7
+ (o: object | null, properties: PropertyDescriptorMap & ThisType<any>): any;
8
+ }, ObjectAssign: {
9
+ <T extends {}, U>(target: T, source: U): T & U;
10
+ <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
11
+ <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
12
+ (target: object, ...sources: any[]): any;
13
+ };
14
+ export declare const ArrayIsArray: (arg: any) => arg is any[];
15
+ export declare const JSONStringify: {
16
+ (value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
17
+ (value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
18
+ };
19
+ type AllowedPrimitives = boolean | string | number | Date | null;
20
+ type Value<T> = T extends AllowedPrimitives ? T : RecursivePartial<T>;
21
+ export type RecursivePartial<T> = null | {
22
+ [P in keyof T]?: T[P] extends Array<infer U> ? Array<Value<U>> | null : Value<T[P]> | null;
23
+ };
24
+ export declare function equalsArray<U, V extends U[]>(a: V, b: V, equalsItem: (itemA: U, itemB: U) => boolean | void): boolean;
25
+ export declare function equalsObject<U, V extends {
26
+ [key: string]: U;
27
+ }>(a: V, b: V, equalsProp: (propA: U, propB: U) => boolean | void): boolean;
28
+ export declare function createLink(ref: string | $64$luvio_engine_NormalizedKeyMetadata): {
29
+ __ref: string;
30
+ };
31
+ export declare function assignMetadataLink(entry: any, metadataKey: string | $64$luvio_engine_NormalizedKeyMetadata): void;
32
+ export {};
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@salesforce/lds-adapters-platform-interaction-orchestrator",
3
+ "version": "0.1.0-dev1",
4
+ "license": "SEE LICENSE IN LICENSE.txt",
5
+ "description": "Interaction Orchestrator APIs",
6
+ "main": "dist/es/es2018/platform-interaction-orchestrator.js",
7
+ "module": "dist/es/es2018/platform-interaction-orchestrator.js",
8
+ "types": "dist/es/es2018/types/src/generated/artifacts/main.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "sfdc",
12
+ "src/raml/*"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/es/es2018/types/src/generated/artifacts/main.d.ts",
17
+ "import": "./dist/es/es2018/platform-interaction-orchestrator.js",
18
+ "require": "./dist/es/es2018/platform-interaction-orchestrator.js"
19
+ },
20
+ "./sfdc": {
21
+ "types": "./sfdc/index.d.ts",
22
+ "import": "./sfdc/index.js",
23
+ "default": "./sfdc/index.js"
24
+ }
25
+ },
26
+ "contributors": [
27
+ "tstokes@salesforce.com",
28
+ "aaron.liebling@salesforce.com"
29
+ ],
30
+ "sfdc": {
31
+ "namespace": "lightning",
32
+ "module": "platformInteractionOrchestratorApi"
33
+ },
34
+ "scripts": {
35
+ "build": "yarn build:raml && yarn build:services",
36
+ "build:raml": "luvio generate src/raml/luvio.raml src/generated -p '../lds-compiler-plugins'",
37
+ "build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
38
+ "clean": "rm -rf dist sfdc src/generated karma/dist",
39
+ "test:unit": "jest --config=./jest.config.js",
40
+ "release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-interaction-orchestrator"
41
+ },
42
+ "dependencies": {
43
+ "@salesforce/lds-bindings": "^0.1.0-dev1"
44
+ },
45
+ "devDependencies": {
46
+ "@salesforce/lds-compiler-plugins": "^0.1.0-dev1",
47
+ "@salesforce/lds-karma": "^0.1.0-dev1"
48
+ },
49
+ "nx": {
50
+ "targets": {
51
+ "build": {
52
+ "outputs": [
53
+ "{projectRoot}/dist",
54
+ "{projectRoot}/sfdc"
55
+ ]
56
+ },
57
+ "build:raml": {
58
+ "outputs": [
59
+ "{projectRoot}/src/generated"
60
+ ]
61
+ },
62
+ "build:karma": {
63
+ "outputs": [
64
+ "{projectRoot}/karma/dist"
65
+ ]
66
+ }
67
+ }
68
+ },
69
+ "volta": {
70
+ "extends": "../../package.json"
71
+ }
72
+ }
@@ -0,0 +1 @@
1
+ export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';