@salesforce/lds-adapters-sales-pathassistant 0.1.0-dev1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +82 -0
- package/dist/es/es2018/sales-pathassistant.js +691 -0
- package/dist/es/es2018/types/src/generated/adapters/adapter-utils.d.ts +62 -0
- package/dist/es/es2018/types/src/generated/adapters/getPathAssistant.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getPathAssistantDaysInStage.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCollapsibleDrawerUserPref.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +6 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectPathassistantByRecordId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectPathassistantDaysInStageByRecordId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/patchConnectPathassistantCollapsibleDrawerUserPref.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/CollapsibleDrawerUserPrefRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/PathAssistantDaysInStageRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/PathAssistantMetadataRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/type-utils.d.ts +32 -0
- package/package.json +72 -0
- package/sfdc/index.d.ts +1 -0
- package/sfdc/index.js +748 -0
- package/src/raml/api.raml +108 -0
- package/src/raml/luvio.raml +31 -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 = "pathassistant";
|
|
@@ -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_getConnectPathassistantByRecordId_ResourceRequestConfig } from '../resources/getConnectPathassistantByRecordId';
|
|
4
|
+
import { PathAssistantMetadataRepresentation as types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation } from '../types/PathAssistantMetadataRepresentation';
|
|
5
|
+
export declare const adapterName = "getPathAssistant";
|
|
6
|
+
export declare const getPathAssistant_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getPathAssistant_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetPathAssistantConfig {
|
|
9
|
+
recordId: string;
|
|
10
|
+
picklistFieldApiName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetPathAssistantConfig) => resources_getConnectPathassistantByRecordId_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetPathAssistantConfig>): adapter$45$utils_Untrusted<GetPathAssistantConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetPathAssistantConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig): $64$luvio_engine_Snapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig, resourceParams: resources_getConnectPathassistantByRecordId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig, resourceParams: resources_getConnectPathassistantByRecordId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetPathAssistantConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation>): $64$luvio_engine_Snapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, any>;
|
|
28
|
+
export declare const getPathAssistantAdapterFactory: $64$luvio_engine_AdapterFactory<GetPathAssistantConfig, types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation>;
|
|
@@ -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_getConnectPathassistantDaysInStageByRecordId_ResourceRequestConfig } from '../resources/getConnectPathassistantDaysInStageByRecordId';
|
|
4
|
+
import { PathAssistantDaysInStageRepresentation as types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation } from '../types/PathAssistantDaysInStageRepresentation';
|
|
5
|
+
export declare const adapterName = "getPathAssistantDaysInStage";
|
|
6
|
+
export declare const getPathAssistantDaysInStage_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getPathAssistantDaysInStage_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetPathAssistantDaysInStageConfig {
|
|
9
|
+
recordId: string;
|
|
10
|
+
picklistFieldApiName?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GetPathAssistantDaysInStageConfig) => resources_getConnectPathassistantDaysInStageByRecordId_ResourceRequestConfig;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetPathAssistantDaysInStageConfig>): adapter$45$utils_Untrusted<GetPathAssistantDaysInStageConfig>;
|
|
16
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetPathAssistantDaysInStageConfig | null;
|
|
17
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig): $64$luvio_engine_Fragment;
|
|
18
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig): $64$luvio_engine_Snapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, any>;
|
|
19
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig, resourceParams: resources_getConnectPathassistantDaysInStageByRecordId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, any>>;
|
|
20
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig, resourceParams: resources_getConnectPathassistantDaysInStageByRecordId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
21
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetPathAssistantDaysInStageConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, any>>;
|
|
22
|
+
export type BuildSnapshotContext = {
|
|
23
|
+
luvio: $64$luvio_engine_Luvio;
|
|
24
|
+
config: GetPathAssistantDaysInStageConfig;
|
|
25
|
+
};
|
|
26
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, any>>;
|
|
27
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation>): $64$luvio_engine_Snapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, any>;
|
|
28
|
+
export declare const getPathAssistantDaysInStageAdapterFactory: $64$luvio_engine_AdapterFactory<GetPathAssistantDaysInStageConfig, types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_patchConnectPathassistantCollapsibleDrawerUserPref_ResourceRequestConfig } from '../resources/patchConnectPathassistantCollapsibleDrawerUserPref';
|
|
4
|
+
import { CollapsibleDrawerUserPrefRepresentation as types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation } from '../types/CollapsibleDrawerUserPrefRepresentation';
|
|
5
|
+
export declare const adapterName = "updateCollapsibleDrawerUserPref";
|
|
6
|
+
export declare const updateCollapsibleDrawerUserPref_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const updateCollapsibleDrawerUserPref_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface UpdateCollapsibleDrawerUserPrefConfig {
|
|
9
|
+
isCollapsed?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: UpdateCollapsibleDrawerUserPrefConfig) => resources_patchConnectPathassistantCollapsibleDrawerUserPref_ResourceRequestConfig;
|
|
12
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateCollapsibleDrawerUserPrefConfig>): adapter$45$utils_Untrusted<UpdateCollapsibleDrawerUserPrefConfig>;
|
|
13
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): UpdateCollapsibleDrawerUserPrefConfig | null;
|
|
14
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: UpdateCollapsibleDrawerUserPrefConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation, any>>;
|
|
15
|
+
export declare const updateCollapsibleDrawerUserPrefAdapterFactory: $64$luvio_engine_AdapterFactory<UpdateCollapsibleDrawerUserPrefConfig, types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { updateCollapsibleDrawerUserPrefAdapterFactory } from '../adapters/updateCollapsibleDrawerUserPref';
|
|
2
|
+
export { getPathAssistantAdapterFactory } from '../adapters/getPathAssistant';
|
|
3
|
+
export { getPathAssistantDaysInStageAdapterFactory } from '../adapters/getPathAssistantDaysInStage';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare let getPathAssistant: any;
|
|
2
|
+
declare let getPathAssistantDaysInStage: any;
|
|
3
|
+
declare let updateCollapsibleDrawerUserPref: any;
|
|
4
|
+
declare let getPathAssistant_imperative: any;
|
|
5
|
+
declare let getPathAssistantDaysInStage_imperative: any;
|
|
6
|
+
export { getPathAssistant, getPathAssistantDaysInStage, updateCollapsibleDrawerUserPref, getPathAssistant_imperative, getPathAssistantDaysInStage_imperative, };
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { PathAssistantMetadataRepresentation as types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation } from '../types/PathAssistantMetadataRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
recordId: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
picklistFieldApiName?: string;
|
|
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(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation, any>;
|
|
16
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_PathAssistantMetadataRepresentation_PathAssistantMetadataRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
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, 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 { PathAssistantDaysInStageRepresentation as types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation } from '../types/PathAssistantDaysInStageRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
recordId: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
picklistFieldApiName?: string;
|
|
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(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation): void;
|
|
15
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation, any>;
|
|
16
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_PathAssistantDaysInStageRepresentation_PathAssistantDaysInStageRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { CollapsibleDrawerUserPrefRepresentation as types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation } from '../types/CollapsibleDrawerUserPrefRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
queryParams: {
|
|
5
|
+
isCollapsed?: boolean;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation): void;
|
|
10
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CollapsibleDrawerUserPrefRepresentation_CollapsibleDrawerUserPrefRepresentation, any>;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 30000;
|
|
3
|
+
export declare const VERSION = "a729b9451867a2ddc52e8106de4e17c5";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
apiName: string;
|
|
8
|
+
}
|
|
9
|
+
export type CollapsibleDrawerUserPrefRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialCollapsibleDrawerUserPrefRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): CollapsibleDrawerUserPrefRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: CollapsibleDrawerUserPrefRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: CollapsibleDrawerUserPrefRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: CollapsibleDrawerUserPrefRepresentation, existing: CollapsibleDrawerUserPrefRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CollapsibleDrawerUserPrefRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
17
|
+
export declare function equals(existing: CollapsibleDrawerUserPrefRepresentationNormalized, incoming: CollapsibleDrawerUserPrefRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CollapsibleDrawerUserPrefRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Represents the Collapsible Drawer User Pref result
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* apiName (string): apiName
|
|
25
|
+
*/
|
|
26
|
+
export interface CollapsibleDrawerUserPrefRepresentationNormalized {
|
|
27
|
+
/** Value representing the apiName field */
|
|
28
|
+
apiName: string;
|
|
29
|
+
/** Value representing the isSuccess field */
|
|
30
|
+
isSuccess: boolean;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Represents the Collapsible Drawer User Pref result
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* apiName (string): apiName
|
|
37
|
+
*/
|
|
38
|
+
export interface CollapsibleDrawerUserPrefRepresentation {
|
|
39
|
+
apiName: string;
|
|
40
|
+
isSuccess: boolean;
|
|
41
|
+
}
|
|
@@ -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, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 30000;
|
|
3
|
+
export declare const VERSION = "ba6bce075182b2ef08471882a25ab029";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: PathAssistantDaysInStageRepresentation, existing: PathAssistantDaysInStageRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PathAssistantDaysInStageRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: PathAssistantDaysInStageRepresentationNormalized, incoming: PathAssistantDaysInStageRepresentationNormalized): 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: PathAssistantDaysInStageRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Represents the Path Assistant days-in-stage data
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface PathAssistantDaysInStageRepresentationNormalized {
|
|
18
|
+
/** Value representing Path Assistant days-in-stage data */
|
|
19
|
+
picklistValuesToDays: unknown;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Represents the Path Assistant days-in-stage data
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* (none)
|
|
26
|
+
*/
|
|
27
|
+
export interface PathAssistantDaysInStageRepresentation {
|
|
28
|
+
picklistValuesToDays: unknown;
|
|
29
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 TTL = 30000;
|
|
3
|
+
export declare const VERSION = "4fa0084a0c26cd9bb89e092a910800f1";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: PathAssistantMetadataRepresentation, existing: PathAssistantMetadataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PathAssistantMetadataRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: PathAssistantMetadataRepresentationNormalized, incoming: PathAssistantMetadataRepresentationNormalized): 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: PathAssistantMetadataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Represents all Path Assistant related metadata
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface PathAssistantMetadataRepresentationNormalized {
|
|
18
|
+
/** Value representing extra data related to Path Assistant */
|
|
19
|
+
extraData: unknown;
|
|
20
|
+
/** Value representing the Path Assistant */
|
|
21
|
+
pathAssistant: unknown;
|
|
22
|
+
/** Value representing the parent record */
|
|
23
|
+
recordData: unknown;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Represents all Path Assistant related metadata
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface PathAssistantMetadataRepresentation {
|
|
32
|
+
extraData: unknown;
|
|
33
|
+
pathAssistant: unknown;
|
|
34
|
+
recordData: unknown;
|
|
35
|
+
}
|
|
@@ -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-sales-pathassistant",
|
|
3
|
+
"version": "0.1.0-dev1",
|
|
4
|
+
"description": "Connect APIs for Path Assistant",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"main": "dist/es/es2018/sales-pathassistant.js",
|
|
7
|
+
"module": "dist/es/es2018/sales-pathassistant.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/sales-pathassistant.js",
|
|
18
|
+
"require": "./dist/es/es2018/sales-pathassistant.js"
|
|
19
|
+
},
|
|
20
|
+
"./sfdc": {
|
|
21
|
+
"types": "./sfdc/index.d.ts",
|
|
22
|
+
"import": "./sfdc/index.js",
|
|
23
|
+
"default": "./sfdc/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"sfdc": {
|
|
27
|
+
"namespace": "lightning",
|
|
28
|
+
"module": "salesPathassistantApi"
|
|
29
|
+
},
|
|
30
|
+
"contributors": [
|
|
31
|
+
"darrel.liu@salesforce.com"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "yarn build:services",
|
|
35
|
+
"build:raml": "luvio generate src/raml/luvio.raml src/generated -p '../lds-compiler-plugins'",
|
|
36
|
+
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
37
|
+
"clean": "rm -rf dist sfdc src/generated karma/dist",
|
|
38
|
+
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-sales-pathassistant",
|
|
39
|
+
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-sales-pathassistant",
|
|
40
|
+
"test:unit": "jest --config=./jest.config.js"
|
|
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
|
+
}
|
package/sfdc/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';
|