runlify 0.0.71 → 0.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commands/start.js +7 -11
- package/build/documentation/algorithm.js +3 -0
- package/build/documentation/algoritmToDoc.js +24 -0
- package/build/documentation/algoritmToDoc.spec.js +56 -0
- package/build/documentation/curlExampleToText.js +36 -0
- package/build/documentation/curlExampleToText.spec.js +59 -0
- package/build/documentation/doc.js +4 -0
- package/build/documentation/docToFlatDoc.js +54 -0
- package/build/documentation/docToFlatDoc.spec.js +219 -0
- package/build/documentation/flatDoc.js +4 -0
- package/build/documentation/flatDocToText.js +17 -0
- package/build/documentation/flatDocToText.spec.js +69 -0
- package/build/documentation/templateDoc.js +4 -0
- package/build/documentation/templateDocToDoc.js +9 -0
- package/build/extensions/localConfig.js +2 -2
- package/build/log.js +15 -0
- package/build/projectsGeneration/args.js +79 -0
- package/build/projectsGeneration/builders/BaseBuilder.js +49 -0
- package/build/projectsGeneration/builders/BaseSavableEntityBuilder.js +251 -0
- package/build/projectsGeneration/builders/CatalogBuilder.js +88 -0
- package/build/projectsGeneration/builders/DocumentBuilder.js +108 -0
- package/build/projectsGeneration/builders/InfoRegistryBuilder.js +226 -0
- package/build/projectsGeneration/builders/ReportBuilder.js +40 -0
- package/build/projectsGeneration/builders/RestApiBuilder.js +53 -0
- package/build/projectsGeneration/builders/RestApiMethodBuilder.js +70 -0
- package/build/projectsGeneration/builders/RoleBuilder.js +38 -0
- package/build/projectsGeneration/builders/SumRegistryBuilder.js +216 -0
- package/build/projectsGeneration/builders/SystemMetaBuilder.js +338 -0
- package/build/projectsGeneration/builders/TelegramBotBuilder.js +36 -0
- package/build/projectsGeneration/builders/WorkerBuilder.js +60 -0
- package/build/projectsGeneration/builders/buildedTypes.js +12 -0
- package/build/projectsGeneration/builders/curlTypes.js +3 -0
- package/build/projectsGeneration/builders/docs/DocumentationOfDocument.js +3 -0
- package/build/projectsGeneration/builders/docs/DocumentationOfDocumentBuilder.js +20 -0
- package/build/projectsGeneration/builders/fields/BaseFieldBuilder.js +179 -0
- package/build/projectsGeneration/builders/fields/IdFieldBuilder.js +96 -0
- package/build/projectsGeneration/builders/fields/LinkFieldBuilder.js +92 -0
- package/build/projectsGeneration/builders/fields/ScalarFieldBuilder.js +65 -0
- package/build/projectsGeneration/builders/fields/ViewLinkFieldBuilder.js +91 -0
- package/build/projectsGeneration/builders/materialUiIcons.js +8882 -0
- package/build/projectsGeneration/builders/postponed/AccumulationRegisterMetaBuilder.js +34 -0
- package/build/projectsGeneration/builders/postponed/DictionaryMetaBuilder.js +28 -0
- package/build/projectsGeneration/builders/postponed/DocumentMetaBuilder.js +28 -0
- package/build/projectsGeneration/builders/postponed/EntityFormMetaBuilder.js +28 -0
- package/build/projectsGeneration/builders/postponed/InformationRegisterMetaBuilder.js +33 -0
- package/build/projectsGeneration/builders/postponed/ListFormMetaBuilder.js +28 -0
- package/build/projectsGeneration/builders/postponed/PeriodicInformationRegisterMetaBuilder.js +37 -0
- package/build/projectsGeneration/builders/postponed/ReportMetaBuilder.js +28 -0
- package/build/projectsGeneration/builders/postponed/RoleMetaBuilder.js +28 -0
- package/build/projectsGeneration/builders/tsFilterFields.js +39 -0
- package/build/projectsGeneration/builders/tsFilterFields.spec.js +26 -0
- package/build/projectsGeneration/builders/types.js +3 -0
- package/build/projectsGeneration/builders/ui/Forms.js +3 -0
- package/build/projectsGeneration/builders/ui/FormsBuilder.js +21 -0
- package/build/projectsGeneration/builders/ui/ListFormBuilder.js +21 -0
- package/build/projectsGeneration/builders/ui/ListFormFilterBuilder.js +28 -0
- package/build/projectsGeneration/builders/ui/ListFormFilterFieldBuilder.js +24 -0
- package/build/projectsGeneration/builders/utils/accessFunctions.js +12 -0
- package/build/projectsGeneration/defaultCatalogs/files.js +24 -0
- package/build/projectsGeneration/genGraphSchemesByLocalGenerator.js +78 -0
- package/build/projectsGeneration/generateEntity.js +342 -0
- package/build/projectsGeneration/generateEnvironment.js +238 -0
- package/build/projectsGeneration/generateProject.js +787 -0
- package/build/projectsGeneration/generators/fieldTypeToTsType.js +26 -0
- package/build/projectsGeneration/generators/fileTemplates/back/Entities.js +18 -0
- package/build/projectsGeneration/generators/fileTemplates/back/devEnum.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/enum.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/Chart.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/back.js +16 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/ingress.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/values.js +20 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/defaultEnv.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsConfiguration.js +24 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsEntity.js +9 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsRestApi.js +33 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/gitlabCi.js +46 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/clients/getPrisma.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/clients/knex.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/clients/queue/getQueue.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/index.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/additionalResolvers.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/additionalTypes.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/entityAdditionalPermissionToGraphqlTmpl.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/entityBasePermissionToGraphql.js +14 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/entityPermissionToGraphqlTmpl.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/help/baseResolvers.js +5 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/help/baseTypeDefs.js +8 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/help/permissionsToGraphql.js +5 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/meta/resolvers.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/meta/typeDefs.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/permissionsToGraphql.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/resolvers.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/graph/types.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/back/initCommon.js +31 -0
- package/build/projectsGeneration/generators/fileTemplates/back/initDev.js +23 -0
- package/build/projectsGeneration/generators/fileTemplates/back/initEntities.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/root/config.js +15 -0
- package/build/projectsGeneration/generators/fileTemplates/back/root/restRouter.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/AdditionalServices.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/BaseServices.js +15 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/HelpService/HelpService.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/additionalMethods.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnCreate.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnDelete.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnUpdate.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterCreate.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterDelete.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterUpdate.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeCreate.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeDelete.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpdate.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpsert.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/changeListFilter.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/getPostOperations.js +51 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/getRegistryEntries.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/getUnPostOperations.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/tenantIdRequiredHooks.js +18 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/initBuiltInHooks.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/initUserHooks.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/service.js +144 -0
- package/build/projectsGeneration/generators/fileTemplates/back/services/serviceConstrictors.js +15 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/Dashboard.js +5 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/MetaPage.js +8 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/ResourcesPage.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/additionalRoutes.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/entityMapping.js +16 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/Chart.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/front.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/ingress.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/values.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/docs/adminAppDocsConfiguration.js +26 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/gitlabCi.js +33 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/App.js +14 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/contexts/SpacesContext.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/dataProvider/index.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/AppBar.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/Menu.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/routes.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/functions/Functions.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/getAdditionalMenu.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/getDefaultMenu.js +23 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangCatalogsTmpl.js +9 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangDocsTmpl.js +9 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangInfoRegistriesTmpl.js +9 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangReportsTmpl.js +7 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangSumRegistriesTmpl.js +9 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsForServicesOfSavablesTmpl.js +23 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsLangTmpl.js +17 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/DefaultEntityCreate.js +80 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/index.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/DefaultEntityEdit.js +141 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/index.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityFilter.js +52 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityList.js +63 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/EntityFilter.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/index.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultActions.js +23 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultEntityShow.js +39 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultMainTab.js +39 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DependencyTab.js +55 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/MainTab.js +6 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/additionalTabs.js +8 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/index.js +10 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/Icon.js +12 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/getEntityValidation.js +57 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/resources.js +11 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/widgets/count/CountWidget.js +13 -0
- package/build/projectsGeneration/generators/fileTemplates/ui/widgets/list/ListWidget.js +18 -0
- package/build/projectsGeneration/generators/graph/fieldTypeToGraphScalar.js +27 -0
- package/build/projectsGeneration/generators/graph/fields/genGraphField.js +21 -0
- package/build/projectsGeneration/generators/graph/fields/genGraphIdField.js +16 -0
- package/build/projectsGeneration/generators/graph/fields/genGraphIdFieldType.js +20 -0
- package/build/projectsGeneration/generators/graph/fields/genGraphLinkField.js +35 -0
- package/build/projectsGeneration/generators/graph/fields/genGraphScalarField.js +28 -0
- package/build/projectsGeneration/generators/graph/filters/genGraphField.js +21 -0
- package/build/projectsGeneration/generators/graph/filters/genGraphIdFilter.js +25 -0
- package/build/projectsGeneration/generators/graph/filters/genGraphLinkFilter.js +18 -0
- package/build/projectsGeneration/generators/graph/filters/genGraphScalarFilter.js +42 -0
- package/build/projectsGeneration/generators/graph/genGraphCrudSchema.js +103 -0
- package/build/projectsGeneration/generators/graph/genGraphCrudSchema.spec.js +84 -0
- package/build/projectsGeneration/generators/graph/genGraphFilterType.js +29 -0
- package/build/projectsGeneration/generators/graph/genGraphFilterType.spec.js +32 -0
- package/build/projectsGeneration/generators/graph/genGraphType.js +27 -0
- package/build/projectsGeneration/generators/graph/genGraphType.spec.js +25 -0
- package/build/projectsGeneration/generators/graph/printGraphType.js +11 -0
- package/build/projectsGeneration/generators/graph/printGraphType.spec.js +18 -0
- package/build/projectsGeneration/generators/prisma/fieldIdTypeToPrismaType.js +17 -0
- package/build/projectsGeneration/generators/prisma/fieldTypeToPrismaType.js +25 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.js +11 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.spec.js +57 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaField.js +21 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.js +12 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.spec.js +34 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.js +19 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.spec.js +45 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.js +32 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.spec.js +83 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.js +24 -0
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.spec.js +117 -0
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaEntity.js +32 -0
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaEntity.spec.js +93 -0
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntities.js +14 -0
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntitiesWithClientAdnDb.js +11 -0
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNameToEditScalar.js +25 -0
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditField.js +21 -0
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditIdField.js +9 -0
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.js +15 -0
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.spec.js +21 -0
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditScalarField.js +9 -0
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNameToShowScalar.js +25 -0
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowField.js +21 -0
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowIdField.js +9 -0
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.js +17 -0
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.spec.js +152 -0
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowScalarField.js +9 -0
- package/build/projectsGeneration/generators/ui/componentNames/types.js +3 -0
- package/build/projectsGeneration/generators/ui/getLinkShowComponent.spec.js +39 -0
- package/build/projectsGeneration/generators/ui/getScalarShowComponent.spec.js +24 -0
- package/build/projectsGeneration/generators/ui/getShowComponent.js +45 -0
- package/build/projectsGeneration/links/getLinksFromExternalEntities.js +8 -0
- package/build/projectsGeneration/links/getLinksFromExternalEntities.spec.js +83 -0
- package/build/projectsGeneration/links/getLinksOfEntities.js +22 -0
- package/build/projectsGeneration/links/getLinksOfEntities.spec.js +188 -0
- package/build/projectsGeneration/links/getLinksToExternalEntities.js +8 -0
- package/build/projectsGeneration/links/getLinksToExternalEntities.spec.js +83 -0
- package/build/projectsGeneration/metaUtils.js +36 -0
- package/build/projectsGeneration/modelsGeneration.serialization.spec.js +93 -0
- package/build/projectsGeneration/types.js +80 -0
- package/build/projectsGeneration/utils.js +85 -0
- package/build/types/documentation/algorithm.d.ts +8 -0
- package/build/types/documentation/algoritmToDoc.d.ts +4 -0
- package/build/types/documentation/algoritmToDoc.spec.d.ts +1 -0
- package/build/types/documentation/curlExampleToText.d.ts +3 -0
- package/build/types/documentation/curlExampleToText.spec.d.ts +1 -0
- package/build/types/documentation/doc.d.ts +21 -0
- package/build/types/documentation/docToFlatDoc.d.ts +4 -0
- package/build/types/documentation/docToFlatDoc.spec.d.ts +1 -0
- package/build/types/documentation/flatDoc.d.ts +20 -0
- package/build/types/documentation/flatDocToText.d.ts +3 -0
- package/build/types/documentation/flatDocToText.spec.d.ts +1 -0
- package/build/types/documentation/templateDoc.d.ts +9 -0
- package/build/types/documentation/templateDocToDoc.d.ts +4 -0
- package/build/types/log.d.ts +3 -0
- package/build/types/projectsGeneration/args.d.ts +20 -0
- package/build/types/projectsGeneration/builders/BaseBuilder.d.ts +14 -0
- package/build/types/projectsGeneration/builders/BaseSavableEntityBuilder.d.ts +58 -0
- package/build/types/projectsGeneration/builders/CatalogBuilder.d.ts +8 -0
- package/build/types/projectsGeneration/builders/DocumentBuilder.d.ts +12 -0
- package/build/types/projectsGeneration/builders/InfoRegistryBuilder.d.ts +34 -0
- package/build/types/projectsGeneration/builders/ReportBuilder.d.ts +8 -0
- package/build/types/projectsGeneration/builders/RestApiBuilder.d.ts +12 -0
- package/build/types/projectsGeneration/builders/RestApiMethodBuilder.d.ts +20 -0
- package/build/types/projectsGeneration/builders/RoleBuilder.d.ts +8 -0
- package/build/types/projectsGeneration/builders/SumRegistryBuilder.d.ts +32 -0
- package/build/types/projectsGeneration/builders/SystemMetaBuilder.d.ts +64 -0
- package/build/types/projectsGeneration/builders/TelegramBotBuilder.d.ts +7 -0
- package/build/types/projectsGeneration/builders/WorkerBuilder.d.ts +11 -0
- package/build/types/projectsGeneration/builders/buildedTypes.d.ts +255 -0
- package/build/types/projectsGeneration/builders/curlTypes.d.ts +24 -0
- package/build/types/projectsGeneration/builders/docs/DocumentationOfDocument.d.ts +10 -0
- package/build/types/projectsGeneration/builders/docs/DocumentationOfDocumentBuilder.d.ts +9 -0
- package/build/types/projectsGeneration/builders/fields/BaseFieldBuilder.d.ts +48 -0
- package/build/types/projectsGeneration/builders/fields/IdFieldBuilder.d.ts +12 -0
- package/build/types/projectsGeneration/builders/fields/LinkFieldBuilder.d.ts +13 -0
- package/build/types/projectsGeneration/builders/fields/ScalarFieldBuilder.d.ts +5 -0
- package/build/types/projectsGeneration/builders/fields/ViewLinkFieldBuilder.d.ts +13 -0
- package/build/types/projectsGeneration/builders/materialUiIcons.d.ts +2 -0
- package/build/types/projectsGeneration/builders/postponed/AccumulationRegisterMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/DictionaryMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/DocumentMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/EntityFormMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/InformationRegisterMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/ListFormMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/PeriodicInformationRegisterMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/ReportMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/postponed/RoleMetaBuilder.d.ts +3 -0
- package/build/types/projectsGeneration/builders/tsFilterFields.d.ts +2 -0
- package/build/types/projectsGeneration/builders/tsFilterFields.spec.d.ts +1 -0
- package/build/types/projectsGeneration/builders/types.d.ts +5 -0
- package/build/types/projectsGeneration/builders/ui/Forms.d.ts +14 -0
- package/build/types/projectsGeneration/builders/ui/FormsBuilder.d.ts +10 -0
- package/build/types/projectsGeneration/builders/ui/ListFormBuilder.d.ts +10 -0
- package/build/types/projectsGeneration/builders/ui/ListFormFilterBuilder.d.ts +10 -0
- package/build/types/projectsGeneration/builders/ui/ListFormFilterFieldBuilder.d.ts +11 -0
- package/build/types/projectsGeneration/builders/utils/accessFunctions.d.ts +2 -0
- package/build/types/projectsGeneration/defaultCatalogs/files.d.ts +4 -0
- package/build/types/projectsGeneration/genGraphSchemesByLocalGenerator.d.ts +2 -0
- package/build/types/projectsGeneration/generateEntity.d.ts +2 -0
- package/build/types/projectsGeneration/generateEnvironment.d.ts +2 -0
- package/build/types/projectsGeneration/generateProject.d.ts +33 -0
- package/build/types/projectsGeneration/generators/fieldTypeToTsType.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/Entities.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/devEnum.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/enum.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/Chart.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/back.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/ingress.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/values.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/defaultEnv.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsConfiguration.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsEntity.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsRestApi.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/gitlabCi.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/clients/getPrisma.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/clients/knex.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/clients/queue/getQueue.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/index.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/additionalResolvers.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/additionalTypes.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/entityAdditionalPermissionToGraphqlTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/entityBasePermissionToGraphql.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/entityPermissionToGraphqlTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/help/baseResolvers.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/help/baseTypeDefs.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/help/permissionsToGraphql.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/meta/resolvers.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/meta/typeDefs.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/permissionsToGraphql.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/resolvers.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/types.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/initCommon.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/initDev.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/initEntities.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/root/config.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/root/restRouter.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/AdditionalServices.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/BaseServices.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/HelpService/HelpService.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/additionalMethods.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnCreate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnDelete.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnUpdate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterCreate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterDelete.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterUpdate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeCreate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeDelete.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpdate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpsert.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/changeListFilter.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/getPostOperations.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/getRegistryEntries.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/getUnPostOperations.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/tenantIdRequiredHooks.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/initBuiltInHooks.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/initUserHooks.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/service.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/serviceConstrictors.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/Dashboard.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/MetaPage.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/ResourcesPage.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/additionalRoutes.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/entityMapping.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/Chart.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/front.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/ingress.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/values.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/docs/adminAppDocsConfiguration.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/gitlabCi.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/App.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/contexts/SpacesContext.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/dataProvider/index.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/AppBar.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/Menu.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/routes.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/functions/Functions.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/getAdditionalMenu.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/getDefaultMenu.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangCatalogsTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangDocsTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangInfoRegistriesTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangReportsTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangSumRegistriesTmpl.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsForServicesOfSavablesTmpl.d.ts +4 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsLangTmpl.d.ts +6 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/DefaultEntityCreate.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/index.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/DefaultEntityEdit.d.ts +6 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/index.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityFilter.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityList.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/EntityFilter.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/index.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultActions.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultEntityShow.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultMainTab.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DependencyTab.d.ts +3 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/MainTab.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/additionalTabs.d.ts +1 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/index.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/Icon.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/getEntityValidation.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/resources.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/widgets/count/CountWidget.d.ts +2 -0
- package/build/types/projectsGeneration/generators/fileTemplates/ui/widgets/list/ListWidget.d.ts +2 -0
- package/build/types/projectsGeneration/generators/graph/fieldTypeToGraphScalar.d.ts +2 -0
- package/build/types/projectsGeneration/generators/graph/fields/genGraphField.d.ts +7 -0
- package/build/types/projectsGeneration/generators/graph/fields/genGraphIdField.d.ts +8 -0
- package/build/types/projectsGeneration/generators/graph/fields/genGraphIdFieldType.d.ts +2 -0
- package/build/types/projectsGeneration/generators/graph/fields/genGraphLinkField.d.ts +8 -0
- package/build/types/projectsGeneration/generators/graph/fields/genGraphScalarField.d.ts +8 -0
- package/build/types/projectsGeneration/generators/graph/filters/genGraphField.d.ts +4 -0
- package/build/types/projectsGeneration/generators/graph/filters/genGraphIdFilter.d.ts +8 -0
- package/build/types/projectsGeneration/generators/graph/filters/genGraphLinkFilter.d.ts +5 -0
- package/build/types/projectsGeneration/generators/graph/filters/genGraphScalarFilter.d.ts +5 -0
- package/build/types/projectsGeneration/generators/graph/genGraphCrudSchema.d.ts +3 -0
- package/build/types/projectsGeneration/generators/graph/genGraphCrudSchema.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/graph/genGraphFilterType.d.ts +3 -0
- package/build/types/projectsGeneration/generators/graph/genGraphFilterType.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/graph/genGraphType.d.ts +3 -0
- package/build/types/projectsGeneration/generators/graph/genGraphType.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/graph/printGraphType.d.ts +2 -0
- package/build/types/projectsGeneration/generators/graph/printGraphType.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/fieldIdTypeToPrismaType.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/fieldTypeToPrismaType.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaField.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.d.ts +2 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaEntity.d.ts +3 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaEntity.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntities.d.ts +3 -0
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntitiesWithClientAdnDb.d.ts +2 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNameToEditScalar.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditIdField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditScalarField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNameToShowScalar.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowIdField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowScalarField.d.ts +3 -0
- package/build/types/projectsGeneration/generators/ui/componentNames/types.d.ts +4 -0
- package/build/types/projectsGeneration/generators/ui/getLinkShowComponent.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/ui/getScalarShowComponent.spec.d.ts +1 -0
- package/build/types/projectsGeneration/generators/ui/getShowComponent.d.ts +6 -0
- package/build/types/projectsGeneration/links/getLinksFromExternalEntities.d.ts +3 -0
- package/build/types/projectsGeneration/links/getLinksFromExternalEntities.spec.d.ts +1 -0
- package/build/types/projectsGeneration/links/getLinksOfEntities.d.ts +3 -0
- package/build/types/projectsGeneration/links/getLinksOfEntities.spec.d.ts +1 -0
- package/build/types/projectsGeneration/links/getLinksToExternalEntities.d.ts +3 -0
- package/build/types/projectsGeneration/links/getLinksToExternalEntities.spec.d.ts +1 -0
- package/build/types/projectsGeneration/metaUtils.d.ts +6 -0
- package/build/types/projectsGeneration/modelsGeneration.serialization.spec.d.ts +1 -0
- package/build/types/projectsGeneration/types.d.ts +92 -0
- package/build/types/projectsGeneration/utils.d.ts +14 -0
- package/build/types/types.d.ts +4 -0
- package/build/types/utils/TermSignals.d.ts +1 -0
- package/build/types/utils/cases.d.ts +9 -0
- package/build/types.js +3 -2
- package/build/utils/cases.js +30 -0
- package/package.json +11 -3
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
import { HttpMethod } from './curlTypes';
|
|
2
|
+
import { DocumentationOfDocument } from './docs/DocumentationOfDocument';
|
|
3
|
+
import { Forms } from './ui/Forms';
|
|
4
|
+
export declare type ConfigVarScope = 'back' | 'admin-app' | 'cutomer-app' | 'worker' | 'telegramBot';
|
|
5
|
+
export interface ConfigVar {
|
|
6
|
+
name: string;
|
|
7
|
+
default: string;
|
|
8
|
+
needFor: string;
|
|
9
|
+
scopes: ConfigVarScope[];
|
|
10
|
+
}
|
|
11
|
+
export interface Glossary {
|
|
12
|
+
term: string;
|
|
13
|
+
definition: string;
|
|
14
|
+
}
|
|
15
|
+
export declare type ProjectCategory = 'back' | 'ui' | 'app' | 'land';
|
|
16
|
+
export interface Command {
|
|
17
|
+
projectCategory: ProjectCategory;
|
|
18
|
+
name: string;
|
|
19
|
+
command: string;
|
|
20
|
+
needFor: string;
|
|
21
|
+
}
|
|
22
|
+
export declare type TKeyFieldType = 'string' | 'int' | 'bigint';
|
|
23
|
+
export declare type FiledType = 'string' | 'int' | 'bigint' | 'float' | 'bool' | 'datetime' | 'date';
|
|
24
|
+
export declare type Meaning = 'img';
|
|
25
|
+
export declare enum TsTypes {
|
|
26
|
+
Number = "number",
|
|
27
|
+
BigInt = "bigint",
|
|
28
|
+
String = "string",
|
|
29
|
+
Boolean = "boolean",
|
|
30
|
+
Date = "Date"
|
|
31
|
+
}
|
|
32
|
+
export declare type DefaultDbValue = string | boolean | undefined;
|
|
33
|
+
declare type BaseField = {
|
|
34
|
+
name: string;
|
|
35
|
+
title: Record<string, string>;
|
|
36
|
+
needFor: string;
|
|
37
|
+
updatable: boolean;
|
|
38
|
+
required: boolean;
|
|
39
|
+
requiredOnInput: boolean | null;
|
|
40
|
+
updatableByUser: boolean;
|
|
41
|
+
hidden?: boolean;
|
|
42
|
+
searchable?: boolean;
|
|
43
|
+
showInList: boolean;
|
|
44
|
+
showInCreate: boolean;
|
|
45
|
+
showInEdit: boolean;
|
|
46
|
+
defaultDbValue: DefaultDbValue;
|
|
47
|
+
defaultValueExpression?: string;
|
|
48
|
+
defaultBackendValueExpression?: string;
|
|
49
|
+
};
|
|
50
|
+
declare type ScalarBaseField = BaseField & {
|
|
51
|
+
category: 'scalar';
|
|
52
|
+
};
|
|
53
|
+
declare type IdBaseField = BaseField & {
|
|
54
|
+
autoGenerated: boolean;
|
|
55
|
+
category: 'id';
|
|
56
|
+
};
|
|
57
|
+
declare type LinkMainBaseField = BaseField & {
|
|
58
|
+
externalEntity: string;
|
|
59
|
+
category: 'link';
|
|
60
|
+
};
|
|
61
|
+
export declare type PredefinedLinkedEntity = 'none' | 'file';
|
|
62
|
+
declare type NotPredefinedLinkBaseField = LinkMainBaseField & {
|
|
63
|
+
predefinedLinkedEntity: 'none';
|
|
64
|
+
};
|
|
65
|
+
export declare type FileType = 'plain' | 'image';
|
|
66
|
+
declare type FilePredefinedLinkBaseField = LinkMainBaseField & {
|
|
67
|
+
predefinedLinkedEntity: 'file';
|
|
68
|
+
fileType: FileType;
|
|
69
|
+
};
|
|
70
|
+
declare type LinkBaseField = NotPredefinedLinkBaseField | FilePredefinedLinkBaseField;
|
|
71
|
+
export declare type ConstantOnCreateDate = false | 'now';
|
|
72
|
+
export declare type ConstantOnUpdateDate = false | 'now';
|
|
73
|
+
export declare type DateTimeField = ScalarBaseField & {
|
|
74
|
+
type: 'datetime';
|
|
75
|
+
constantOnCreate: ConstantOnCreateDate;
|
|
76
|
+
constantOnUpdate: ConstantOnUpdateDate;
|
|
77
|
+
};
|
|
78
|
+
export declare type DateField = ScalarBaseField & {
|
|
79
|
+
type: 'date';
|
|
80
|
+
constantOnCreate: ConstantOnCreateDate;
|
|
81
|
+
constantOnUpdate: ConstantOnUpdateDate;
|
|
82
|
+
};
|
|
83
|
+
export declare type ConstantOnCreateInt = false | 'currentUser';
|
|
84
|
+
export declare type ConstantOnUpdateInt = false | 'currentUser';
|
|
85
|
+
export declare type ConstantOnCreate = ConstantOnCreateInt | ConstantOnCreateDate;
|
|
86
|
+
export declare type ConstantOnUpdate = ConstantOnUpdateInt | ConstantOnUpdateDate;
|
|
87
|
+
export declare type IntField = ScalarBaseField & {
|
|
88
|
+
type: 'int';
|
|
89
|
+
constantOnCreate: ConstantOnCreateInt;
|
|
90
|
+
constantOnUpdate: ConstantOnUpdateInt;
|
|
91
|
+
};
|
|
92
|
+
export declare type BigIntField = ScalarBaseField & {
|
|
93
|
+
type: 'bigint';
|
|
94
|
+
constantOnCreate: ConstantOnCreateInt;
|
|
95
|
+
constantOnUpdate: ConstantOnUpdateInt;
|
|
96
|
+
};
|
|
97
|
+
export declare type BaseStringField = ScalarBaseField & {
|
|
98
|
+
type: 'string';
|
|
99
|
+
};
|
|
100
|
+
export declare type StringType = 'plain' | 'multiline' | 'richEdit';
|
|
101
|
+
export declare type PlainStringField = BaseStringField & {
|
|
102
|
+
stringType: 'plain';
|
|
103
|
+
};
|
|
104
|
+
export declare type MultilineStringField = BaseStringField & {
|
|
105
|
+
stringType: 'multiline';
|
|
106
|
+
};
|
|
107
|
+
export declare type MarkdownStringField = BaseStringField & {
|
|
108
|
+
stringType: 'markdown';
|
|
109
|
+
};
|
|
110
|
+
export declare type RichEditStringField = BaseStringField & {
|
|
111
|
+
stringType: 'richEdit';
|
|
112
|
+
};
|
|
113
|
+
export declare type StringField = PlainStringField | MultilineStringField | MarkdownStringField | RichEditStringField;
|
|
114
|
+
export declare type FloatField = ScalarBaseField & {
|
|
115
|
+
type: 'float';
|
|
116
|
+
};
|
|
117
|
+
export declare type BoolField = ScalarBaseField & {
|
|
118
|
+
type: 'bool';
|
|
119
|
+
};
|
|
120
|
+
export declare type BigIntIdField = IdBaseField & Omit<BigIntField, 'category'>;
|
|
121
|
+
export declare type IntIdField = IdBaseField & Omit<IntField, 'category'>;
|
|
122
|
+
export declare type StringIdField = IdBaseField & Omit<StringField, 'category'>;
|
|
123
|
+
export declare type IntLinkField = LinkBaseField & {
|
|
124
|
+
type: 'int';
|
|
125
|
+
};
|
|
126
|
+
export declare type BigIntLinkField = LinkBaseField & {
|
|
127
|
+
type: 'bigint';
|
|
128
|
+
};
|
|
129
|
+
export declare type StringLinkField = LinkBaseField & {
|
|
130
|
+
type: 'string';
|
|
131
|
+
};
|
|
132
|
+
export declare type ScalarField = DateTimeField | DateField | IntField | BigIntField | StringField | FloatField | BoolField;
|
|
133
|
+
export declare type GeneralLinkField = BigIntLinkField | IntLinkField | StringLinkField;
|
|
134
|
+
export declare type EntityLinkField = GeneralLinkField & {
|
|
135
|
+
linkCategory: 'entity';
|
|
136
|
+
};
|
|
137
|
+
export declare type ViewLinkField = GeneralLinkField & {
|
|
138
|
+
linkCategory: 'view';
|
|
139
|
+
};
|
|
140
|
+
export declare type LinkField = EntityLinkField | ViewLinkField;
|
|
141
|
+
export declare type IdField = IntIdField | BigIntIdField | StringIdField;
|
|
142
|
+
export declare type Field = ScalarField | LinkField | IdField | ViewLinkField;
|
|
143
|
+
export declare type Multitenancy = 'none' | 'optional' | 'required';
|
|
144
|
+
export declare type BaseEntity = {
|
|
145
|
+
name: string;
|
|
146
|
+
title: Record<string, string>;
|
|
147
|
+
needFor: Record<string, string>;
|
|
148
|
+
materialUiIcon: string;
|
|
149
|
+
};
|
|
150
|
+
export declare type BaseSavableEntity = BaseEntity & {
|
|
151
|
+
titleField: string;
|
|
152
|
+
keyField: string;
|
|
153
|
+
singleKey: boolean;
|
|
154
|
+
fields: Field[];
|
|
155
|
+
uniqueConstraints: string[][];
|
|
156
|
+
forms: Forms;
|
|
157
|
+
predefinedElements: Record<string, any>[];
|
|
158
|
+
devPerefinedElements: Record<string, any>[];
|
|
159
|
+
auditable: boolean;
|
|
160
|
+
externalSearch: boolean;
|
|
161
|
+
sortField: string;
|
|
162
|
+
sortOrder: 'ASC' | 'DESC';
|
|
163
|
+
multitenancy: Multitenancy;
|
|
164
|
+
commonElementsVisibleToAll: boolean;
|
|
165
|
+
};
|
|
166
|
+
export declare type Report = BaseEntity & {
|
|
167
|
+
type: 'report';
|
|
168
|
+
};
|
|
169
|
+
export declare type Document = BaseSavableEntity & {
|
|
170
|
+
type: 'document';
|
|
171
|
+
deletable: boolean;
|
|
172
|
+
editable: boolean;
|
|
173
|
+
registries: string[];
|
|
174
|
+
documentation: DocumentationOfDocument;
|
|
175
|
+
};
|
|
176
|
+
export declare type Catalog = BaseSavableEntity & {
|
|
177
|
+
type: 'catalog';
|
|
178
|
+
deletable: boolean;
|
|
179
|
+
editable: boolean;
|
|
180
|
+
};
|
|
181
|
+
export declare type Role = BaseEntity & {
|
|
182
|
+
type: 'role';
|
|
183
|
+
};
|
|
184
|
+
export declare type TelegramBot = BaseEntity & {
|
|
185
|
+
type: 'telegramBot';
|
|
186
|
+
};
|
|
187
|
+
export declare type RestApiMethod = BaseEntity & {
|
|
188
|
+
type: 'restApiMethod';
|
|
189
|
+
note: string;
|
|
190
|
+
httpMethod: HttpMethod;
|
|
191
|
+
path: string;
|
|
192
|
+
urlExample?: string;
|
|
193
|
+
requestExample: Record<string, any>;
|
|
194
|
+
successResponseExample: Record<string, any>;
|
|
195
|
+
errorResponseExample: Record<string, any>;
|
|
196
|
+
};
|
|
197
|
+
export declare type RestApi = BaseEntity & {
|
|
198
|
+
type: 'restApi';
|
|
199
|
+
methods: RestApiMethod[];
|
|
200
|
+
path: string;
|
|
201
|
+
};
|
|
202
|
+
export declare type MemoryAndCpu = {
|
|
203
|
+
memory: string;
|
|
204
|
+
cpu: string;
|
|
205
|
+
};
|
|
206
|
+
export declare type Worker = BaseEntity & {
|
|
207
|
+
requests: MemoryAndCpu;
|
|
208
|
+
limits: MemoryAndCpu;
|
|
209
|
+
};
|
|
210
|
+
export declare type InfoRegistryPeriod = 'notPeriodic' | 'second' | 'day' | 'month' | 'year';
|
|
211
|
+
export declare type InfoRegistry = BaseSavableEntity & {
|
|
212
|
+
type: 'infoRegistry';
|
|
213
|
+
registrarDepended: boolean;
|
|
214
|
+
dimensions: Field[];
|
|
215
|
+
resources: Field[];
|
|
216
|
+
period: InfoRegistryPeriod;
|
|
217
|
+
};
|
|
218
|
+
export declare type SumRegistry = BaseSavableEntity & {
|
|
219
|
+
type: 'sumRegistry';
|
|
220
|
+
registrarDepended: boolean;
|
|
221
|
+
dimensions: Field[];
|
|
222
|
+
resources: Field[];
|
|
223
|
+
};
|
|
224
|
+
export declare type Entity = Document | Catalog | InfoRegistry | SumRegistry;
|
|
225
|
+
export interface DeployEnvironment {
|
|
226
|
+
name: string;
|
|
227
|
+
clusterName: string;
|
|
228
|
+
}
|
|
229
|
+
export declare type Back = {
|
|
230
|
+
requests: MemoryAndCpu;
|
|
231
|
+
limits: MemoryAndCpu;
|
|
232
|
+
};
|
|
233
|
+
export declare type System = {
|
|
234
|
+
name: string;
|
|
235
|
+
prefix: string;
|
|
236
|
+
needFor: string;
|
|
237
|
+
configVars: ConfigVar[];
|
|
238
|
+
catalogs: Catalog[];
|
|
239
|
+
documents: Document[];
|
|
240
|
+
infoRegistries: InfoRegistry[];
|
|
241
|
+
sumRegistries: SumRegistry[];
|
|
242
|
+
languages: string[];
|
|
243
|
+
defaultLanguage: string;
|
|
244
|
+
roles: Role[];
|
|
245
|
+
reports: Report[];
|
|
246
|
+
telegramBots: TelegramBot[];
|
|
247
|
+
deployEnvironments: DeployEnvironment[];
|
|
248
|
+
commands: Command[];
|
|
249
|
+
glossary: Glossary[];
|
|
250
|
+
restApis: RestApi[];
|
|
251
|
+
workers: Worker[];
|
|
252
|
+
back: Back;
|
|
253
|
+
};
|
|
254
|
+
export declare type EtityType = 'catalog' | 'document' | 'infoRegistry' | 'sumRegistry';
|
|
255
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface ApiDocumentation {
|
|
2
|
+
title: string;
|
|
3
|
+
requestExample: string;
|
|
4
|
+
successResponseExample: string;
|
|
5
|
+
errorResponseExample: string;
|
|
6
|
+
}
|
|
7
|
+
export interface CurlExampleBearerAuth {
|
|
8
|
+
type: 'bearer';
|
|
9
|
+
token: string;
|
|
10
|
+
}
|
|
11
|
+
export interface CurlExampleHeaderTokenAuth {
|
|
12
|
+
type: 'headerToken';
|
|
13
|
+
token: string;
|
|
14
|
+
}
|
|
15
|
+
export declare type CurlExampleAuth = CurlExampleBearerAuth | CurlExampleHeaderTokenAuth;
|
|
16
|
+
export declare type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
17
|
+
export interface CurlExample {
|
|
18
|
+
method: HttpMethod;
|
|
19
|
+
baseUrl: string;
|
|
20
|
+
path: string;
|
|
21
|
+
data?: Record<string, any>;
|
|
22
|
+
headers?: Record<string, string>;
|
|
23
|
+
auth?: CurlExampleAuth;
|
|
24
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare type TypeWayOfCreation = 'manual' | 'auto' | 'byApi';
|
|
2
|
+
export declare type WayOfCreation = {
|
|
3
|
+
type: 'auto' | 'byApi';
|
|
4
|
+
} | {
|
|
5
|
+
type: 'manual';
|
|
6
|
+
byRoles: string[];
|
|
7
|
+
};
|
|
8
|
+
export interface DocumentationOfDocument {
|
|
9
|
+
waysOfCreation: WayOfCreation[];
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import BaseSavableEntityBuilder from '../BaseSavableEntityBuilder';
|
|
2
|
+
import { DocumentationOfDocument, WayOfCreation } from './DocumentationOfDocument';
|
|
3
|
+
export declare class DocumentationOfDocumentBuilder {
|
|
4
|
+
getEntity: () => BaseSavableEntityBuilder;
|
|
5
|
+
waysOfCreation: WayOfCreation[];
|
|
6
|
+
constructor(getEntity: () => BaseSavableEntityBuilder);
|
|
7
|
+
getWaysOfCreation(): WayOfCreation[];
|
|
8
|
+
build(): DocumentationOfDocument;
|
|
9
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ConstantOnCreate, ConstantOnUpdate, Meaning, FiledType, DefaultDbValue, StringType } from '../buildedTypes';
|
|
2
|
+
export declare abstract class BaseFieldBuilder {
|
|
3
|
+
defaultLanguage: string;
|
|
4
|
+
category: 'trivial' | 'link';
|
|
5
|
+
type: FiledType;
|
|
6
|
+
meaning?: Meaning;
|
|
7
|
+
name: string;
|
|
8
|
+
stringType: StringType;
|
|
9
|
+
entity: string;
|
|
10
|
+
title: Record<string, string>;
|
|
11
|
+
translationKey: string;
|
|
12
|
+
defaultValueExpression?: string;
|
|
13
|
+
defaultBackendValueExpression?: string;
|
|
14
|
+
needFor: string;
|
|
15
|
+
required: boolean;
|
|
16
|
+
defaultDbValue: DefaultDbValue;
|
|
17
|
+
hidden: boolean;
|
|
18
|
+
searchable: boolean;
|
|
19
|
+
constantOnCreate: ConstantOnCreate;
|
|
20
|
+
constantOnUpdate: ConstantOnUpdate;
|
|
21
|
+
requiredOnInput: boolean | null;
|
|
22
|
+
updatable: boolean;
|
|
23
|
+
updatableByUser: boolean;
|
|
24
|
+
showInList: boolean;
|
|
25
|
+
showInCreate: boolean;
|
|
26
|
+
showInEdit: boolean;
|
|
27
|
+
constructor(name: string, defaultLanguage: string, title?: string);
|
|
28
|
+
setName(name: string): this;
|
|
29
|
+
setNeedFor(needFor: string): this;
|
|
30
|
+
setTitle(title: string, language?: string): this;
|
|
31
|
+
setTitles(title: Record<string, string>): this;
|
|
32
|
+
setType(type: FiledType): this;
|
|
33
|
+
setStringType(stringType: StringType): this;
|
|
34
|
+
setMeaning(meaning: Meaning): this;
|
|
35
|
+
setRequiredOnInput(value: boolean, defaultValueExpression?: string): this;
|
|
36
|
+
setHidden(value?: boolean): this;
|
|
37
|
+
setSearchable(value?: boolean): this;
|
|
38
|
+
setUpdatable(value?: boolean): this;
|
|
39
|
+
setUpdatableByUser(): this;
|
|
40
|
+
setNotUpdatableByUser(defaultValueExpression?: string, defaultBackendValueExpression?: string): this;
|
|
41
|
+
setDefaultValueExpression(value: string): this;
|
|
42
|
+
setDefaultBackendValueExpression(value: string): this;
|
|
43
|
+
setConstantOnCreate(value: ConstantOnCreate): this;
|
|
44
|
+
setConstantOnUpdate(value: ConstantOnUpdate): this;
|
|
45
|
+
setRequired(value?: boolean): this;
|
|
46
|
+
setDefaultDbValue(defaultDbValue: DefaultDbValue): this;
|
|
47
|
+
setNotRequired(): this;
|
|
48
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IdField, TKeyFieldType } from '../buildedTypes';
|
|
2
|
+
import { BaseFieldBuilder } from './BaseFieldBuilder';
|
|
3
|
+
export declare class IdFieldBuilder extends BaseFieldBuilder {
|
|
4
|
+
type: TKeyFieldType;
|
|
5
|
+
autoGenerated: boolean;
|
|
6
|
+
constructor(name: string, defaultLanguage: string, title?: string);
|
|
7
|
+
setType(type: TKeyFieldType): this;
|
|
8
|
+
build(): IdField;
|
|
9
|
+
setAutoGenerated(autoGenerated?: boolean): this;
|
|
10
|
+
private updateDefaultDbValue;
|
|
11
|
+
setNotAutoGenerated(): this;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FileType, LinkField, PredefinedLinkedEntity, TKeyFieldType } from '../buildedTypes';
|
|
2
|
+
import { BaseFieldBuilder } from './BaseFieldBuilder';
|
|
3
|
+
export declare class LinkFieldBuilder extends BaseFieldBuilder {
|
|
4
|
+
type: TKeyFieldType;
|
|
5
|
+
predefinedLinkedEntity: PredefinedLinkedEntity;
|
|
6
|
+
fileType: FileType;
|
|
7
|
+
updatable: boolean;
|
|
8
|
+
constructor(entity: string, name: string, defaultLanguage: string, title?: string);
|
|
9
|
+
setType(type: TKeyFieldType): this;
|
|
10
|
+
setPredefinedLinkedEntity(predefinedLinkedEntity: PredefinedLinkedEntity): this;
|
|
11
|
+
setFileType(fileType: FileType): this;
|
|
12
|
+
build(): LinkField;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ViewLinkField, TKeyFieldType, PredefinedLinkedEntity, FileType } from '../buildedTypes';
|
|
2
|
+
import { BaseFieldBuilder } from './BaseFieldBuilder';
|
|
3
|
+
export declare class ViewLinkFieldBuilder extends BaseFieldBuilder {
|
|
4
|
+
type: TKeyFieldType;
|
|
5
|
+
predefinedLinkedEntity: PredefinedLinkedEntity;
|
|
6
|
+
fileType: FileType;
|
|
7
|
+
updatable: boolean;
|
|
8
|
+
constructor(entity: string, name: string, defaultLanguage: string, title?: string);
|
|
9
|
+
setType(type: TKeyFieldType): this;
|
|
10
|
+
setPredefinedLinkedEntity(predefinedLinkedEntity: PredefinedLinkedEntity): this;
|
|
11
|
+
setFileType(fileType: FileType): this;
|
|
12
|
+
build(): ViewLinkField;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IdFieldBuilder } from './fields/IdFieldBuilder';
|
|
2
|
+
import { LinkFieldBuilder } from './fields/LinkFieldBuilder';
|
|
3
|
+
import { ScalarFieldBuilder } from './fields/ScalarFieldBuilder';
|
|
4
|
+
import { ViewLinkFieldBuilder } from './fields/ViewLinkFieldBuilder';
|
|
5
|
+
export declare type FieldBuilder = ScalarFieldBuilder | IdFieldBuilder | LinkFieldBuilder | ViewLinkFieldBuilder;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface ListFormFilterField {
|
|
2
|
+
name: string;
|
|
3
|
+
hidden: boolean;
|
|
4
|
+
alwaysOn: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface ListFormFilter {
|
|
7
|
+
fields: ListFormFilterField[];
|
|
8
|
+
}
|
|
9
|
+
export interface ListForm {
|
|
10
|
+
filter: ListFormFilter;
|
|
11
|
+
}
|
|
12
|
+
export interface Forms {
|
|
13
|
+
listForm: ListForm;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import BaseSavableEntityBuilder from '../BaseSavableEntityBuilder';
|
|
2
|
+
import { Forms } from './Forms';
|
|
3
|
+
import { ListFormBuilder } from './ListFormBuilder';
|
|
4
|
+
export declare class FormsBuilder {
|
|
5
|
+
getEntity: () => BaseSavableEntityBuilder;
|
|
6
|
+
listForm: ListFormBuilder;
|
|
7
|
+
constructor(getEntity: () => BaseSavableEntityBuilder);
|
|
8
|
+
getListForm(): ListFormBuilder;
|
|
9
|
+
build(): Forms;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import BaseSavableEntityBuilder from '../BaseSavableEntityBuilder';
|
|
2
|
+
import { ListForm } from './Forms';
|
|
3
|
+
import { ListFormFilterBuilder } from './ListFormFilterBuilder';
|
|
4
|
+
export declare class ListFormBuilder {
|
|
5
|
+
getEntity: () => BaseSavableEntityBuilder;
|
|
6
|
+
filter: ListFormFilterBuilder;
|
|
7
|
+
constructor(getEntity: () => BaseSavableEntityBuilder);
|
|
8
|
+
getFilter(): ListFormFilterBuilder;
|
|
9
|
+
build(): ListForm;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import BaseSavableEntityBuilder from '../BaseSavableEntityBuilder';
|
|
2
|
+
import { ListFormFilter } from './Forms';
|
|
3
|
+
import { ListFormFilterFieldBuilder } from './ListFormFilterFieldBuilder';
|
|
4
|
+
export declare class ListFormFilterBuilder {
|
|
5
|
+
getEntity: () => BaseSavableEntityBuilder;
|
|
6
|
+
fields: ListFormFilterFieldBuilder[];
|
|
7
|
+
constructor(getEntity: () => BaseSavableEntityBuilder);
|
|
8
|
+
getField(name: string): ListFormFilterFieldBuilder;
|
|
9
|
+
build(): ListFormFilter;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FieldBuilder } from '../types';
|
|
2
|
+
import BaseSavableEntityBuilder from '../BaseSavableEntityBuilder';
|
|
3
|
+
import { ListFormFilterField } from './Forms';
|
|
4
|
+
export declare class ListFormFilterFieldBuilder {
|
|
5
|
+
getEntity: () => BaseSavableEntityBuilder;
|
|
6
|
+
getField: () => FieldBuilder;
|
|
7
|
+
alwaysOn: boolean;
|
|
8
|
+
constructor(getEntity: () => BaseSavableEntityBuilder, getField: () => FieldBuilder);
|
|
9
|
+
setAlwaysOn(alwaysOn: boolean): this;
|
|
10
|
+
build(): ListFormFilterField;
|
|
11
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import SystemMetaBuilder from '../builders/SystemMetaBuilder';
|
|
2
|
+
import CatalogBuilder from '../builders/CatalogBuilder';
|
|
3
|
+
export declare const addFilesCatalog: (system: SystemMetaBuilder) => CatalogBuilder;
|
|
4
|
+
export declare const getFilesCatalog: (system: SystemMetaBuilder) => CatalogBuilder;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { BootstrapEntityOptions } from './types';
|
|
2
|
+
import { System } from './builders/buildedTypes';
|
|
3
|
+
import { EntityWideGenerationArgs, ProjectWideGenerationArgs } from './args';
|
|
4
|
+
export declare const generateBackSrcEntity: (_entityWideGenerationArgs: EntityWideGenerationArgs) => Promise<void>;
|
|
5
|
+
export declare const generateBackSrc: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
6
|
+
export declare const generateBackGitlabCi: (_args: ProjectWideGenerationArgs) => Promise<void>;
|
|
7
|
+
export declare const generateBackHelm: (_args: ProjectWideGenerationArgs) => Promise<void>;
|
|
8
|
+
export declare const generateBackEnvs: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
9
|
+
export declare const generateBackDocsConfiguration: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
10
|
+
export declare const generateBackDocsRestApis: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
11
|
+
export declare const generateBackDocsEntities: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
12
|
+
export declare const generateBackEnums: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
13
|
+
export declare const generateBackEntityEnum: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
14
|
+
export declare const generateBackEnumsInit: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
15
|
+
export declare const generateBackEntitiesEnumInit: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
16
|
+
export declare const generateBackDevEnums: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
17
|
+
export declare const generateBackDevEnumsInit: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
18
|
+
export declare const generateAdminAppDocsConfiguration: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
19
|
+
export declare const generateBackDocs: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
20
|
+
export declare const generateBack: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
21
|
+
export declare const generateFrontSrcEntityTranslationsDocs: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
22
|
+
export declare const generateFrontSrcEntityTranslationsCatalogs: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
23
|
+
export declare const generateFrontSrcEntityTranslationsInfoRegistries: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
24
|
+
export declare const generateFrontSrcEntityTranslationsSumRegistries: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
25
|
+
export declare const generateFrontSrcEntityTranslationsReports: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
26
|
+
export declare const generateFrontSrcEntityIcon: (entityWideGenerationArgs: EntityWideGenerationArgs) => Promise<void>;
|
|
27
|
+
export declare const generateFrontSrcGetEntityValidation: (entityWideGenerationArgs: EntityWideGenerationArgs) => Promise<void>;
|
|
28
|
+
export declare const generateFrontSrcEntity: (entityWideGenerationArgs: EntityWideGenerationArgs) => Promise<void>;
|
|
29
|
+
export declare const generateFrontSrc: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
30
|
+
export declare const generateFrontGitlabCi: (_args: ProjectWideGenerationArgs) => Promise<void>;
|
|
31
|
+
export declare const generateFrontHelm: (_args: ProjectWideGenerationArgs) => Promise<void>;
|
|
32
|
+
export declare const generateFront: (args: ProjectWideGenerationArgs) => Promise<void>;
|
|
33
|
+
export declare const generateProject: (system: System, initialOpts?: BootstrapEntityOptions) => Promise<void>;
|