@salesforce/lds-adapters-industries-omnianalytics 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 +3 -3
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-omnianalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Wire adapters for Omni Analytics feature in Industries cloud.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-omnianalytics.js",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"test:unit": "jest"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0"
|
|
51
51
|
},
|
|
52
52
|
"nx": {
|
|
53
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1886,6 +1886,7 @@ let fetchOmniAnalyticsMetadata_imperative;
|
|
|
1886
1886
|
// Adapter Metadata
|
|
1887
1887
|
const fetchOmniAnalyticsLogsMetadata = { apiFamily: 'omnianalytics', name: 'fetchOmniAnalyticsLogs', ttl: 10000 };
|
|
1888
1888
|
const fetchOmniAnalyticsMetadataMetadata = { apiFamily: 'omnianalytics', name: 'fetchOmniAnalyticsMetadata', ttl: 60000 };
|
|
1889
|
+
// Notify Update Available
|
|
1889
1890
|
function bindExportsTo(luvio) {
|
|
1890
1891
|
// LDS Adapters
|
|
1891
1892
|
const fetchOmniAnalyticsLogs_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'fetchOmniAnalyticsLogs', fetchOmniAnalyticsLogsAdapterFactory), fetchOmniAnalyticsLogsMetadata);
|
|
@@ -1900,7 +1901,8 @@ function bindExportsTo(luvio) {
|
|
|
1900
1901
|
storeOmniAnalyticsLogs: unwrapSnapshotData(storeOmniAnalyticsLogsAdapterFactory),
|
|
1901
1902
|
// Imperative GET Adapters
|
|
1902
1903
|
fetchOmniAnalyticsLogs_imperative: createImperativeAdapter(luvio, fetchOmniAnalyticsLogs_ldsAdapter, fetchOmniAnalyticsLogsMetadata),
|
|
1903
|
-
fetchOmniAnalyticsMetadata_imperative: createImperativeAdapter(luvio, fetchOmniAnalyticsMetadata_ldsAdapter, fetchOmniAnalyticsMetadataMetadata)
|
|
1904
|
+
fetchOmniAnalyticsMetadata_imperative: createImperativeAdapter(luvio, fetchOmniAnalyticsMetadata_ldsAdapter, fetchOmniAnalyticsMetadataMetadata),
|
|
1905
|
+
// Notify Update Availables
|
|
1904
1906
|
};
|
|
1905
1907
|
}
|
|
1906
1908
|
withDefaultLuvio((luvio) => {
|
|
@@ -1909,9 +1911,9 @@ withDefaultLuvio((luvio) => {
|
|
|
1909
1911
|
fetchOmniAnalyticsMetadata,
|
|
1910
1912
|
storeOmniAnalyticsLogs,
|
|
1911
1913
|
fetchOmniAnalyticsLogs_imperative,
|
|
1912
|
-
fetchOmniAnalyticsMetadata_imperative
|
|
1914
|
+
fetchOmniAnalyticsMetadata_imperative,
|
|
1913
1915
|
} = bindExportsTo(luvio));
|
|
1914
1916
|
});
|
|
1915
1917
|
|
|
1916
1918
|
export { fetchOmniAnalyticsLogs, fetchOmniAnalyticsLogs_imperative, fetchOmniAnalyticsMetadata, fetchOmniAnalyticsMetadata_imperative, storeOmniAnalyticsLogs };
|
|
1917
|
-
// version: 1.
|
|
1919
|
+
// version: 1.261.0-10ee630e7
|