@salesforce/lds-adapters-cms-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-cms-orchestrator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Integration between CMS and Flow Orchestrator.",
|
|
6
6
|
"main": "dist/es/es2018/cms-orchestrator.js",
|
|
@@ -60,11 +60,11 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@salesforce/lds-bindings": "^1.
|
|
63
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
67
|
-
"@salesforce/lds-karma": "^1.
|
|
66
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
67
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
68
68
|
},
|
|
69
69
|
"volta": {
|
|
70
70
|
"extends": "../../package.json"
|
package/sfdc/index.js
CHANGED
|
@@ -1935,6 +1935,7 @@ const getManagedContentOrchestrationDefinitionsMetadata = { apiFamily: 'CMSOrche
|
|
|
1935
1935
|
const getManagedContentOrchestrationInstanceMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentOrchestrationInstance', ttl: 100 };
|
|
1936
1936
|
const getManagedContentOrchestrationInstancesMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentOrchestrationInstances', ttl: 100 };
|
|
1937
1937
|
const getManagedContentRunningOrchestrationHistoryEventsMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentRunningOrchestrationHistoryEvents', ttl: 100 };
|
|
1938
|
+
// Notify Update Available
|
|
1938
1939
|
function bindExportsTo(luvio) {
|
|
1939
1940
|
// LDS Adapters
|
|
1940
1941
|
const getManagedContentOrchestrationDefinitions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getManagedContentOrchestrationDefinitions', getManagedContentOrchestrationDefinitionsAdapterFactory), getManagedContentOrchestrationDefinitionsMetadata);
|
|
@@ -1957,7 +1958,8 @@ function bindExportsTo(luvio) {
|
|
|
1957
1958
|
getManagedContentOrchestrationDefinitions_imperative: createImperativeAdapter(luvio, getManagedContentOrchestrationDefinitions_ldsAdapter, getManagedContentOrchestrationDefinitionsMetadata),
|
|
1958
1959
|
getManagedContentOrchestrationInstance_imperative: createImperativeAdapter(luvio, getManagedContentOrchestrationInstance_ldsAdapter, getManagedContentOrchestrationInstanceMetadata),
|
|
1959
1960
|
getManagedContentOrchestrationInstances_imperative: createImperativeAdapter(luvio, getManagedContentOrchestrationInstances_ldsAdapter, getManagedContentOrchestrationInstancesMetadata),
|
|
1960
|
-
getManagedContentRunningOrchestrationHistoryEvents_imperative: createImperativeAdapter(luvio, getManagedContentRunningOrchestrationHistoryEvents_ldsAdapter, getManagedContentRunningOrchestrationHistoryEventsMetadata)
|
|
1961
|
+
getManagedContentRunningOrchestrationHistoryEvents_imperative: createImperativeAdapter(luvio, getManagedContentRunningOrchestrationHistoryEvents_ldsAdapter, getManagedContentRunningOrchestrationHistoryEventsMetadata),
|
|
1962
|
+
// Notify Update Availables
|
|
1961
1963
|
};
|
|
1962
1964
|
}
|
|
1963
1965
|
withDefaultLuvio((luvio) => {
|
|
@@ -1972,9 +1974,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1972
1974
|
getManagedContentOrchestrationDefinitions_imperative,
|
|
1973
1975
|
getManagedContentOrchestrationInstance_imperative,
|
|
1974
1976
|
getManagedContentOrchestrationInstances_imperative,
|
|
1975
|
-
getManagedContentRunningOrchestrationHistoryEvents_imperative
|
|
1977
|
+
getManagedContentRunningOrchestrationHistoryEvents_imperative,
|
|
1976
1978
|
} = bindExportsTo(luvio));
|
|
1977
1979
|
});
|
|
1978
1980
|
|
|
1979
1981
|
export { createManagedContentOrchestrationInstance, deleteManagedContentCancelOrchestrationInstance, getManagedContentOrchestrationDefinitions, getManagedContentOrchestrationDefinitions_imperative, getManagedContentOrchestrationInstance, getManagedContentOrchestrationInstanceNotifyChange, getManagedContentOrchestrationInstance_imperative, getManagedContentOrchestrationInstances, getManagedContentOrchestrationInstances_imperative, getManagedContentRunningOrchestrationHistoryEvents, getManagedContentRunningOrchestrationHistoryEvents_imperative };
|
|
1980
|
-
// version: 1.
|
|
1982
|
+
// version: 1.261.0-10ee630e7
|