@salesforce/lds-adapters-platform-interaction-orchestrator 1.259.0 → 1.261.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 -4
- package/sfdc/index.js +5 -3
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.261.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",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-interaction-orchestrator"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
51
51
|
},
|
|
52
52
|
"nx": {
|
|
53
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1082,21 +1082,23 @@ let getOrchestrationInstanceCollection;
|
|
|
1082
1082
|
let getOrchestrationInstanceCollection_imperative;
|
|
1083
1083
|
// Adapter Metadata
|
|
1084
1084
|
const getOrchestrationInstanceCollectionMetadata = { apiFamily: 'InteractionOrchestrator', name: 'getOrchestrationInstanceCollection', ttl: 100 };
|
|
1085
|
+
// Notify Update Available
|
|
1085
1086
|
function bindExportsTo(luvio) {
|
|
1086
1087
|
// LDS Adapters
|
|
1087
1088
|
const getOrchestrationInstanceCollection_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getOrchestrationInstanceCollection', getOrchestrationInstanceCollectionAdapterFactory), getOrchestrationInstanceCollectionMetadata);
|
|
1088
1089
|
return {
|
|
1089
1090
|
getOrchestrationInstanceCollection: createWireAdapterConstructor(luvio, getOrchestrationInstanceCollection_ldsAdapter, getOrchestrationInstanceCollectionMetadata),
|
|
1090
1091
|
// Imperative GET Adapters
|
|
1091
|
-
getOrchestrationInstanceCollection_imperative: createImperativeAdapter(luvio, getOrchestrationInstanceCollection_ldsAdapter, getOrchestrationInstanceCollectionMetadata)
|
|
1092
|
+
getOrchestrationInstanceCollection_imperative: createImperativeAdapter(luvio, getOrchestrationInstanceCollection_ldsAdapter, getOrchestrationInstanceCollectionMetadata),
|
|
1093
|
+
// Notify Update Availables
|
|
1092
1094
|
};
|
|
1093
1095
|
}
|
|
1094
1096
|
withDefaultLuvio((luvio) => {
|
|
1095
1097
|
({
|
|
1096
1098
|
getOrchestrationInstanceCollection,
|
|
1097
|
-
getOrchestrationInstanceCollection_imperative
|
|
1099
|
+
getOrchestrationInstanceCollection_imperative,
|
|
1098
1100
|
} = bindExportsTo(luvio));
|
|
1099
1101
|
});
|
|
1100
1102
|
|
|
1101
1103
|
export { getOrchestrationInstanceCollection, getOrchestrationInstanceCollection_imperative };
|
|
1102
|
-
// version: 1.
|
|
1104
|
+
// version: 1.261.0-10ee630e7
|