@hpcc-js/observablehq-compiler 1.2.9 → 1.2.10
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/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +3 -3
- package/src/__package__.ts +2 -2
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -6973,6 +6973,7 @@
|
|
|
6973
6973
|
cell.fileAttachments = findFeatures(cell, "FileAttachment");
|
|
6974
6974
|
cell.databaseClients = findFeatures(cell, "DatabaseClient");
|
|
6975
6975
|
cell.secrets = findFeatures(cell, "Secret");
|
|
6976
|
+
cell.notificationClients = findFeatures(cell, "NotificationClient");
|
|
6976
6977
|
} catch (error) {
|
|
6977
6978
|
if (error.node) {
|
|
6978
6979
|
const loc = getLineInfo(input, error.node.start);
|
|
@@ -6987,6 +6988,7 @@
|
|
|
6987
6988
|
cell.fileAttachments = new Map();
|
|
6988
6989
|
cell.databaseClients = new Map();
|
|
6989
6990
|
cell.secrets = new Map();
|
|
6991
|
+
cell.notificationClients = new Map();
|
|
6990
6992
|
}
|
|
6991
6993
|
return cell;
|
|
6992
6994
|
}
|