@salesforce/lds-adapters-analytics-wave-private 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-analytics-wave-private",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "The Einstein Analytics family of APIs that are not publically exposed",
|
|
6
6
|
"main": "dist/es/es2018/analytics-wave-private.js",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@salesforce/lds-bindings": "^1.
|
|
65
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
69
|
-
"@salesforce/lds-karma": "^1.
|
|
68
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
69
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
70
70
|
},
|
|
71
71
|
"volta": {
|
|
72
72
|
"extends": "../../package.json"
|
package/sfdc/index.js
CHANGED
|
@@ -318,21 +318,23 @@ let executeSoqlQueryPost;
|
|
|
318
318
|
let executeSoqlQueryPost_imperative;
|
|
319
319
|
// Adapter Metadata
|
|
320
320
|
const executeSoqlQueryPostMetadata = { apiFamily: 'WAVE', name: 'executeSoqlQueryPost', ttl: 5000 };
|
|
321
|
+
// Notify Update Available
|
|
321
322
|
function bindExportsTo(luvio) {
|
|
322
323
|
// LDS Adapters
|
|
323
324
|
const executeSoqlQueryPost_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'executeSoqlQueryPost', executeSoqlQueryPostAdapterFactory), executeSoqlQueryPostMetadata);
|
|
324
325
|
return {
|
|
325
326
|
executeSoqlQueryPost: createWireAdapterConstructor(luvio, executeSoqlQueryPost_ldsAdapter, executeSoqlQueryPostMetadata),
|
|
326
327
|
// Imperative GET Adapters
|
|
327
|
-
executeSoqlQueryPost_imperative: createImperativeAdapter(luvio, executeSoqlQueryPost_ldsAdapter, executeSoqlQueryPostMetadata)
|
|
328
|
+
executeSoqlQueryPost_imperative: createImperativeAdapter(luvio, executeSoqlQueryPost_ldsAdapter, executeSoqlQueryPostMetadata),
|
|
329
|
+
// Notify Update Availables
|
|
328
330
|
};
|
|
329
331
|
}
|
|
330
332
|
withDefaultLuvio((luvio) => {
|
|
331
333
|
({
|
|
332
334
|
executeSoqlQueryPost,
|
|
333
|
-
executeSoqlQueryPost_imperative
|
|
335
|
+
executeSoqlQueryPost_imperative,
|
|
334
336
|
} = bindExportsTo(luvio));
|
|
335
337
|
});
|
|
336
338
|
|
|
337
339
|
export { executeSoqlQueryPost, executeSoqlQueryPost_imperative };
|
|
338
|
-
// version: 1.
|
|
340
|
+
// version: 1.261.0-10ee630e7
|