@514labs/moose-lib 0.6.286-ci-6-gbf18bd0b → 0.6.286-ci-3-gf9493e4a

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.
@@ -122,7 +122,6 @@ import ts4, { factory as factory2 } from "typescript";
122
122
 
123
123
  // src/dataModels/typeConvert.ts
124
124
  import ts3, {
125
- displayPartsToString,
126
125
  isIdentifier,
127
126
  isTypeReferenceNode,
128
127
  SymbolFlags,
@@ -935,8 +934,6 @@ var toColumns = (t, checker, options) => {
935
934
  `Column '${prop.name}' cannot have both ClickHouseDefault and ClickHouseMaterialized. Use one or the other.`
936
935
  );
937
936
  }
938
- const docComment = prop.getDocumentationComment(checker);
939
- const comment = docComment.length > 0 ? displayPartsToString(docComment) : null;
940
937
  return {
941
938
  name: prop.name,
942
939
  data_type: dataType,
@@ -947,8 +944,7 @@ var toColumns = (t, checker, options) => {
947
944
  materialized: materializedValue,
948
945
  ttl: handleTtl(type, checker),
949
946
  codec: handleCodec(type, checker),
950
- annotations,
951
- comment
947
+ annotations
952
948
  };
953
949
  });
954
950
  };