@soda-gql/builder 0.10.2 → 0.11.1
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/README.md +3 -3
- package/dist/index.cjs +137 -3849
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +34 -436
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +34 -436
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +122 -3806
- package/dist/index.mjs.map +1 -1
- package/dist/plugin-support.cjs +263 -0
- package/dist/plugin-support.cjs.map +1 -0
- package/dist/plugin-support.d.cts +308 -0
- package/dist/plugin-support.d.cts.map +1 -0
- package/dist/plugin-support.d.mts +308 -0
- package/dist/plugin-support.d.mts.map +1 -0
- package/dist/plugin-support.mjs +247 -0
- package/dist/plugin-support.mjs.map +1 -0
- package/dist/service-BIDYnmeU.d.cts +471 -0
- package/dist/service-BIDYnmeU.d.cts.map +1 -0
- package/dist/service-DdFZ_WpI.d.mts +471 -0
- package/dist/service-DdFZ_WpI.d.mts.map +1 -0
- package/dist/service-UG-_oJSl.mjs +4227 -0
- package/dist/service-UG-_oJSl.mjs.map +1 -0
- package/dist/service-nHDX5qIj.cjs +4384 -0
- package/dist/service-nHDX5qIj.cjs.map +1 -0
- package/package.json +12 -6
package/dist/index.d.cts
CHANGED
|
@@ -1,361 +1,13 @@
|
|
|
1
|
+
import { C as BuilderOptions, D as builderErrors, E as BuilderResult, O as GraphqlSystemIdentifyHelper, S as BuilderMode, T as BuilderErrorCode, _ as ModuleAnalysis, a as BuilderArtifactElement, b as BuilderFormat, c as BuilderArtifactMeta, d as __clearGqlCache, f as IntermediateArtifactElement, g as DiagnosticSeverity, h as DiagnosticLocation, i as BuilderArtifact, k as createGraphqlSystemIdentifyHelper, l as BuilderArtifactOperation, m as DiagnosticCode, n as BuilderServiceConfig, o as BuilderArtifactElementMetadata, p as createAstAnalyzer, r as createBuilderService, s as BuilderArtifactFragment, t as BuilderService, u as IntermediateElements, v as ModuleDiagnostic, w as BuilderError, x as BuilderInput, y as BuilderAnalyzer } from "./service-BIDYnmeU.cjs";
|
|
1
2
|
import * as neverthrow0 from "neverthrow";
|
|
2
3
|
import { Result } from "neverthrow";
|
|
3
4
|
import * as _soda_gql_common0 from "@soda-gql/common";
|
|
4
5
|
import { CanonicalId, Effect, EffectGenerator } from "@soda-gql/common";
|
|
5
|
-
import { RuntimeFragmentInput, RuntimeOperationInput } from "@soda-gql/core/runtime";
|
|
6
6
|
import { ResolvedSodaGqlConfig } from "@soda-gql/config";
|
|
7
|
-
import { Script } from "node:vm";
|
|
8
7
|
import { AnyFields, AnyFragment, AnyGraphqlSchema, AnyOperation, InputTypeSpecifiers } from "@soda-gql/core";
|
|
9
8
|
import { VariableDefinitionNode } from "graphql";
|
|
10
9
|
import { ZodSchema, z } from "zod";
|
|
11
10
|
|
|
12
|
-
//#region packages/builder/src/internal/graphql-system.d.ts
|
|
13
|
-
type GraphqlSystemIdentifyHelper = {
|
|
14
|
-
readonly isGraphqlSystemFile: (input: {
|
|
15
|
-
filePath: string;
|
|
16
|
-
}) => boolean;
|
|
17
|
-
readonly isGraphqlSystemImportSpecifier: (input: {
|
|
18
|
-
filePath: string;
|
|
19
|
-
specifier: string;
|
|
20
|
-
}) => boolean;
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* Create a GraphqlSystemIdentifyHelper from the resolved config.
|
|
24
|
-
* Uses canonical path comparison to handle casing, symlinks, and aliases.
|
|
25
|
-
*/
|
|
26
|
-
declare const createGraphqlSystemIdentifyHelper: (config: ResolvedSodaGqlConfig) => GraphqlSystemIdentifyHelper;
|
|
27
|
-
//#endregion
|
|
28
|
-
//#region packages/builder/src/errors.d.ts
|
|
29
|
-
/**
|
|
30
|
-
* Comprehensive error code taxonomy for Builder operations.
|
|
31
|
-
*/
|
|
32
|
-
type BuilderErrorCode = "ENTRY_NOT_FOUND" | "CONFIG_NOT_FOUND" | "CONFIG_INVALID" | "DISCOVERY_IO_ERROR" | "FINGERPRINT_FAILED" | "UNSUPPORTED_ANALYZER" | "CANONICAL_PATH_INVALID" | "CANONICAL_SCOPE_MISMATCH" | "GRAPH_CIRCULAR_DEPENDENCY" | "GRAPH_MISSING_IMPORT" | "DOC_DUPLICATE" | "WRITE_FAILED" | "CACHE_CORRUPTED" | "RUNTIME_MODULE_LOAD_FAILED" | "ARTIFACT_REGISTRATION_FAILED" | "ELEMENT_EVALUATION_FAILED" | "INTERNAL_INVARIANT" | "SCHEMA_NOT_FOUND";
|
|
33
|
-
/**
|
|
34
|
-
* Structured error type for all Builder operations.
|
|
35
|
-
*/
|
|
36
|
-
type BuilderError = {
|
|
37
|
-
readonly code: "ENTRY_NOT_FOUND";
|
|
38
|
-
readonly message: string;
|
|
39
|
-
readonly entry: string;
|
|
40
|
-
} | {
|
|
41
|
-
readonly code: "CONFIG_NOT_FOUND";
|
|
42
|
-
readonly message: string;
|
|
43
|
-
readonly path: string;
|
|
44
|
-
} | {
|
|
45
|
-
readonly code: "CONFIG_INVALID";
|
|
46
|
-
readonly message: string;
|
|
47
|
-
readonly path: string;
|
|
48
|
-
readonly cause?: unknown;
|
|
49
|
-
} | {
|
|
50
|
-
readonly code: "DISCOVERY_IO_ERROR";
|
|
51
|
-
readonly message: string;
|
|
52
|
-
readonly path: string;
|
|
53
|
-
readonly errno?: string | number;
|
|
54
|
-
readonly cause?: unknown;
|
|
55
|
-
} | {
|
|
56
|
-
readonly code: "FINGERPRINT_FAILED";
|
|
57
|
-
readonly message: string;
|
|
58
|
-
readonly filePath: string;
|
|
59
|
-
readonly cause?: unknown;
|
|
60
|
-
} | {
|
|
61
|
-
readonly code: "UNSUPPORTED_ANALYZER";
|
|
62
|
-
readonly message: string;
|
|
63
|
-
readonly analyzer: string;
|
|
64
|
-
} | {
|
|
65
|
-
readonly code: "CANONICAL_PATH_INVALID";
|
|
66
|
-
readonly message: string;
|
|
67
|
-
readonly path: string;
|
|
68
|
-
readonly reason?: string;
|
|
69
|
-
} | {
|
|
70
|
-
readonly code: "CANONICAL_SCOPE_MISMATCH";
|
|
71
|
-
readonly message: string;
|
|
72
|
-
readonly expected: string;
|
|
73
|
-
readonly actual: string;
|
|
74
|
-
} | {
|
|
75
|
-
readonly code: "GRAPH_CIRCULAR_DEPENDENCY";
|
|
76
|
-
readonly message: string;
|
|
77
|
-
readonly chain: readonly string[];
|
|
78
|
-
} | {
|
|
79
|
-
readonly code: "GRAPH_MISSING_IMPORT";
|
|
80
|
-
readonly message: string;
|
|
81
|
-
readonly importer: string;
|
|
82
|
-
readonly importee: string;
|
|
83
|
-
} | {
|
|
84
|
-
readonly code: "DOC_DUPLICATE";
|
|
85
|
-
readonly message: string;
|
|
86
|
-
readonly name: string;
|
|
87
|
-
readonly sources: readonly string[];
|
|
88
|
-
} | {
|
|
89
|
-
readonly code: "WRITE_FAILED";
|
|
90
|
-
readonly message: string;
|
|
91
|
-
readonly outPath: string;
|
|
92
|
-
readonly cause?: unknown;
|
|
93
|
-
} | {
|
|
94
|
-
readonly code: "CACHE_CORRUPTED";
|
|
95
|
-
readonly message: string;
|
|
96
|
-
readonly cachePath?: string;
|
|
97
|
-
readonly cause?: unknown;
|
|
98
|
-
} | {
|
|
99
|
-
readonly code: "RUNTIME_MODULE_LOAD_FAILED";
|
|
100
|
-
readonly message: string;
|
|
101
|
-
readonly filePath: string;
|
|
102
|
-
readonly astPath: string;
|
|
103
|
-
readonly cause?: unknown;
|
|
104
|
-
} | {
|
|
105
|
-
readonly code: "ARTIFACT_REGISTRATION_FAILED";
|
|
106
|
-
readonly message: string;
|
|
107
|
-
readonly elementId: string;
|
|
108
|
-
readonly reason: string;
|
|
109
|
-
} | {
|
|
110
|
-
readonly code: "ELEMENT_EVALUATION_FAILED";
|
|
111
|
-
readonly message: string;
|
|
112
|
-
readonly modulePath: string;
|
|
113
|
-
readonly astPath: string;
|
|
114
|
-
readonly cause?: unknown;
|
|
115
|
-
} | {
|
|
116
|
-
readonly code: "INTERNAL_INVARIANT";
|
|
117
|
-
readonly message: string;
|
|
118
|
-
readonly context?: string;
|
|
119
|
-
readonly cause?: unknown;
|
|
120
|
-
} | {
|
|
121
|
-
readonly code: "SCHEMA_NOT_FOUND";
|
|
122
|
-
readonly message: string;
|
|
123
|
-
readonly schemaLabel: string;
|
|
124
|
-
readonly canonicalId: string;
|
|
125
|
-
};
|
|
126
|
-
/**
|
|
127
|
-
* Helper type for Builder operation results.
|
|
128
|
-
*/
|
|
129
|
-
type BuilderResult<T> = Result<T, BuilderError>;
|
|
130
|
-
/**
|
|
131
|
-
* Error constructor helpers for concise error creation.
|
|
132
|
-
*/
|
|
133
|
-
declare const builderErrors: {
|
|
134
|
-
readonly entryNotFound: (entry: string, message?: string) => BuilderError;
|
|
135
|
-
readonly configNotFound: (path: string, message?: string) => BuilderError;
|
|
136
|
-
readonly configInvalid: (path: string, message: string, cause?: unknown) => BuilderError;
|
|
137
|
-
readonly discoveryIOError: (path: string, message: string, errno?: string | number, cause?: unknown) => BuilderError;
|
|
138
|
-
readonly fingerprintFailed: (filePath: string, message: string, cause?: unknown) => BuilderError;
|
|
139
|
-
readonly unsupportedAnalyzer: (analyzer: string, message?: string) => BuilderError;
|
|
140
|
-
readonly canonicalPathInvalid: (path: string, reason?: string) => BuilderError;
|
|
141
|
-
readonly canonicalScopeMismatch: (expected: string, actual: string) => BuilderError;
|
|
142
|
-
readonly graphCircularDependency: (chain: readonly string[]) => BuilderError;
|
|
143
|
-
readonly graphMissingImport: (importer: string, importee: string) => BuilderError;
|
|
144
|
-
readonly docDuplicate: (name: string, sources: readonly string[]) => BuilderError;
|
|
145
|
-
readonly writeFailed: (outPath: string, message: string, cause?: unknown) => BuilderError;
|
|
146
|
-
readonly cacheCorrupted: (message: string, cachePath?: string, cause?: unknown) => BuilderError;
|
|
147
|
-
readonly runtimeModuleLoadFailed: (filePath: string, astPath: string, message: string, cause?: unknown) => BuilderError;
|
|
148
|
-
readonly artifactRegistrationFailed: (elementId: string, reason: string) => BuilderError;
|
|
149
|
-
readonly elementEvaluationFailed: (modulePath: string, astPath: string, message: string, cause?: unknown) => BuilderError;
|
|
150
|
-
readonly internalInvariant: (message: string, context?: string, cause?: unknown) => BuilderError;
|
|
151
|
-
readonly schemaNotFound: (schemaLabel: string, canonicalId: string) => BuilderError;
|
|
152
|
-
};
|
|
153
|
-
/**
|
|
154
|
-
* Convenience helper to create an err Result from BuilderError.
|
|
155
|
-
*/
|
|
156
|
-
declare const builderErr: <T = never>(error: BuilderError) => BuilderResult<T>;
|
|
157
|
-
/**
|
|
158
|
-
* Type guard for BuilderError.
|
|
159
|
-
*/
|
|
160
|
-
declare const isBuilderError: (error: unknown) => error is BuilderError;
|
|
161
|
-
/**
|
|
162
|
-
* Format BuilderError for console output (human-readable).
|
|
163
|
-
*/
|
|
164
|
-
declare const formatBuilderError: (error: BuilderError) => string;
|
|
165
|
-
/**
|
|
166
|
-
* Assert unreachable code path (for exhaustiveness checks).
|
|
167
|
-
* This is the ONLY acceptable throw in builder code.
|
|
168
|
-
*/
|
|
169
|
-
declare const assertUnreachable: (value: never, context?: string) => never;
|
|
170
|
-
//#endregion
|
|
171
|
-
//#region packages/builder/src/types.d.ts
|
|
172
|
-
type BuilderMode = "runtime" | "zero-runtime";
|
|
173
|
-
type BuilderFormat = "json" | "human";
|
|
174
|
-
type BuilderAnalyzer = "ts" | "swc";
|
|
175
|
-
type BuilderInput = Record<string, never>;
|
|
176
|
-
type BuilderOptions = BuilderInput & {
|
|
177
|
-
readonly outPath: string;
|
|
178
|
-
readonly format: BuilderFormat;
|
|
179
|
-
};
|
|
180
|
-
//#endregion
|
|
181
|
-
//#region packages/builder/src/ast/types.d.ts
|
|
182
|
-
type ModuleDefinition = {
|
|
183
|
-
readonly canonicalId: CanonicalId;
|
|
184
|
-
/** AST-derived path uniquely identifying this definition's location (e.g., "MyComponent.useQuery.def") */
|
|
185
|
-
readonly astPath: string;
|
|
186
|
-
/**
|
|
187
|
-
* Whether this definition is at the top level of the module (stack.length === 1 during AST traversal).
|
|
188
|
-
* Invariant: if isExported is true, isTopLevel must also be true.
|
|
189
|
-
*/
|
|
190
|
-
readonly isTopLevel: boolean;
|
|
191
|
-
/**
|
|
192
|
-
* Whether this definition is exported from the module.
|
|
193
|
-
* Invariant: isExported can only be true when isTopLevel is true.
|
|
194
|
-
*/
|
|
195
|
-
readonly isExported: boolean;
|
|
196
|
-
/** The export binding name if this definition is exported */
|
|
197
|
-
readonly exportBinding?: string;
|
|
198
|
-
readonly expression: string;
|
|
199
|
-
};
|
|
200
|
-
type ModuleImport = {
|
|
201
|
-
readonly source: string;
|
|
202
|
-
readonly local: string;
|
|
203
|
-
readonly kind: "named" | "namespace" | "default";
|
|
204
|
-
readonly isTypeOnly: boolean;
|
|
205
|
-
};
|
|
206
|
-
type ModuleExport = {
|
|
207
|
-
readonly kind: "named";
|
|
208
|
-
readonly exported: string;
|
|
209
|
-
readonly local: string;
|
|
210
|
-
readonly source?: undefined;
|
|
211
|
-
readonly isTypeOnly: boolean;
|
|
212
|
-
} | {
|
|
213
|
-
readonly kind: "reexport";
|
|
214
|
-
readonly exported: string;
|
|
215
|
-
readonly source: string;
|
|
216
|
-
readonly local?: string;
|
|
217
|
-
readonly isTypeOnly: boolean;
|
|
218
|
-
};
|
|
219
|
-
type ModuleAnalysis = {
|
|
220
|
-
readonly filePath: string;
|
|
221
|
-
readonly signature: string;
|
|
222
|
-
readonly definitions: readonly ModuleDefinition[];
|
|
223
|
-
readonly imports: readonly ModuleImport[];
|
|
224
|
-
readonly exports: readonly ModuleExport[];
|
|
225
|
-
};
|
|
226
|
-
type AnalyzeModuleInput = {
|
|
227
|
-
readonly filePath: string;
|
|
228
|
-
readonly source: string;
|
|
229
|
-
};
|
|
230
|
-
//#endregion
|
|
231
|
-
//#region packages/builder/src/ast/index.d.ts
|
|
232
|
-
declare const createAstAnalyzer: ({
|
|
233
|
-
analyzer,
|
|
234
|
-
graphqlHelper
|
|
235
|
-
}: {
|
|
236
|
-
readonly analyzer: BuilderAnalyzer;
|
|
237
|
-
readonly graphqlHelper: GraphqlSystemIdentifyHelper;
|
|
238
|
-
}) => {
|
|
239
|
-
type: BuilderAnalyzer;
|
|
240
|
-
analyze: (input: AnalyzeModuleInput) => ModuleAnalysis;
|
|
241
|
-
};
|
|
242
|
-
//#endregion
|
|
243
|
-
//#region packages/builder/src/intermediate-module/types.d.ts
|
|
244
|
-
/**
|
|
245
|
-
* Request type yielded by module generators to import dependencies.
|
|
246
|
-
*/
|
|
247
|
-
type EvaluationRequest = {
|
|
248
|
-
readonly kind: "import";
|
|
249
|
-
readonly filePath: string;
|
|
250
|
-
};
|
|
251
|
-
type IntermediateModule = {
|
|
252
|
-
readonly filePath: string;
|
|
253
|
-
readonly canonicalIds: readonly string[];
|
|
254
|
-
readonly sourceCode: string;
|
|
255
|
-
readonly transpiledCode: string;
|
|
256
|
-
readonly contentHash: string;
|
|
257
|
-
readonly script: Script;
|
|
258
|
-
};
|
|
259
|
-
type IntermediateArtifactElement = {
|
|
260
|
-
readonly type: "fragment";
|
|
261
|
-
readonly element: AnyFragment;
|
|
262
|
-
} | {
|
|
263
|
-
readonly type: "operation";
|
|
264
|
-
readonly element: AnyOperation;
|
|
265
|
-
};
|
|
266
|
-
//#endregion
|
|
267
|
-
//#region packages/builder/src/intermediate-module/evaluation.d.ts
|
|
268
|
-
type BuildIntermediateModulesInput = {
|
|
269
|
-
readonly analyses: Map<string, ModuleAnalysis>;
|
|
270
|
-
readonly targetFiles: Set<string>;
|
|
271
|
-
readonly graphqlSystemPath: string;
|
|
272
|
-
};
|
|
273
|
-
/**
|
|
274
|
-
* Clear the cached gql module.
|
|
275
|
-
* Call this between test runs to ensure clean state.
|
|
276
|
-
* @internal - exported for testing purposes only
|
|
277
|
-
*/
|
|
278
|
-
declare const __clearGqlCache: () => void;
|
|
279
|
-
/**
|
|
280
|
-
* Build intermediate modules from dependency graph.
|
|
281
|
-
* Each intermediate module corresponds to one source file.
|
|
282
|
-
*/
|
|
283
|
-
declare const generateIntermediateModules: ({
|
|
284
|
-
analyses,
|
|
285
|
-
targetFiles,
|
|
286
|
-
graphqlSystemPath
|
|
287
|
-
}: BuildIntermediateModulesInput) => Generator<IntermediateModule, void, undefined>;
|
|
288
|
-
type EvaluateIntermediateModulesInput = {
|
|
289
|
-
intermediateModules: Map<string, IntermediateModule>;
|
|
290
|
-
graphqlSystemPath: string;
|
|
291
|
-
analyses: Map<string, ModuleAnalysis>;
|
|
292
|
-
};
|
|
293
|
-
/**
|
|
294
|
-
* Synchronous evaluation of intermediate modules.
|
|
295
|
-
* Throws if any element requires async operations (e.g., async metadata factory).
|
|
296
|
-
*/
|
|
297
|
-
declare const evaluateIntermediateModules: (input: EvaluateIntermediateModulesInput) => Record<string, IntermediateArtifactElement>;
|
|
298
|
-
/**
|
|
299
|
-
* Asynchronous evaluation of intermediate modules.
|
|
300
|
-
* Supports async metadata factories and other async operations.
|
|
301
|
-
*/
|
|
302
|
-
declare const evaluateIntermediateModulesAsync: (input: EvaluateIntermediateModulesInput) => Promise<Record<string, IntermediateArtifactElement>>;
|
|
303
|
-
/**
|
|
304
|
-
* Generator version of evaluateIntermediateModules for external scheduler control.
|
|
305
|
-
* Yields effects for element evaluation, enabling unified scheduler at the root level.
|
|
306
|
-
*
|
|
307
|
-
* This function:
|
|
308
|
-
* 1. Sets up the VM context and runs intermediate module scripts
|
|
309
|
-
* 2. Runs synchronous module evaluation (trampoline - no I/O)
|
|
310
|
-
* 3. Yields element evaluation effects via ParallelEffect
|
|
311
|
-
* 4. Returns the artifacts record
|
|
312
|
-
*/
|
|
313
|
-
declare function evaluateIntermediateModulesGen(input: EvaluateIntermediateModulesInput): EffectGenerator<Record<string, IntermediateArtifactElement>>;
|
|
314
|
-
//#endregion
|
|
315
|
-
//#region packages/builder/src/artifact/types.d.ts
|
|
316
|
-
type IntermediateElements = Record<CanonicalId, IntermediateArtifactElement>;
|
|
317
|
-
type BuilderArtifactElementMetadata = {
|
|
318
|
-
readonly sourcePath: string;
|
|
319
|
-
readonly contentHash: string;
|
|
320
|
-
};
|
|
321
|
-
type BuilderArtifactElementBase = {
|
|
322
|
-
readonly id: CanonicalId;
|
|
323
|
-
readonly metadata: BuilderArtifactElementMetadata;
|
|
324
|
-
};
|
|
325
|
-
type BuilderArtifactOperation = BuilderArtifactElementBase & {
|
|
326
|
-
readonly type: "operation";
|
|
327
|
-
readonly prebuild: RuntimeOperationInput["prebuild"];
|
|
328
|
-
};
|
|
329
|
-
type BuilderArtifactFragment = BuilderArtifactElementBase & {
|
|
330
|
-
readonly type: "fragment";
|
|
331
|
-
readonly prebuild: RuntimeFragmentInput["prebuild"];
|
|
332
|
-
};
|
|
333
|
-
type BuilderArtifactElement = BuilderArtifactOperation | BuilderArtifactFragment;
|
|
334
|
-
/**
|
|
335
|
-
* Metadata for pre-built artifacts.
|
|
336
|
-
* Contains version and creation timestamp for compatibility checks.
|
|
337
|
-
*/
|
|
338
|
-
type BuilderArtifactMeta = {
|
|
339
|
-
readonly version: string;
|
|
340
|
-
readonly createdAt: string;
|
|
341
|
-
};
|
|
342
|
-
type BuilderArtifact = {
|
|
343
|
-
/**
|
|
344
|
-
* Artifact metadata. Present in pre-built artifacts for version tracking.
|
|
345
|
-
*/
|
|
346
|
-
readonly meta?: BuilderArtifactMeta;
|
|
347
|
-
readonly elements: Record<CanonicalId, BuilderArtifactElement>;
|
|
348
|
-
readonly report: {
|
|
349
|
-
readonly durationMs: number;
|
|
350
|
-
readonly warnings: readonly string[];
|
|
351
|
-
readonly stats: {
|
|
352
|
-
readonly hits: number;
|
|
353
|
-
readonly misses: number;
|
|
354
|
-
readonly skips: number;
|
|
355
|
-
};
|
|
356
|
-
};
|
|
357
|
-
};
|
|
358
|
-
//#endregion
|
|
359
11
|
//#region packages/builder/src/artifact/loader.d.ts
|
|
360
12
|
/**
|
|
361
13
|
* Error codes for artifact loading failures.
|
|
@@ -402,6 +54,36 @@ declare const loadArtifact: (path: string) => Promise<Result<BuilderArtifact, Ar
|
|
|
402
54
|
*/
|
|
403
55
|
declare const loadArtifactSync: (path: string) => Result<BuilderArtifact, ArtifactLoadError>;
|
|
404
56
|
//#endregion
|
|
57
|
+
//#region packages/builder/src/ast/common/detection.d.ts
|
|
58
|
+
/**
|
|
59
|
+
* Configuration for creating a diagnostic
|
|
60
|
+
*/
|
|
61
|
+
type DiagnosticConfig = {
|
|
62
|
+
readonly code: DiagnosticCode;
|
|
63
|
+
readonly message: string;
|
|
64
|
+
readonly location: DiagnosticLocation;
|
|
65
|
+
readonly context?: Readonly<Record<string, string>>;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Create a diagnostic with appropriate severity
|
|
69
|
+
*/
|
|
70
|
+
declare const createDiagnostic: (config: DiagnosticConfig) => ModuleDiagnostic;
|
|
71
|
+
/**
|
|
72
|
+
* Get severity for a diagnostic code.
|
|
73
|
+
* - "error": Code will definitely not work
|
|
74
|
+
* - "warning": Code might work but is unsupported/unreliable
|
|
75
|
+
*/
|
|
76
|
+
declare const getSeverity: (code: DiagnosticCode) => DiagnosticSeverity;
|
|
77
|
+
type MessageContext = Readonly<Record<string, string>>;
|
|
78
|
+
/**
|
|
79
|
+
* Diagnostic message templates for each code
|
|
80
|
+
*/
|
|
81
|
+
declare const diagnosticMessages: Record<DiagnosticCode, (ctx?: MessageContext) => string>;
|
|
82
|
+
/**
|
|
83
|
+
* Create a diagnostic with a standard message
|
|
84
|
+
*/
|
|
85
|
+
declare const createStandardDiagnostic: (code: DiagnosticCode, location: DiagnosticLocation, context?: MessageContext) => ModuleDiagnostic;
|
|
86
|
+
//#endregion
|
|
405
87
|
//#region packages/builder/src/discovery/fingerprint.d.ts
|
|
406
88
|
/**
|
|
407
89
|
* File fingerprint containing hash, size, and modification time
|
|
@@ -830,92 +512,6 @@ declare const BuilderArtifactSchema: z.ZodObject<{
|
|
|
830
512
|
type BuilderArtifact$1 = z.infer<typeof BuilderArtifactSchema>;
|
|
831
513
|
type BuilderArtifactElement$1 = z.infer<typeof BuilderArtifactElementSchema>;
|
|
832
514
|
//#endregion
|
|
833
|
-
//#region packages/builder/src/service.d.ts
|
|
834
|
-
/**
|
|
835
|
-
* Configuration for BuilderService.
|
|
836
|
-
* Mirrors BuilderInput shape.
|
|
837
|
-
*/
|
|
838
|
-
type BuilderServiceConfig = {
|
|
839
|
-
readonly config: ResolvedSodaGqlConfig;
|
|
840
|
-
readonly entrypointsOverride?: readonly string[] | ReadonlySet<string>;
|
|
841
|
-
};
|
|
842
|
-
/**
|
|
843
|
-
* Builder service interface providing artifact generation.
|
|
844
|
-
*/
|
|
845
|
-
interface BuilderService {
|
|
846
|
-
/**
|
|
847
|
-
* Generate artifacts from configured entry points (synchronous).
|
|
848
|
-
*
|
|
849
|
-
* The service automatically detects file changes using an internal file tracker.
|
|
850
|
-
* On first call, performs full build. Subsequent calls perform incremental builds
|
|
851
|
-
* based on detected file changes (added/updated/removed).
|
|
852
|
-
*
|
|
853
|
-
* Throws if any element requires async operations (e.g., async metadata factory).
|
|
854
|
-
*
|
|
855
|
-
* @param options - Optional build options
|
|
856
|
-
* @param options.force - If true, bypass change detection and force full rebuild
|
|
857
|
-
* @returns Result containing BuilderArtifact on success or BuilderError on failure.
|
|
858
|
-
*/
|
|
859
|
-
build(options?: {
|
|
860
|
-
force?: boolean;
|
|
861
|
-
}): Result<BuilderArtifact, BuilderError>;
|
|
862
|
-
/**
|
|
863
|
-
* Generate artifacts from configured entry points (asynchronous).
|
|
864
|
-
*
|
|
865
|
-
* The service automatically detects file changes using an internal file tracker.
|
|
866
|
-
* On first call, performs full build. Subsequent calls perform incremental builds
|
|
867
|
-
* based on detected file changes (added/updated/removed).
|
|
868
|
-
*
|
|
869
|
-
* Supports async metadata factories and parallel element evaluation.
|
|
870
|
-
*
|
|
871
|
-
* @param options - Optional build options
|
|
872
|
-
* @param options.force - If true, bypass change detection and force full rebuild
|
|
873
|
-
* @returns Promise of Result containing BuilderArtifact on success or BuilderError on failure.
|
|
874
|
-
*/
|
|
875
|
-
buildAsync(options?: {
|
|
876
|
-
force?: boolean;
|
|
877
|
-
}): Promise<Result<BuilderArtifact, BuilderError>>;
|
|
878
|
-
/**
|
|
879
|
-
* Get the current generation number of the artifact.
|
|
880
|
-
* Increments on each successful build.
|
|
881
|
-
* Returns 0 if no artifact has been built yet.
|
|
882
|
-
*/
|
|
883
|
-
getGeneration(): number;
|
|
884
|
-
/**
|
|
885
|
-
* Get the most recent artifact without triggering a new build.
|
|
886
|
-
* Returns null if no artifact has been built yet.
|
|
887
|
-
*/
|
|
888
|
-
getCurrentArtifact(): BuilderArtifact | null;
|
|
889
|
-
/**
|
|
890
|
-
* Get the intermediate elements from the most recent build.
|
|
891
|
-
* Returns null if no build has been performed yet.
|
|
892
|
-
* Used by typegen to extract field selections for prebuilt type generation.
|
|
893
|
-
*/
|
|
894
|
-
getIntermediateElements(): Record<string, IntermediateArtifactElement> | null;
|
|
895
|
-
/**
|
|
896
|
-
* Dispose the service and save cache to disk.
|
|
897
|
-
* Should be called when the service is no longer needed.
|
|
898
|
-
*/
|
|
899
|
-
dispose(): void;
|
|
900
|
-
}
|
|
901
|
-
/**
|
|
902
|
-
* Create a builder service instance with session support.
|
|
903
|
-
*
|
|
904
|
-
* The service maintains a long-lived session for incremental builds.
|
|
905
|
-
* File changes are automatically detected using an internal file tracker.
|
|
906
|
-
* First build() call initializes the session, subsequent calls perform
|
|
907
|
-
* incremental builds based on detected file changes.
|
|
908
|
-
*
|
|
909
|
-
* Note: Empty entry arrays will produce ENTRY_NOT_FOUND errors at build time.
|
|
910
|
-
*
|
|
911
|
-
* @param config - Builder configuration including entry patterns, analyzer, mode, and optional debugDir
|
|
912
|
-
* @returns BuilderService instance
|
|
913
|
-
*/
|
|
914
|
-
declare const createBuilderService: ({
|
|
915
|
-
config,
|
|
916
|
-
entrypointsOverride
|
|
917
|
-
}: BuilderServiceConfig) => BuilderService;
|
|
918
|
-
//#endregion
|
|
919
515
|
//#region packages/builder/src/cache/memory-cache.d.ts
|
|
920
516
|
type CacheNamespace = readonly string[];
|
|
921
517
|
type CacheFactoryOptions = {
|
|
@@ -1062,6 +658,8 @@ declare const discoverModulesAsync: (options: DiscoverModulesOptions) => Promise
|
|
|
1062
658
|
* Used by the discovery system to find entry points for module traversal.
|
|
1063
659
|
* All paths are normalized to POSIX format for consistent cache key matching.
|
|
1064
660
|
* Uses Node.js normalize() + backslash replacement to match normalizePath from @soda-gql/common.
|
|
661
|
+
*
|
|
662
|
+
* @param entries - Include patterns (glob or direct paths). Supports negation patterns (e.g., "!./path/to/exclude.ts")
|
|
1065
663
|
*/
|
|
1066
664
|
declare const resolveEntryPaths: (entries: readonly string[]) => neverthrow0.Err<readonly string[], BuilderError> | neverthrow0.Ok<readonly string[], BuilderError>;
|
|
1067
665
|
//#endregion
|
|
@@ -1168,5 +766,5 @@ declare const collectAffectedFiles: (input: {
|
|
|
1168
766
|
previousModuleAdjacency: Map<string, Set<string>>;
|
|
1169
767
|
}) => Set<string>;
|
|
1170
768
|
//#endregion
|
|
1171
|
-
export { type ArtifactLoadError, type ArtifactLoadErrorCode, type BuilderAnalyzer, type BuilderArtifact, type BuilderArtifactElement, type BuilderArtifactElementMetadata, type BuilderArtifactFragment, type BuilderArtifactMeta, type BuilderArtifactOperation, BuilderArtifactSchema, BuilderEffects, type BuilderError, type BuilderFormat, type BuilderInput, type BuilderMode, type BuilderOptions, type BuilderService, type BuilderServiceConfig, type BuilderSession, type DiscoveredDependency, type DiscoveryCache, type DiscoverySnapshot, type FieldSelectionData, type FieldSelectionsMap, FileReadEffect, FileStatEffect, type FileStats, type FormattedError, type GraphqlSystemIdentifyHelper, type IntermediateArtifactElement, type LoadSchemasResult, __clearGqlCache, builderErrors, collectAffectedFiles, createBuilderService, createBuilderSession, createGraphqlSystemIdentifyHelper, extractFieldSelections, extractModuleAdjacency, formatBuilderErrorForCLI, formatBuilderErrorStructured, loadArtifact, loadArtifactSync, loadSchemasFromBundle };
|
|
769
|
+
export { type ArtifactLoadError, type ArtifactLoadErrorCode, type BuilderAnalyzer, type BuilderArtifact, type BuilderArtifactElement, type BuilderArtifactElementMetadata, type BuilderArtifactFragment, type BuilderArtifactMeta, type BuilderArtifactOperation, BuilderArtifactSchema, BuilderEffects, type BuilderError, type BuilderFormat, type BuilderInput, type BuilderMode, type BuilderOptions, type BuilderService, type BuilderServiceConfig, type BuilderSession, type DiagnosticCode, type DiagnosticLocation, type DiagnosticSeverity, type DiscoveredDependency, type DiscoveryCache, type DiscoverySnapshot, type FieldSelectionData, type FieldSelectionsMap, FileReadEffect, FileStatEffect, type FileStats, type FormattedError, type GraphqlSystemIdentifyHelper, type IntermediateArtifactElement, type LoadSchemasResult, type ModuleDiagnostic, __clearGqlCache, builderErrors, collectAffectedFiles, createBuilderService, createBuilderSession, createDiagnostic, createGraphqlSystemIdentifyHelper, createStandardDiagnostic, diagnosticMessages, extractFieldSelections, extractModuleAdjacency, formatBuilderErrorForCLI, formatBuilderErrorStructured, getSeverity, loadArtifact, loadArtifactSync, loadSchemasFromBundle };
|
|
1172
770
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/internal/graphql-system.ts","../src/errors.ts","../src/types.ts","../src/ast/types.ts","../src/ast/index.ts","../src/intermediate-module/types.ts","../src/intermediate-module/evaluation.ts","../src/artifact/types.ts","../src/artifact/loader.ts","../src/discovery/fingerprint.ts","../src/discovery/types.ts","../src/errors/formatter.ts","../src/prebuilt/extractor.ts","../src/scheduler/effects.ts","../src/schema-loader.ts","../src/schemas/artifact.ts","../src/service.ts","../src/cache/memory-cache.ts","../src/cache/entity-cache.ts","../src/discovery/cache.ts","../src/discovery/discoverer.ts","../src/discovery/entry-paths.ts","../src/artifact/builder.ts","../src/session/builder-session.ts","../src/session/dependency-validation.ts","../src/session/module-adjacency.ts"],"sourcesContent":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/artifact/loader.ts","../src/ast/common/detection.ts","../src/discovery/fingerprint.ts","../src/discovery/types.ts","../src/errors/formatter.ts","../src/prebuilt/extractor.ts","../src/scheduler/effects.ts","../src/schema-loader.ts","../src/schemas/artifact.ts","../src/cache/memory-cache.ts","../src/cache/entity-cache.ts","../src/discovery/cache.ts","../src/discovery/discoverer.ts","../src/discovery/entry-paths.ts","../src/artifact/builder.ts","../src/session/builder-session.ts","../src/session/dependency-validation.ts","../src/session/module-adjacency.ts"],"sourcesContent":[],"mappings":"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"}
|