@salesforce/lds-adapters-cms-orchestrator 1.261.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.
@@ -9,4 +9,4 @@ declare let getManagedContentOrchestrationDefinitions_imperative: any;
9
9
  declare let getManagedContentOrchestrationInstance_imperative: any;
10
10
  declare let getManagedContentOrchestrationInstances_imperative: any;
11
11
  declare let getManagedContentRunningOrchestrationHistoryEvents_imperative: any;
12
- export { createManagedContentOrchestrationInstance, deleteManagedContentCancelOrchestrationInstance, getManagedContentOrchestrationDefinitions, getManagedContentOrchestrationInstance, getManagedContentOrchestrationInstanceNotifyChange, getManagedContentOrchestrationInstances, getManagedContentRunningOrchestrationHistoryEvents, getManagedContentOrchestrationDefinitions_imperative, getManagedContentOrchestrationInstance_imperative, getManagedContentOrchestrationInstances_imperative, getManagedContentRunningOrchestrationHistoryEvents_imperative };
12
+ export { createManagedContentOrchestrationInstance, deleteManagedContentCancelOrchestrationInstance, getManagedContentOrchestrationDefinitions, getManagedContentOrchestrationInstance, getManagedContentOrchestrationInstanceNotifyChange, getManagedContentOrchestrationInstances, getManagedContentRunningOrchestrationHistoryEvents, getManagedContentOrchestrationDefinitions_imperative, getManagedContentOrchestrationInstance_imperative, getManagedContentOrchestrationInstances_imperative, getManagedContentRunningOrchestrationHistoryEvents_imperative, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-cms-orchestrator",
3
- "version": "1.261.0",
3
+ "version": "1.262.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",
@@ -36,7 +36,6 @@
36
36
  "release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-cms-orchestrator",
37
37
  "start": "nx build:karma && karma start",
38
38
  "test": "nx build:karma && karma start --single-run",
39
- "test:compat": "nx build:karma && karma start --single-run --compat",
40
39
  "test:unit": "jest"
41
40
  },
42
41
  "nx": {
@@ -60,11 +59,11 @@
60
59
  }
61
60
  },
62
61
  "dependencies": {
63
- "@salesforce/lds-bindings": "^1.261.0"
62
+ "@salesforce/lds-bindings": "^1.262.0"
64
63
  },
65
64
  "devDependencies": {
66
- "@salesforce/lds-compiler-plugins": "^1.261.0",
67
- "@salesforce/lds-karma": "^1.261.0"
65
+ "@salesforce/lds-compiler-plugins": "^1.262.0",
66
+ "@salesforce/lds-karma": "^1.262.0"
68
67
  },
69
68
  "volta": {
70
69
  "extends": "../../package.json"
package/sfdc/index.js CHANGED
@@ -1931,10 +1931,26 @@ let getManagedContentOrchestrationDefinitions_imperative;
1931
1931
  let getManagedContentOrchestrationInstance_imperative;
1932
1932
  let getManagedContentOrchestrationInstances_imperative;
1933
1933
  let getManagedContentRunningOrchestrationHistoryEvents_imperative;
1934
- const getManagedContentOrchestrationDefinitionsMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentOrchestrationDefinitions', ttl: 3600000 };
1935
- const getManagedContentOrchestrationInstanceMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentOrchestrationInstance', ttl: 100 };
1936
- const getManagedContentOrchestrationInstancesMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentOrchestrationInstances', ttl: 100 };
1937
- const getManagedContentRunningOrchestrationHistoryEventsMetadata = { apiFamily: 'CMSOrchestrator', name: 'getManagedContentRunningOrchestrationHistoryEvents', ttl: 100 };
1934
+ const getManagedContentOrchestrationDefinitionsMetadata = {
1935
+ apiFamily: 'CMSOrchestrator',
1936
+ name: 'getManagedContentOrchestrationDefinitions',
1937
+ ttl: 3600000,
1938
+ };
1939
+ const getManagedContentOrchestrationInstanceMetadata = {
1940
+ apiFamily: 'CMSOrchestrator',
1941
+ name: 'getManagedContentOrchestrationInstance',
1942
+ ttl: 100,
1943
+ };
1944
+ const getManagedContentOrchestrationInstancesMetadata = {
1945
+ apiFamily: 'CMSOrchestrator',
1946
+ name: 'getManagedContentOrchestrationInstances',
1947
+ ttl: 100,
1948
+ };
1949
+ const getManagedContentRunningOrchestrationHistoryEventsMetadata = {
1950
+ apiFamily: 'CMSOrchestrator',
1951
+ name: 'getManagedContentRunningOrchestrationHistoryEvents',
1952
+ ttl: 100,
1953
+ };
1938
1954
  // Notify Update Available
1939
1955
  function bindExportsTo(luvio) {
1940
1956
  // LDS Adapters
@@ -1944,7 +1960,7 @@ function bindExportsTo(luvio) {
1944
1960
  const getManagedContentRunningOrchestrationHistoryEvents_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getManagedContentRunningOrchestrationHistoryEvents', getManagedContentRunningOrchestrationHistoryEventsAdapterFactory), getManagedContentRunningOrchestrationHistoryEventsMetadata);
1945
1961
  function unwrapSnapshotData(factory) {
1946
1962
  const adapter = factory(luvio);
1947
- return (config) => adapter(config).then(snapshot => snapshot.data);
1963
+ return (config) => adapter(config).then((snapshot) => snapshot.data);
1948
1964
  }
1949
1965
  return {
1950
1966
  createManagedContentOrchestrationInstance: unwrapSnapshotData(createManagedContentOrchestrationInstanceAdapterFactory),
@@ -1979,4 +1995,4 @@ withDefaultLuvio((luvio) => {
1979
1995
  });
1980
1996
 
1981
1997
  export { createManagedContentOrchestrationInstance, deleteManagedContentCancelOrchestrationInstance, getManagedContentOrchestrationDefinitions, getManagedContentOrchestrationDefinitions_imperative, getManagedContentOrchestrationInstance, getManagedContentOrchestrationInstanceNotifyChange, getManagedContentOrchestrationInstance_imperative, getManagedContentOrchestrationInstances, getManagedContentOrchestrationInstances_imperative, getManagedContentRunningOrchestrationHistoryEvents, getManagedContentRunningOrchestrationHistoryEvents_imperative };
1982
- // version: 1.261.0-10ee630e7
1998
+ // version: 1.262.0-d3c071fdc