@salesforce/lds-adapters-sales-pathassistant 1.246.0 → 1.248.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/dist/es/es2018/sales-pathassistant.js +36 -832
- package/dist/es/es2018/types/src/generated/types/PathAssistantMetadataRepresentation.d.ts +10 -5
- package/package.json +6 -2
- package/sfdc/index.js +37 -833
- package/src/raml/api.raml +9 -136
- package/dist/es/es2018/types/src/generated/types/AnimationRuleRepresentation.d.ts +0 -43
- package/dist/es/es2018/types/src/generated/types/PathAssistantFieldRepresentation.d.ts +0 -37
- package/dist/es/es2018/types/src/generated/types/PathAssistantRepresentation.d.ts +0 -52
- package/dist/es/es2018/types/src/generated/types/PathAssistantStepRepresentation.d.ts +0 -47
- package/dist/es/es2018/types/src/generated/types/PicklistEntryRepresentation.d.ts +0 -40
- package/dist/es/es2018/types/src/generated/types/PicklistForRecordTypeRepresentation.d.ts +0 -32
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { PathAssistantRepresentation as PathAssistantRepresentation_PathAssistantRepresentation } from './PathAssistantRepresentation';
|
|
2
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';
|
|
3
2
|
export declare const TTL = 30000;
|
|
4
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "1f57b4fe53f48c0f19bd1bb4016dcfd9";
|
|
5
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
5
|
export declare const RepresentationType: string;
|
|
7
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;
|
|
@@ -16,8 +15,12 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
16
15
|
* (none)
|
|
17
16
|
*/
|
|
18
17
|
export interface PathAssistantMetadataRepresentationNormalized {
|
|
19
|
-
/** Value representing Path
|
|
20
|
-
|
|
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 data */
|
|
23
|
+
recordData: unknown;
|
|
21
24
|
}
|
|
22
25
|
/**
|
|
23
26
|
* Path Assistant metadata returned by Connect API
|
|
@@ -26,5 +29,7 @@ export interface PathAssistantMetadataRepresentationNormalized {
|
|
|
26
29
|
* (none)
|
|
27
30
|
*/
|
|
28
31
|
export interface PathAssistantMetadataRepresentation {
|
|
29
|
-
|
|
32
|
+
extraData: unknown;
|
|
33
|
+
pathAssistant: unknown;
|
|
34
|
+
recordData: unknown;
|
|
30
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sales-pathassistant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.248.0",
|
|
4
4
|
"description": "Connect APIs for Path Assistant",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/sales-pathassistant.js",
|
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
"build": {
|
|
52
52
|
"outputs": [
|
|
53
53
|
"{projectRoot}/dist",
|
|
54
|
-
"{projectRoot}/karma/dist",
|
|
55
54
|
"{projectRoot}/sfdc"
|
|
56
55
|
]
|
|
57
56
|
},
|
|
@@ -59,6 +58,11 @@
|
|
|
59
58
|
"outputs": [
|
|
60
59
|
"{projectRoot}/src/generated"
|
|
61
60
|
]
|
|
61
|
+
},
|
|
62
|
+
"build:karma": {
|
|
63
|
+
"outputs": [
|
|
64
|
+
"{projectRoot}/karma/dist"
|
|
65
|
+
]
|
|
62
66
|
}
|
|
63
67
|
}
|
|
64
68
|
},
|