velocious 1.0.470 → 1.0.472

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.
Files changed (83) hide show
  1. package/README.md +5 -3
  2. package/build/configuration-types.js +1 -0
  3. package/build/configuration.js +27 -1
  4. package/build/controller.js +13 -1
  5. package/build/database/datetime-storage.js +49 -5
  6. package/build/database/record/index.js +14 -4
  7. package/build/environment-handlers/base.js +46 -0
  8. package/build/environment-handlers/node/cli/commands/generate/base-models.js +4 -1
  9. package/build/environment-handlers/node/cli/commands/generate/frontend-models.js +368 -43
  10. package/build/environment-handlers/node/cli/commands/generate/generated-file-banner.js +15 -0
  11. package/build/environment-handlers/node.js +84 -8
  12. package/build/frontend-model-controller.js +7 -7
  13. package/build/frontend-models/base.js +75 -9
  14. package/build/frontend-models/transport-serialization.js +41 -8
  15. package/build/frontend-models/websocket-channel.js +18 -1
  16. package/build/frontend-models/websocket-publishers.js +12 -1
  17. package/build/http-server/client/request-runner.js +13 -1
  18. package/build/src/configuration-types.d.ts +5 -0
  19. package/build/src/configuration-types.d.ts.map +1 -1
  20. package/build/src/configuration-types.js +2 -1
  21. package/build/src/configuration.d.ts +14 -1
  22. package/build/src/configuration.d.ts.map +1 -1
  23. package/build/src/configuration.js +25 -2
  24. package/build/src/controller.d.ts +5 -0
  25. package/build/src/controller.d.ts.map +1 -1
  26. package/build/src/controller.js +12 -2
  27. package/build/src/database/datetime-storage.d.ts +12 -4
  28. package/build/src/database/datetime-storage.d.ts.map +1 -1
  29. package/build/src/database/datetime-storage.js +48 -6
  30. package/build/src/database/record/index.d.ts +5 -0
  31. package/build/src/database/record/index.d.ts.map +1 -1
  32. package/build/src/database/record/index.js +13 -5
  33. package/build/src/environment-handlers/base.d.ts +19 -0
  34. package/build/src/environment-handlers/base.d.ts.map +1 -1
  35. package/build/src/environment-handlers/base.js +41 -1
  36. package/build/src/environment-handlers/node/cli/commands/generate/base-models.d.ts.map +1 -1
  37. package/build/src/environment-handlers/node/cli/commands/generate/base-models.js +4 -2
  38. package/build/src/environment-handlers/node/cli/commands/generate/frontend-models.d.ts +219 -40
  39. package/build/src/environment-handlers/node/cli/commands/generate/frontend-models.d.ts.map +1 -1
  40. package/build/src/environment-handlers/node/cli/commands/generate/frontend-models.js +317 -43
  41. package/build/src/environment-handlers/node/cli/commands/generate/generated-file-banner.d.ts +9 -0
  42. package/build/src/environment-handlers/node/cli/commands/generate/generated-file-banner.d.ts.map +1 -0
  43. package/build/src/environment-handlers/node/cli/commands/generate/generated-file-banner.js +13 -0
  44. package/build/src/environment-handlers/node.d.ts +1 -0
  45. package/build/src/environment-handlers/node.d.ts.map +1 -1
  46. package/build/src/environment-handlers/node.js +76 -9
  47. package/build/src/frontend-model-controller.js +8 -8
  48. package/build/src/frontend-models/base.d.ts +4 -0
  49. package/build/src/frontend-models/base.d.ts.map +1 -1
  50. package/build/src/frontend-models/base.js +64 -9
  51. package/build/src/frontend-models/transport-serialization.d.ts +30 -1
  52. package/build/src/frontend-models/transport-serialization.d.ts.map +1 -1
  53. package/build/src/frontend-models/transport-serialization.js +34 -9
  54. package/build/src/frontend-models/websocket-channel.d.ts.map +1 -1
  55. package/build/src/frontend-models/websocket-channel.js +16 -2
  56. package/build/src/frontend-models/websocket-publishers.d.ts.map +1 -1
  57. package/build/src/frontend-models/websocket-publishers.js +12 -2
  58. package/build/src/http-server/client/request-runner.d.ts.map +1 -1
  59. package/build/src/http-server/client/request-runner.js +13 -2
  60. package/build/src/time-zone.d.ts +16 -0
  61. package/build/src/time-zone.d.ts.map +1 -0
  62. package/build/src/time-zone.js +56 -0
  63. package/build/time-zone.js +65 -0
  64. package/build/tsconfig.tsbuildinfo +1 -1
  65. package/package.json +2 -1
  66. package/scripts/test-browser.js +1 -0
  67. package/src/configuration-types.js +1 -0
  68. package/src/configuration.js +27 -1
  69. package/src/controller.js +13 -1
  70. package/src/database/datetime-storage.js +49 -5
  71. package/src/database/record/index.js +14 -4
  72. package/src/environment-handlers/base.js +46 -0
  73. package/src/environment-handlers/node/cli/commands/generate/base-models.js +4 -1
  74. package/src/environment-handlers/node/cli/commands/generate/frontend-models.js +368 -43
  75. package/src/environment-handlers/node/cli/commands/generate/generated-file-banner.js +15 -0
  76. package/src/environment-handlers/node.js +84 -8
  77. package/src/frontend-model-controller.js +7 -7
  78. package/src/frontend-models/base.js +75 -9
  79. package/src/frontend-models/transport-serialization.js +41 -8
  80. package/src/frontend-models/websocket-channel.js +18 -1
  81. package/src/frontend-models/websocket-publishers.js +12 -1
  82. package/src/http-server/client/request-runner.js +13 -1
  83. package/src/time-zone.js +65 -0
@@ -16,15 +16,33 @@
16
16
  * Permit spec returned by frontend-model resources during generation.
17
17
  * @typedef {Array<string | Record<string, FrontendModelGeneratorPermitSpec>>} FrontendModelGeneratorPermitSpec
18
18
  */
19
+ /**
20
+ * JSDoc import alias extracted from a backend resource source file.
21
+ * @typedef {object} ResourceJsDocImportAlias
22
+ * @property {string} importedName - Exported type name.
23
+ * @property {string} specifier - Import specifier from the source file.
24
+ */
25
+ /**
26
+ * JSDoc return type extracted from a backend resource method.
27
+ * @typedef {object} ResourceMethodReturnType
28
+ * @property {Map<string, ResourceJsDocImportAlias>} importAliases - Import aliases visible in the source file.
29
+ * @property {string | null} sourceFile - Source file that declared the method.
30
+ * @property {string} type - JSDoc return type.
31
+ */
32
+ /**
33
+ * JSDoc parameter type extracted from a backend resource method.
34
+ * @typedef {object} ResourceMethodParameterType
35
+ * @property {Map<string, ResourceJsDocImportAlias>} importAliases - Import aliases visible in the source file.
36
+ * @property {string | null} name - Parameter name.
37
+ * @property {string | null} sourceFile - Source file that declared the method.
38
+ * @property {string} type - JSDoc parameter type.
39
+ */
19
40
  /** Node CLI command that generates frontend model classes from backend project resource config. */
20
41
  export default class DbGenerateFrontendModels extends BaseCommand {
21
- /** @type {Map<string, string> | null} */
22
- _resourceMethodReturnTypes: Map<string, string> | null;
23
- /** @type {Map<string, Array<{name: string | null, type: string}>> | null} */
24
- _resourceMethodParameterTypes: Map<string, Array<{
25
- name: string | null;
26
- type: string;
27
- }>> | null;
42
+ /** @type {Map<string, ResourceMethodReturnType> | null} */
43
+ _resourceMethodReturnTypes: Map<string, ResourceMethodReturnType> | null;
44
+ /** @type {Map<string, ResourceMethodParameterType[]> | null} */
45
+ _resourceMethodParameterTypes: Map<string, ResourceMethodParameterType[]> | null;
28
46
  /**
29
47
  * Runs execute.
30
48
  * @returns {Promise<void>} - Resolves when files are generated.
@@ -75,14 +93,16 @@ export default class DbGenerateFrontendModels extends BaseCommand {
75
93
  * Runs build model file content.
76
94
  * @param {object} args - Method args.
77
95
  * @param {string} args.className - Model class name.
96
+ * @param {string} args.frontendModelFilePath - Generated frontend model file path.
78
97
  * @param {string} args.importPath - Base class import path.
79
98
  * @param {typeof import("../../../../../database/record/index.js").default | undefined} args.modelClass - Backend model class.
80
99
  * @param {import("../../../../../configuration-types.js").NormalizedFrontendModelResourceConfiguration} args.modelConfig - Model configuration.
81
100
  * @param {import("../../../../../configuration-types.js").FrontendModelResourceClassType | null} [args.resourceClass] - Resource class.
82
101
  * @returns {Promise<string>} - Generated file content.
83
102
  */
84
- buildModelFileContent({ className, importPath, modelClass, modelConfig, resourceClass }: {
103
+ buildModelFileContent({ className, frontendModelFilePath, importPath, modelClass, modelConfig, resourceClass }: {
85
104
  className: string;
105
+ frontendModelFilePath: string;
86
106
  importPath: string;
87
107
  modelClass: typeof import("../../../../../database/record/index.js").default | undefined;
88
108
  modelConfig: import("../../../../../configuration-types.js").NormalizedFrontendModelResourceConfiguration;
@@ -109,7 +129,7 @@ export default class DbGenerateFrontendModels extends BaseCommand {
109
129
  /**
110
130
  * Runs write attributes typedef.
111
131
  * @param {object} args - Arguments.
112
- * @param {Array<{jsDocType: string, name: string}>} args.attributes - Generated read attributes.
132
+ * @param {Array<{jsDocType: string, name: string, writeJsDocType: string}>} args.attributes - Generated read attributes.
113
133
  * @param {string} args.attributesTypeName - Generated read attributes typedef name.
114
134
  * @param {typeof import("../../../../../database/record/index.js").default | undefined} args.modelClass - Backend model class.
115
135
  * @param {Array<{attributes: Array<{name: string, type: string}>, relationshipName: string, typeName: string}>} args.nestedWriteTypes - Nested write typedefs.
@@ -122,6 +142,7 @@ export default class DbGenerateFrontendModels extends BaseCommand {
122
142
  attributes: Array<{
123
143
  jsDocType: string;
124
144
  name: string;
145
+ writeJsDocType: string;
125
146
  }>;
126
147
  attributesTypeName: string;
127
148
  modelClass: typeof import("../../../../../database/record/index.js").default | undefined;
@@ -139,13 +160,14 @@ export default class DbGenerateFrontendModels extends BaseCommand {
139
160
  }): Promise<string>;
140
161
  /**
141
162
  * Runs frontend write attribute type.
142
- * @param {{attribute: {jsDocType: string, name: string} | undefined, attributeName: string, attributesTypeName: string, resourceClass: import("../../../../../configuration-types.js").FrontendModelResourceClassType | null | undefined}} args - Arguments.
163
+ * @param {{attribute: {jsDocType: string, name: string, writeJsDocType: string} | undefined, attributeName: string, attributesTypeName: string, resourceClass: import("../../../../../configuration-types.js").FrontendModelResourceClassType | null | undefined}} args - Arguments.
143
164
  * @returns {Promise<string>} - JSDoc type for the permitted write field.
144
165
  */
145
166
  frontendWriteAttributeType({ attribute, attributeName, attributesTypeName, resourceClass }: {
146
167
  attribute: {
147
168
  jsDocType: string;
148
169
  name: string;
170
+ writeJsDocType: string;
149
171
  } | undefined;
150
172
  attributeName: string;
151
173
  attributesTypeName: string;
@@ -293,7 +315,7 @@ export default class DbGenerateFrontendModels extends BaseCommand {
293
315
  * @param {typeof import("../../../../../database/record/index.js").default | undefined} args.modelClass - Backend model class.
294
316
  * @param {import("../../../../../configuration-types.js").NormalizedFrontendModelResourceConfiguration} args.modelConfig - Model configuration.
295
317
  * @param {import("../../../../../configuration-types.js").FrontendModelResourceClassType | null} [args.resourceClass] - Resource class.
296
- * @returns {Promise<Array<{jsDocType: string, name: string}>>} - Attribute definitions.
318
+ * @returns {Promise<Array<{jsDocType: string, name: string, writeJsDocType: string}>>} - Attribute definitions.
297
319
  */
298
320
  attributeDefinitionsForModel({ className, modelClass, modelConfig, resourceClass }: {
299
321
  className: string;
@@ -303,6 +325,7 @@ export default class DbGenerateFrontendModels extends BaseCommand {
303
325
  }): Promise<Array<{
304
326
  jsDocType: string;
305
327
  name: string;
328
+ writeJsDocType: string;
306
329
  }>>;
307
330
  /**
308
331
  * Runs frontend attribute config for generated attribute.
@@ -399,12 +422,33 @@ export default class DbGenerateFrontendModels extends BaseCommand {
399
422
  jsDocTypeForFrontendAttribute({ attributeConfig }: {
400
423
  attributeConfig: FrontendAttributeConfig | null | undefined;
401
424
  }): string;
425
+ /**
426
+ * Runs js doc type for frontend write attribute.
427
+ * @param {object} args - Arguments.
428
+ * @param {FrontendAttributeConfig | null | undefined} args.attributeConfig - Attribute configuration value.
429
+ * @returns {string} - JSDoc type accepted by create/update payloads.
430
+ */
431
+ jsDocTypeForFrontendWriteAttribute({ attributeConfig }: {
432
+ attributeConfig: FrontendAttributeConfig | null | undefined;
433
+ }): string;
434
+ /**
435
+ * Runs js doc type for frontend write attribute base type.
436
+ * @param {FrontendAttributeConfig | null | undefined} attributeConfig - Attribute configuration value.
437
+ * @returns {string} - Non-nullable JSDoc type accepted by create/update payloads.
438
+ */
439
+ jsDocTypeForFrontendWriteAttributeBaseType(attributeConfig: FrontendAttributeConfig | null | undefined): string;
402
440
  /**
403
441
  * Runs js doc type for frontend attribute base type.
404
442
  * @param {FrontendAttributeConfig | null | undefined} attributeConfig - Attribute configuration value.
405
443
  * @returns {string} - Non-nullable JSDoc type.
406
444
  */
407
445
  jsDocTypeForFrontendAttributeBaseType(attributeConfig: FrontendAttributeConfig | null | undefined): string;
446
+ /**
447
+ * Runs frontend attribute type is temporal.
448
+ * @param {FrontendAttributeConfig | null | undefined} attributeConfig - Attribute configuration value.
449
+ * @returns {boolean} - Whether the attribute represents a date/time value.
450
+ */
451
+ frontendAttributeTypeIsTemporal(attributeConfig: FrontendAttributeConfig | null | undefined): boolean;
408
452
  /**
409
453
  * Runs frontend attribute can be null.
410
454
  * @param {FrontendAttributeConfig | null | undefined} attributeConfig - Attribute configuration value.
@@ -484,15 +528,86 @@ export default class DbGenerateFrontendModels extends BaseCommand {
484
528
  frontendResolvableTypeIdentifiers(): Set<string>;
485
529
  /**
486
530
  * Rewrites a custom-command param/return JSDoc type so it resolves in the generated
487
- * frontend model: each model-class (or otherwise non-frontend-resolvable) identifier
488
- * becomes `any` in place, keeping the surrounding object fields typed. A command-result
489
- * field holding a model arrives as a serialized transport value, so the consumer hydrates
490
- * it with `Model.instantiateFromResponse(...)`. The word boundary avoids matching the
491
- * capitalized middle of a camelCase property name (e.g. `adjustedTotalCents`).
492
- * @param {string} jsDocType - Resolved (Promise-unwrapped) JSDoc type.
531
+ * frontend model: backend model imports are mapped to generated frontend model
532
+ * imports, and otherwise non-frontend-resolvable identifiers become `any` in place
533
+ * so sibling scalar fields keep their real types. The word boundary avoids matching
534
+ * the capitalized middle of a camelCase property name (e.g. `adjustedTotalCents`).
535
+ * @param {object} args - Arguments.
536
+ * @param {string | null} args.frontendModelFilePath - Generated frontend model file path.
537
+ * @param {Map<string, ResourceJsDocImportAlias>} args.importAliases - Import aliases visible to the source method.
538
+ * @param {string} args.jsDocType - Resolved (Promise-unwrapped) JSDoc type.
539
+ * @param {string | null} args.sourceFile - Source file that declared the method.
493
540
  * @returns {string} - A frontend-resolvable JSDoc type.
494
541
  */
495
- frontendResolvableCommandJsDocType(jsDocType: string): string;
542
+ frontendResolvableCommandJsDocType({ frontendModelFilePath, importAliases, jsDocType, sourceFile }: {
543
+ frontendModelFilePath: string | null;
544
+ importAliases: Map<string, ResourceJsDocImportAlias>;
545
+ jsDocType: string;
546
+ sourceFile: string | null;
547
+ }): string;
548
+ /**
549
+ * Raises when a command JSDoc type references a backend-local helper expression.
550
+ * @param {string} jsDocType - Command JSDoc type.
551
+ * @returns {void} No return value.
552
+ */
553
+ assertNoBackendLocalCommandTypeExpressions(jsDocType: string): void;
554
+ /**
555
+ * Runs frontend resolvable js doc import specifier.
556
+ * @param {object} args - Arguments.
557
+ * @param {string | null} args.frontendModelFilePath - Generated frontend model file path.
558
+ * @param {string | null} args.sourceFile - Source file that declared the JSDoc type.
559
+ * @param {string} args.specifier - Source-file import specifier.
560
+ * @returns {string | null} - Rewritten frontend-model import specifier, or null when backend-local.
561
+ */
562
+ frontendResolvableJsDocImportSpecifier({ frontendModelFilePath, sourceFile, specifier }: {
563
+ frontendModelFilePath: string | null;
564
+ sourceFile: string | null;
565
+ specifier: string;
566
+ }): string | null;
567
+ /**
568
+ * Runs frontend model import specifier for backend model path.
569
+ * @param {object} args - Arguments.
570
+ * @param {string} args.frontendModelFilePath - Generated frontend model file path.
571
+ * @param {string} args.importedPath - Source-file import path resolved from JSDoc.
572
+ * @returns {string | null} - Generated frontend-model import specifier, or null when the path is not a registered model file.
573
+ */
574
+ frontendModelImportSpecifierForBackendModelPath({ frontendModelFilePath, importedPath }: {
575
+ frontendModelFilePath: string;
576
+ importedPath: string;
577
+ }): string | null;
578
+ /**
579
+ * Runs generated frontend model file names.
580
+ * @returns {Set<string>} - Frontend model filenames that this generation run can emit.
581
+ */
582
+ generatedFrontendModelFileNames(): Set<string>;
583
+ /**
584
+ * Runs relative import specifier.
585
+ * @param {object} args - Arguments.
586
+ * @param {string} args.fromFile - Source file that will contain the import expression.
587
+ * @param {string} args.toFile - File being imported.
588
+ * @returns {string} - Relative import specifier.
589
+ */
590
+ relativeImportSpecifier({ fromFile, toFile }: {
591
+ fromFile: string;
592
+ toFile: string;
593
+ }): string;
594
+ /**
595
+ * Runs file path is within any directory.
596
+ * @param {object} args - Arguments.
597
+ * @param {string[]} args.directories - Candidate parent directories.
598
+ * @param {string} args.filePath - File path to test.
599
+ * @returns {boolean} - Whether the file path is under one candidate directory.
600
+ */
601
+ filePathIsWithinAnyDirectory({ directories, filePath }: {
602
+ directories: string[];
603
+ filePath: string;
604
+ }): boolean;
605
+ /**
606
+ * Escapes text for use inside a RegExp.
607
+ * @param {string} value - Value to escape.
608
+ * @returns {string} - RegExp-safe value.
609
+ */
610
+ escapeRegExp(value: string): string;
496
611
  /**
497
612
  * Builds the JSDoc param block, parameter list, payload-argument expression, and
498
613
  * return type for a custom command method. With declared `args` each becomes a
@@ -563,10 +678,11 @@ export default class DbGenerateFrontendModels extends BaseCommand {
563
678
  * @param {object} args - Arguments.
564
679
  * @param {Record<string, {args: Array<{name: string, type: string}>, returnType: string | null}>} args.commandMetadata - Declared per-command metadata.
565
680
  * @param {string[]} args.commandNames - Command method names to resolve.
681
+ * @param {string} args.frontendModelFilePath - Generated frontend model file path.
566
682
  * @param {import("../../../../../configuration-types.js").FrontendModelResourceClassType | null | undefined} args.resourceClass - Resource class.
567
683
  * @returns {Promise<Record<string, {args: Array<{name: string, type: string}>, returnType: string | null}>>} - Enriched metadata.
568
684
  */
569
- commandMetadataWithResourceJsDoc({ commandMetadata, commandNames, resourceClass }: {
685
+ commandMetadataWithResourceJsDoc({ commandMetadata, commandNames, frontendModelFilePath, resourceClass }: {
570
686
  commandMetadata: Record<string, {
571
687
  args: Array<{
572
688
  name: string;
@@ -575,6 +691,7 @@ export default class DbGenerateFrontendModels extends BaseCommand {
575
691
  returnType: string | null;
576
692
  }>;
577
693
  commandNames: string[];
694
+ frontendModelFilePath: string;
578
695
  resourceClass: import("../../../../../configuration-types.js").FrontendModelResourceClassType | null | undefined;
579
696
  }): Promise<Record<string, {
580
697
  args: Array<{
@@ -614,6 +731,17 @@ export default class DbGenerateFrontendModels extends BaseCommand {
614
731
  methodName: string;
615
732
  sourceClassName: string;
616
733
  }): Promise<string | null>;
734
+ /**
735
+ * Runs resource method return type definition.
736
+ * @param {object} args - Arguments.
737
+ * @param {string} args.methodName - Method name.
738
+ * @param {string} args.sourceClassName - Source class name.
739
+ * @returns {Promise<ResourceMethodReturnType | null>} - JSDoc return type definition when documented.
740
+ */
741
+ resourceMethodReturnTypeDefinition({ methodName, sourceClassName }: {
742
+ methodName: string;
743
+ sourceClassName: string;
744
+ }): Promise<ResourceMethodReturnType | null>;
617
745
  /**
618
746
  * Runs resource method parameter type.
619
747
  * @param {{methodName: string, parameterIndex: number, sourceClassName: string}} args - Arguments.
@@ -627,28 +755,22 @@ export default class DbGenerateFrontendModels extends BaseCommand {
627
755
  /**
628
756
  * Runs resource method parameters.
629
757
  * @param {{methodName: string, sourceClassName: string}} args - Arguments.
630
- * @returns {Promise<Array<{name: string | null, type: string}> | null>} - JSDoc parameters (name + type) when documented.
758
+ * @returns {Promise<ResourceMethodParameterType[] | null>} - JSDoc parameters (name + type) when documented.
631
759
  */
632
760
  resourceMethodParameters({ methodName, sourceClassName }: {
633
761
  methodName: string;
634
762
  sourceClassName: string;
635
- }): Promise<Array<{
636
- name: string | null;
637
- type: string;
638
- }> | null>;
763
+ }): Promise<ResourceMethodParameterType[] | null>;
639
764
  /**
640
765
  * Runs resource method return types.
641
- * @returns {Promise<Map<string, string>>} - Resource method return types keyed by ClassName.methodName.
766
+ * @returns {Promise<Map<string, ResourceMethodReturnType>>} - Resource method return types keyed by ClassName.methodName.
642
767
  */
643
- resourceMethodReturnTypes(): Promise<Map<string, string>>;
768
+ resourceMethodReturnTypes(): Promise<Map<string, ResourceMethodReturnType>>;
644
769
  /**
645
770
  * Runs resource method parameter types.
646
- * @returns {Promise<Map<string, Array<{name: string | null, type: string}>>>} - Resource method parameters keyed by ClassName.methodName.
771
+ * @returns {Promise<Map<string, ResourceMethodParameterType[]>>} - Resource method parameters keyed by ClassName.methodName.
647
772
  */
648
- resourceMethodParameterTypes(): Promise<Map<string, Array<{
649
- name: string | null;
650
- type: string;
651
- }>>>;
773
+ resourceMethodParameterTypes(): Promise<Map<string, ResourceMethodParameterType[]>>;
652
774
  /**
653
775
  * Runs frontend model JSDoc source files.
654
776
  * @returns {Promise<string[]>} - JavaScript source files that can define frontend-model resources and model accessors.
@@ -662,26 +784,32 @@ export default class DbGenerateFrontendModels extends BaseCommand {
662
784
  /**
663
785
  * Adds resource method return types from source.
664
786
  * @param {object} args - Arguments.
665
- * @param {Map<string, string>} args.returnTypes - Mutable return types map.
787
+ * @param {Map<string, ResourceMethodReturnType>} args.returnTypes - Mutable return types map.
788
+ * @param {string | null} [args.sourceFile] - Source file path.
666
789
  * @param {string} args.sourceText - Source text.
667
790
  * @returns {void}
668
791
  */
669
- addResourceMethodReturnTypesFromSource({ returnTypes, sourceText }: {
670
- returnTypes: Map<string, string>;
792
+ addResourceMethodReturnTypesFromSource({ returnTypes, sourceFile, sourceText }: {
793
+ returnTypes: Map<string, ResourceMethodReturnType>;
794
+ sourceFile?: string | null | undefined;
671
795
  sourceText: string;
672
796
  }): void;
673
797
  /**
674
798
  * Adds resource method parameter types from source.
675
- * @param {{parameterTypes: Map<string, Array<{name: string | null, type: string}>>, sourceText: string}} args - Arguments.
799
+ * @param {{parameterTypes: Map<string, ResourceMethodParameterType[]>, sourceFile?: string | null, sourceText: string}} args - Arguments.
676
800
  * @returns {void}
677
801
  */
678
- addResourceMethodParameterTypesFromSource({ parameterTypes, sourceText }: {
679
- parameterTypes: Map<string, Array<{
680
- name: string | null;
681
- type: string;
682
- }>>;
802
+ addResourceMethodParameterTypesFromSource({ parameterTypes, sourceFile, sourceText }: {
803
+ parameterTypes: Map<string, ResourceMethodParameterType[]>;
804
+ sourceFile?: string | null;
683
805
  sourceText: string;
684
806
  }): void;
807
+ /**
808
+ * Runs JSDoc import aliases from source.
809
+ * @param {string} sourceText - Source text.
810
+ * @returns {Map<string, ResourceJsDocImportAlias>} - Import aliases keyed by local name.
811
+ */
812
+ jsDocImportAliasesFromSource(sourceText: string): Map<string, ResourceJsDocImportAlias>;
685
813
  /**
686
814
  * Runs js doc return type.
687
815
  * @param {string} jsDocText - JSDoc text inside comment markers.
@@ -831,5 +959,56 @@ export type FrontendAttributeConfig = {
831
959
  * Permit spec returned by frontend-model resources during generation.
832
960
  */
833
961
  export type FrontendModelGeneratorPermitSpec = Array<string | Record<string, FrontendModelGeneratorPermitSpec>>;
962
+ /**
963
+ * JSDoc import alias extracted from a backend resource source file.
964
+ */
965
+ export type ResourceJsDocImportAlias = {
966
+ /**
967
+ * - Exported type name.
968
+ */
969
+ importedName: string;
970
+ /**
971
+ * - Import specifier from the source file.
972
+ */
973
+ specifier: string;
974
+ };
975
+ /**
976
+ * JSDoc return type extracted from a backend resource method.
977
+ */
978
+ export type ResourceMethodReturnType = {
979
+ /**
980
+ * - Import aliases visible in the source file.
981
+ */
982
+ importAliases: Map<string, ResourceJsDocImportAlias>;
983
+ /**
984
+ * - Source file that declared the method.
985
+ */
986
+ sourceFile: string | null;
987
+ /**
988
+ * - JSDoc return type.
989
+ */
990
+ type: string;
991
+ };
992
+ /**
993
+ * JSDoc parameter type extracted from a backend resource method.
994
+ */
995
+ export type ResourceMethodParameterType = {
996
+ /**
997
+ * - Import aliases visible in the source file.
998
+ */
999
+ importAliases: Map<string, ResourceJsDocImportAlias>;
1000
+ /**
1001
+ * - Parameter name.
1002
+ */
1003
+ name: string | null;
1004
+ /**
1005
+ * - Source file that declared the method.
1006
+ */
1007
+ sourceFile: string | null;
1008
+ /**
1009
+ * - JSDoc parameter type.
1010
+ */
1011
+ type: string;
1012
+ };
834
1013
  import BaseCommand from "../../../../../cli/base-command.js";
835
1014
  //# sourceMappingURL=frontend-models.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"frontend-models.d.ts","sourceRoot":"","sources":["../../../../../../../src/environment-handlers/node/cli/commands/generate/frontend-models.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"frontend-models.d.ts","sourceRoot":"","sources":["../../../../../../../src/environment-handlers/node/cli/commands/generate/frontend-models.js"],"names":[],"mappings":"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"}