@salesforce/lds-adapters-industries-documentmatrix 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-industries-documentmatrix",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Document Matrix component is a custom OS element by Discovery Framework. It is an out-of-box solution that removes the need for Admins to create multiple Assessments with the same set of questions but with a different set of files to upload at the end.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-documentmatrix.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
|
@@ -393,21 +393,23 @@ let getDocumentDecision;
|
|
|
393
393
|
let getDocumentDecision_imperative;
|
|
394
394
|
// Adapter Metadata
|
|
395
395
|
const getDocumentDecisionMetadata = { apiFamily: 'DocumentMatrix', name: 'getDocumentDecision', ttl: 300 };
|
|
396
|
+
// Notify Update Available
|
|
396
397
|
function bindExportsTo(luvio) {
|
|
397
398
|
// LDS Adapters
|
|
398
399
|
const getDocumentDecision_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getDocumentDecision', getDocumentDecisionAdapterFactory), getDocumentDecisionMetadata);
|
|
399
400
|
return {
|
|
400
401
|
getDocumentDecision: createWireAdapterConstructor(luvio, getDocumentDecision_ldsAdapter, getDocumentDecisionMetadata),
|
|
401
402
|
// Imperative GET Adapters
|
|
402
|
-
getDocumentDecision_imperative: createImperativeAdapter(luvio, getDocumentDecision_ldsAdapter, getDocumentDecisionMetadata)
|
|
403
|
+
getDocumentDecision_imperative: createImperativeAdapter(luvio, getDocumentDecision_ldsAdapter, getDocumentDecisionMetadata),
|
|
404
|
+
// Notify Update Availables
|
|
403
405
|
};
|
|
404
406
|
}
|
|
405
407
|
withDefaultLuvio((luvio) => {
|
|
406
408
|
({
|
|
407
409
|
getDocumentDecision,
|
|
408
|
-
getDocumentDecision_imperative
|
|
410
|
+
getDocumentDecision_imperative,
|
|
409
411
|
} = bindExportsTo(luvio));
|
|
410
412
|
});
|
|
411
413
|
|
|
412
414
|
export { getDocumentDecision, getDocumentDecision_imperative };
|
|
413
|
-
// version: 1.
|
|
415
|
+
// version: 1.261.0-10ee630e7
|