@powerhousedao/codegen 6.2.2-dev.4 → 6.2.2-dev.41

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.
@@ -8,7 +8,7 @@ import { camelCase, capitalCase, constantCase, kebabCase, pascalCase } from "cha
8
8
  import { DEFAULT_CONNECT_CONFIG } from "@powerhousedao/shared/connect";
9
9
  import { DEFAULT_REGISTRY_URL } from "@powerhousedao/shared/registry";
10
10
  import { capitalize, concat, conditional, constant, endsWith, filter, find, first, flatMap, forEach, isDefined, isIncludedIn, isNonNullish, isNot, isStrictEqual, isString, isTruthy, last, map, mapValues, merge, pipe, prop, sort, split, startsWith, subtract, unique, uniqueBy, when } from "remeda";
11
- import { IndentationText, Project, SyntaxKind, VariableDeclarationKind, ts } from "ts-morph";
11
+ import { FileSystemRefreshResult, IndentationText, Project, SyntaxKind, VariableDeclarationKind, ts } from "ts-morph";
12
12
  import arg from "arg";
13
13
  import { format } from "oxfmt";
14
14
  import { z } from "zod";
@@ -6268,9 +6268,23 @@ export const utils: DocumentModelUtils<${phStateName}> = { ...genUtils, ...custo
6268
6268
  `.raw;
6269
6269
  //#endregion
6270
6270
  //#region src/templates/processors/utils.ts
6271
- function getDocumentType(documentTypes) {
6272
- if (!documentTypes.length) return `"*"`;
6273
- return documentTypes.map((type) => `"${type}"`).join(", ");
6271
+ const FILTER_FIELD_ORDER = [
6272
+ "branch",
6273
+ "documentId",
6274
+ "documentType",
6275
+ "scope"
6276
+ ];
6277
+ /** Splits, trims and compacts one filter field, so `-t a -t b` and
6278
+ * `-t "a,b"` mean the same thing instead of the latter yielding one value. */
6279
+ function parseFilterValues(values) {
6280
+ return (values ?? []).flatMap((value) => value.split(",")).map((value) => value.trim()).filter((value) => value.length > 0);
6281
+ }
6282
+ /** Renders a generated factory's `ProcessorFilter`, omitting empty fields:
6283
+ * only `documentId` honours `"*"`, so `["*"]` elsewhere matches nothing. */
6284
+ function renderProcessorFilter(fields) {
6285
+ const properties = FILTER_FIELD_ORDER.map((name) => [name, parseFilterValues(fields[name])]).filter(([, values]) => values.length > 0).map(([name, values]) => ` ${name}: [${values.map((value) => `"${value}"`).join(", ")}],`);
6286
+ if (properties.length === 0) return "{}";
6287
+ return `{\n${properties.join("\n")}\n}`;
6274
6288
  }
6275
6289
  //#endregion
6276
6290
  //#region src/templates/processors/analytics/factory.ts
@@ -6288,12 +6302,12 @@ export const ${v.camelCaseName}FactoryBuilder: ProcessorFactoryBuilder = (module
6288
6302
  return [
6289
6303
  {
6290
6304
  processor: new ${v.pascalCaseName}(module.analyticsStore),
6291
- filter: {
6292
- branch: ["main"],
6293
- documentId: ["*"],
6294
- scope: ["*"],
6295
- documentType: [${getDocumentType(v.documentTypes)}],
6296
- },
6305
+ // An omitted field matches every value. Only \`documentId\` honours "*".
6306
+ filter: ${renderProcessorFilter({
6307
+ branch: ["main"],
6308
+ documentId: ["*"],
6309
+ documentType: v.documentTypes
6310
+ })},
6297
6311
  },
6298
6312
  ];
6299
6313
  }
@@ -6421,16 +6435,22 @@ export const ${v.camelCaseName}FactoryBuilder: ProcessorFactoryBuilder = (module
6421
6435
  namespace,
6422
6436
  );
6423
6437
 
6424
- // Create a filter for the processor
6425
- const filter: ProcessorFilter = {
6426
- branch: ["main"],
6427
- documentId: ["*"],
6428
- documentType: [${getDocumentType(v.documentTypes)}],
6429
- scope: ["global"],
6430
- };
6438
+ // Create a filter for the processor. An omitted field matches every value.
6439
+ // Only \`documentId\` honours "*", so "*" elsewhere would match nothing.
6440
+ const filter: ProcessorFilter = ${renderProcessorFilter({
6441
+ branch: ["main"],
6442
+ documentId: ["*"],
6443
+ documentType: v.documentTypes,
6444
+ scope: ["global"]
6445
+ })};
6431
6446
 
6432
6447
  // Create the processor
6433
6448
  const processor = new ${v.pascalCaseName}(namespace, filter, store);
6449
+
6450
+ // Run the processor's migrations. Nothing in the runtime calls this, so
6451
+ // without it the first write hits a database with no tables.
6452
+ await processor.initAndUpgrade();
6453
+
6434
6454
  return [
6435
6455
  {
6436
6456
  processor,
@@ -6659,8 +6679,14 @@ async function formatSafe(sourceText, parser = "typescript") {
6659
6679
  return sourceText;
6660
6680
  }
6661
6681
  }
6682
+ /**
6683
+ * Formats the current working directory with the pinned oxfmt version.
6684
+ * The pin matters when the project was scaffolded with skipInstall: with no
6685
+ * local oxfmt, a bare `npx oxfmt` downloads the latest release, whose
6686
+ * behavior can drift from the version the boilerplate depends on.
6687
+ */
6662
6688
  async function runOxfmt() {
6663
- await spawnAsync("npx", ["oxfmt", "."]);
6689
+ await spawnAsync("npx", [`oxfmt@${externalDevDependencies.oxfmt}`, "."]);
6664
6690
  }
6665
6691
  //#endregion
6666
6692
  //#region src/utils/get-editor-metadata.ts
@@ -6713,20 +6739,52 @@ function getSubgraphMetadata(project, dirName) {
6713
6739
  //#region src/utils/source-files.ts
6714
6740
  /** Gets a SourceFile by name in a ts-morph Project, or creates a new one
6715
6741
  * if none with that path exists.
6742
+ *
6743
+ * "Exists" has to mean *on disk*, not merely "already loaded in this Project".
6744
+ * Projects here are built with `skipAddingFilesFromTsConfig` (see
6745
+ * `buildTsMorphProject`), so they start empty and `getSourceFile` alone reports
6746
+ * every existing file as missing. Combined with `overwrite: true` that silently
6747
+ * discarded whatever the user had written — `alreadyExists` was always `false`,
6748
+ * so builders that scaffold-once-then-amend (tests, reducers, subgraphs,
6749
+ * editors, processors) re-scaffolded from scratch on every run and hand-written
6750
+ * code was lost on `project.save()`.
6751
+ *
6752
+ * Reading the file in when it is on disk but not yet loaded mirrors what
6753
+ * `DirectoryManager.createSourceFile` already does. Files that codegen fully
6754
+ * owns are unaffected: they call `replaceWithText` immediately afterwards.
6755
+ *
6756
+ * The rule has to hold on the cache-hit path too, which is the other half of
6757
+ * the same data loss. `ph vetra` builds one Project per process and reuses it
6758
+ * for every codegen run, and nothing ever refreshes it, so a SourceFile loaded
6759
+ * by an earlier run keeps the text it had then: codegen scaffolds a reducer
6760
+ * with TODO stubs, the user writes the real body on disk, and the next run in
6761
+ * that session still sees the stubs and writes them back on `project.save()`.
6762
+ * A fresh process (`ph generate`) never hit this — the cache miss forced a read
6763
+ * from disk. Refreshing a cached SourceFile before handing it out makes the
6764
+ * long-lived Project behave like a fresh one. Only cached files are refreshed;
6765
+ * `addSourceFileAtPathIfExists` has just read disk, so refreshing that again
6766
+ * would be I/O for a guaranteed `NoChange`.
6716
6767
  */
6717
6768
  function getOrCreateSourceFile(project, filePath) {
6718
6769
  const dirName = path.dirname(filePath);
6719
6770
  if (!project.getDirectory(dirName)) project.createDirectory(dirName);
6720
- const sourceFile = project.getSourceFile(filePath);
6771
+ const cachedSourceFile = project.getSourceFile(filePath);
6772
+ const sourceFile = cachedSourceFile ? refreshCachedSourceFile(cachedSourceFile) : project.addSourceFileAtPathIfExists(filePath);
6721
6773
  if (!sourceFile) return {
6722
6774
  alreadyExists: false,
6723
- sourceFile: project.createSourceFile(filePath, "", { overwrite: true })
6775
+ sourceFile: project.createSourceFile(filePath, "", { overwrite: false })
6724
6776
  };
6725
6777
  return {
6726
6778
  alreadyExists: true,
6727
6779
  sourceFile
6728
6780
  };
6729
6781
  }
6782
+ /** Re-reads a cached SourceFile from disk, `undefined` once it is gone from
6783
+ * disk (ts-morph forgets it then, so the caller re-creates it). */
6784
+ function refreshCachedSourceFile(sourceFile) {
6785
+ if (!sourceFile.isSaved()) return sourceFile;
6786
+ return sourceFile.refreshFromFileSystemSync() === FileSystemRefreshResult.Deleted ? void 0 : sourceFile;
6787
+ }
6730
6788
  /** Gets a Directory by name in a ts-morph Project, or creates a new one
6731
6789
  * if none with that path exists.
6732
6790
  */
@@ -7453,7 +7511,9 @@ const DATE_LIKE_SCALARS = new Set(["Date", "DateTime"]);
7453
7511
  const SCALAR_MOCK_OVERRIDES = {
7454
7512
  Date: `"2024-01-01T00:00:00.000Z"`,
7455
7513
  DateTime: `"2024-01-01T00:00:00.000Z"`,
7456
- URL: `"https://example.com"`
7514
+ URL: `"https://example.com"`,
7515
+ AttachmentRef: `"attachment://v1:${"a".repeat(64)}"`,
7516
+ Address: `"eip155:0x${"0".repeat(40)}"`
7457
7517
  };
7458
7518
  function unwrapNamedTypeName(type) {
7459
7519
  if (type.kind === Kind.NAMED_TYPE) return type.name.value;
@@ -7803,8 +7863,8 @@ async function makeReducerOperationHandlerForModule({ project, module, version,
7803
7863
  const operationsInterfaceTypeName = `${pascalCaseDocumentType}${pascalCaseModuleName}Operations`;
7804
7864
  const operationsInterfaceVariableName = `${camelCaseDocumentType}${pascalCaseModuleName}Operations`;
7805
7865
  const existingOperationsInterfaceTypeImport = sourceFile.getImportDeclaration((importDeclaration) => !!importDeclaration.getNamedImports().find((importSpecifier) => importSpecifier.getName() === operationsInterfaceTypeName));
7806
- if (existingOperationsInterfaceTypeImport) existingOperationsInterfaceTypeImport.remove();
7807
- sourceFile.addImportDeclaration({
7866
+ if (existingOperationsInterfaceTypeImport) existingOperationsInterfaceTypeImport.setModuleSpecifier(versionImportPath);
7867
+ else sourceFile.addImportDeclaration({
7808
7868
  namedImports: [operationsInterfaceTypeName],
7809
7869
  moduleSpecifier: versionImportPath,
7810
7870
  isTypeOnly: true
@@ -8658,6 +8718,6 @@ async function makeSubgraphsIndexFile(args) {
8658
8718
  await formatSourceFileWithPrettier(sourceFile);
8659
8719
  }
8660
8720
  //#endregion
8661
- export { getVariableDeclarationByTypeName as $, documentModelsTemplate as $n, documentModelOperationsModuleErrorFileTemplate as $t, writeGeneratedProcessorsFiles as A, buildPowerhouseConfigTemplate as An, factoryBuildersTemplate as At, updateVersionedImports as B, reactorTsTemplate as Bn, makeTestCaseForOperation as Bt, buildBoilerplatePackageJson as C, vitestConfigTemplate as Cn, relationalDbSchemaTemplate as Ct, writeCIFiles as D, styleTemplate as Dn, relationalDbFactoryTemplate as Dt, writeAllGeneratedProjectFiles as E, subgraphsIndexTemplate as En, relationalDbIndexTemplate as Et, tsMorphGenerateApp as F, packageJsonTemplate as Fn, upgradeTransitionTemplate as Ft, getAllImportModuleSpecifiers as G, syncAndPublishWorkflowTemplate as Gn, documentModelIndexTemplate as Gt, DEFAULT_PROJECT_OPTIONS as H, legacyIndexHtmlTemplate as Hn, documentModelSrcUtilsTemplate as Ht, makeEditorModuleFile as I, npmrcTemplate as In, upgradeManifestTemplate as It, getObjectLiteral as J, oxlintConfigTemplate as Jn, documentModelGenTypesTemplate as Jt, getAllImportNames as K, geminiSettingsTemplate as Kn, documentModelHooksFileTemplate as Kt, makeEditorsFile as L, mcpTemplate as Ln, documentModelOperationsModuleTestFileTemplate as Lt, writeGeneratedSubgraphsFiles as M, packageJsonScriptsTemplate as Mn, analyticsIndexTemplate as Mt, writeModuleFiles as N, pnpmWorkspaceTemplate as Nn, analyticsFactoryTemplate as Nt, writeGeneratedDocumentModelsFiles as O, readmeTemplate as On, processorsIndexTemplate as Ot, writeProjectRootFiles as P, exportsTemplate as Pn, documentModelUtilsTemplate as Pt, getStringPropertyValue as Q, documentModelsIndexTemplate as Qn, documentModelOperationsModuleOperationsFileTemplate as Qt, makeEditorsIndexFile as R, mainTsxTemplate as Rn, makeOperationImportNames as Rt, writeCliDocsMarkdownFile as S, docsFromCliHelpTemplate as Sn, subgraphIndexFileTemplate as St, writeAiConfigFiles as T, tsconfigPathsTemplate as Tn, relationalDbMigrationsTemplate as Tt, buildTsMorphProject as U, indexHtmlTemplate as Un, documentModelSrcIndexFileTemplate as Ut, getInitialStates as V, indexTsTemplate as Vn, documentModelTestFileTemplate as Vt, getDefaultProjectOptions as W, gitIgnoreTemplate as Wn, documentModelModuleFileTemplate as Wt, getProperyAssignmentByName as X, editorsTemplate as Xn, documentModelGenReducerFileTemplate as Xt, getObjectProperty as Y, editorsIndexTemplate as Yn, documentModelSchemaIndexTemplate as Yt, getStringArrayPropertyElements as Z, upgradeManifestsTemplate as Zn, documentModelPhFactoriesFileTemplate as Zt, scalarsValidation as _, documentModelGenControllerFileTemplate as _n, parseArgs as _t, getOrCreateManifestFile as a, getDocumentModelVariableNames as an, claudeSettingsLocalTemplate as ar, getOrCreateSourceFile as at, getCommandsHelpInfo as b, documentEditorModuleFileTemplate as bn, customSubgraphSchemaTemplate as bt, operationHasEmptyInput as c, getLatestDocumentModelSpecVersionNumber as cn, appConfigFileTemplate as cr, getProcessorMetadata as ct, generateDocumentModelZodSchemas as d, getActionType as dn, appFoldersFileTemplate as dr, formatSafe as dt, documentModelOperationsModuleCreatorsFileTemplate as en, switchboardEntrypointTemplate as er, loadDocumentModelInDir as et, generateTypesAndZodSchemasFromGraphql as f, getActionTypeName as fn, appFilesFileTemplate as fr, formatSourceFileWithPrettier as ft, scalars as g, documentModelGenCreatorsFileTemplate as gn, createDocumentFileTemplate as gr, configSpec as gt, getMockOverrideFieldNames as h, documentModelDocumentSchemaFileTemplate as hn, appDriveContentsFileTemplate as hr, documentModelDocumentTypeMetadata as ht, createOrUpdateManifest as i, getDocumentModelSpecByVersionNumber as in, cursorMcpTemplate as ir, getOrCreateDirectory as it, writeGeneratedProjectRootFiles as j, packageJsonExportsTemplate as jn, analyticsProcessorTemplate as jt, writeGeneratedEditorsFiles as k, ManifestTemplate as kn, processorsFactoryTemplate as kt, operationHasInput as l, getActionInputName as ln, driveExplorerNavigationBreadcrumbsFileTemplate as lr, getAppMetadata as lt, getInputFieldNames as m, documentModelDocumentTypeTemplate as mn, driveExplorerFileTemplate as mr, getDocumentTypeMetadata as mt, tsMorphGenerateSubgraph as n, getModuleExportType as nn, dockerfileTemplate as nr, buildStringLiteral as nt, pruneManifestSection as o, getEditorVariableNames as on, agentsTemplate as or, getPreviousVersionSourceFile as ot, getDateLikeFieldNames as p, documentModelGenIndexFileTemplate as pn, emptyStateFileTemplate as pr, runOxfmt as pt, getBooleanPropertyValue as q, oxfmtConfigTemplate as qn, documentModelGenUtilsTemplate as qt, tsMorphGenerateProcessor as r, getDocumentModelDirName as rn, connectEntrypointTemplate as rr, ensureDirectoriesExist as rt, makeModulesIndexFile as s, getLatestDocumentModelSpec as sn, appEditorFileTemplate as sr, getSubgraphMetadata as st, makeSubgraphsIndexFile as t, documentModelOperationModuleActionsFileTemplate as tn, nginxConfTemplate as tr, buildObjectLiteral as tt, tsMorphGenerateDocumentModel as u, getActionInputTypeNames as un, folderTreeFileTemplate as ur, getEditorMetadata as ut, tsMorphGenerateDocumentEditor as v, documentModelGenActionsFileTemplate as vn, parseConfig as vt, applyProjectCustomizations as w, tsConfigTemplate as wn, relationalDbProcessorTemplate as wt, makeCliDocsFromHelp as x, documentEditorEditorFileTemplate as xn, subgraphLibFileTemplate as xt, getCommandHelpInfo as y, documentModelRootActionsFileTemplate as yn, customSubgraphResolversTemplate as yt, validateDocumentModelState as z, licenseTemplate as zn, makeOperationsImports as zt };
8721
+ export { getVariableDeclarationByTypeName as $, upgradeManifestsTemplate as $n, documentModelPhFactoriesFileTemplate as $t, writeGeneratedProcessorsFiles as A, readmeTemplate as An, factoryBuildersTemplate as At, updateVersionedImports as B, mainTsxTemplate as Bn, makeOperationImportNames as Bt, buildBoilerplatePackageJson as C, documentEditorEditorFileTemplate as Cn, relationalDbSchemaTemplate as Ct, writeCIFiles as D, tsconfigPathsTemplate as Dn, relationalDbFactoryTemplate as Dt, writeAllGeneratedProjectFiles as E, tsConfigTemplate as En, relationalDbIndexTemplate as Et, tsMorphGenerateApp as F, pnpmWorkspaceTemplate as Fn, renderProcessorFilter as Ft, getAllImportModuleSpecifiers as G, indexHtmlTemplate as Gn, documentModelSrcIndexFileTemplate as Gt, DEFAULT_PROJECT_OPTIONS as H, reactorTsTemplate as Hn, makeTestCaseForOperation as Ht, makeEditorModuleFile as I, exportsTemplate as In, documentModelUtilsTemplate as It, getObjectLiteral as J, geminiSettingsTemplate as Jn, documentModelHooksFileTemplate as Jt, getAllImportNames as K, gitIgnoreTemplate as Kn, documentModelModuleFileTemplate as Kt, makeEditorsFile as L, packageJsonTemplate as Ln, upgradeTransitionTemplate as Lt, writeGeneratedSubgraphsFiles as M, buildPowerhouseConfigTemplate as Mn, analyticsIndexTemplate as Mt, writeModuleFiles as N, packageJsonExportsTemplate as Nn, analyticsFactoryTemplate as Nt, writeGeneratedDocumentModelsFiles as O, subgraphsIndexTemplate as On, processorsIndexTemplate as Ot, writeProjectRootFiles as P, packageJsonScriptsTemplate as Pn, parseFilterValues as Pt, getStringPropertyValue as Q, editorsTemplate as Qn, documentModelGenReducerFileTemplate as Qt, makeEditorsIndexFile as R, npmrcTemplate as Rn, upgradeManifestTemplate as Rt, writeCliDocsMarkdownFile as S, documentEditorModuleFileTemplate as Sn, subgraphIndexFileTemplate as St, writeAiConfigFiles as T, vitestConfigTemplate as Tn, relationalDbMigrationsTemplate as Tt, buildTsMorphProject as U, indexTsTemplate as Un, documentModelTestFileTemplate as Ut, getInitialStates as V, licenseTemplate as Vn, makeOperationsImports as Vt, getDefaultProjectOptions as W, legacyIndexHtmlTemplate as Wn, documentModelSrcUtilsTemplate as Wt, getProperyAssignmentByName as X, oxlintConfigTemplate as Xn, documentModelGenTypesTemplate as Xt, getObjectProperty as Y, oxfmtConfigTemplate as Yn, documentModelGenUtilsTemplate as Yt, getStringArrayPropertyElements as Z, editorsIndexTemplate as Zn, documentModelSchemaIndexTemplate as Zt, scalarsValidation as _, documentModelDocumentSchemaFileTemplate as _n, appDriveContentsFileTemplate as _r, parseArgs as _t, getOrCreateManifestFile as a, getDocumentModelDirName as an, connectEntrypointTemplate as ar, getOrCreateSourceFile as at, getCommandsHelpInfo as b, documentModelGenActionsFileTemplate as bn, customSubgraphSchemaTemplate as bt, operationHasEmptyInput as c, getEditorVariableNames as cn, agentsTemplate as cr, getProcessorMetadata as ct, generateDocumentModelZodSchemas as d, getActionInputName as dn, driveExplorerNavigationBreadcrumbsFileTemplate as dr, formatSafe as dt, documentModelOperationsModuleOperationsFileTemplate as en, documentModelsIndexTemplate as er, loadDocumentModelInDir as et, generateTypesAndZodSchemasFromGraphql as f, getActionInputTypeNames as fn, folderTreeFileTemplate as fr, formatSourceFileWithPrettier as ft, scalars as g, documentModelDocumentTypeTemplate as gn, driveExplorerFileTemplate as gr, configSpec as gt, getMockOverrideFieldNames as h, documentModelGenIndexFileTemplate as hn, emptyStateFileTemplate as hr, documentModelDocumentTypeMetadata as ht, createOrUpdateManifest as i, getModuleExportType as in, dockerfileTemplate as ir, getOrCreateDirectory as it, writeGeneratedProjectRootFiles as j, ManifestTemplate as jn, analyticsProcessorTemplate as jt, writeGeneratedEditorsFiles as k, styleTemplate as kn, processorsFactoryTemplate as kt, operationHasInput as l, getLatestDocumentModelSpec as ln, appEditorFileTemplate as lr, getAppMetadata as lt, getInputFieldNames as m, getActionTypeName as mn, appFilesFileTemplate as mr, getDocumentTypeMetadata as mt, tsMorphGenerateSubgraph as n, documentModelOperationsModuleCreatorsFileTemplate as nn, switchboardEntrypointTemplate as nr, buildStringLiteral as nt, pruneManifestSection as o, getDocumentModelSpecByVersionNumber as on, cursorMcpTemplate as or, getPreviousVersionSourceFile as ot, getDateLikeFieldNames as p, getActionType as pn, appFoldersFileTemplate as pr, runOxfmt as pt, getBooleanPropertyValue as q, syncAndPublishWorkflowTemplate as qn, documentModelIndexTemplate as qt, tsMorphGenerateProcessor as r, documentModelOperationModuleActionsFileTemplate as rn, nginxConfTemplate as rr, ensureDirectoriesExist as rt, makeModulesIndexFile as s, getDocumentModelVariableNames as sn, claudeSettingsLocalTemplate as sr, getSubgraphMetadata as st, makeSubgraphsIndexFile as t, documentModelOperationsModuleErrorFileTemplate as tn, documentModelsTemplate as tr, buildObjectLiteral as tt, tsMorphGenerateDocumentModel as u, getLatestDocumentModelSpecVersionNumber as un, appConfigFileTemplate as ur, getEditorMetadata as ut, tsMorphGenerateDocumentEditor as v, documentModelGenCreatorsFileTemplate as vn, createDocumentFileTemplate as vr, parseConfig as vt, applyProjectCustomizations as w, docsFromCliHelpTemplate as wn, relationalDbProcessorTemplate as wt, makeCliDocsFromHelp as x, documentModelRootActionsFileTemplate as xn, subgraphLibFileTemplate as xt, getCommandHelpInfo as y, documentModelGenControllerFileTemplate as yn, customSubgraphResolversTemplate as yt, validateDocumentModelState as z, mcpTemplate as zn, documentModelOperationsModuleTestFileTemplate as zt };
8662
8722
 
8663
- //# sourceMappingURL=file-builders-Btk4MK1I.mjs.map
8723
+ //# sourceMappingURL=file-builders-DaV8C_6p.mjs.map