@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 CHANGED
@@ -6967,6 +6967,7 @@ function parseFeatures$1(cell, input) {
6967
6967
  cell.fileAttachments = findFeatures(cell, "FileAttachment");
6968
6968
  cell.databaseClients = findFeatures(cell, "DatabaseClient");
6969
6969
  cell.secrets = findFeatures(cell, "Secret");
6970
+ cell.notificationClients = findFeatures(cell, "NotificationClient");
6970
6971
  } catch (error) {
6971
6972
  if (error.node) {
6972
6973
  const loc = getLineInfo(input, error.node.start);
@@ -6981,6 +6982,7 @@ function parseFeatures$1(cell, input) {
6981
6982
  cell.fileAttachments = new Map();
6982
6983
  cell.databaseClients = new Map();
6983
6984
  cell.secrets = new Map();
6985
+ cell.notificationClients = new Map();
6984
6986
  }
6985
6987
  return cell;
6986
6988
  }