@lifeready/core 8.0.7 → 8.0.8
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/bundles/lifeready-core.umd.js +18 -0
- package/bundles/lifeready-core.umd.js.map +1 -1
- package/bundles/lifeready-core.umd.min.js +1 -1
- package/bundles/lifeready-core.umd.min.js.map +1 -1
- package/esm2015/lib/api/query-processor/query-processor.service.js +13 -1
- package/fesm2015/lifeready-core.js +12 -0
- package/fesm2015/lifeready-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -2971,6 +2971,24 @@
|
|
|
2971
2971
|
},
|
|
2972
2972
|
}),
|
|
2973
2973
|
]));
|
|
2974
|
+
this.registerProcessor('ScenarioReceiverFileNode', common.series([
|
|
2975
|
+
common.makeDecryptionProcessor({
|
|
2976
|
+
cipherFieldName: 'sharedCipherData',
|
|
2977
|
+
getKeyId: function (_a) {
|
|
2978
|
+
var field = _a.field;
|
|
2979
|
+
return field.sharedKey.id;
|
|
2980
|
+
},
|
|
2981
|
+
}),
|
|
2982
|
+
]));
|
|
2983
|
+
this.registerProcessor('SharedScenarioReceiverNode', common.series([
|
|
2984
|
+
common.makeDecryptionProcessor({
|
|
2985
|
+
cipherFieldName: 'sharedCipherData',
|
|
2986
|
+
getKeyId: function (_a) {
|
|
2987
|
+
var field = _a.field;
|
|
2988
|
+
return field.sharedKey.id;
|
|
2989
|
+
},
|
|
2990
|
+
}),
|
|
2991
|
+
]));
|
|
2974
2992
|
this.registerProcessor('ScenarioApproverAssemblyNode', common.series([
|
|
2975
2993
|
common.makeDecryptionProcessor({
|
|
2976
2994
|
cipherFieldName: 'assemblyCipherData',
|