@salesforce/lds-adapters-platform-interaction-orchestrator 1.260.0 → 1.262.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/package.json +4 -5
- package/sfdc/index.js +11 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-interaction-orchestrator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Interaction Orchestrator APIs",
|
|
6
6
|
"main": "dist/es/es2018/platform-interaction-orchestrator.js",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"clean": "rm -rf dist sfdc src/generated karma/dist",
|
|
40
40
|
"start": "nx build:karma && karma start",
|
|
41
41
|
"test": "nx build:karma && karma start --single-run",
|
|
42
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
43
42
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-interaction-orchestrator"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1081,22 +1081,26 @@ let getOrchestrationInstanceCollection;
|
|
|
1081
1081
|
// Imperative GET Adapters
|
|
1082
1082
|
let getOrchestrationInstanceCollection_imperative;
|
|
1083
1083
|
// Adapter Metadata
|
|
1084
|
-
const getOrchestrationInstanceCollectionMetadata = {
|
|
1084
|
+
const getOrchestrationInstanceCollectionMetadata = {
|
|
1085
|
+
apiFamily: 'InteractionOrchestrator',
|
|
1086
|
+
name: 'getOrchestrationInstanceCollection',
|
|
1087
|
+
ttl: 100,
|
|
1088
|
+
};
|
|
1089
|
+
// Notify Update Available
|
|
1085
1090
|
function bindExportsTo(luvio) {
|
|
1086
1091
|
// LDS Adapters
|
|
1087
1092
|
const getOrchestrationInstanceCollection_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getOrchestrationInstanceCollection', getOrchestrationInstanceCollectionAdapterFactory), getOrchestrationInstanceCollectionMetadata);
|
|
1088
1093
|
return {
|
|
1089
1094
|
getOrchestrationInstanceCollection: createWireAdapterConstructor(luvio, getOrchestrationInstanceCollection_ldsAdapter, getOrchestrationInstanceCollectionMetadata),
|
|
1090
1095
|
// Imperative GET Adapters
|
|
1091
|
-
getOrchestrationInstanceCollection_imperative: createImperativeAdapter(luvio, getOrchestrationInstanceCollection_ldsAdapter, getOrchestrationInstanceCollectionMetadata)
|
|
1096
|
+
getOrchestrationInstanceCollection_imperative: createImperativeAdapter(luvio, getOrchestrationInstanceCollection_ldsAdapter, getOrchestrationInstanceCollectionMetadata),
|
|
1097
|
+
// Notify Update Availables
|
|
1092
1098
|
};
|
|
1093
1099
|
}
|
|
1094
1100
|
withDefaultLuvio((luvio) => {
|
|
1095
|
-
({
|
|
1096
|
-
|
|
1097
|
-
getOrchestrationInstanceCollection_imperative
|
|
1098
|
-
} = bindExportsTo(luvio));
|
|
1101
|
+
({ getOrchestrationInstanceCollection, getOrchestrationInstanceCollection_imperative } =
|
|
1102
|
+
bindExportsTo(luvio));
|
|
1099
1103
|
});
|
|
1100
1104
|
|
|
1101
1105
|
export { getOrchestrationInstanceCollection, getOrchestrationInstanceCollection_imperative };
|
|
1102
|
-
// version: 1.
|
|
1106
|
+
// version: 1.262.0-d3c071fdc
|