@salesforce/lds-adapters-industries-documentmatrix 1.260.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.
- package/package.json +5 -6
- package/sfdc/index.js +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-documentmatrix",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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",
|
|
@@ -39,15 +39,14 @@
|
|
|
39
39
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-documentmatrix",
|
|
40
40
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-documentmatrix",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
|
-
"test": "nx build:karma && karma start --single-run"
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
42
|
+
"test": "nx build:karma && karma start --single-run"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
|
-
"@salesforce/lds-bindings": "^1.
|
|
45
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
50
|
-
"@salesforce/lds-karma": "^1.
|
|
48
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
49
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
51
50
|
},
|
|
52
51
|
"nx": {
|
|
53
52
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -392,22 +392,25 @@ let getDocumentDecision;
|
|
|
392
392
|
// Imperative GET Adapters
|
|
393
393
|
let getDocumentDecision_imperative;
|
|
394
394
|
// Adapter Metadata
|
|
395
|
-
const getDocumentDecisionMetadata = {
|
|
395
|
+
const getDocumentDecisionMetadata = {
|
|
396
|
+
apiFamily: 'DocumentMatrix',
|
|
397
|
+
name: 'getDocumentDecision',
|
|
398
|
+
ttl: 300,
|
|
399
|
+
};
|
|
400
|
+
// Notify Update Available
|
|
396
401
|
function bindExportsTo(luvio) {
|
|
397
402
|
// LDS Adapters
|
|
398
403
|
const getDocumentDecision_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getDocumentDecision', getDocumentDecisionAdapterFactory), getDocumentDecisionMetadata);
|
|
399
404
|
return {
|
|
400
405
|
getDocumentDecision: createWireAdapterConstructor(luvio, getDocumentDecision_ldsAdapter, getDocumentDecisionMetadata),
|
|
401
406
|
// Imperative GET Adapters
|
|
402
|
-
getDocumentDecision_imperative: createImperativeAdapter(luvio, getDocumentDecision_ldsAdapter, getDocumentDecisionMetadata)
|
|
407
|
+
getDocumentDecision_imperative: createImperativeAdapter(luvio, getDocumentDecision_ldsAdapter, getDocumentDecisionMetadata),
|
|
408
|
+
// Notify Update Availables
|
|
403
409
|
};
|
|
404
410
|
}
|
|
405
411
|
withDefaultLuvio((luvio) => {
|
|
406
|
-
({
|
|
407
|
-
getDocumentDecision,
|
|
408
|
-
getDocumentDecision_imperative
|
|
409
|
-
} = bindExportsTo(luvio));
|
|
412
|
+
({ getDocumentDecision, getDocumentDecision_imperative } = bindExportsTo(luvio));
|
|
410
413
|
});
|
|
411
414
|
|
|
412
415
|
export { getDocumentDecision, getDocumentDecision_imperative };
|
|
413
|
-
// version: 1.
|
|
416
|
+
// version: 1.262.0-d3c071fdc
|