@salesforce/lds-adapters-sales-people-api 1.260.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-sales-people-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS adapter to retrieve data from People API",
|
|
6
6
|
"main": "dist/es/es2018/sales-people-api.js",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
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
|
@@ -569,21 +569,23 @@ let getParsedSignatureData;
|
|
|
569
569
|
let getParsedSignatureData_imperative;
|
|
570
570
|
// Adapter Metadata
|
|
571
571
|
const getParsedSignatureDataMetadata = { apiFamily: 'peopleapi', name: 'getParsedSignatureData' };
|
|
572
|
+
// Notify Update Available
|
|
572
573
|
function bindExportsTo(luvio) {
|
|
573
574
|
// LDS Adapters
|
|
574
575
|
const getParsedSignatureData_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getParsedSignatureData', getParsedSignatureDataAdapterFactory), getParsedSignatureDataMetadata);
|
|
575
576
|
return {
|
|
576
577
|
getParsedSignatureData: createWireAdapterConstructor(luvio, getParsedSignatureData_ldsAdapter, getParsedSignatureDataMetadata),
|
|
577
578
|
// Imperative GET Adapters
|
|
578
|
-
getParsedSignatureData_imperative: createImperativeAdapter(luvio, getParsedSignatureData_ldsAdapter, getParsedSignatureDataMetadata)
|
|
579
|
+
getParsedSignatureData_imperative: createImperativeAdapter(luvio, getParsedSignatureData_ldsAdapter, getParsedSignatureDataMetadata),
|
|
580
|
+
// Notify Update Availables
|
|
579
581
|
};
|
|
580
582
|
}
|
|
581
583
|
withDefaultLuvio((luvio) => {
|
|
582
584
|
({
|
|
583
585
|
getParsedSignatureData,
|
|
584
|
-
getParsedSignatureData_imperative
|
|
586
|
+
getParsedSignatureData_imperative,
|
|
585
587
|
} = bindExportsTo(luvio));
|
|
586
588
|
});
|
|
587
589
|
|
|
588
590
|
export { getParsedSignatureData, getParsedSignatureData_imperative };
|
|
589
|
-
// version: 1.
|
|
591
|
+
// version: 1.261.0-10ee630e7
|