@shapeshift-labs/frontier-lang-compiler 0.2.120 → 0.2.121

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.
@@ -78,11 +78,7 @@ export interface ImportNativeProjectOptions {
78
78
  readonly sources: readonly NativeProjectSourceInput[];
79
79
  }
80
80
 
81
- export type NativeProjectSymbolGraphRemainingField =
82
- | 'reExportIdentities[].originSymbolId'
83
- | 'reExportIdentities[].exportedSymbolId'
84
- | 'reExportIdentities[].localSymbolId'
85
- | string;
81
+ export type NativeProjectSymbolGraphRemainingField = string;
86
82
 
87
83
  export interface NativeProjectSymbolGraphFileHashRecord {
88
84
  readonly id: string;
@@ -142,11 +142,7 @@ export function createNativeProjectImportResult(input, imports) {
142
142
  };
143
143
  }
144
144
 
145
- const PROJECT_SYMBOL_GRAPH_REMAINING_FIELDS = Object.freeze([
146
- 'reExportIdentities[].originSymbolId',
147
- 'reExportIdentities[].exportedSymbolId',
148
- 'reExportIdentities[].localSymbolId'
149
- ]);
145
+ const PROJECT_SYMBOL_GRAPH_REMAINING_FIELDS = Object.freeze([]);
150
146
 
151
147
  function createProjectSymbolGraphSummary(semanticIndex, imports, input) {
152
148
  const documents = semanticIndex?.documents ?? [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shapeshift-labs/frontier-lang-compiler",
3
- "version": "0.2.120",
3
+ "version": "0.2.121",
4
4
  "description": "Compiler facade for Frontier Lang source documents and language projection adapters.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",