runlify 0.0.792 → 0.0.794

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 (145) hide show
  1. package/build/commands/regen.js +31 -17
  2. package/build/extensions/localConfig.js +25 -3
  3. package/build/index.js +8 -2
  4. package/build/projectsGeneration/args.js +3 -2
  5. package/build/projectsGeneration/builders/GenerationPathsBuilder.js +19 -0
  6. package/build/projectsGeneration/builders/SystemMetaBuilder.js +7 -1
  7. package/build/projectsGeneration/builders/buildedTypes.js +1 -1
  8. package/build/projectsGeneration/builders/generationPaths.js +832 -0
  9. package/build/projectsGeneration/builders/index.js +5 -1
  10. package/build/projectsGeneration/fileCleaners/back/graphServices/cleanGraphServices.js +11 -2
  11. package/build/projectsGeneration/fileCleaners/back/services/cleanServices.js +10 -2
  12. package/build/projectsGeneration/fileCleaners/ui/pages/cleanPages.js +13 -2
  13. package/build/projectsGeneration/fileCleaners/ui/widgets/cleanWidgets.js +7 -3
  14. package/build/projectsGeneration/generateProject/back/docs/generateBackDocs.js +22 -14
  15. package/build/projectsGeneration/generateProject/back/generateBackEnvs.js +9 -3
  16. package/build/projectsGeneration/generateProject/back/src/additionalServices/generateBackAdditionalService.js +21 -12
  17. package/build/projectsGeneration/generateProject/back/src/additionalServices/generateBackAdditionalServices.js +9 -6
  18. package/build/projectsGeneration/generateProject/back/src/enums/generateBackEnumsAndInits.js +23 -14
  19. package/build/projectsGeneration/generateProject/back/src/generateBackHelpService.js +13 -6
  20. package/build/projectsGeneration/generateProject/back/src/generateBackIntegrationClients.js +17 -9
  21. package/build/projectsGeneration/generateProject/back/src/generateBackSrc.js +12 -6
  22. package/build/projectsGeneration/generateProject/back/src/services/generateBackEntityGraph.js +17 -11
  23. package/build/projectsGeneration/generateProject/back/src/services/generateBackEntityService.js +27 -25
  24. package/build/projectsGeneration/generateProject/back/src/services/generateBackServices.js +11 -5
  25. package/build/projectsGeneration/generateProject/front/entity/generateFrontSrcEntityIcon.js +13 -4
  26. package/build/projectsGeneration/generateProject/front/entity/generateFrontSrcEntityPages.js +37 -30
  27. package/build/projectsGeneration/generateProject/front/entity/generateFrontSrcEntityWidgets.js +12 -12
  28. package/build/projectsGeneration/generateProject/front/entity/generateFrontSrcGetEntityValidation.js +13 -4
  29. package/build/projectsGeneration/generateProject/front/generateFrontSrc.js +23 -17
  30. package/build/projectsGeneration/generateProject/front/translations/generateFrontSrcTranslations.js +14 -12
  31. package/build/projectsGeneration/generateProject/genGraphSchemesByLocalGenerator.js +36 -5
  32. package/build/projectsGeneration/generateProject/generateBackClickHouseBootstrap.js +9 -3
  33. package/build/projectsGeneration/generateProject/generateBackElasticBootstrap.js +9 -3
  34. package/build/projectsGeneration/generateProject/generateEnvironment.js +53 -61
  35. package/build/projectsGeneration/generateProject/generateProject.js +2 -2
  36. package/build/projectsGeneration/index.js +2 -1
  37. package/build/projectsGeneration/resolveProjectPaths.js +155 -0
  38. package/build/projectsGeneration/types.js +9 -2
  39. package/build/types/index.d.ts +2 -0
  40. package/build/types/projectsGeneration/builders/GenerationPathsBuilder.d.ts +6 -0
  41. package/build/types/projectsGeneration/builders/SystemMetaBuilder.d.ts +3 -0
  42. package/build/types/projectsGeneration/builders/buildedTypes.d.ts +2 -0
  43. package/build/types/projectsGeneration/builders/generationPaths.d.ts +763 -0
  44. package/build/types/projectsGeneration/builders/index.d.ts +2 -0
  45. package/build/types/projectsGeneration/generateProject/genGraphSchemesByLocalGenerator.d.ts +9 -1
  46. package/build/types/projectsGeneration/generators/fileTemplates/back/clickhouse/jobs.d.ts +12 -0
  47. package/build/types/projectsGeneration/generators/fileTemplates/back/elastic/jobs.d.ts +12 -0
  48. package/build/types/projectsGeneration/index.d.ts +1 -0
  49. package/build/types/projectsGeneration/resolveProjectPaths.d.ts +63 -0
  50. package/build/types/projectsGeneration/types.d.ts +6 -0
  51. package/package.json +1 -1
  52. package/build/documentation/algoritmToDoc.spec.js +0 -59
  53. package/build/documentation/curlExampleToText.spec.js +0 -91
  54. package/build/documentation/docToFlatDoc.spec.js +0 -222
  55. package/build/documentation/flatDocToText.spec.js +0 -84
  56. package/build/projectsGeneration/builders/tsFilterFields.spec.js +0 -47
  57. package/build/projectsGeneration/builders/validation/bigintValudationToYupAssertions.spec.js +0 -22
  58. package/build/projectsGeneration/builders/validation/floatValudationToYupAssertions.spec.js +0 -21
  59. package/build/projectsGeneration/builders/validation/intValudationToYupAssertions.spec.js +0 -24
  60. package/build/projectsGeneration/builders/validation/stringValudationToYupAssertions.spec.js +0 -21
  61. package/build/projectsGeneration/generators/fileTemplates/back/elastic/jobs.spec.js +0 -35
  62. package/build/projectsGeneration/generators/fileTemplates/back/environment/src/integrationClients/fieldToTsTypeFieldWithType.spec.js +0 -81
  63. package/build/projectsGeneration/generators/fileTemplates/back/services/additionalService/backAdditionalServiceTypesTmplInner.spec.js +0 -69
  64. package/build/projectsGeneration/generators/fileTemplates/back/services/additionalService/getMethodTypeForService.spec.js +0 -100
  65. package/build/projectsGeneration/generators/fileTemplates/back/services/additionalService/getMethodTypeForServiceReturn.spec.js +0 -58
  66. package/build/projectsGeneration/generators/graph/genGraphAdditionalServiceSchema.spec.js +0 -195
  67. package/build/projectsGeneration/generators/graph/genGraphCrudSchema.spec.js +0 -446
  68. package/build/projectsGeneration/generators/graph/genGraphFilterType.spec.js +0 -97
  69. package/build/projectsGeneration/generators/graph/genGraphType.spec.js +0 -43
  70. package/build/projectsGeneration/generators/graph/printGraphType.spec.js +0 -23
  71. package/build/projectsGeneration/generators/graph/utils/models/getModelInitOrder.spec.js +0 -77
  72. package/build/projectsGeneration/generators/graph/utils/models/getUniqModels.spec.js +0 -39
  73. package/build/projectsGeneration/generators/graph/utils/models/getUsedModels.spec.js +0 -113
  74. package/build/projectsGeneration/generators/graph/utils/serviceModels/augmentInputModelsByUsedAsInputGeneralModelsAndPostfixThemByInput.spec.js +0 -111
  75. package/build/projectsGeneration/generators/graph/utils/serviceModels/getGraphTypesFromInputOutputModels.spec.js +0 -117
  76. package/build/projectsGeneration/generators/graph/utils/serviceModels/getPreparedModelsForGraph.spec.js +0 -123
  77. package/build/projectsGeneration/generators/graph/utils/serviceModels/getUsedGraphModelsForService.spec.js +0 -25
  78. package/build/projectsGeneration/generators/graph/utils/serviceModels/getUsedModelsForService.spec.js +0 -287
  79. package/build/projectsGeneration/generators/graph/utils/serviceModels/prefixServiceModelsWithServiceName.spec.js +0 -111
  80. package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.spec.js +0 -60
  81. package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.spec.js +0 -17
  82. package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.spec.js +0 -48
  83. package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.spec.js +0 -85
  84. package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.spec.js +0 -136
  85. package/build/projectsGeneration/generators/prisma/scheme/genPrismaConfig.spec.js +0 -28
  86. package/build/projectsGeneration/generators/prisma/scheme/genPrismaEntity.spec.js +0 -188
  87. package/build/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntitiesWithClientAdnDb.spec.js +0 -99
  88. package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.spec.js +0 -24
  89. package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.spec.js +0 -53
  90. package/build/projectsGeneration/generators/ui/getLinkShowComponent.spec.js +0 -42
  91. package/build/projectsGeneration/generators/ui/getScalarShowComponent.spec.js +0 -27
  92. package/build/projectsGeneration/links/getLinksFromExternalEntities.spec.js +0 -37
  93. package/build/projectsGeneration/links/getLinksOfEntities.spec.js +0 -95
  94. package/build/projectsGeneration/links/getLinksToExternalEntities.spec.js +0 -37
  95. package/build/projectsGeneration/modelsGeneration.serialization.spec.js +0 -96
  96. package/build/projectsGeneration/utils/buildPrismaCommands.spec.js +0 -58
  97. package/build/projectsGeneration/utils/detectPrismaMajorVersion.spec.js +0 -51
  98. package/build/refs/yup.spec.js +0 -60
  99. package/build/types/documentation/algoritmToDoc.spec.d.ts +0 -1
  100. package/build/types/documentation/curlExampleToText.spec.d.ts +0 -1
  101. package/build/types/documentation/docToFlatDoc.spec.d.ts +0 -1
  102. package/build/types/documentation/flatDocToText.spec.d.ts +0 -1
  103. package/build/types/projectsGeneration/builders/tsFilterFields.spec.d.ts +0 -1
  104. package/build/types/projectsGeneration/builders/validation/bigintValudationToYupAssertions.spec.d.ts +0 -1
  105. package/build/types/projectsGeneration/builders/validation/floatValudationToYupAssertions.spec.d.ts +0 -1
  106. package/build/types/projectsGeneration/builders/validation/intValudationToYupAssertions.spec.d.ts +0 -1
  107. package/build/types/projectsGeneration/builders/validation/stringValudationToYupAssertions.spec.d.ts +0 -1
  108. package/build/types/projectsGeneration/generators/fileTemplates/back/elastic/jobs.spec.d.ts +0 -1
  109. package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/integrationClients/fieldToTsTypeFieldWithType.spec.d.ts +0 -1
  110. package/build/types/projectsGeneration/generators/fileTemplates/back/services/additionalService/backAdditionalServiceTypesTmplInner.spec.d.ts +0 -1
  111. package/build/types/projectsGeneration/generators/fileTemplates/back/services/additionalService/getMethodTypeForService.spec.d.ts +0 -1
  112. package/build/types/projectsGeneration/generators/fileTemplates/back/services/additionalService/getMethodTypeForServiceReturn.spec.d.ts +0 -1
  113. package/build/types/projectsGeneration/generators/graph/genGraphAdditionalServiceSchema.spec.d.ts +0 -1
  114. package/build/types/projectsGeneration/generators/graph/genGraphCrudSchema.spec.d.ts +0 -1
  115. package/build/types/projectsGeneration/generators/graph/genGraphFilterType.spec.d.ts +0 -1
  116. package/build/types/projectsGeneration/generators/graph/genGraphType.spec.d.ts +0 -1
  117. package/build/types/projectsGeneration/generators/graph/printGraphType.spec.d.ts +0 -1
  118. package/build/types/projectsGeneration/generators/graph/utils/models/getModelInitOrder.spec.d.ts +0 -1
  119. package/build/types/projectsGeneration/generators/graph/utils/models/getUniqModels.spec.d.ts +0 -1
  120. package/build/types/projectsGeneration/generators/graph/utils/models/getUsedModels.spec.d.ts +0 -1
  121. package/build/types/projectsGeneration/generators/graph/utils/serviceModels/augmentInputModelsByUsedAsInputGeneralModelsAndPostfixThemByInput.spec.d.ts +0 -1
  122. package/build/types/projectsGeneration/generators/graph/utils/serviceModels/getGraphTypesFromInputOutputModels.spec.d.ts +0 -1
  123. package/build/types/projectsGeneration/generators/graph/utils/serviceModels/getPreparedModelsForGraph.spec.d.ts +0 -1
  124. package/build/types/projectsGeneration/generators/graph/utils/serviceModels/getUsedGraphModelsForService.spec.d.ts +0 -1
  125. package/build/types/projectsGeneration/generators/graph/utils/serviceModels/getUsedModelsForService.spec.d.ts +0 -1
  126. package/build/types/projectsGeneration/generators/graph/utils/serviceModels/prefixServiceModelsWithServiceName.spec.d.ts +0 -1
  127. package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.spec.d.ts +0 -1
  128. package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.spec.d.ts +0 -1
  129. package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.spec.d.ts +0 -1
  130. package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.spec.d.ts +0 -1
  131. package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.spec.d.ts +0 -1
  132. package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaConfig.spec.d.ts +0 -1
  133. package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaEntity.spec.d.ts +0 -1
  134. package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntitiesWithClientAdnDb.spec.d.ts +0 -1
  135. package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.spec.d.ts +0 -1
  136. package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.spec.d.ts +0 -1
  137. package/build/types/projectsGeneration/generators/ui/getLinkShowComponent.spec.d.ts +0 -1
  138. package/build/types/projectsGeneration/generators/ui/getScalarShowComponent.spec.d.ts +0 -1
  139. package/build/types/projectsGeneration/links/getLinksFromExternalEntities.spec.d.ts +0 -1
  140. package/build/types/projectsGeneration/links/getLinksOfEntities.spec.d.ts +0 -1
  141. package/build/types/projectsGeneration/links/getLinksToExternalEntities.spec.d.ts +0 -1
  142. package/build/types/projectsGeneration/modelsGeneration.serialization.spec.d.ts +0 -1
  143. package/build/types/projectsGeneration/utils/buildPrismaCommands.spec.d.ts +0 -1
  144. package/build/types/projectsGeneration/utils/detectPrismaMajorVersion.spec.d.ts +0 -1
  145. package/build/types/refs/yup.spec.d.ts +0 -1
@@ -0,0 +1,763 @@
1
+ /** Корень артефакта генерации */
2
+ export type GenerationPathRoot = 'back' | 'ui' | 'shared';
3
+ export declare const GenerationPathRoot: {
4
+ readonly back: "back";
5
+ readonly ui: "ui";
6
+ readonly shared: "shared";
7
+ };
8
+ /**
9
+ * Единый источник правды по именам категорий.
10
+ * Паттерн как у Storage: const + typeof → union.
11
+ */
12
+ export declare const GenerationPathCategory: {
13
+ readonly BackHookBeforeCreate: "back.hook.beforeCreate";
14
+ readonly BackHookAfterCreate: "back.hook.afterCreate";
15
+ readonly BackHookBeforeUpdate: "back.hook.beforeUpdate";
16
+ readonly BackHookAfterUpdate: "back.hook.afterUpdate";
17
+ readonly BackHookBeforeDelete: "back.hook.beforeDelete";
18
+ readonly BackHookAfterDelete: "back.hook.afterDelete";
19
+ readonly BackHookBeforeUpsert: "back.hook.beforeUpsert";
20
+ readonly BackHookChangeListFilter: "back.hook.changeListFilter";
21
+ readonly BackHookAdditionalOperationsOnCreate: "back.hook.additionalOperationsOnCreate";
22
+ readonly BackHookAdditionalOperationsOnUpdate: "back.hook.additionalOperationsOnUpdate";
23
+ readonly BackHookAdditionalOperationsOnDelete: "back.hook.additionalOperationsOnDelete";
24
+ readonly BackHookTenantIdRequiredHooks: "back.hook.tenantIdRequiredHooks";
25
+ readonly BackHookInitUserHooks: "back.hook.initUserHooks";
26
+ readonly BackHookInitBuiltInHooks: "back.hook.initBuiltInHooks";
27
+ readonly BackServiceClass: "back.service.class";
28
+ readonly BackServiceAdditionalClass: "back.service.additionalClass";
29
+ readonly BackServiceConfig: "back.service.config";
30
+ readonly BackServiceBaseServices: "back.service.baseServices";
31
+ readonly BackServiceServiceConstrictors: "back.service.serviceConstrictors";
32
+ readonly UiPageShowMainTab: "ui.page.show.MainTab";
33
+ readonly UiPageShowDefaultMainTab: "ui.page.show.DefaultMainTab";
34
+ readonly UiPageShowDefaultEntityShow: "ui.page.show.DefaultEntityShow";
35
+ readonly UiPageShowDefaultActions: "ui.page.show.DefaultActions";
36
+ readonly UiPageShowIndex: "ui.page.show.index";
37
+ readonly UiPageShowAdditionalTabs: "ui.page.show.additionalTabs";
38
+ readonly UiPageShowDependencyTab: "ui.page.show.dependencyTab";
39
+ readonly UiPageCreateDefault: "ui.page.create.Default";
40
+ readonly UiPageCreateIndex: "ui.page.create.index";
41
+ readonly UiPageEditDefault: "ui.page.edit.Default";
42
+ readonly UiPageEditIndex: "ui.page.edit.index";
43
+ readonly UiPageListDefault: "ui.page.list.Default";
44
+ readonly UiPageListFilter: "ui.page.list.filter";
45
+ readonly UiPageListDefaultFilter: "ui.page.list.DefaultFilter";
46
+ readonly UiPageListBreadcrumbs: "ui.page.list.breadcrumbs";
47
+ readonly UiPageListIndex: "ui.page.list.index";
48
+ readonly UiPageIcon: "ui.page.icon";
49
+ readonly UiPageValidation: "ui.page.validation";
50
+ readonly UiWidgetCount: "ui.widget.count";
51
+ readonly UiWidgetList: "ui.widget.list";
52
+ readonly BackGraphEntityBaseTypeDefs: "back.graph.entity.baseTypeDefs";
53
+ readonly BackGraphEntityAdditionalTypeDefs: "back.graph.entity.additionalTypeDefs";
54
+ readonly BackGraphEntityBaseResolvers: "back.graph.entity.baseResolvers";
55
+ readonly BackGraphEntityAdditionalResolvers: "back.graph.entity.additionalResolvers";
56
+ readonly BackGraphEntityPermissionsToGraphql: "back.graph.entity.permissionsToGraphql";
57
+ readonly BackGraphEntityBasePermissionsToGraphql: "back.graph.entity.basePermissionsToGraphql";
58
+ readonly BackGraphEntityAdditionalPermissionsToGraphql: "back.graph.entity.additionalPermissionsToGraphql";
59
+ readonly BackGraphHelpBaseTypeDefs: "back.graph.help.baseTypeDefs";
60
+ readonly BackGraphHelpBaseResolvers: "back.graph.help.baseResolvers";
61
+ readonly BackGraphHelpPermissionsToGraphql: "back.graph.help.permissionsToGraphql";
62
+ readonly BackGraphPermissionsToGraphql: "back.graph.permissionsToGraphql";
63
+ readonly BackServiceHelpService: "back.service.helpService";
64
+ readonly BackGeneratedGraphqlTs: "back.generated.graphqlTs";
65
+ readonly BackGeneratedGraphqlSchemaJson: "back.generated.graphqlSchemaJson";
66
+ readonly UiGeneratedGraphqlTs: "ui.generated.graphqlTs";
67
+ readonly UiGeneratedGraphqlSchemaJson: "ui.generated.graphqlSchemaJson";
68
+ readonly SharedGraphqlSchemaJson: "shared.generated.graphqlSchemaJson";
69
+ readonly BackConfig: "back.config";
70
+ readonly BackRestRouter: "back.rest.router";
71
+ readonly BackAdditionalServiceTypes: "back.additionalService.types";
72
+ readonly BackAdditionalServiceGraphTypeDefs: "back.additionalService.graph.typeDefs";
73
+ readonly BackAdditionalServiceGraphResolvers: "back.additionalService.graph.resolvers";
74
+ readonly BackAdditionalServiceGraphPermissionsToGraphql: "back.additionalService.graph.permissionsToGraphql";
75
+ readonly BackAdditionalServices: "back.additionalServices";
76
+ readonly BackIntegrationClientClass: "back.integrationClient.class";
77
+ readonly BackIntegrationClientTypes: "back.integrationClient.types";
78
+ readonly BackIntegrationClientConstrictors: "back.integrationClient.constrictors";
79
+ readonly BackIntegrationClients: "back.integrationClients";
80
+ readonly UiI18nDocs: "ui.i18n.docs";
81
+ readonly UiI18nCatalogs: "ui.i18n.catalogs";
82
+ readonly UiI18nInfoRegistries: "ui.i18n.infoRegistries";
83
+ readonly UiI18nSumRegistries: "ui.i18n.sumRegistries";
84
+ readonly UiI18nReports: "ui.i18n.reports";
85
+ readonly BackTypeEnum: "back.type.enum";
86
+ readonly BackTypeEntityEnum: "back.type.entityEnum";
87
+ readonly BackTypeDevEnum: "back.type.devEnum";
88
+ readonly BackInitCommonEnum: "back.init.common.enum";
89
+ readonly BackInitCommonEntities: "back.init.common.entities";
90
+ readonly BackInitDevEnum: "back.init.dev.enum";
91
+ readonly UiResources: "ui.resources";
92
+ readonly UiResourcesChunk0: "ui.resourcesChunk0";
93
+ readonly UiResourcesChunk1: "ui.resourcesChunk1";
94
+ readonly UiResourcesPage: "ui.resourcesPage";
95
+ readonly UiMetaPage: "ui.metaPage";
96
+ readonly UiEntityMapping: "ui.entityMapping";
97
+ readonly UiGetDefaultMenu: "ui.getDefaultMenu";
98
+ readonly UiGetAdditionalMenu: "ui.getAdditionalMenu";
99
+ readonly UiMenuIcons: "ui.menuIcons";
100
+ readonly UiAdditionalMenuIcons: "ui.additionalMenuIcons";
101
+ readonly UiRoutes: "ui.routes";
102
+ readonly UiAdditionalRoutes: "ui.additionalRoutes";
103
+ readonly UiFunctions: "ui.functions";
104
+ readonly UiDashboard: "ui.dashboard";
105
+ readonly BackClientsGetPrisma: "back.clients.getPrisma";
106
+ readonly BackClientsCreatePgPrismaClient: "back.clients.createPgPrismaClient";
107
+ readonly BackClientsGetQueue: "back.clients.getQueue";
108
+ readonly BackIndex: "back.index";
109
+ readonly BackTracing: "back.tracing";
110
+ readonly BackInitPrismaWriteClientPackageStubs: "back.init.prisma.writeClientPackageStubs";
111
+ readonly BackPrismaSchema: "back.prisma.schema";
112
+ readonly BackPrismaShardsSchema: "back.prisma.shards.schema";
113
+ readonly BackPrismaShardsDeployConnection: "back.prisma.shards.deployConnection";
114
+ readonly BackPrismaShardsConfig: "back.prisma.shards.config";
115
+ readonly BackPrismaShardsDeployConfig: "back.prisma.shards.deployConfig";
116
+ readonly BackPrismaDeployConnection: "back.prisma.deployConnection";
117
+ readonly BackPrismaConfig: "back.prisma.config";
118
+ readonly BackPrismaDeployConfig: "back.prisma.deployConfig";
119
+ readonly BackPrismaDatabaseSchema: "back.prisma.database.schema";
120
+ readonly BackPrismaDatabaseDeployConnection: "back.prisma.database.deployConnection";
121
+ readonly BackPrismaDatabaseConfig: "back.prisma.database.config";
122
+ readonly BackPrismaDatabaseDeployConfig: "back.prisma.database.deployConfig";
123
+ readonly BackPrismaDatabaseMigrationLock: "back.prisma.database.migrationLock";
124
+ readonly BackChartChart: "back.chart.chart";
125
+ readonly BackChartValues: "back.chart.values";
126
+ readonly BackChartIngress: "back.chart.ingress";
127
+ readonly BackChartBack: "back.chart.back";
128
+ readonly BackGitlabCi: "back.gitlabCi";
129
+ readonly BackCiNotify: "back.ciNotify";
130
+ readonly BackDockerfile: "back.dockerfile";
131
+ readonly UiApp: "ui.app";
132
+ readonly UiLayoutMenu: "ui.layout.menu";
133
+ readonly UiLayoutAppBar: "ui.layout.appBar";
134
+ readonly UiSpacesContext: "ui.contexts.spacesContext";
135
+ readonly UiDataProvider: "ui.dataProvider";
136
+ readonly UiDataProviderGetAdditionalMethods: "ui.dataProvider.getAdditionalMethods";
137
+ readonly UiI18nProvider: "ui.i18nProvider";
138
+ readonly UiChartChart: "ui.chart.chart";
139
+ readonly UiChartValues: "ui.chart.values";
140
+ readonly UiChartFront: "ui.chart.front";
141
+ readonly UiChartIngress: "ui.chart.ingress";
142
+ readonly UiGitlabCi: "ui.gitlabCi";
143
+ readonly UiCiNotify: "ui.ciNotify";
144
+ readonly UiDockerfile: "ui.dockerfile";
145
+ readonly BackConfigDefaultJson: "back.config.defaultJson";
146
+ readonly BackDocsConfiguration: "back.docs.configuration";
147
+ readonly BackDocsSpec: "back.docs.spec";
148
+ readonly BackDocsRestApi: "back.docs.restApi";
149
+ readonly BackDocsIntegrationClient: "back.docs.integrationClient";
150
+ readonly BackDocsEntity: "back.docs.entity";
151
+ readonly UiDocsConfiguration: "ui.docs.configuration";
152
+ readonly BackInitElasticGenJobs: "back.init.elastic.genJobs";
153
+ readonly BackInitClickHouseGenJobs: "back.init.clickhouse.genJobs";
154
+ };
155
+ export type GenerationPathCategory = (typeof GenerationPathCategory)[keyof typeof GenerationPathCategory];
156
+ export declare const GenerationPathParam: {
157
+ readonly entityName: "entityName";
158
+ readonly ServiceName: "ServiceName";
159
+ readonly pascalSingular: "pascalSingular";
160
+ readonly PascalEntity: "PascalEntity";
161
+ readonly camelPlural: "camelPlural";
162
+ readonly OwnerPascal: "OwnerPascal";
163
+ readonly FromFieldPascal: "FromFieldPascal";
164
+ readonly serviceName: "serviceName";
165
+ readonly ServicePascal: "ServicePascal";
166
+ readonly clientName: "clientName";
167
+ readonly ClientPascal: "ClientPascal";
168
+ readonly restApiName: "restApiName";
169
+ readonly entityTypePlural: "entityTypePlural";
170
+ readonly langId: "langId";
171
+ readonly database: "database";
172
+ };
173
+ export type GenerationPathParam = (typeof GenerationPathParam)[keyof typeof GenerationPathParam];
174
+ export type GenerationPathTemplate = string;
175
+ export type GenerationPathVars = Partial<Record<GenerationPathParam, string>>;
176
+ export interface GenerationPathDefinition {
177
+ root: GenerationPathRoot;
178
+ defaultTemplate: GenerationPathTemplate;
179
+ params: readonly GenerationPathParam[];
180
+ }
181
+ export type GenerationPathsRegistry = {
182
+ [K in GenerationPathCategory]: GenerationPathDefinition;
183
+ };
184
+ export interface GenerationPathsConfig {
185
+ overrides: Partial<Record<GenerationPathCategory, GenerationPathTemplate>>;
186
+ }
187
+ export interface ResolveGenerationPathArgs {
188
+ category: GenerationPathCategory;
189
+ detachedBackProject: string;
190
+ detachedUiProject: string;
191
+ /** Monorepo `paths.shared` when set; otherwise omitted (do not fall back to back). */
192
+ detachedSharedProject?: string;
193
+ pathsConfig?: GenerationPathsConfig | null;
194
+ vars: GenerationPathVars;
195
+ }
196
+ export declare const DEFAULT_GENERATION_PATHS: {
197
+ readonly "back.hook.beforeCreate": GenerationPathDefinition;
198
+ readonly "back.hook.afterCreate": GenerationPathDefinition;
199
+ readonly "back.hook.beforeUpdate": GenerationPathDefinition;
200
+ readonly "back.hook.afterUpdate": GenerationPathDefinition;
201
+ readonly "back.hook.beforeDelete": GenerationPathDefinition;
202
+ readonly "back.hook.afterDelete": GenerationPathDefinition;
203
+ readonly "back.hook.beforeUpsert": GenerationPathDefinition;
204
+ readonly "back.hook.changeListFilter": GenerationPathDefinition;
205
+ readonly "back.hook.additionalOperationsOnCreate": GenerationPathDefinition;
206
+ readonly "back.hook.additionalOperationsOnUpdate": GenerationPathDefinition;
207
+ readonly "back.hook.additionalOperationsOnDelete": GenerationPathDefinition;
208
+ readonly "back.hook.tenantIdRequiredHooks": GenerationPathDefinition;
209
+ readonly "back.hook.initUserHooks": {
210
+ readonly root: "back";
211
+ readonly defaultTemplate: "src/adm/services/{ServiceName}/initUserHooks.ts";
212
+ readonly params: readonly ["ServiceName"];
213
+ };
214
+ readonly "back.hook.initBuiltInHooks": {
215
+ readonly root: "back";
216
+ readonly defaultTemplate: "src/adm/services/{ServiceName}/initBuiltInHooks.ts";
217
+ readonly params: readonly ["ServiceName"];
218
+ };
219
+ readonly "back.service.class": {
220
+ readonly root: "back";
221
+ readonly defaultTemplate: "src/adm/services/{ServiceName}/{ServiceName}.ts";
222
+ readonly params: readonly ["ServiceName"];
223
+ };
224
+ readonly "back.service.additionalClass": {
225
+ readonly root: "back";
226
+ readonly defaultTemplate: "src/adm/services/{ServiceName}/Additional{ServiceName}.ts";
227
+ readonly params: readonly ["ServiceName"];
228
+ };
229
+ readonly "back.service.config": {
230
+ readonly root: "back";
231
+ readonly defaultTemplate: "src/adm/services/{ServiceName}/config.ts";
232
+ readonly params: readonly ["ServiceName"];
233
+ };
234
+ readonly "back.service.baseServices": {
235
+ readonly root: "back";
236
+ readonly defaultTemplate: "src/adm/services/BaseServices.ts";
237
+ readonly params: readonly [];
238
+ };
239
+ readonly "back.service.serviceConstrictors": {
240
+ readonly root: "back";
241
+ readonly defaultTemplate: "src/adm/services/serviceConstrictors.ts";
242
+ readonly params: readonly [];
243
+ };
244
+ readonly "ui.page.show.MainTab": GenerationPathDefinition;
245
+ readonly "ui.page.show.DefaultMainTab": GenerationPathDefinition;
246
+ readonly "ui.page.show.DefaultEntityShow": GenerationPathDefinition;
247
+ readonly "ui.page.show.DefaultActions": GenerationPathDefinition;
248
+ readonly "ui.page.show.index": GenerationPathDefinition;
249
+ readonly "ui.page.show.additionalTabs": GenerationPathDefinition;
250
+ readonly "ui.page.show.dependencyTab": GenerationPathDefinition;
251
+ readonly "ui.page.create.Default": GenerationPathDefinition;
252
+ readonly "ui.page.create.index": GenerationPathDefinition;
253
+ readonly "ui.page.edit.Default": GenerationPathDefinition;
254
+ readonly "ui.page.edit.index": GenerationPathDefinition;
255
+ readonly "ui.page.list.Default": GenerationPathDefinition;
256
+ readonly "ui.page.list.filter": GenerationPathDefinition;
257
+ readonly "ui.page.list.DefaultFilter": GenerationPathDefinition;
258
+ readonly "ui.page.list.breadcrumbs": GenerationPathDefinition;
259
+ readonly "ui.page.list.index": GenerationPathDefinition;
260
+ readonly "ui.page.icon": GenerationPathDefinition;
261
+ readonly "ui.page.validation": GenerationPathDefinition;
262
+ readonly "ui.widget.count": {
263
+ readonly root: "ui";
264
+ readonly defaultTemplate: "src/adm/widgets/count/Count{PascalEntity}Widget.tsx";
265
+ readonly params: readonly ["PascalEntity"];
266
+ };
267
+ readonly "ui.widget.list": {
268
+ readonly root: "ui";
269
+ readonly defaultTemplate: "src/adm/widgets/list/List{PascalEntity}Widget.tsx";
270
+ readonly params: readonly ["PascalEntity"];
271
+ };
272
+ readonly "back.graph.entity.baseTypeDefs": GenerationPathDefinition;
273
+ readonly "back.graph.entity.additionalTypeDefs": GenerationPathDefinition;
274
+ readonly "back.graph.entity.baseResolvers": GenerationPathDefinition;
275
+ readonly "back.graph.entity.additionalResolvers": GenerationPathDefinition;
276
+ readonly "back.graph.entity.permissionsToGraphql": GenerationPathDefinition;
277
+ readonly "back.graph.entity.basePermissionsToGraphql": GenerationPathDefinition;
278
+ readonly "back.graph.entity.additionalPermissionsToGraphql": GenerationPathDefinition;
279
+ readonly "back.graph.help.baseTypeDefs": {
280
+ readonly root: "back";
281
+ readonly defaultTemplate: "src/adm/graph/services/help/baseTypeDefs.ts";
282
+ readonly params: readonly [];
283
+ };
284
+ readonly "back.graph.help.baseResolvers": {
285
+ readonly root: "back";
286
+ readonly defaultTemplate: "src/adm/graph/services/help/baseResolvers.ts";
287
+ readonly params: readonly [];
288
+ };
289
+ readonly "back.graph.help.permissionsToGraphql": {
290
+ readonly root: "back";
291
+ readonly defaultTemplate: "src/adm/graph/services/help/permissionsToGraphql.ts";
292
+ readonly params: readonly [];
293
+ };
294
+ readonly "back.graph.permissionsToGraphql": {
295
+ readonly root: "back";
296
+ readonly defaultTemplate: "src/adm/graph/permissionsToGraphql.ts";
297
+ readonly params: readonly [];
298
+ };
299
+ readonly "back.service.helpService": {
300
+ readonly root: "back";
301
+ readonly defaultTemplate: "src/adm/services/HelpService/HelpService.ts";
302
+ readonly params: readonly [];
303
+ };
304
+ readonly "back.generated.graphqlTs": {
305
+ readonly root: "back";
306
+ readonly defaultTemplate: "src/generated/graphql.ts";
307
+ readonly params: readonly [];
308
+ };
309
+ readonly "back.generated.graphqlSchemaJson": {
310
+ readonly root: "back";
311
+ readonly defaultTemplate: "src/generated/graphql.schema.json";
312
+ readonly params: readonly [];
313
+ };
314
+ readonly "ui.generated.graphqlTs": {
315
+ readonly root: "ui";
316
+ readonly defaultTemplate: "src/generated/graphql.ts";
317
+ readonly params: readonly [];
318
+ };
319
+ readonly "ui.generated.graphqlSchemaJson": {
320
+ readonly root: "ui";
321
+ readonly defaultTemplate: "src/generated/graphql.schema.json";
322
+ readonly params: readonly [];
323
+ };
324
+ readonly "shared.generated.graphqlSchemaJson": {
325
+ readonly root: "shared";
326
+ readonly defaultTemplate: "src/graphql.schema.json";
327
+ readonly params: readonly [];
328
+ };
329
+ readonly "back.config": {
330
+ readonly root: "back";
331
+ readonly defaultTemplate: "src/config/config.ts";
332
+ readonly params: readonly [];
333
+ };
334
+ readonly "back.rest.router": {
335
+ readonly root: "back";
336
+ readonly defaultTemplate: "src/rest/restRouter.ts";
337
+ readonly params: readonly [];
338
+ };
339
+ readonly "back.additionalService.types": {
340
+ readonly root: "back";
341
+ readonly defaultTemplate: "src/adm/services/{ServiceName}/types.ts";
342
+ readonly params: readonly ["ServiceName"];
343
+ };
344
+ readonly "back.additionalService.graph.typeDefs": {
345
+ readonly root: "back";
346
+ readonly defaultTemplate: "src/adm/graph/services/{serviceName}/typeDefs.ts";
347
+ readonly params: readonly ["serviceName"];
348
+ };
349
+ readonly "back.additionalService.graph.resolvers": {
350
+ readonly root: "back";
351
+ readonly defaultTemplate: "src/adm/graph/services/{serviceName}/resolvers.ts";
352
+ readonly params: readonly ["serviceName"];
353
+ };
354
+ readonly "back.additionalService.graph.permissionsToGraphql": {
355
+ readonly root: "back";
356
+ readonly defaultTemplate: "src/adm/graph/services/{serviceName}/permissionsToGraphql.ts";
357
+ readonly params: readonly ["serviceName"];
358
+ };
359
+ readonly "back.additionalServices": {
360
+ readonly root: "back";
361
+ readonly defaultTemplate: "src/adm/services/AdditionalServices.ts";
362
+ readonly params: readonly [];
363
+ };
364
+ readonly "back.integrationClient.class": {
365
+ readonly root: "back";
366
+ readonly defaultTemplate: "src/integrationClients/{clientName}/{ClientPascal}Client.ts";
367
+ readonly params: readonly ["clientName", "ClientPascal"];
368
+ };
369
+ readonly "back.integrationClient.types": {
370
+ readonly root: "back";
371
+ readonly defaultTemplate: "src/integrationClients/{clientName}/types.ts";
372
+ readonly params: readonly ["clientName"];
373
+ };
374
+ readonly "back.integrationClient.constrictors": {
375
+ readonly root: "back";
376
+ readonly defaultTemplate: "src/adm/services/integrationClientConstrictors.ts";
377
+ readonly params: readonly [];
378
+ };
379
+ readonly "back.integrationClients": {
380
+ readonly root: "back";
381
+ readonly defaultTemplate: "src/adm/services/IntegrationClients.ts";
382
+ readonly params: readonly [];
383
+ };
384
+ readonly "ui.i18n.docs": {
385
+ readonly root: "ui";
386
+ readonly defaultTemplate: "src/i18n/{langId}/{langId}Docs.ts";
387
+ readonly params: readonly ["langId"];
388
+ };
389
+ readonly "ui.i18n.catalogs": {
390
+ readonly root: "ui";
391
+ readonly defaultTemplate: "src/i18n/{langId}/{langId}Catalogs.ts";
392
+ readonly params: readonly ["langId"];
393
+ };
394
+ readonly "ui.i18n.infoRegistries": {
395
+ readonly root: "ui";
396
+ readonly defaultTemplate: "src/i18n/{langId}/{langId}InfoRegistries.ts";
397
+ readonly params: readonly ["langId"];
398
+ };
399
+ readonly "ui.i18n.sumRegistries": {
400
+ readonly root: "ui";
401
+ readonly defaultTemplate: "src/i18n/{langId}/{langId}SumRegistries.ts";
402
+ readonly params: readonly ["langId"];
403
+ };
404
+ readonly "ui.i18n.reports": {
405
+ readonly root: "ui";
406
+ readonly defaultTemplate: "src/i18n/{langId}/{langId}Reports.ts";
407
+ readonly params: readonly ["langId"];
408
+ };
409
+ readonly "back.type.enum": {
410
+ readonly root: "back";
411
+ readonly defaultTemplate: "src/types/{pascalSingular}.ts";
412
+ readonly params: readonly ["pascalSingular"];
413
+ };
414
+ readonly "back.type.entityEnum": {
415
+ readonly root: "back";
416
+ readonly defaultTemplate: "src/types/Entity.ts";
417
+ readonly params: readonly [];
418
+ };
419
+ readonly "back.type.devEnum": {
420
+ readonly root: "back";
421
+ readonly defaultTemplate: "src/types/Dev{pascalSingular}.ts";
422
+ readonly params: readonly ["pascalSingular"];
423
+ };
424
+ readonly "back.init.common.enum": {
425
+ readonly root: "back";
426
+ readonly defaultTemplate: "src/init/common/init{PascalEntity}.ts";
427
+ readonly params: readonly ["PascalEntity"];
428
+ };
429
+ readonly "back.init.common.entities": {
430
+ readonly root: "back";
431
+ readonly defaultTemplate: "src/init/common/initEntities.ts";
432
+ readonly params: readonly [];
433
+ };
434
+ readonly "back.init.dev.enum": {
435
+ readonly root: "back";
436
+ readonly defaultTemplate: "src/init/dev/init{PascalEntity}.ts";
437
+ readonly params: readonly ["PascalEntity"];
438
+ };
439
+ readonly "ui.resources": {
440
+ readonly root: "ui";
441
+ readonly defaultTemplate: "src/adm/resources.tsx";
442
+ readonly params: readonly [];
443
+ };
444
+ readonly "ui.resourcesChunk0": {
445
+ readonly root: "ui";
446
+ readonly defaultTemplate: "src/adm/resourcesChunk0.tsx";
447
+ readonly params: readonly [];
448
+ };
449
+ readonly "ui.resourcesChunk1": {
450
+ readonly root: "ui";
451
+ readonly defaultTemplate: "src/adm/resourcesChunk1.tsx";
452
+ readonly params: readonly [];
453
+ };
454
+ readonly "ui.resourcesPage": {
455
+ readonly root: "ui";
456
+ readonly defaultTemplate: "src/adm/ResourcesPage.tsx";
457
+ readonly params: readonly [];
458
+ };
459
+ readonly "ui.metaPage": {
460
+ readonly root: "ui";
461
+ readonly defaultTemplate: "src/adm/MetaPage.tsx";
462
+ readonly params: readonly [];
463
+ };
464
+ readonly "ui.entityMapping": {
465
+ readonly root: "ui";
466
+ readonly defaultTemplate: "src/adm/entityMapping.ts";
467
+ readonly params: readonly [];
468
+ };
469
+ readonly "ui.getDefaultMenu": {
470
+ readonly root: "ui";
471
+ readonly defaultTemplate: "src/adm/getDefaultMenu.ts";
472
+ readonly params: readonly [];
473
+ };
474
+ readonly "ui.getAdditionalMenu": {
475
+ readonly root: "ui";
476
+ readonly defaultTemplate: "src/adm/getAdditionalMenu.ts";
477
+ readonly params: readonly [];
478
+ };
479
+ readonly "ui.menuIcons": {
480
+ readonly root: "ui";
481
+ readonly defaultTemplate: "src/uiLib/menu/menuIcons.ts";
482
+ readonly params: readonly [];
483
+ };
484
+ readonly "ui.additionalMenuIcons": {
485
+ readonly root: "ui";
486
+ readonly defaultTemplate: "src/adm/additionalMenuIcons.ts";
487
+ readonly params: readonly [];
488
+ };
489
+ readonly "ui.routes": {
490
+ readonly root: "ui";
491
+ readonly defaultTemplate: "src/adm/routes.tsx";
492
+ readonly params: readonly [];
493
+ };
494
+ readonly "ui.additionalRoutes": {
495
+ readonly root: "ui";
496
+ readonly defaultTemplate: "src/adm/additionalRoutes.tsx";
497
+ readonly params: readonly [];
498
+ };
499
+ readonly "ui.functions": {
500
+ readonly root: "ui";
501
+ readonly defaultTemplate: "src/adm/functions/Functions.tsx";
502
+ readonly params: readonly [];
503
+ };
504
+ readonly "ui.dashboard": {
505
+ readonly root: "ui";
506
+ readonly defaultTemplate: "src/adm/Dashboard.tsx";
507
+ readonly params: readonly [];
508
+ };
509
+ readonly "back.clients.getPrisma": {
510
+ readonly root: "back";
511
+ readonly defaultTemplate: "src/clients/getPrisma.ts";
512
+ readonly params: readonly [];
513
+ };
514
+ readonly "back.clients.createPgPrismaClient": {
515
+ readonly root: "back";
516
+ readonly defaultTemplate: "src/clients/createPgPrismaClient.ts";
517
+ readonly params: readonly [];
518
+ };
519
+ readonly "back.clients.getQueue": {
520
+ readonly root: "back";
521
+ readonly defaultTemplate: "src/clients/queue/getQueue.ts";
522
+ readonly params: readonly [];
523
+ };
524
+ readonly "back.index": {
525
+ readonly root: "back";
526
+ readonly defaultTemplate: "src/index.ts";
527
+ readonly params: readonly [];
528
+ };
529
+ readonly "back.tracing": {
530
+ readonly root: "back";
531
+ readonly defaultTemplate: "src/tracing.ts";
532
+ readonly params: readonly [];
533
+ };
534
+ readonly "back.init.prisma.writeClientPackageStubs": {
535
+ readonly root: "back";
536
+ readonly defaultTemplate: "src/init/prisma/writeClientPackageStubs.ts";
537
+ readonly params: readonly [];
538
+ };
539
+ readonly "back.prisma.schema": {
540
+ readonly root: "back";
541
+ readonly defaultTemplate: "prisma/schema.prisma";
542
+ readonly params: readonly [];
543
+ };
544
+ readonly "back.prisma.shards.schema": {
545
+ readonly root: "back";
546
+ readonly defaultTemplate: "prisma/shards/schema.prisma";
547
+ readonly params: readonly [];
548
+ };
549
+ readonly "back.prisma.shards.deployConnection": {
550
+ readonly root: "back";
551
+ readonly defaultTemplate: "prisma/shards/deployConnection.prisma";
552
+ readonly params: readonly [];
553
+ };
554
+ readonly "back.prisma.shards.config": {
555
+ readonly root: "back";
556
+ readonly defaultTemplate: "prisma/shards/prisma.config.ts";
557
+ readonly params: readonly [];
558
+ };
559
+ readonly "back.prisma.shards.deployConfig": {
560
+ readonly root: "back";
561
+ readonly defaultTemplate: "prisma/shards/deploy.prisma.config.ts";
562
+ readonly params: readonly [];
563
+ };
564
+ readonly "back.prisma.deployConnection": {
565
+ readonly root: "back";
566
+ readonly defaultTemplate: "prisma/deployConnection.prisma";
567
+ readonly params: readonly [];
568
+ };
569
+ readonly "back.prisma.config": {
570
+ readonly root: "back";
571
+ readonly defaultTemplate: "prisma/prisma.config.ts";
572
+ readonly params: readonly [];
573
+ };
574
+ readonly "back.prisma.deployConfig": {
575
+ readonly root: "back";
576
+ readonly defaultTemplate: "prisma/deploy.prisma.config.ts";
577
+ readonly params: readonly [];
578
+ };
579
+ readonly "back.prisma.database.schema": {
580
+ readonly root: "back";
581
+ readonly defaultTemplate: "prisma/databases/{database}/schema.prisma";
582
+ readonly params: readonly ["database"];
583
+ };
584
+ readonly "back.prisma.database.deployConnection": {
585
+ readonly root: "back";
586
+ readonly defaultTemplate: "prisma/databases/{database}/deployConnection.prisma";
587
+ readonly params: readonly ["database"];
588
+ };
589
+ readonly "back.prisma.database.config": {
590
+ readonly root: "back";
591
+ readonly defaultTemplate: "prisma/databases/{database}/prisma.config.ts";
592
+ readonly params: readonly ["database"];
593
+ };
594
+ readonly "back.prisma.database.deployConfig": {
595
+ readonly root: "back";
596
+ readonly defaultTemplate: "prisma/databases/{database}/deploy.prisma.config.ts";
597
+ readonly params: readonly ["database"];
598
+ };
599
+ readonly "back.prisma.database.migrationLock": {
600
+ readonly root: "back";
601
+ readonly defaultTemplate: "prisma/databases/{database}/migrations/migration_lock.toml";
602
+ readonly params: readonly ["database"];
603
+ };
604
+ readonly "back.chart.chart": {
605
+ readonly root: "back";
606
+ readonly defaultTemplate: "chart/Chart.yaml";
607
+ readonly params: readonly [];
608
+ };
609
+ readonly "back.chart.values": {
610
+ readonly root: "back";
611
+ readonly defaultTemplate: "chart/values.yaml";
612
+ readonly params: readonly [];
613
+ };
614
+ readonly "back.chart.ingress": {
615
+ readonly root: "back";
616
+ readonly defaultTemplate: "chart/templates/ingress.yaml";
617
+ readonly params: readonly [];
618
+ };
619
+ readonly "back.chart.back": {
620
+ readonly root: "back";
621
+ readonly defaultTemplate: "chart/templates/back.yaml";
622
+ readonly params: readonly [];
623
+ };
624
+ readonly "back.gitlabCi": {
625
+ readonly root: "back";
626
+ readonly defaultTemplate: ".gitlab-ci.yml";
627
+ readonly params: readonly [];
628
+ };
629
+ readonly "back.ciNotify": {
630
+ readonly root: "back";
631
+ readonly defaultTemplate: "ci-notify.sh";
632
+ readonly params: readonly [];
633
+ };
634
+ readonly "back.dockerfile": {
635
+ readonly root: "back";
636
+ readonly defaultTemplate: "Dockerfile";
637
+ readonly params: readonly [];
638
+ };
639
+ readonly "ui.app": {
640
+ readonly root: "ui";
641
+ readonly defaultTemplate: "src/App.tsx";
642
+ readonly params: readonly [];
643
+ };
644
+ readonly "ui.layout.menu": {
645
+ readonly root: "ui";
646
+ readonly defaultTemplate: "src/layout/Menu.tsx";
647
+ readonly params: readonly [];
648
+ };
649
+ readonly "ui.layout.appBar": {
650
+ readonly root: "ui";
651
+ readonly defaultTemplate: "src/layout/AppBar.tsx";
652
+ readonly params: readonly [];
653
+ };
654
+ readonly "ui.contexts.spacesContext": {
655
+ readonly root: "ui";
656
+ readonly defaultTemplate: "src/contexts/SpacesContext.tsx";
657
+ readonly params: readonly [];
658
+ };
659
+ readonly "ui.dataProvider": {
660
+ readonly root: "ui";
661
+ readonly defaultTemplate: "src/dataProvider/index.ts";
662
+ readonly params: readonly [];
663
+ };
664
+ readonly "ui.dataProvider.getAdditionalMethods": {
665
+ readonly root: "ui";
666
+ readonly defaultTemplate: "src/dataProvider/getAdditionalMethods.ts";
667
+ readonly params: readonly [];
668
+ };
669
+ readonly "ui.i18nProvider": {
670
+ readonly root: "ui";
671
+ readonly defaultTemplate: "src/i18nProvider/index.ts";
672
+ readonly params: readonly [];
673
+ };
674
+ readonly "ui.chart.chart": {
675
+ readonly root: "ui";
676
+ readonly defaultTemplate: "chart/Chart.yaml";
677
+ readonly params: readonly [];
678
+ };
679
+ readonly "ui.chart.values": {
680
+ readonly root: "ui";
681
+ readonly defaultTemplate: "chart/values.yaml";
682
+ readonly params: readonly [];
683
+ };
684
+ readonly "ui.chart.front": {
685
+ readonly root: "ui";
686
+ readonly defaultTemplate: "chart/templates/front.yaml";
687
+ readonly params: readonly [];
688
+ };
689
+ readonly "ui.chart.ingress": {
690
+ readonly root: "ui";
691
+ readonly defaultTemplate: "chart/templates/ingress.yaml";
692
+ readonly params: readonly [];
693
+ };
694
+ readonly "ui.gitlabCi": {
695
+ readonly root: "ui";
696
+ readonly defaultTemplate: ".gitlab-ci.yml";
697
+ readonly params: readonly [];
698
+ };
699
+ readonly "ui.ciNotify": {
700
+ readonly root: "ui";
701
+ readonly defaultTemplate: "ci-notify.sh";
702
+ readonly params: readonly [];
703
+ };
704
+ readonly "ui.dockerfile": {
705
+ readonly root: "ui";
706
+ readonly defaultTemplate: "Dockerfile";
707
+ readonly params: readonly [];
708
+ };
709
+ readonly "back.config.defaultJson": {
710
+ readonly root: "back";
711
+ readonly defaultTemplate: "config/default.json";
712
+ readonly params: readonly [];
713
+ };
714
+ readonly "back.docs.configuration": {
715
+ readonly root: "back";
716
+ readonly defaultTemplate: "docs/configuration.md";
717
+ readonly params: readonly [];
718
+ };
719
+ readonly "back.docs.spec": {
720
+ readonly root: "back";
721
+ readonly defaultTemplate: "docs/spec.md";
722
+ readonly params: readonly [];
723
+ };
724
+ readonly "back.docs.restApi": {
725
+ readonly root: "back";
726
+ readonly defaultTemplate: "docs/restApis/{restApiName}.md";
727
+ readonly params: readonly ["restApiName"];
728
+ };
729
+ readonly "back.docs.integrationClient": {
730
+ readonly root: "back";
731
+ readonly defaultTemplate: "docs/integrationClients/{clientName}.md";
732
+ readonly params: readonly ["clientName"];
733
+ };
734
+ readonly "back.docs.entity": {
735
+ readonly root: "back";
736
+ readonly defaultTemplate: "docs/{entityTypePlural}/{entityName}.md";
737
+ readonly params: readonly ["entityTypePlural", "entityName"];
738
+ };
739
+ readonly "ui.docs.configuration": {
740
+ readonly root: "ui";
741
+ readonly defaultTemplate: "docs/configuration.md";
742
+ readonly params: readonly [];
743
+ };
744
+ readonly "back.init.elastic.genJobs": {
745
+ readonly root: "back";
746
+ readonly defaultTemplate: "src/init/elastic/genJobs.ts";
747
+ readonly params: readonly [];
748
+ };
749
+ readonly "back.init.clickhouse.genJobs": {
750
+ readonly root: "back";
751
+ readonly defaultTemplate: "src/init/clickhouse/genJobs.ts";
752
+ readonly params: readonly [];
753
+ };
754
+ };
755
+ export declare const extractGenerationPathParams: (template: string) => GenerationPathParam[];
756
+ export declare const validateGenerationPathTemplate: (template: string) => void;
757
+ export declare function resolveGenerationPath(args: ResolveGenerationPathArgs): string;
758
+ /** Parent of `count`/`list` under widgets — derived from UiWidgetCount template. */
759
+ export declare function resolveUiWidgetsDir(args: {
760
+ detachedBackProject: string;
761
+ detachedUiProject: string;
762
+ pathsConfig?: GenerationPathsConfig | null;
763
+ }): string;